┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/viewextensionsfactory.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2009-08-29 12:16:02 +0000
committerPeter Penz <[email protected]>2009-08-29 12:16:02 +0000
commitb1536a43422d80300afe48172444dced06e03a70 (patch)
treedf6fb9f41c98970b8dcc45593f4cc6691bc15bff /src/viewextensionsfactory.h
parent95f0ba76ae26e45a6ff9f1ec51db7d270ca278c0 (diff)
move the DolphinFileItemDelegate creation into ViewExtensionsFactory
svn path=/trunk/KDE/kdebase/apps/; revision=1016949
Diffstat (limited to 'src/viewextensionsfactory.h')
-rw-r--r--src/viewextensionsfactory.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/viewextensionsfactory.h b/src/viewextensionsfactory.h
index e5e8056b7..79b47a2eb 100644
--- a/src/viewextensionsfactory.h
+++ b/src/viewextensionsfactory.h
@@ -23,6 +23,7 @@
#include <QObject>
class DolphinController;
+class DolphinFileItemDelegate;
class DolphinViewAutoScroller;
class KFilePreviewGenerator;
class QModelIndex;
@@ -55,6 +56,8 @@ public:
*/
void handleCurrentIndexChange(const QModelIndex& current, const QModelIndex& previous);
+ DolphinFileItemDelegate* fileItemDelegate() const;
+
protected:
virtual bool eventFilter(QObject* watched, QEvent* event);
@@ -70,6 +73,7 @@ private:
KFilePreviewGenerator* m_previewGenerator;
SelectionManager* m_selectionManager;
DolphinViewAutoScroller* m_autoScroller;
+ DolphinFileItemDelegate* m_fileItemDelegate;
};
#endif