diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kfax/options.h | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kfax/options.h')
-rw-r--r-- | kfax/options.h | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/kfax/options.h b/kfax/options.h index fa9c61c9..693616e4 100644 --- a/kfax/options.h +++ b/kfax/options.h @@ -27,17 +27,17 @@ #ifndef _OPTIONS_DIALOG_H_ #define _OPTIONS_DIALOG_H_ -#include <qapplication.h> -#include <qfiledialog.h> +#include <tqapplication.h> +#include <tqfiledialog.h> #include <kdialogbase.h> -#include <qstring.h> +#include <tqstring.h> -class QGroupBox; -class QLabel; -class QButtonGroup; -class QRadioButton; -class QCheckBox; -class QRadioButton; +class TQGroupBox; +class TQLabel; +class TQButtonGroup; +class TQRadioButton; +class TQCheckBox; +class TQRadioButton; struct optionsinfo { @@ -60,7 +60,7 @@ class OptionsDialog : public KDialogBase { Q_OBJECT public: - OptionsDialog( QWidget *parent = 0, const char *name = 0); + OptionsDialog( TQWidget *parent = 0, const char *name = 0); struct optionsinfo* getInfo(); void setWidgets(struct optionsinfo *oi); @@ -77,30 +77,30 @@ public slots: private: QGroupBox *bg; - QLabel *reslabel; - QButtonGroup *resgroup; - QRadioButton *fine; - QRadioButton *resauto; - QRadioButton *normal; + TQLabel *reslabel; + TQButtonGroup *resgroup; + TQRadioButton *fine; + TQRadioButton *resauto; + TQRadioButton *normal; QLabel *displaylabel; - QButtonGroup *displaygroup; - QCheckBox *landscape; - QCheckBox *geomauto; - QCheckBox *flip; - QCheckBox *invert; - - QButtonGroup *lsbgroup; - QLabel *lsblabel; - QCheckBox *lsb; - QButtonGroup *rawgroup; - QRadioButton *g3; - QRadioButton *g32d; - QRadioButton *g4; - - QLabel *rawlabel; - - QLabel *widthlabel; - QLabel *heightlabel; + TQButtonGroup *displaygroup; + TQCheckBox *landscape; + TQCheckBox *geomauto; + TQCheckBox *flip; + TQCheckBox *invert; + + TQButtonGroup *lsbgroup; + TQLabel *lsblabel; + TQCheckBox *lsb; + TQButtonGroup *rawgroup; + TQRadioButton *g3; + TQRadioButton *g32d; + TQRadioButton *g4; + + TQLabel *rawlabel; + + TQLabel *widthlabel; + TQLabel *heightlabel; KIntNumInput *widthedit; KIntNumInput *heightedit; |