File indexing completed on 2024-05-12 05:44:26

0001 /***************************************************************************
0002  *   Copyright (C) 2006-2009 by Rajko Albrecht                             *
0003  *   ral@alwins-world.de                                                   *
0004  *                                                                         *
0005  *   This program is free software; you can redistribute it and/or modify  *
0006  *   it under the terms of the GNU General Public License as published by  *
0007  *   the Free Software Foundation; either version 2 of the License, or     *
0008  *   (at your option) any later version.                                   *
0009  *                                                                         *
0010  *   This program is distributed in the hope that it will be useful,       *
0011  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
0012  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
0013  *   GNU General Public License for more details.                          *
0014  *                                                                         *
0015  *   You should have received a copy of the GNU General Public License     *
0016  *   along with this program; if not, write to the                         *
0017  *   Free Software Foundation, Inc.,                                       *
0018  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
0019  ***************************************************************************/
0020 #ifndef REVTREEWIDGET_H
0021 #define REVTREEWIDGET_H
0022 
0023 #include <svnqt/client.h>
0024 #include <svnqt/revision.h>
0025 
0026 #include <qwidget.h>
0027 
0028 class QVBoxLayout;
0029 class RevGraphView;
0030 class QSplitter;
0031 class QTextBrowser;
0032 
0033 namespace svn
0034 {
0035 class LogEntry;
0036 }
0037 
0038 class RevTreeWidget : public QWidget
0039 {
0040     Q_OBJECT
0041 
0042 public:
0043     RevTreeWidget(const svn::ClientP &cl, QWidget *parent = nullptr);
0044     ~RevTreeWidget() override;
0045 
0046     QSplitter *m_Splitter;
0047     RevGraphView *m_RevGraphView;
0048 
0049     void setBasePath(const QString &);
0050     void dumpRevtree();
0051 
0052 protected:
0053     QVBoxLayout *RevTreeWidgetLayout;
0054     QTextBrowser *m_Detailstext;
0055 
0056 signals:
0057     void makeCat(const svn::Revision &, const QString &, const QString &, const svn::Revision &, QWidget *);
0058     void makeNorecDiff(const QString &, const svn::Revision &, const QString &, const svn::Revision &, QWidget *);
0059     void makeRecDiff(const QString &, const svn::Revision &, const QString &, const svn::Revision &, QWidget *);
0060 
0061 protected slots:
0062     virtual void setDetailText(const QString &);
0063 };
0064 
0065 #endif // REVTREEWIDGET_H