diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /konqueror/konq_misc.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-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 'konqueror/konq_misc.h')
-rw-r--r-- | konqueror/konq_misc.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/konqueror/konq_misc.h b/konqueror/konq_misc.h index f3d736b13..9696151e6 100644 --- a/konqueror/konq_misc.h +++ b/konqueror/konq_misc.h @@ -54,7 +54,7 @@ public: /** * Create a new window with a single view, showing @p url */ - static KonqMainWindow * createSimpleWindow( const KURL &url, const QString &frameName = QString::null ); + static KonqMainWindow * createSimpleWindow( const KURL &url, const TQString &frameName = TQString::null ); /** * Create a new window with a single view, showing @p url, using @p args @@ -70,7 +70,7 @@ public: static KonqMainWindow * createNewWindow( const KURL &url, const KParts::URLArgs &args = KParts::URLArgs(), bool forbidUseHTML = false, - QStringList filesToSelect = QStringList(), + TQStringList filesToSelect = TQStringList(), bool tempFile = false, bool openURL = true); @@ -80,12 +80,12 @@ public: * @param forbidUseHTML internal. True when called by "Find Files" * @param openURL If false no url is opened */ - static KonqMainWindow * createBrowserWindowFromProfile( const QString &path, - const QString &filename, + static KonqMainWindow * createBrowserWindowFromProfile( const TQString &path, + const TQString &filename, const KURL &url = KURL(), const KParts::URLArgs &args = KParts::URLArgs(), bool forbidUseHTML = false, - const QStringList& filesToSelect = QStringList(), + const TQStringList& filesToSelect = TQStringList(), bool tempFile = false, bool openURL = true); @@ -103,30 +103,30 @@ public: * @p _url to be filtered. * @p _path the absolute path to append to the url before filtering it. */ - static QString konqFilteredURL( QWidget* /*parent*/, const QString& /*_url*/, const QString& _path = QString::null ); + static TQString konqFilteredURL( TQWidget* /*parent*/, const TQString& /*_url*/, const TQString& _path = TQString::null ); }; -#include <qlabel.h> +#include <tqlabel.h> class KonqDraggableLabel : public QLabel { Q_OBJECT public: - KonqDraggableLabel( KonqMainWindow * mw, const QString & text ); + KonqDraggableLabel( KonqMainWindow * mw, const TQString & text ); protected: - void mousePressEvent( QMouseEvent * ev ); - void mouseMoveEvent( QMouseEvent * ev ); - void mouseReleaseEvent( QMouseEvent * ); - void dragEnterEvent( QDragEnterEvent *ev ); - void dropEvent( QDropEvent* ev ); + void mousePressEvent( TQMouseEvent * ev ); + void mouseMoveEvent( TQMouseEvent * ev ); + void mouseReleaseEvent( TQMouseEvent * ); + void dragEnterEvent( TQDragEnterEvent *ev ); + void dropEvent( TQDropEvent* ev ); private slots: void delayedOpenURL(); private: - QPoint startDragPos; + TQPoint startDragPos; bool validDrag; KonqMainWindow * m_mw; KURL::List _savedLst; |