diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-07-27 16:57:53 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-07-27 18:48:46 +0200 |
commit | 7c2bc4b5ce4fc1a72868aa949e9ec49fbe2e7931 (patch) | |
tree | 4655c7263ca5c64d23d10167cb459dd9cb253815 /src/likeback_private.h | |
parent | 88ea2b6cd4382627fb6efca9cc54825aee881d1e (diff) | |
download | tork-7c2bc4b5ce4fc1a72868aa949e9ec49fbe2e7931.tar.gz tork-7c2bc4b5ce4fc1a72868aa949e9ec49fbe2e7931.zip |
Initial TQt conversion
Diffstat (limited to 'src/likeback_private.h')
-rw-r--r-- | src/likeback_private.h | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/src/likeback_private.h b/src/likeback_private.h index 37ed60f..d7be942 100644 --- a/src/likeback_private.h +++ b/src/likeback_private.h @@ -22,14 +22,14 @@ #define LIKEBACK_PRIVATE_H #include <kdialogbase.h> -#include <qtimer.h> +#include <ntqtimer.h> #include "likeback.h" -class QToolButton; -class QTextEdit; -class QCheckBox; -class QButtonGroup; +class TQToolButton; +class TQTextEdit; +class TQCheckBox; +class TQButtonGroup; class Kaction; class LikeBackPrivate @@ -41,20 +41,20 @@ class LikeBackPrivate KConfig *config; const KAboutData *aboutData; LikeBack::Button buttons; - QString hostName; - QString remotePath; - Q_UINT16 hostPort; - QStringList acceptedLocales; - QString acceptedLanguagesMessage; + TQString hostName; + TQString remotePath; + TQ_UINT16 hostPort; + TQStringList acceptedLocales; + TQString acceptedLanguagesMessage; LikeBack::WindowListing windowListing; bool showBarByDefault; bool showBar; int disabledCount; - QString fetchedEmail; + TQString fetchedEmail; KAction *action; }; -class LikeBackBar : public QWidget +class LikeBackBar : public TQWidget { Q_OBJECT public: @@ -71,27 +71,27 @@ class LikeBackBar : public QWidget void clickedFeature(); private: LikeBack *m_likeBack; - QTimer m_timer; - QToolButton *m_likeButton; - QToolButton *m_dislikeButton; - QToolButton *m_bugButton; - QToolButton *m_featureButton; + TQTimer m_timer; + TQToolButton *m_likeButton; + TQToolButton *m_dislikeButton; + TQToolButton *m_bugButton; + TQToolButton *m_featureButton; }; class LikeBackDialog : public KDialogBase { Q_OBJECT public: - LikeBackDialog(LikeBack::Button reason, const QString &initialComment, const QString &windowPath, const QString &context, LikeBack *likeBack); + LikeBackDialog(LikeBack::Button reason, const TQString &initialComment, const TQString &windowPath, const TQString &context, LikeBack *likeBack); ~LikeBackDialog(); private: LikeBack *m_likeBack; - QString m_windowPath; - QString m_context; - QButtonGroup *m_group; - QTextEdit *m_comment; - QCheckBox *m_showButtons; - QString introductionText(); + TQString m_windowPath; + TQString m_context; + TQButtonGroup *m_group; + TQTextEdit *m_comment; + TQCheckBox *m_showButtons; + TQString introductionText(); private slots: void polish(); void slotDefault(); |