-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbackuppage.h
More file actions
45 lines (32 loc) · 772 Bytes
/
backuppage.h
File metadata and controls
45 lines (32 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright Arnt Gulbrandsen, arnt@gulbrandsen.priv.no.
#ifndef BACKUPPAGE_H
#define BACKUPPAGE_H
#include <QWizardPage>
#include "backupwizard.h"
#include <QButtonGroup>
#include <QLineEdit>
#include <QLabel>
#include <QPushButton>
#include <QCheckBox>
#include <QRadioButton>
class BackupPage: public QWizardPage
{
Q_OBJECT
public:
BackupPage( BackupWizard * parent );
bool isComplete () const override;
int nextId() const override;
signals:
void completeChanged();
private slots:
void browseBaseDirectory();
void checkDirectories();
private:
QButtonGroup * behaviour;
QLineEdit * baseDirectory;
QCheckBox * crossMountPoints;
QRadioButton * everything;
QRadioButton * something;
bool complete;
};
#endif