MagicSmoke  $VERSION$
backupdlg.h
Go to the documentation of this file.
1 //
2 // C++ Interface: overview
3 //
4 // Description:
5 //
6 //
7 // Author: Konrad Rosenbaum <konrad@silmor.de>, (C) 2007-2011
8 //
9 // Copyright: See README/COPYING.GPL files that come with this distribution
10 //
11 //
12 
13 #ifndef MAGICSMOKE_BACKUPDLG_H
14 #define MAGICSMOKE_BACKUPDLG_H
15 
16 #include <QDialog>
17 
18 #include "tabwin.h"
19 
20 class QCheckBox;
21 class QLineEdit;
22 class QSpinBox;
23 
25 class MBackupDialog:public QDialog
26 {
27  Q_OBJECT
28  public:
29  MBackupDialog(QWidget*,QString);
30 
31  private slots:
32  void getpath();
33  void save();
34  private:
35  QLineEdit*lpath;
36  QSpinBox*interv,*gener;
37  QCheckBox*autob;
38  QString profilekey;
39 };
40 
41 #endif
MBackupDialog(QWidget *, QString)
Definition: backupdlg.cpp:33
Helper class for Backup settings.
Definition: backupdlg.h:25