summaryrefslogtreecommitdiffstats
path: root/buildtools/autotools/fileselectorwidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools/autotools/fileselectorwidget.h')
-rw-r--r--buildtools/autotools/fileselectorwidget.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/buildtools/autotools/fileselectorwidget.h b/buildtools/autotools/fileselectorwidget.h
index 7a981194..636cec87 100644
--- a/buildtools/autotools/fileselectorwidget.h
+++ b/buildtools/autotools/fileselectorwidget.h
@@ -12,16 +12,16 @@
#ifndef _FILESELECTORWIDGET_H_
#define _FILESELECTORWIDGET_H_
-#include <qlayout.h>
-#include <qpushbutton.h>
-#include <qhbox.h>
-#include <qlabel.h>
-#include <qstrlist.h>
-#include <qtooltip.h>
+#include <tqlayout.h>
+#include <tqpushbutton.h>
+#include <tqhbox.h>
+#include <tqlabel.h>
+#include <tqstrlist.h>
+#include <tqtooltip.h>
#include <klistview.h>
-#include <qvbox.h>
-#include <qwidget.h>
+#include <tqvbox.h>
+#include <tqwidget.h>
#include <kfile.h>
#include <kurlcombobox.h>
#include <kurlcompletion.h>
@@ -42,10 +42,10 @@ class KDnDDirOperator : public KDirOperator
Q_OBJECT
public:
- KDnDDirOperator ( const KURL& urlName = KURL(), QWidget *parent = 0, const char* name = 0 );
+ KDnDDirOperator ( const KURL& urlName = KURL(), TQWidget *parent = 0, const char* name = 0 );
protected:
- virtual KFileView* createView( QWidget* parent, KFile::FileView view );
+ virtual KFileView* createView( TQWidget* parent, KFile::FileView view );
};
class FileSelectorWidget : public QWidget
@@ -53,7 +53,7 @@ class FileSelectorWidget : public QWidget
Q_OBJECT
public:
- FileSelectorWidget( AutoProjectPart* part, KFile::Mode, QWidget* parent = 0, const char* name = 0 );
+ FileSelectorWidget( AutoProjectPart* part, KFile::Mode, TQWidget* parent = 0, const char* name = 0 );
~FileSelectorWidget();
KDnDDirOperator * dirOperator()
@@ -62,32 +62,32 @@ public:
}
public slots:
- void slotFilterChanged( const QString& );
+ void slotFilterChanged( const TQString& );
void setDir( KURL );
- void setDir( const QString& );
+ void setDir( const TQString& );
private slots:
void cmbPathActivated( const KURL& u );
- void cmbPathReturnPressed( const QString& u );
+ void cmbPathReturnPressed( const TQString& u );
void dirUrlEntered( const KURL& u );
void dirFinishedLoading();
- void filterReturnPressed( const QString& nf );
+ void filterReturnPressed( const TQString& nf );
protected:
- void focusInEvent( QFocusEvent* );
- void dragEnterEvent ( QDragEnterEvent* ev );
- void dropEvent ( QDropEvent* ev );
+ void focusInEvent( TQFocusEvent* );
+ void dragEnterEvent ( TQDragEnterEvent* ev );
+ void dropEvent ( TQDropEvent* ev );
private:
KURLComboBox *cmbPath;
KHistoryCombo * filter;
- QLabel* filterIcon;
+ TQLabel* filterIcon;
KDnDDirOperator * dir;
- QPushButton *home, *up, *back, *forward;
+ TQPushButton *home, *up, *back, *forward;
AutoProjectPart* m_part;
signals:
- void dropped ( const QString& );
+ void dropped ( const TQString& );
};