]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/restore/restoretree.h
Changes to fix getting restoretree or "Version Browser" to work with
[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 plus additions
14    that are listed 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: restore.h 4945 2007-05-31 01:24:28Z bartleyd2 $
33  *
34  *  Kern Sibbald, February 2007
35  */
36
37 #include <QtGui>
38 #include "pages.h"
39 #include "ui_restoretree.h"
40
41 /*  
42  * A restore tree to view files in the catalog
43  */
44 class restoreTree : public Pages, public Ui::restoreTreeForm
45 {
46    Q_OBJECT 
47
48 public:
49    restoreTree();
50    ~restoreTree();
51    virtual void currentStackItem();
52
53 private slots:
54    void refreshButtonPushed();
55    void jobComboChanged(int);
56    void directoryItemChanged(QTreeWidgetItem *, QTreeWidgetItem *);
57    void fileItemChanged(QTableWidgetItem *,QTableWidgetItem *);
58    void directoryItemExpanded(QTreeWidgetItem *);
59
60 private:
61    void populateDirectoryTree();
62    void parseDirectory(QString &dir_in);
63    bool addDirectory(QString &, QString &);
64    void setupPage();
65    void writeSettings();
66    void readSettings();
67    bool m_populated;
68    QRegExp m_winRegExpDrive;
69    QRegExp m_winRegExpPath;
70    QRegExp m_slashregex;
71    bool m_slashTrap;
72    //QString m_jobCondition;
73    QHash<QString, QTreeWidgetItem *> m_dirPaths;
74    QString m_condition;
75    int m_resultCount;
76    int m_debugCnt;
77    bool m_debugTrap;
78 };
79
80 #endif /* _RESTORETREE_H_ */