1 /*
2    Bacula(R) - The Network Backup Solution
3 
4    Copyright (C) 2000-2020 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 /*
20  * Restore Wizard: Options page
21  *
22  * Written by Norbert Bizet, May MMXVII
23  *
24  */
25 #ifndef RESTOREOPTIONSWIZARDPAGE_H
26 #define RESTOREOPTIONSWIZARDPAGE_H
27 
28 #include <QWizardPage>
29 
30 class alist;
31 class QStandardItemModel;
32 class RESMON;
33 class task;
34 
35 namespace Ui {
36 class RestoreOptionsWizardPage;
37 }
38 
39 class RestoreOptionsWizardPage : public QWizardPage
40 {
41     Q_OBJECT
42 
43 public:
44     explicit RestoreOptionsWizardPage(QWidget *parent = 0);
45     ~RestoreOptionsWizardPage();
46     /* QWizardPage interface */
47     void initializePage();
48     bool validatePage();
49     /* local interface */
setRes(RESMON * r)50     inline void setRes(RESMON *r) {res=r;}
51 
52 private:
53     Ui::RestoreOptionsWizardPage *ui;
54     RESMON *res;
55 };
56 
57 #endif // RESTOREOPTIONSWIZARDPAGE_H
58