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/dolphindetailsview.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/dolphindetailsview.h')
| -rw-r--r-- | src/dolphindetailsview.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/dolphindetailsview.h b/src/dolphindetailsview.h index 6197376a8..e66adf573 100644 --- a/src/dolphindetailsview.h +++ b/src/dolphindetailsview.h @@ -24,6 +24,8 @@ #include <dolphinview.h> #include <QTreeView> +class DolphinController; + /** * @brief Represents the details view which shows the name, size, * date, permissions, owner and group of an item. @@ -37,7 +39,7 @@ class DolphinDetailsView : public QTreeView Q_OBJECT public: - explicit DolphinDetailsView(DolphinView* parent); + explicit DolphinDetailsView(QWidget* parent, DolphinController* controller); virtual ~DolphinDetailsView(); protected: @@ -69,7 +71,7 @@ private slots: void synchronizeSortingState(int column); private: - DolphinView* m_dolphinView; + DolphinController* m_controller; }; #endif |
