]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/restore/restoretree.h
kes Fix listing performance problems in bat. Pointed out by
[bacula/bacula] / bacula / src / qt-console / restore / restoretree.h
1 #ifndef _RESTORETREE_H_
2 #define _RESTORETREE_H_
3
4 /*
5    Bacula® - The Network Backup Solution
6
7    Copyright (C) 2007-2007 Free Software Foundation Europe e.V.
8
9    The main author of Bacula is Kern Sibbald, with contributions from
10    many others, a complete list can be found in the file AUTHORS.
11    This program is Free Software; you can redistribute it and/or
12    modify it under the terms of version two of the GNU General Public
13    License as published by the Free Software Foundation and included
14    in the file LICENSE.
15
16    This program is distributed in the hope that it will be useful, but
17    WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19    General Public License for more details.
20
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
24    02110-1301, USA.
25
26    Bacula® is a registered trademark of John Walker.
27    The licensor of Bacula is the Free Software Foundation Europe
28    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
29    Switzerland, email:ftf@fsfeurope.org.
30 */
31 /*
32  *   Version $Id$
33  *
34  *  Kern Sibbald, February 2007
35  */
36
37 #include <QtGui>
38 #include "pages.h"
39 #include "ui_restoretree.h"
40
41
42 /*  
43  * A restore tree to view files in the catalog
44  */
45 class restoreTree : public Pages, public Ui::restoreTreeForm
46 {
47    Q_OBJECT 
48
49 public:
50    restoreTree();
51    ~restoreTree();
52    virtual void currentStackItem();
53    enum folderCheckState
54    {
55       FolderUnchecked = 0,
56       FolderGreenChecked = 1,
57       FolderWhiteChecked = 2,
58       FolderBothChecked = 3
59    };
60
61 private slots:
62    void refreshButtonPushed();
63    void restoreButtonPushed();
64    void jobComboChanged(int);
65    void directoryCurrentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *);
66    void fileCurrentItemChanged(QTableWidgetItem *,QTableWidgetItem *);
67    void directoryItemExpanded(QTreeWidgetItem *);
68    void setCheckofChildren(QTreeWidgetItem *item, Qt::CheckState);
69    void directoryItemChanged(QTreeWidgetItem *, int);
70    void fileTableItemChanged(QTableWidgetItem *);
71    void versionTableItemChanged(QTableWidgetItem *);
72    void updateRefresh();
73    void jobTableCellClicked(int, int);
74
75 private:
76    void populateDirectoryTree();
77    void populateJobTable();
78    void parseDirectory(QString &dir_in);
79    bool addDirectory(QString &, QString &);
80    void setupPage();
81    void writeSettings();
82    void readSettings();
83    void fileExceptionInsert(QString &, QString &, Qt::CheckState);
84    void fileExceptionRemove(QString &, QString &);
85    void directoryTreeDisconnectedSet(QTreeWidgetItem *, Qt::CheckState);
86    void fileTableDisconnectedSet(QTableWidgetItem *, Qt::CheckState, bool color);
87    void versionTableDisconnectedSet(QTableWidgetItem *, Qt::CheckState);
88    void updateFileTableChecks();
89    void updateVersionTableChecks();
90    void directoryIconStateInsert(QString &, Qt::CheckState);
91    void directoryIconStateRemove();
92    void directorySetIcon(int operation, int change, QString &, QTreeWidgetItem* item);
93    void fullPathtoSubPaths(QStringList &, QString &);
94    int mostRecentVersionfromFullPath(QString &);
95    void setJobsCheckedList();
96    int queryFileIndex(QString &fullPath, int jobID);
97
98    QSplitter *m_splitter;
99    QString m_groupText;
100    QString m_splitText;
101    bool m_populated;
102    bool m_dropdownChanged;
103    QRegExp m_winRegExpDrive;
104    QRegExp m_winRegExpPath;
105    bool m_slashTrap;
106    QHash<QString, QTreeWidgetItem *> m_dirPaths;
107    QString m_checkedJobs, m_prevJobCombo, m_prevClientCombo, m_prevFileSetCombo;
108    int m_prevLimitSpinBox, m_prevDaysSpinBox;
109    Qt::CheckState m_prevLimitCheckState, m_prevDaysCheckState;
110    QString m_JobsCheckedList;
111    int m_debugCnt;
112    bool m_debugTrap;
113    QList<Qt::CheckState> m_fileCheckStateList;
114    QList<Qt::CheckState> m_versionCheckStateList;
115    QHash<QString, Qt::CheckState> m_fileExceptionHash;
116    QMultiHash<QString, QString> m_fileExceptionMulti;
117    QHash<QString, int> m_versionExceptionHash;
118    QHash<QString, int> m_directoryIconStateHash;
119    QHash<QString, int> m_directoryPathIdHash;
120    int m_toggleUpIndex, m_toggleDownIndex, m_nullFileNameId;
121 };
122
123 #endif /* _RESTORETREE_H_ */