From f31a541925033c2ef5e27b85c099d47791b50121 Mon Sep 17 00:00:00 2001 From: Holger Freyther Date: Wed, 29 Nov 2006 00:02:19 +0000 Subject: Make it (almost) possible to have more than one Dolphin KMainWindow Create a DolphinApplication, holding DolphinMainWindows and update the code to use the DolphinView to get the MainWindow, or get a ptr to the MainWindow directly. Or if all windows are effected go through the DolphinApplication to update every mainwindow. The UndowManager and ProgressIndicator have a rather strange relationship and will need some more attention but as UndoManager will be killed anyway I have skipped this. More cleanup, debugging and thinking is needed. svn path=/trunk/playground/utils/dolphin/; revision=608945 --- src/dolphiniconsview.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/dolphiniconsview.cpp') diff --git a/src/dolphiniconsview.cpp b/src/dolphiniconsview.cpp index 7cbe3297d..9372ae9e0 100644 --- a/src/dolphiniconsview.cpp +++ b/src/dolphiniconsview.cpp @@ -20,11 +20,10 @@ #include "dolphiniconsview.h" #include "dolphinview.h" -#include "dolphin.h" DolphinIconsView::DolphinIconsView(DolphinView* parent) : - QListView(parent) - , m_parentView( parent ) + QListView(parent), + m_parentView( parent ) { setResizeMode( QListView::Adjust ); } @@ -36,7 +35,7 @@ DolphinIconsView::~DolphinIconsView() void DolphinIconsView::mouseReleaseEvent(QMouseEvent *e) { QListView::mouseReleaseEvent(e); - Dolphin::mainWin().setActiveView(m_parentView); + m_parentView->declareViewActive(); } #include "dolphiniconsview.moc" -- cgit v1.3