]> vaikene.ee Git - evaf/commitdiff
Changed the SdiWindow::iSdiWindow interface.
authorEnar Väikene <enar@vaikene.net>
Tue, 29 Nov 2011 13:05:41 +0000 (15:05 +0200)
committerEnar Väikene <enar@vaikene.net>
Tue, 29 Nov 2011 13:05:41 +0000 (15:05 +0200)
The SdiWindow module is now a simple window manager that manages Gui::Window objects.
Adding individual widgets and layouts is no more supported.

The idea is that the same Gui::Window object could be added to many different
window managers, not only the SdiWindow.

src/plugins/SdiWindow/CMakeLists.txt
src/plugins/SdiWindow/isdiwindow.h
src/plugins/SdiWindow/sdiwindow.cpp
src/plugins/SdiWindow/sdiwindow.h
src/plugins/SdiWindow/version.h

index b1a9c79be343abb17dde3b62e0789e2a0ae7a8fe..c87eed6d6cd2dfaa75f085ff2887abaac6b53834 100644 (file)
@@ -11,7 +11,7 @@ add_definitions(-DSDIWINDOW_LIBRARY)
 include_directories(${eVaf_INCLUDE})
 
 # Required eVaf libraries
-set(eVaf_LIBRARIES CommonLib PluginsLib)
+set(eVaf_LIBRARIES CommonLib PluginsLib GuiLib)
 
 # Source files
 set(SRCS
index 28e774d1b5be7c262aaabbc761aa78b96b23e05c..13b99037471a499f02ab2d85f02a3ab08952c94e 100644 (file)
@@ -29,13 +29,17 @@ class QWidget;
 class QLayout;
 
 namespace eVaf {
+
+namespace Gui {
+    class Window;
+} // namespace eVaf::Gui
+
 namespace SdiWindow {
 
 /**
- * Main window interface for eVaf applications implementing the Single Document Interface.
+ * Single Document Interface window manager for eVaf applications.
  *
- * The iSdiWindow interface provides access to the SDI main window. The SDI main window is
- * an empty window that the application can fill with widgets.
+ * The iSdiWindow interface implements an SDI window manager.
  */
 struct SDIWINDOW_EXPORT iSdiWindow
 {
@@ -50,26 +54,18 @@ struct SDIWINDOW_EXPORT iSdiWindow
     static iSdiWindow * instance();
 
     /**
-     * Adds the widget to the end of the main window layout
-     * @param widget The widget
-     *
-     * This function adds the widget to the end of the main window layout.
-     */
-    virtual void addWidget(QWidget * widget) = 0;
-
-    /**
-     * Adds the layout to the end of the main window layout
-     * @param layout The layout
+     * Adds the window to the main SDI window
+     * @param window The window
      *
-     * This function adds the new layout to the end of the main window layout.
+     * This function adds a window to the main SDI layout.
      */
-    virtual void addLayout(QLayout * layout) = 0;
+    virtual void addWindow(Gui::Window * window) = 0;
 
 };
 
 } // namespace eVaf::SdiWindow
 } // namespace eVaf
 
-Q_DECLARE_INTERFACE(eVaf::SdiWindow::iSdiWindow, "eVaf.SdiWindow.iSdiWindow/1.0")
+Q_DECLARE_INTERFACE(eVaf::SdiWindow::iSdiWindow, "eVaf.SdiWindow.iSdiWindow/1.1")
 
 #endif // isdiwindow.h
index aba9ce2041502ac51fed5f2a5aa04d9cc4be01bf..aa264de0362658deacd5b22e587cd5f6d56abee5 100644 (file)
@@ -106,26 +106,20 @@ void MainWindow::done()
 
     close();
 
-    // Delete all the items added to the main window
-    while (mItemsAdded.count() > 0) {
-        QWeakPointer<QObject> item = mItemsAdded.takeAt(0);
-        if (!item.isNull())
-            delete item.data();
-    }
+    // Delete the window
+    if (mWindow)
+        delete mWindow.data();
 
     EVAF_INFO("%s finalized", qPrintable(objectName()));
 }
 
-void MainWindow::addWidget(QWidget * widget)
-{
-    mLayout->addWidget(widget);
-    mItemsAdded.append(widget);
-}
-
-void MainWindow::addLayout(QLayout * layout)
+void MainWindow::addWindow(Gui::Window * window)
 {
-    mLayout->addLayout(layout);
-    mItemsAdded.append(layout);
+    // Delete the existing window
+    if (mWindow)
+        delete mWindow.data();
+    mLayout->addWidget(window);
+    mWindow = window;
 }
 
 void MainWindow::saveSettings()
index f0cfe6fc52aae2e5f96c7d6487acb2483388d5db..f88425554319b872fc52fdb9e38ccae724f21497 100644 (file)
@@ -23,6 +23,7 @@
 #include "isdiwindow.h"
 
 #include <Plugins/iPlugin>
+#include <Gui/Window>
 
 #include <QObject>
 #include <QString>
@@ -56,9 +57,7 @@ public:
 
     virtual bool isReady() { return mReady; }
 
-    virtual void addWidget(QWidget * widget);
-
-    virtual void addLayout(QLayout * layout);
+    virtual void addWindow(Gui::Window * window);
 
 
 private: // Methods
@@ -75,11 +74,11 @@ private: // Members
     /// Ready flag
     bool mReady;
 
-    /// The layout of the window
+    /// The layout of the main window
     QVBoxLayout * mLayout;
 
-    /// Widgets and layouts added to the main window
-    QList<QWeakPointer<QObject> > mItemsAdded;
+    /// eVaf GUI window implementing the main window
+    QWeakPointer<Gui::Window> mWindow;
 
 };
 
index 96719006739b1e6e2be33d5fc7eb27cfebe0adfa..f3fedecec2b49ff0e33c69a94994d44f1f98d0a8 100644 (file)
 /**
  * Module/library version number in the form major,minor,release,build
  */
-#define VER_FILE_VERSION                0,2,4,5
+#define VER_FILE_VERSION                0,3,1,6
 
 /**
  * Module/library version number in the string format (shall end with \0)
  */
-#define VER_FILE_VERSION_STR            "0.2.4.5\0"
+#define VER_FILE_VERSION_STR            "0.3.1.6\0"
 
 /**
  * Module/library name (shall end with \0)