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/filterbar.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/filterbar.cpp') diff --git a/src/filterbar.cpp b/src/filterbar.cpp index 0982a61c7..f05d0d77d 100644 --- a/src/filterbar.cpp +++ b/src/filterbar.cpp @@ -29,10 +29,11 @@ #include #include -#include "dolphin.h" +#include "dolphinmainwindow.h" -FilterBar::FilterBar(QWidget *parent, const char *name) : - QWidget(parent, name) +FilterBar::FilterBar(DolphinMainWindow* mainWindow, QWidget *parent, const char *name) : + QWidget(parent, name), + m_mainWindow(mainWindow) { const int gap = 3; @@ -62,7 +63,7 @@ FilterBar::FilterBar(QWidget *parent, const char *name) : this, SIGNAL(signalFilterChanged(const QString&))); connect(m_close, SIGNAL(clicked()), this, SLOT(hide())); connect(m_close, SIGNAL(clicked()), - &Dolphin::mainWin(), SLOT(slotShowFilterBarChanged())); + mainWindow, SLOT(slotShowFilterBarChanged())); } FilterBar::~FilterBar() @@ -89,7 +90,7 @@ void FilterBar::keyReleaseEvent(QKeyEvent* event) QWidget::keyReleaseEvent(event); if ((event->key() == Qt::Key_Escape)) { hide(); - Dolphin::mainWin().slotShowFilterBarChanged(); + m_mainWindow->slotShowFilterBarChanged(); } } -- cgit v1.3