diff options
Diffstat (limited to 'src/sigtool.h')
-rw-r--r-- | src/sigtool.h | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/src/sigtool.h b/src/sigtool.h index 4b73b6b..bb5da38 100644 --- a/src/sigtool.h +++ b/src/sigtool.h @@ -17,12 +17,12 @@ class KPrinter; class KToggleAction; class KURL; -class QLineEdit; -class QComboBox; -class QCheckBox; -class QListBox; -class QPushButton; -class QLabel; +class TQLineEdit; +class TQComboBox; +class TQCheckBox; +class TQListBox; +class TQPushButton; +class TQLabel; class KProcess; class KConfig; class KURLRequester; @@ -36,14 +36,14 @@ class KURLRequester; * @author $AUTHOR <$EMAIL> * @version $APP_VERSION */ -class Sigtool : public QWidget +class Sigtool : public TQWidget { Q_OBJECT public: /** * Default Constructor */ - Sigtool(QWidget *parent, const char *name=0); + Sigtool(TQWidget *parent, const char *name=0); /** * Default Destructor @@ -53,14 +53,14 @@ public: /** * Use this method to load whatever file/URL you have */ - void setDirName(QString); + void setDirName(TQString); protected: /** - * Overridden virtuals for Qt drag 'n drop (XDND) + * Overridden virtuals for TQt drag 'n drop (XDND) */ - /*virtual void dragEnterEvent(QDragEnterEvent *event); - virtual void dropEvent(QDropEvent *event);*/ + /*virtual void dragEnterEvent(TQDragEnterEvent *event); + virtual void dropEvent(TQDropEvent *event);*/ protected: /** @@ -90,8 +90,8 @@ private slots: void optionsPreferences(); void newToolbarConfig(); */ - //void changeStatusbar(const QString& text); - //void changeCaption(const QString& text); + //void changeStatusbar(const TQString& text); + //void changeCaption(const TQString& text); private: void setupAccel(); @@ -106,7 +106,7 @@ private: signals: - void itemSelected(QString abs_filename, int line); + void itemSelected(TQString abs_filename, int line); public slots: @@ -118,20 +118,20 @@ private slots: void dobuttons(); private: - QLineEdit *template_edit; - QComboBox *files_combo, *pattern_combo/*, *dir_combo*/; + TQLineEdit *template_edit; + TQComboBox *files_combo, *pattern_combo/*, *dir_combo*/; KURLRequester *dir_combo; - QCheckBox *recursive_box; - QListBox *resultbox; - QPushButton *search_button, *manual_button; - QLabel *status_label, *matches_label; + TQCheckBox *recursive_box; + TQListBox *resultbox; + TQPushButton *search_button, *manual_button; + TQLabel *status_label, *matches_label; KProcess *childproc; - QString buf; + TQString buf; KConfig *config; - QStringList lastSearchItems; - QStringList lastSearchPaths; - QComboBox *check_combo; - QLabel *notes_label; + TQStringList lastSearchItems; + TQStringList lastSearchPaths; + TQComboBox *check_combo; + TQLabel *notes_label; }; #endif // _Sigtool_H_ |