┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/sidebar.h
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/sidebar.h
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/sidebar.h')
-rw-r--r--src/sidebar.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sidebar.h b/src/sidebar.h
index 772d2d4f9..6c7abab34 100644
--- a/src/sidebar.h
+++ b/src/sidebar.h
@@ -28,6 +28,7 @@ class KUrl;
class QComboBox;
class Q3VBoxLayout;
class SidebarPage;
+class DolphinMainWindow;
/**
* @brief The sidebar allows to access bookmarks, history items and TODO...
@@ -39,7 +40,7 @@ class Sidebar : public QWidget
Q_OBJECT
public:
- Sidebar(QWidget* parent);
+ Sidebar(DolphinMainWindow* mainwindow, QWidget* parent);
virtual ~Sidebar();
virtual QSize sizeHint() const;
@@ -57,6 +58,7 @@ private slots:
private:
int indexForName(const QString& name) const;
+ DolphinMainWindow *m_mainWindow;
QComboBox* m_pagesSelector;
SidebarPage* m_page;
QVBoxLayout* m_layout;