]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/restore/restoretreerun.h
This is an example of where I would like to go with offering the user the ability
[bacula/bacula] / bacula / src / qt-console / restore / restoretreerun.h
1
2 #ifndef _RESTORETREERUN_H_
3 #define _RESTORETREERUN_H_
4
5 #include <QtGui>
6 #include "ui_restoretreerun.h"
7 #include "console.h"
8
9 class restoreTreeRunPage : public Pages, public Ui::restoreTreeRunForm
10 {
11    Q_OBJECT 
12
13 public:
14    restoreTreeRunPage(QString &, QString &, QList<int> &, QTreeWidgetItem*);
15
16 public slots:
17    void okButtonPushed();
18    void cancelButtonPushed();
19
20 private:
21    void fill();
22    QString m_tempTable;
23    QString m_client;
24    QList<int> m_jobList;
25 };
26
27 #endif /* _RESTORETREERUN_H_ */