summaryrefslogtreecommitdiffstats
path: root/src/configpagebase.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-03-01 19:09:31 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-03-01 19:09:31 +0000
commitf2cfda2a54780868dfe0af7bd652fcd4906547da (patch)
treec6ac23545528f5701818424f2af5f79ce3665e6c /src/configpagebase.h
downloadsoundkonverter-f2cfda2a54780868dfe0af7bd652fcd4906547da.tar.gz
soundkonverter-f2cfda2a54780868dfe0af7bd652fcd4906547da.zip
Added KDE3 version of SoundKonverter
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/soundkonverter@1097614 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/configpagebase.h')
-rwxr-xr-xsrc/configpagebase.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/configpagebase.h b/src/configpagebase.h
new file mode 100755
index 0000000..802bb2d
--- /dev/null
+++ b/src/configpagebase.h
@@ -0,0 +1,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
+