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 /buildtools/autotools/kfiledndiconview.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 'buildtools/autotools/kfiledndiconview.h')
-rw-r--r-- | buildtools/autotools/kfiledndiconview.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/buildtools/autotools/kfiledndiconview.h b/buildtools/autotools/kfiledndiconview.h index 65edd91a..e2b3402e 100644 --- a/buildtools/autotools/kfiledndiconview.h +++ b/buildtools/autotools/kfiledndiconview.h @@ -18,8 +18,8 @@ #ifndef KFILEDNDICONVIEW_H #define KFILEDNDICONVIEW_H -#include <qwidget.h> -#include <qtimer.h> +#include <tqwidget.h> +#include <tqtimer.h> #include <kfileiconview.h> #include <kurldrag.h> @@ -37,7 +37,7 @@ class KFileDnDIconView : public KFileIconView Q_OBJECT public: // Public methods - KFileDnDIconView( QWidget *parent = 0, const char *name = 0 ); + KFileDnDIconView( TQWidget *parent = 0, const char *name = 0 ); virtual ~KFileDnDIconView(); /** @@ -77,15 +77,15 @@ public: // Public methods return m_useAutoOpenTimer; } - virtual void readConfig( KConfig*, const QString& group = QString::null ); - virtual void writeConfig( KConfig*, const QString& group = QString::null ); + virtual void readConfig( KConfig*, const TQString& group = TQString::null ); + virtual void writeConfig( KConfig*, const TQString& group = TQString::null ); signals: /** * Emitted whenever an decodable item is dropped in the view. - * Note: The @ref QDropEvent contains a @ref KURLDrag object. + * Note: The @ref TQDropEvent contains a @ref KURLDrag object. */ - void dropped( QDropEvent* ); + void dropped( TQDropEvent* ); protected slots: /** @@ -94,16 +94,16 @@ protected slots: void slotOpenFolder(); protected: - virtual void contentsDragEnterEvent( QDragEnterEvent *e ); - virtual void contentsDragMoveEvent( QDragMoveEvent *e ); - virtual void contentsDragLeaveEvent( QDragLeaveEvent *e ); - virtual void contentsDropEvent( QDropEvent* e ); + virtual void contentsDragEnterEvent( TQDragEnterEvent *e ); + virtual void contentsDragMoveEvent( TQDragMoveEvent *e ); + virtual void contentsDragLeaveEvent( TQDragLeaveEvent *e ); + virtual void contentsDropEvent( TQDropEvent* e ); /** - * Creates a @ref QDragObject containing all urls of the selected @ref KFileItem of the view, + * Creates a @ref TQDragObject containing all urls of the selected @ref KFileItem of the view, * @returns the @ref QDragObject */ - virtual QDragObject* dragObject(); + virtual TQDragObject* dragObject(); /** *Creates the drag item and starts the drag @@ -113,14 +113,14 @@ protected: /** *@returns true if we can decode the drag and support the action */ - virtual bool acceptDrag( QDropEvent* event ) const; + virtual bool acceptDrag( TQDropEvent* event ) const; protected: - QTimer m_autoOpenTimer; + TQTimer m_autoOpenTimer; int m_autoOpenTime; bool m_useAutoOpenTimer; - QIconViewItem* m_dropItem; + TQIconViewItem* m_dropItem; bool m_dndEnabled; }; #endif |