X-Git-Url: https://vaikene.ee/gitweb/highlight.css?a=blobdiff_plain;f=src%2Fplugins%2FSdiWindow%2Fsdiwindow.h;h=a73f2eec3d85a9b52dc09ed063c87664e3f5fedf;hb=ad70660919cd7b0e821e35548b6d1f5efa181c4c;hp=b2c3bc6c2fbdd69a1120d997091dd1bd586e489c;hpb=1cac301bb12de664bd7e7ec59b78e7dfaf04f6d1;p=evaf diff --git a/src/plugins/SdiWindow/sdiwindow.h b/src/plugins/SdiWindow/sdiwindow.h index b2c3bc6..a73f2ee 100644 --- a/src/plugins/SdiWindow/sdiwindow.h +++ b/src/plugins/SdiWindow/sdiwindow.h @@ -28,6 +28,7 @@ #include #include #include +#include class QVBoxLayout; @@ -36,11 +37,12 @@ namespace SdiWindow { namespace Internal { /** - * Main window widget + * Main window widget implementing the iSdiWindow interface */ -class MainWindow : public QWidget +class MainWindow : public QWidget, public iSdiWindow { Q_OBJECT + Q_INTERFACES(eVaf::SdiWindow::iSdiWindow) public: @@ -48,13 +50,15 @@ public: virtual ~MainWindow(); - bool init(); + virtual bool init(QString const & args); - void done(); + virtual void done(); + + virtual bool isReady() { return mReady; } - void addWidget(QWidget * widget); + virtual void addWidget(QWidget * widget); - void addLayout(QLayout * layout); + virtual void addLayout(QLayout * layout); private: // Methods @@ -68,45 +72,15 @@ private: // Methods private: // Members + /// Ready flag + bool mReady; + /// The layout of the window QVBoxLayout * mLayout; /// Widgets and layouts added to the main window - QList mItemsAdded; - -}; - -/** - * iSdiWindow interface implementation - */ -class SdiWindowImpl : public iSdiWindow -{ - Q_OBJECT - -public: - - SdiWindowImpl(); - - virtual ~SdiWindowImpl(); - - bool init(const QString & args); - - void done(); - - bool isReady() const { return mReady; } - - virtual void addWidget(QWidget * widget) { wWindow->addWidget(widget); } - - virtual void addLayout(QLayout * layout) { wWindow->addLayout(layout); } - - -private: // Members - - /// Ready flag - bool mReady; + QList > mItemsAdded; - /// The main window widget - MainWindow * wWindow; }; /** @@ -132,7 +106,7 @@ public: private: /// iSdiWindow interface implementation - SdiWindowImpl * mWindow; + MainWindow * mWindow; }; } // namespace eVaf::SdiWindow::Internal