blob: 6455af3551d8290282f668000caf490973ba0bc7 (
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
39
|
#ifndef CONFIGPAGEBASE_H
#define CONFIGPAGEBASE_H
#include <tqwidget.h>
/**
* @short The base for all pages of the config dialog
* @author Daniel Faust <hessijames@gmail.com>
* @version 0.3
*/
class ConfigPageBase : public TQWidget
{
Q_OBJECT
public:
/**
* Constructor
*/
ConfigPageBase( TQWidget *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
|