diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
commit | 5f5ee2367157176ed223b86343eb0a9e4022e020 (patch) | |
tree | 6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /khexedit/exportdialog.h | |
parent | 4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff) | |
download | tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khexedit/exportdialog.h')
-rw-r--r-- | khexedit/exportdialog.h | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/khexedit/exportdialog.h b/khexedit/exportdialog.h index 6d89ac3..91716f0 100644 --- a/khexedit/exportdialog.h +++ b/khexedit/exportdialog.h @@ -57,46 +57,46 @@ class CExportDialog : public KDialogBase option_max }; - CExportDialog( QWidget *parent = 0, char *name = 0, bool modal = false ); + CExportDialog( TQWidget *parent = 0, char *name = 0, bool modal = false ); ~CExportDialog( void ); void writeConfiguration( void ); protected: - void showEvent( QShowEvent *e ); + void showEvent( TQShowEvent *e ); protected slots: virtual void slotOk( void ); - void destinationChanged(const QString &); + void destinationChanged(const TQString &); private: struct SDestinationWidgets { - QComboBox *formatCombo; - QLabel *fileExtraLabel; - QLineEdit *fileInput; - QLabel *fromLabel; - QLabel *toLabel; - QButtonGroup *rangeBox; - QLineEdit *fromInput; - QLineEdit *toInput; + TQComboBox *formatCombo; + TQLabel *fileExtraLabel; + TQLineEdit *fileInput; + TQLabel *fromLabel; + TQLabel *toLabel; + TQButtonGroup *rangeBox; + TQLineEdit *fromInput; + TQLineEdit *toInput; }; struct SHtmlWidgets { - QSpinBox *lineSpin; - QLineEdit *prefixInput; - QComboBox *topCombo; - QComboBox *bottomCombo; - QCheckBox *navigatorCheck; - QCheckBox *symlinkCheck; - QCheckBox *bwCheck; + TQSpinBox *lineSpin; + TQLineEdit *prefixInput; + TQComboBox *topCombo; + TQComboBox *bottomCombo; + TQCheckBox *navigatorCheck; + TQCheckBox *symlinkCheck; + TQCheckBox *bwCheck; }; struct SArrayWidgets { - QLineEdit *nameInput; - QComboBox *typeCombo; - QSpinBox *lineSizeSpin; - QCheckBox *hexadecimalCheck; + TQLineEdit *nameInput; + TQComboBox *typeCombo; + TQSpinBox *lineSizeSpin; + TQCheckBox *hexadecimalCheck; }; private slots: @@ -113,7 +113,7 @@ class CExportDialog : public KDialogBase void makeCArrayOption( void ); void readConfiguration( void ); bool collectRange( uint &mode, uint &start, uint &stop ); - bool verifyPackage( const QString &path ); + bool verifyPackage( const TQString &path ); signals: void exportText( const SExportText &e ); @@ -121,14 +121,14 @@ class CExportDialog : public KDialogBase void exportCArray( const SExportCArray &e ); private: - QFrame *mFrame[ page_max ]; - QWidgetStack *mOptionStack; + TQFrame *mFrame[ page_max ]; + TQWidgetStack *mOptionStack; SDestinationWidgets mDestination; SHtmlWidgets mHtml; SArrayWidgets mArray; KSimpleConfig *mConfig; - QString mWorkDir; + TQString mWorkDir; }; |