]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/restore/restore.h
Implement .bvfs_versions command to display all file versions for a client
[bacula/bacula] / bacula / src / qt-console / restore / restore.h
1 #ifndef _RESTORE_H_
2 #define _RESTORE_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 three of the GNU Affero 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 Affero 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 Kern Sibbald.
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_brestore.h"
40 #include "ui_restore.h"
41 #include "ui_prerestore.h"
42
43 enum {
44    R_NONE,
45    R_JOBIDLIST,
46    R_JOBDATETIME
47 };
48
49 /*
50  * The pre-restore dialog selects the Job/Client to be restored
51  * It really could use considerable enhancement.
52  */
53 class prerestorePage : public Pages, public Ui::prerestoreForm
54 {
55    Q_OBJECT 
56
57 public:
58    prerestorePage();
59    prerestorePage(QString &data, unsigned int);
60
61 private slots:
62    void okButtonPushed();
63    void cancelButtonPushed();
64    void job_name_change(int index);
65    void recentChanged(int);
66    void jobRadioClicked(bool);
67    void jobidsRadioClicked(bool);
68    void jobIdEditFinished();
69
70 private:
71    int m_conn;
72    int jobdefsFromJob(QStringList &, QString &);
73    void buildPage();
74    bool checkJobIdList();
75    QString m_dataIn;
76    unsigned int m_dataInType;
77 };
78
79 /*  
80  * The restore dialog is brought up once we are in the Bacula
81  * restore tree routines.  It handles putting up a GUI tree
82  * representation of the files to be restored.
83  */
84 class restorePage : public Pages, public Ui::restoreForm
85 {
86    Q_OBJECT 
87
88 public:
89    restorePage(int conn);
90    ~restorePage();
91    void fillDirectory();
92    char *get_cwd();
93    bool cwd(const char *);
94
95 private slots:
96    void okButtonPushed();
97    void cancelButtonPushed();
98    void fileDoubleClicked(QTreeWidgetItem *item, int column);
99    void directoryItemChanged(QTreeWidgetItem *, QTreeWidgetItem *);
100    void upButtonPushed();
101    void unmarkButtonPushed();
102    void markButtonPushed();
103    void addDirectory(QString &);
104
105 private:
106    int m_conn;
107    void writeSettings();
108    void readSettings();
109    QString m_cwd;
110    QHash<QString, QTreeWidgetItem *> m_dirPaths;
111    QHash<QTreeWidgetItem *,QString> m_dirTreeItems;
112    QRegExp m_rx;
113    QString m_splitText;
114 };
115
116
117 class bRestore : public Pages, public Ui::bRestoreForm
118 {
119    Q_OBJECT 
120
121 public:
122    bRestore();
123    ~bRestore();
124    void PgSeltreeWidgetClicked();
125
126 public slots:
127    void setClient();
128    void setJob();
129
130
131 private:
132    QString m_client;
133    void setupPage();
134    bool m_populated;
135    void displayFiles(QString path);
136    void displayFiles(uint64_t pathid);
137 };
138
139 #endif /* _RESTORE_H_ */