You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
603 B
40 lines
603 B
|
|
|
|
#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
|
|
|