]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/tray-monitor/restoreoptionswizardpage.h
Add restore wizard to the tray monitor.
[bacula/bacula] / bacula / src / qt-console / tray-monitor / restoreoptionswizardpage.h
1 /*
2    Bacula(R) - The Network Backup Solution
3
4    Copyright (C) 2000-2017 Kern Sibbald
5
6    The original author of Bacula is Kern Sibbald, with contributions
7    from many others, a complete list can be found in the file AUTHORS.
8
9    You may use this file and others of this release according to the
10    license defined in the LICENSE file, which includes the Affero General
11    Public License, v3.0 ("AGPLv3") and some additional permissions and
12    terms pursuant to its AGPLv3 Section 7.
13
14    This notice must be preserved when any source code is
15    conveyed and/or propagated.
16
17    Bacula(R) is a registered trademark of Kern Sibbald.
18 */
19 #ifndef RESTOREOPTIONSWIZARDPAGE_H
20 #define RESTOREOPTIONSWIZARDPAGE_H
21
22 #include <QWizardPage>
23
24 class alist;
25 class QStandardItemModel;
26 class RESMON;
27 class task;
28
29 namespace Ui {
30 class RestoreOptionsWizardPage;
31 }
32
33 class RestoreOptionsWizardPage : public QWizardPage
34 {
35     Q_OBJECT
36
37 public:
38     explicit RestoreOptionsWizardPage(QWidget *parent = 0);
39     ~RestoreOptionsWizardPage();
40
41     void setClients(alist *lst);
42     void setModel(QStandardItemModel *model);
43     void setResmon(RESMON *res);
44
45     bool validatePage();
46
47 public slots:
48     void fill_defaults(task *t);
49
50 private:
51     Ui::RestoreOptionsWizardPage *ui;
52     QStandardItemModel *dest_model;
53     RESMON *m_res;
54 };
55
56 #endif // RESTOREOPTIONSWIZARDPAGE_H