diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
commit | e654398e46e37abf457b2b1122ab898d2c51c49f (patch) | |
tree | d39ee6440f3c3663c3ead84a2d4cc2d034667e96 /noatun/modules/htmlexport/htmlexport.h | |
parent | e4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff) | |
download | tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'noatun/modules/htmlexport/htmlexport.h')
-rw-r--r-- | noatun/modules/htmlexport/htmlexport.h | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/noatun/modules/htmlexport/htmlexport.h b/noatun/modules/htmlexport/htmlexport.h index a909a5cb..81047d3d 100644 --- a/noatun/modules/htmlexport/htmlexport.h +++ b/noatun/modules/htmlexport/htmlexport.h @@ -2,16 +2,16 @@ #ifndef _HTMLEXPORT_H_ #define _HTMLEXPORT_H_ -#include <qfile.h> -#include <qtextstream.h> -#include <qlabel.h> -#include <qhgroupbox.h> -#include <qlineedit.h> -#include <qcheckbox.h> -#include <qpushbutton.h> -#include <qlayout.h> -#include <qtooltip.h> -#include <qwhatsthis.h> +#include <tqfile.h> +#include <tqtextstream.h> +#include <tqlabel.h> +#include <tqhgroupbox.h> +#include <tqlineedit.h> +#include <tqcheckbox.h> +#include <tqpushbutton.h> +#include <tqlayout.h> +#include <tqtooltip.h> +#include <tqwhatsthis.h> #include <klocale.h> #include <kpopupmenu.h> @@ -31,7 +31,7 @@ class KAction; -class HTMLExport : public QObject, public Plugin +class HTMLExport : public TQObject, public Plugin { Q_OBJECT NOATUNPLUGIND @@ -41,8 +41,8 @@ public: private: - QString htmlEscape(const QString &source); - QString getColorByEntry(QString s); + TQString htmlEscape(const TQString &source); + TQString getColorByEntry(TQString s); KConfig *config; KAction *mAction; @@ -55,30 +55,30 @@ class Prefs : public CModule { Q_OBJECT public: - Prefs(QObject *parent); + Prefs(TQObject *parent); virtual void save(); virtual void reopen(); - QGroupBox* colorBox; + TQGroupBox* colorBox; KColorButton* headColorSelect; KColorButton* hoverColorSelect; KColorButton* bgColorSelect; KColorButton* txtColorSelect; - QLabel* bgColorLabel; - QLabel* txtColorLabel; - QLabel* headColorLabel; - QLabel* hoverColorLabel; + TQLabel* bgColorLabel; + TQLabel* txtColorLabel; + TQLabel* headColorLabel; + TQLabel* hoverColorLabel; - QCheckBox* linkEntries; - QCheckBox* numberEntries; + TQCheckBox* linkEntries; + TQCheckBox* numberEntries; - QGroupBox* bgPicBox; + TQGroupBox* bgPicBox; KURLRequester* bgPicPath; protected: - QGridLayout* bgcolorLabel; + TQGridLayout* bgcolorLabel; signals: |