blob: 802bb2dffee0944661d916231e553c279c898d0e (
plain)
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
|
#ifndef CONFIGPAGEBASE_H
#define CONFIGPAGEBASE_H
#include <qwidget.h>
/**
* @short The base for all pages of the config dialog
* @author Daniel Faust <[email protected]>
* @version 0.3
*/
class ConfigPageBase : public QWidget
{
Q_OBJECT
public:
/**
* Constructor
*/
ConfigPageBase( QWidget *parent=0, const char *name=0 );
/**
* Destructor
*/
virtual ~ConfigPageBase();
public slots:
virtual void resetDefaults();
virtual void saveSettings();
void cfgChanged();
signals:
void configChanged();
};
#endif // CONFIGPAGEBASE_H
|