Salome HOME
Restore editing of dimensions by dragging
[modules/shaper.git] / src / XGUI / XGUI_MainWindow.h
index 5ac18d5470b30cefe13f8f2ecca8c4c59612eb42..3294f58ac5fd276945c1cd31e6a1b36c9c9c807b 100644 (file)
 #ifndef XGUI_MAINWINDOW_H
 #define XGUI_MAINWINDOW_H
 
+#include "XGUI.h"
 #include <QMainWindow>
 
 class XGUI_MainMenu;
 class XGUI_Viewer;
-class XGUI_ObjectsBrowser;
+class XGUI_ActionsMgr;
+class XGUI_ViewWindow;
 class QMdiArea;
+class QMdiSubWindow;
 class PyConsole_EnhConsole;
+class QCloseEvent;
 
-class XGUI_MainWindow: public QMainWindow
+/**\class XGUI_MainWindow
+ * \ingroup GUI
+ * \brief Main window of the application (Desktop).
+ * It contains: Object Browser, 3d Viewer, Python console, property panel, main menu
+ */
+class XGUI_EXPORT XGUI_MainWindow : public QMainWindow
 {
 Q_OBJECT
 
-public:
+ public:
   XGUI_MainWindow(QWidget* parent = 0);
   virtual ~XGUI_MainWindow();
 
+  //! Returns main menu object
   XGUI_MainMenu* menuObject() const
   {
     return myMenuBar;
   }
 
-  XGUI_ObjectsBrowser* objectBrowser() const
-  {
-    return myObjectBrowser;
-  }
-
-  void showObjectBrowser();
-  void hideObjectBrowser();
-
+  //! Returns MDI area
   QMdiArea* mdiArea() const;
 
+  //! Returns 3d viewer
   XGUI_Viewer* viewer() const
   {
     return myViewer;
   }
 
-public slots:
+ public slots:
   void showPythonConsole();
   void hidePythonConsole();
-  void showPropertyPanel();
-  void hidePropertyPanel();
+  //! Python console can be a dock widget 
+  void dockPythonConsole();
+  //! or can be a tab in the main menu.
+  void undockPythonConsole();
 
-private:
-  void createDockWidgets();
-  QDockWidget* createObjectBrowser();
-  QDockWidget* createPropertyPanel();
+  void createSubWindow();
 
-  XGUI_MainMenu* myMenuBar;
-  XGUI_ObjectsBrowser* myObjectBrowser;
-  QDockWidget* myPropertyPanelDock;
+  /// Add name of current directory into title of desktop window
+  void setCurrentDir(const QString& theDir, bool toUpdate = true);
+
+  /// Add asterisk to a title of the window
+  void setModifiedState(bool isModified, bool toUpdate = true);
+
+  /// Returns current state of modification
+  bool isModifiedState() const { return myIsModified; }
+
+  void updateTitle();
+
+ private slots:
+  void cascadeWindows();
+  void onViewCreated(XGUI_ViewWindow* theWindow);
+  void onDeleteView(XGUI_ViewWindow* theWindow);
+  void activateView();
+  void onViewActivated(QMdiSubWindow* theSubWnd);
+
+signals:
+  void exitKeySequence();
+
+ protected:
+  void closeEvent(QCloseEvent* event);
+  void createMainMenu();
 
+ private:
+  XGUI_MainMenu* myMenuBar;
   XGUI_Viewer* myViewer;
 
+  QString myTitle;
+  QString myCurrentDir;
+  bool myIsModified;
+
   PyConsole_EnhConsole* myPythonConsole;
 };
 
+class XGUI_EXPORT CloseEventWatcher : public QObject
+{
+Q_OBJECT
+
+ public:
+  CloseEventWatcher(QObject* theParent);
+
+signals:
+  void widgetClosed();
+
+ protected:
+  bool eventFilter(QObject *obj, QEvent *);
+
+};
+
 #endif