summaryrefslogtreecommitdiffstats
path: root/deco/config/baghiraconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'deco/config/baghiraconfig.h')
-rw-r--r--deco/config/baghiraconfig.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/deco/config/baghiraconfig.h b/deco/config/baghiraconfig.h
index 07b04a5..af16605 100644
--- a/deco/config/baghiraconfig.h
+++ b/deco/config/baghiraconfig.h
@@ -27,26 +27,26 @@
#ifndef BAGHIRACONFIG_H
#define BAGHIRACONFIG_H
-#include <qobject.h>
-#include <qdialog.h>
+#include <tqobject.h>
+#include <tqdialog.h>
#include "colorpicker.h"
#include "aquariusbutton.h"
class KConfig;
-class QSettings;
+class TQSettings;
class ConfigDialog;
-class QLabel;
-class QVBoxLayout;
-class QHBoxLayout;
-class QGridLayout;
-class QPushButton;
-class QComboBox;
+class TQLabel;
+class TQVBoxLayout;
+class TQHBoxLayout;
+class TQGridLayout;
+class TQPushButton;
+class TQComboBox;
-class ButtonColors : public QDialog
+class ButtonColors : public TQDialog
{
Q_OBJECT
public:
- ButtonColors(QWidget* parent, const char * name = 0);
+ ButtonColors(TQWidget* parent, const char * name = 0);
~ButtonColors();
ColorPicker *inactiveColor;
ColorPicker *closeColor;
@@ -71,10 +71,10 @@ public:
AquariusButton *behindButton;
AquariusButton *shadeButton;
- QHBoxLayout *twoButts;
- QPushButton *cancel;
- QPushButton *ok;
- QComboBox *presets_;
+ TQHBoxLayout *twoButts;
+ TQPushButton *cancel;
+ TQPushButton *ok;
+ TQComboBox *presets_;
bool save;
public slots:
@@ -95,10 +95,10 @@ private:
|------------|---|
*/
- QVBoxLayout *buttonLayout;
- QVBoxLayout *pickerLayout;
- QGridLayout *layout;
- QLabel *indicator;
+ TQVBoxLayout *buttonLayout;
+ TQVBoxLayout *pickerLayout;
+ TQGridLayout *layout;
+ TQLabel *indicator;
void setPicker(ColorPicker *picker);
@@ -120,11 +120,11 @@ private slots:
};
-class BaghiraConfig : public QObject
+class BaghiraConfig : public TQObject
{
Q_OBJECT
public:
- BaghiraConfig(KConfig* config, QWidget* parent);
+ BaghiraConfig(KConfig* config, TQWidget* parent);
~BaghiraConfig();
signals:
@@ -136,7 +136,7 @@ public slots:
void defaults();
private:
-// QSettings *config_;
+// TQSettings *config_;
ConfigDialog *dialog_;
ButtonColors *buttonDialog_;
};