diff options
| author | Peter Penz <[email protected]> | 2007-02-14 21:54:24 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-02-14 21:54:24 +0000 |
| commit | c91365ab8d7582255aa0de8f403ec0787446a74f (patch) | |
| tree | a4499e7043a5a0277094af621e5bf1ef8df7faa1 /src/dolphiniconsview.h | |
| parent | 8134fd34d5e49dbdd1d0c8a26b300f6e07b9575b (diff) | |
Step one for having DolphinParts for the icons and details view, which can be used by Konqueror. TODO: currently dropping of items is deactivated, as I want to wait for Davids feedback whether the direction is ok.
svn path=/trunk/KDE/kdebase/apps/; revision=633703
Diffstat (limited to 'src/dolphiniconsview.h')
| -rw-r--r-- | src/dolphiniconsview.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/dolphiniconsview.h b/src/dolphiniconsview.h index 99ca12688..68efbbd91 100644 --- a/src/dolphiniconsview.h +++ b/src/dolphiniconsview.h @@ -1,6 +1,5 @@ /*************************************************************************** - * Copyright (C) 2006 by Peter Penz * - * [email protected] * + * Copyright (C) 2006 by Peter Penz ([email protected]) * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -23,6 +22,7 @@ #include <QListView> +class DolphinController; class DolphinView; /** @@ -30,15 +30,13 @@ class DolphinView; * * It is also possible that instead of the icon a preview of the item * content is shown. - * - * @author Peter Penz */ class DolphinIconsView : public QListView { Q_OBJECT public: - explicit DolphinIconsView(DolphinView* parent); + explicit DolphinIconsView(QWidget* parent, DolphinController* controller); virtual ~DolphinIconsView(); protected: @@ -49,7 +47,7 @@ protected: virtual void dropEvent(QDropEvent* event); private: - DolphinView* m_dolphinView; + DolphinController* m_controller; }; #endif |
