diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
commit | d6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch) | |
tree | d109539636691d7b03036ca1c0ed29dbae6577cf /parts/fileselector/fileselector_widget.h | |
parent | 3331a47a9cad24795c7440ee8107143ce444ef34 (diff) | |
download | tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'parts/fileselector/fileselector_widget.h')
-rw-r--r-- | parts/fileselector/fileselector_widget.h | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/parts/fileselector/fileselector_widget.h b/parts/fileselector/fileselector_widget.h index d39fd25d..4811c398 100644 --- a/parts/fileselector/fileselector_widget.h +++ b/parts/fileselector/fileselector_widget.h @@ -22,11 +22,11 @@ #ifndef FILESELECTOR_WIDGET_H #define FILESELECTOR_WIDGET_H -#include <qwidget.h> +#include <tqwidget.h> #include <kfile.h> #include <kurl.h> #include <ktoolbar.h> -#include <qframe.h> +#include <tqframe.h> #include <kdiroperator.h> class KDevMainWindow; @@ -61,7 +61,7 @@ class KDevFileSelectorToolBar: public KToolBar { Q_OBJECT public: - KDevFileSelectorToolBar(QWidget *parent); + KDevFileSelectorToolBar(TQWidget *parent); virtual ~KDevFileSelectorToolBar(); virtual void setMovingEnabled( bool b ); @@ -71,7 +71,7 @@ class KDevFileSelectorToolBarParent: public QFrame { Q_OBJECT public: - KDevFileSelectorToolBarParent(QWidget *parent); + KDevFileSelectorToolBarParent(TQWidget *parent); ~KDevFileSelectorToolBarParent(); void setToolBar(KDevFileSelectorToolBar *tb); @@ -79,20 +79,20 @@ private: KDevFileSelectorToolBar *m_tb; protected: - virtual void resizeEvent ( QResizeEvent * ); + virtual void resizeEvent ( TQResizeEvent * ); }; class KDevDirOperator: public KDirOperator { Q_OBJECT public: - KDevDirOperator(FileSelectorPart *part, const KURL &urlName=KURL(), QWidget *parent=0, const char *name=0) + KDevDirOperator(FileSelectorPart *part, const KURL &urlName=KURL(), TQWidget *parent=0, const char *name=0) :KDirOperator(urlName, parent, name), m_part(part) { } protected slots: - virtual void activatedMenu (const KFileItem *fi, const QPoint &pos); + virtual void activatedMenu (const KFileItem *fi, const TQPoint &pos); private: FileSelectorPart *m_part; @@ -109,24 +109,24 @@ public: enum AutoSyncEvent { DocumentChanged=1, DocumentOpened=2, GotVisible=4 }; KDevFileSelector( FileSelectorPart *part, KDevMainWindow *mainWindow=0, KDevPartController *partController=0, - QWidget * parent = 0, const char * name = 0 ); + TQWidget * parent = 0, const char * name = 0 ); ~KDevFileSelector(); - void readConfig( KConfig *, const QString & ); - void writeConfig( KConfig *, const QString & ); + void readConfig( KConfig *, const TQString & ); + void writeConfig( KConfig *, const TQString & ); void setupToolbar( KConfig * ); void setView( KFile::FileView ); KDevDirOperator *dirOperator(){ return dir; } KActionCollection *actionCollection() { return mActionCollection; }; public slots: - void slotFilterChange(const QString&); + void slotFilterChange(const TQString&); void setDir(KURL); - void setDir( const QString& url ) { setDir( KURL( url ) ); }; + void setDir( const TQString& url ) { setDir( KURL( url ) ); }; 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 setActiveDocumentDir(); @@ -136,9 +136,9 @@ private slots: void autoSync( KParts::Part * ); void initialDirChangeHack(); protected: - void focusInEvent( QFocusEvent * ); - void showEvent( QShowEvent * ); - bool eventFilter( QObject *, QEvent * ); + void focusInEvent( TQFocusEvent * ); + void showEvent( TQShowEvent * ); + bool eventFilter( TQObject *, TQEvent * ); KURL activeDocumentUrl(); private: @@ -149,16 +149,16 @@ private: KDevDirOperator * dir; class KAction *acSyncDir; KHistoryCombo * filter; - class QToolButton *btnFilter; + class TQToolButton *btnFilter; FileSelectorPart *m_part; KDevMainWindow *mainwin; KDevPartController *partController; - QString lastFilter; + TQString lastFilter; int autoSyncEvents; // enabled autosync events - QString waitingUrl; // maybe display when we gets visible - QString waitingDir; + TQString waitingUrl; // maybe display when we gets visible + TQString waitingDir; }; /* @todo anders @@ -178,7 +178,7 @@ class KFSConfigPage : public QWidget { Q_OBJECT public: - KFSConfigPage( QWidget* parent=0, const char *name=0, KDevFileSelector *kfs=0); + KFSConfigPage( TQWidget* parent=0, const char *name=0, KDevFileSelector *kfs=0); virtual ~KFSConfigPage() {}; public slots: @@ -191,11 +191,11 @@ private: KDevFileSelector *fileSelector; bool bDirty; - //class QListBox *lbAvailableActions, *lbUsedActions; + //class TQListBox *lbAvailableActions, *lbUsedActions; KActionSelector *acSel; - class QSpinBox *sbPathHistLength, *sbFilterHistLength; - class QCheckBox *cbSyncOpen, *cbSyncActive, *cbSyncShow; - class QCheckBox *cbSesLocation, *cbSesFilter; + class TQSpinBox *sbPathHistLength, *sbFilterHistLength; + class TQCheckBox *cbSyncOpen, *cbSyncActive, *cbSyncShow; + class TQCheckBox *cbSesLocation, *cbSesFilter; }; |