diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-27 00:40:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-27 00:40:29 +0000 |
commit | 7a741e43ff09e70396a918956219b8316c48e522 (patch) | |
tree | 3d0f60eccd59786cea7236db2d5c4c1f25874515 /src/dolphiniconsview.h | |
parent | a48487ef0c329434b58b6f920111bb0999f1109e (diff) | |
download | dolphin-7a741e43ff09e70396a918956219b8316c48e522.tar.gz dolphin-7a741e43ff09e70396a918956219b8316c48e522.zip |
TQt4 port Dolphin
This enables compilation under Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/dolphin@1229359 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/dolphiniconsview.h')
-rw-r--r-- | src/dolphiniconsview.h | 41 |
1 files changed, 21 insertions, 20 deletions
diff --git a/src/dolphiniconsview.h b/src/dolphiniconsview.h index 9be2102..adfd512 100644 --- a/src/dolphiniconsview.h +++ b/src/dolphiniconsview.h @@ -22,7 +22,7 @@ #define DOLPHINICONSVIEW_H #include <kfileiconview.h> -#include <qpixmap.h> +#include <tqpixmap.h> #include <kurl.h> #include <itemeffectsmanager.h> @@ -39,6 +39,7 @@ class DolphinView; class DolphinIconsView : public KFileIconView, public ItemEffectsManager { Q_OBJECT + TQ_OBJECT public: enum LayoutMode { @@ -46,12 +47,12 @@ public: Previews }; - DolphinIconsView(DolphinView *parent, LayoutMode layoutMode); + DolphinIconsView(DolphinView *tqparent, LayoutMode tqlayoutMode); virtual ~DolphinIconsView(); void setLayoutMode(LayoutMode mode); - LayoutMode layoutMode() const { return m_layoutMode; } + LayoutMode tqlayoutMode() const { return m_tqlayoutMode; } /** @see ItemEffectsManager::updateItems */ virtual void beginItemUpdates(); @@ -64,7 +65,7 @@ public: * the details view. */ // TODO: Other view implementations use a similar interface. When using - // Interview in Qt4 this method should be moved to a base class (currently + // Interview in TQt4 this method should be moved to a base class (currently // not possible due to having different base classes for the views). void refreshSettings(); @@ -82,7 +83,7 @@ public: public slots: /** - * Bypass a layout issue in KFileIconView in combination with previews. + * Bypass a tqlayout issue in KFileIconView in combination with previews. * @see KFileIconView::arrangeItemsInGrid */ virtual void arrangeItemsInGrid(bool updated = true); @@ -97,10 +98,10 @@ signals: protected: /** @see ItemEffectsManager::setContextPixmap */ virtual void setContextPixmap(void* context, - const QPixmap& pixmap); + const TQPixmap& pixmap); /** @see ItemEffectsManager::contextPixmap */ - virtual const QPixmap* contextPixmap(void* context); + virtual const TQPixmap* contextPixmap(void* context); /** @see ItemEffectsManager::firstContext */ virtual void* firstContext(); @@ -112,29 +113,29 @@ protected: virtual KFileItem* contextFileInfo(void* context); /** @see KFileIconView::contentsMousePressEvent */ - virtual void contentsMousePressEvent(QMouseEvent* event); + virtual void contentsMousePressEvent(TQMouseEvent* event); /** @see KFileIconView::contentsMouseReleaseEvent */ - virtual void contentsMouseReleaseEvent(QMouseEvent* event); + virtual void contentsMouseReleaseEvent(TQMouseEvent* event); /** @see KFileIconView::drawBackground */ - virtual void drawBackground(QPainter* painter, const QRect& rect); + virtual void drawBackground(TQPainter* painter, const TQRect& rect); /** @see KFileIconView::dragObject */ - virtual QDragObject* dragObject(); + virtual TQDragObject* dragObject(); /** @see KFileIconView::contentsDragEnterEvent */ - virtual void contentsDragEnterEvent(QDragEnterEvent* event); + virtual void contentsDragEnterEvent(TQDragEnterEvent* event); /** @see KFileIconView::contentsDragMoveEvent */ - virtual void contentsDragMoveEvent(QDragMoveEvent* event); + virtual void contentsDragMoveEvent(TQDragMoveEvent* event); /** @see KFileIconView::contentsDropEvent */ - virtual void contentsDropEvent(QDropEvent* event); + virtual void contentsDropEvent(TQDropEvent* event); private slots: /** Is connected to the onItem-signal from KFileIconView. */ - void slotOnItem(QIconViewItem* item); + void slotOnItem(TQIconViewItem* item); /** Is connected to the onViewport-signal from KFileIconView. */ void slotOnViewport(); @@ -143,19 +144,19 @@ private slots: * Opens the context menu for the item \a item on the given * position \a pos. */ - void slotContextMenuRequested(QIconViewItem* item, - const QPoint& pos); + void slotContextMenuRequested(TQIconViewItem* item, + const TQPoint& pos); /** Renames the item \a item to the name \a name. */ - void slotItemRenamed(QIconViewItem* item, - const QString& name); + void slotItemRenamed(TQIconViewItem* item, + const TQString& name); void slotActivationUpdate(); void slotUpdateDisabledItems(); private: int m_previewIconSize; - LayoutMode m_layoutMode; + LayoutMode m_tqlayoutMode; DolphinView* m_dolphinView; /** Returns the increased icon size for the size \a size. */ |