summaryrefslogtreecommitdiffstats
path: root/src/configpagebase.h
blob: 23aad2bd43b81240615816e8e5d54b7e6e00bbbc (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
  TQ_OBJECT
public:
    /**
     * Constructor
     */
    ConfigPageBase( TQWidget *tqparent=0, const char *name=0 );

    /**
     * Destructor
     */
    virtual ~ConfigPageBase();

public slots:
    virtual void resetDefaults();
    virtual void saveSettings();
    void cfgChanged();

signals:
    void configChanged();

};

#endif // CONFIGPAGEBASE_H