summaryrefslogtreecommitdiffstats
path: root/kate/app/kategrepdialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kate/app/kategrepdialog.h
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz
tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kate/app/kategrepdialog.h')
-rw-r--r--kate/app/kategrepdialog.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/kate/app/kategrepdialog.h b/kate/app/kategrepdialog.h
index 5ed3b2b69..23ba00540 100644
--- a/kate/app/kategrepdialog.h
+++ b/kate/app/kategrepdialog.h
@@ -22,7 +22,7 @@
#define _GREPDIALOG_H_
#include <kdialog.h>
-#include <qstringlist.h>
+#include <tqstringlist.h>
class QLineEdit;
class KComboBox;
@@ -40,25 +40,25 @@ class GrepTool : public QWidget
Q_OBJECT
public:
- GrepTool(QWidget *parent, const char *name=0);
+ GrepTool(TQWidget *parent, const char *name=0);
~GrepTool();
// only updates if the dir you give to it differs from the last one given to it !
- void updateDirName(const QString &);
+ void updateDirName(const TQString &);
- void setDirName(const QString &);
+ void setDirName(const TQString &);
signals:
- void itemSelected(const QString &abs_filename, int line);
+ void itemSelected(const TQString &abs_filename, int line);
public slots:
- void slotSearchFor(const QString &pattern);
+ void slotSearchFor(const TQString &pattern);
protected:
- bool eventFilter( QObject *, QEvent * );
- void focusInEvent ( QFocusEvent * );
- void showEvent( QShowEvent * );
+ bool eventFilter( TQObject *, TQEvent * );
+ void focusInEvent ( TQFocusEvent * );
+ void showEvent( TQShowEvent * );
bool m_fixFocus;
private slots:
@@ -66,31 +66,31 @@ private slots:
void childExited();
void receivedOutput(KProcess *proc, char *buffer, int buflen);
void receivedErrOutput(KProcess *proc, char *buffer, int buflen);
- void itemSelected(const QString&);
+ void itemSelected(const TQString&);
void slotSearch();
void slotCancel();
void slotClear();
- void patternTextChanged( const QString &);
+ void patternTextChanged( const TQString &);
private:
void processOutput();
void finish();
- QLineEdit *leTemplate;
+ TQLineEdit *leTemplate;
KComboBox *cmbFiles, *cmbPattern;
KURLRequester *cmbDir;
- QCheckBox *cbRecursive;
- QCheckBox *cbCasesensitive, *cbRegex;
- QListBox *lbResult;
+ TQCheckBox *cbRecursive;
+ TQCheckBox *cbCasesensitive, *cbRegex;
+ TQListBox *lbResult;
KPushButton *btnSearch, *btnClear;
KProcess *childproc;
- QString buf;
- QString errbuf;
+ TQString buf;
+ TQString errbuf;
KConfig* config;
- QStringList lastSearchItems;
- QStringList lastSearchPaths;
- QStringList lastSearchFiles;
- QString m_lastUpdatedDir;
- QString m_workingDir;
+ TQStringList lastSearchItems;
+ TQStringList lastSearchPaths;
+ TQStringList lastSearchFiles;
+ TQString m_lastUpdatedDir;
+ TQString m_workingDir;
};