summaryrefslogtreecommitdiffstats
path: root/khexedit/searchbar.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
commit5f5ee2367157176ed223b86343eb0a9e4022e020 (patch)
tree6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /khexedit/searchbar.h
parent4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff)
downloadtdeutils-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/searchbar.h')
-rw-r--r--khexedit/searchbar.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/khexedit/searchbar.h b/khexedit/searchbar.h
index c11f652..1434ec1 100644
--- a/khexedit/searchbar.h
+++ b/khexedit/searchbar.h
@@ -20,7 +20,7 @@
#ifndef _SEARCHBAR_H_
#define _SEARCHBAR_H_
-#include <qframe.h>
+#include <tqframe.h>
#include "hexbuffer.h"
@@ -35,19 +35,19 @@ class CSearchBar : public QFrame
Q_OBJECT
public:
- CSearchBar( QWidget *parent=0, const char *name=0, WFlags f=0 );
- virtual bool eventFilter( QObject *o, QEvent *e );
+ CSearchBar( TQWidget *parent=0, const char *name=0, WFlags f=0 );
+ virtual bool eventFilter( TQObject *o, TQEvent *e );
public slots:
void cursorMoved();
protected:
- virtual void showEvent( QShowEvent * );
+ virtual void showEvent( TQShowEvent * );
private slots:
void hideWidget();
void selectorChanged( int index );
- void textChanged( const QString &text );
+ void textChanged( const TQString &text );
void start();
signals:
@@ -55,15 +55,15 @@ class CSearchBar : public QFrame
void findData( SSearchControl &sc, uint mode, bool navigator );
private:
- QPushButton *mCloseButton;
- QPushButton *mFindButton;
- QComboBox *mTypeCombo;
- QLineEdit *mInputEdit;
- QCheckBox *mBackwards;
- QCheckBox *mIgnoreCase;
+ TQPushButton *mCloseButton;
+ TQPushButton *mFindButton;
+ TQComboBox *mTypeCombo;
+ TQLineEdit *mInputEdit;
+ TQCheckBox *mBackwards;
+ TQCheckBox *mIgnoreCase;
- QString mFindString[5];
- QByteArray mFindData;
+ TQString mFindString[5];
+ TQByteArray mFindData;
CHexValidator *mValidator;
uint mSearchMode;
};