┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/sidebarpage.cpp
diff options
context:
space:
mode:
authorHolger Freyther <[email protected]>2006-11-29 00:02:19 +0000
committerHolger Freyther <[email protected]>2006-11-29 00:02:19 +0000
commitf31a541925033c2ef5e27b85c099d47791b50121 (patch)
tree11cc728aa7d247ca5b075776c438be0f381be765 /src/sidebarpage.cpp
parent68e81f7280c810e26cabf6cd2897b9dc8466f458 (diff)
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
Diffstat (limited to 'src/sidebarpage.cpp')
-rw-r--r--src/sidebarpage.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/sidebarpage.cpp b/src/sidebarpage.cpp
index 0b633335b..5a57ad282 100644
--- a/src/sidebarpage.cpp
+++ b/src/sidebarpage.cpp
@@ -18,12 +18,13 @@
***************************************************************************/
#include "sidebarpage.h"
-#include "dolphin.h"
+#include "dolphinmainwindow.h"
-SidebarPage::SidebarPage(QWidget* parent) :
- QWidget(parent)
+SidebarPage::SidebarPage(DolphinMainWindow *mainWindow, QWidget* parent) :
+ QWidget(parent),
+ m_mainWindow(mainWindow)
{
- connect(&Dolphin::mainWin(), SIGNAL(activeViewChanged()),
+ connect(mainWindow, SIGNAL(activeViewChanged()),
this, SLOT(activeViewChanged()));
}
@@ -35,4 +36,8 @@ void SidebarPage::activeViewChanged()
{
}
+DolphinMainWindow* SidebarPage::mainWindow() const {
+ return m_mainWindow;
+}
+
#include "sidebarpage.moc"