summaryrefslogtreecommitdiffstats
path: root/deco/config/baghiraconfig.h.new
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2016-03-25 20:03:28 +0100
committerSlávek Banko <slavek.banko@axis.cz>2016-03-25 20:03:28 +0100
commit2ee99ab520931c5efe91123c85ba10064a45e95d (patch)
treea367666e410de28d0f258aed77b11e17cafb28e4 /deco/config/baghiraconfig.h.new
parentcfa36e1a95e82492c17225ff376911abb3688f62 (diff)
downloadtde-style-baghira-2ee99ab520931c5efe91123c85ba10064a45e95d.tar.gz
tde-style-baghira-2ee99ab520931c5efe91123c85ba10064a45e95d.zip
Initial TQt conversion
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'deco/config/baghiraconfig.h.new')
-rw-r--r--deco/config/baghiraconfig.h.new48
1 files changed, 24 insertions, 24 deletions
diff --git a/deco/config/baghiraconfig.h.new b/deco/config/baghiraconfig.h.new
index 0f75139..edffcc9 100644
--- a/deco/config/baghiraconfig.h.new
+++ b/deco/config/baghiraconfig.h.new
@@ -27,27 +27,27 @@
#ifndef BAGHIRACONFIG_H
#define BAGHIRACONFIG_H
-#include <qobject.h>
-#include <qdialog.h>
-#include <qvaluelist.h>
+#include <tqobject.h>
+#include <tqdialog.h>
+#include <tqvaluelist.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;
@@ -72,10 +72,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:
@@ -96,10 +96,10 @@ private:
|------------|---|
*/
- QVBoxLayout *buttonLayout;
- QVBoxLayout *pickerLayout;
- QGridLayout *layout;
- QLabel *indicator;
+ TQVBoxLayout *buttonLayout;
+ TQVBoxLayout *pickerLayout;
+ TQGridLayout *layout;
+ TQLabel *indicator;
void setPicker(ColorPicker *picker);
@@ -122,11 +122,11 @@ private slots:
class CustomDecoSettings;
-class BaghiraConfig : public QObject
+class BaghiraConfig : public TQObject
{
Q_OBJECT
public:
- BaghiraConfig(KConfig* config, QWidget* parent);
+ BaghiraConfig(KConfig* config, TQWidget* parent);
~BaghiraConfig();
signals:
@@ -138,10 +138,10 @@ public slots:
void defaults();
private:
-// QSettings *config_;
+// TQSettings *config_;
ConfigDialog *dialog_;
ButtonColors *buttonDialog_;
- typedef QValueList<CustomDecoSettings> DecoList;
+ typedef TQValueList<CustomDecoSettings> DecoList;
DecoList decoList;
};