Salome HOME
ModelDocument test corrected to avoid SWIG/Python crash
[modules/shaper.git] / src / NewGeom / NewGeom_Module.h
index 78cc95fba730ed4993f1587facaf8743d325ecad..800d6b168957f26eaf83e805436f6a82598d469d 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 
 
 #ifndef NewGeom_Module_H
 #include <QStringList>
 #include <QMap>
 
-class XGUI_Workshop; 
+class XGUI_Workshop;
 class NewGeom_OCCSelector;
 class OCCViewer_Viewer;
 
 /** 
-* An implementation of SALOME connector class for implementation of
-* XGUI functionality as a module of SALOME
-*/
-class NewGeom_EXPORT NewGeom_Module: public LightApp_Module, public XGUI_SalomeConnector
+ * An implementation of SALOME connector class for implementation of
+ * XGUI functionality as a module of SALOME
+ */
+class NewGeom_EXPORT NewGeom_Module : public LightApp_Module, public XGUI_SalomeConnector
 {
-  Q_OBJECT
-public:
+Q_OBJECT
+ public:
   NewGeom_Module();
   virtual ~NewGeom_Module();
 
   //----- LightAPP_Module interface ---------------
-  virtual void initialize( CAM_Application* theApp);
-  virtual void windows( QMap<int, int>& theWndMap) const;
-  virtual void viewManagers( QStringList& theList) const;
+  virtual void initialize(CAM_Application* theApp);
+  virtual void windows(QMap<int, int>& theWndMap) const;
+  virtual void viewManagers(QStringList& theList) const;
   virtual void selectionChanged();
 
   //--- XGUI connector interface -----
-  virtual QAction* addFeature(const QString& theWBName,
-                              const QString& theId, 
-                              const QString& theTitle, 
-                              const QString& theTip,
-                              const QIcon& theIcon, 
+  virtual QAction* addFeature(const QString& theWBName, const QString& theId,
+                              const QString& theTitle, const QString& theTip, const QIcon& theIcon,
                               const QKeySequence& theKeys = QKeySequence(),
                               bool isCheckable = false);
 
-  virtual QAction* addEditCommand(const QString& theId,
-                                  const QString& theTitle,
-                                  const QString& theTip,
-                                  const QIcon& theIcon, 
-                                  const QKeySequence& theKeys,
-                                  bool isCheckable);
+  virtual QAction* addDesktopCommand(const QString& theId, const QString& theTitle,
+                                     const QString& theTip, const QIcon& theIcon,
+                                     const QKeySequence& theKeys, bool isCheckable,
+                                     const char* theMenuSourceText,
+                                     const int theMenuPosition = 10);
 
-  virtual void addEditMenuSeparator();
+  virtual void addDesktopMenuSeparator(const char* theMenuSourceText,
+                                       const int theMenuPosition = 10);
 
   virtual QMainWindow* desktop() const;
 
@@ -65,8 +63,19 @@ public:
   //! Returns list of nested actions according to the given command ID
   virtual QStringList nestedActions(const QString& theId) const;
 
+  //! Set the document kind of the action by the given command Id
+  //! \param theId - the command ID
+  //! \param theKind - the document kind
+  virtual void setDocumentKind(const QString& theId, const QString& theKind);
+
+  //! Returns the document kind of the action by the given command ID
+  virtual QString documentKind(const QString& theId) const;
+
   //! Returns interface to Salome viewer
-  virtual XGUI_SalomeViewer* viewer() const { return myProxyViewer; }
+  virtual ModuleBase_IViewer* viewer() const
+  {
+    return myProxyViewer;
+  }
 
   //! Returns list of defined actions (just by NewGeom module)
   virtual QList<QAction*> commandList() const;
@@ -76,18 +85,28 @@ public:
 
   virtual void contextMenuPopup(const QString& theClient, QMenu* theMenu, QString& theTitle);
 
-public slots:
-  virtual bool activateModule( SUIT_Study* theStudy);
-  virtual bool deactivateModule( SUIT_Study* theStudy);
+  virtual void createPreferences();
+  virtual void preferencesChanged(const QString& theSection, const QString& theParam);
 
-protected slots:
-  virtual void onViewManagerAdded( SUIT_ViewManager* theMgr );
+  XGUI_Workshop* workshop() const { return myWorkshop; }
 
-protected:
-  CAM_DataModel* createDataModel();
+  void setIsOpened(bool theOpened) { myIsOpened = theOpened; }
+
+ public slots:
+  virtual bool activateModule(SUIT_Study* theStudy);
+  virtual bool deactivateModule(SUIT_Study* theStudy);
 
+ protected slots:
+  virtual void onViewManagerAdded(SUIT_ViewManager* theMgr);
+  void onDefaultPreferences();
+  // Obtains the current application and updates its actions
+  void onUpdateCommandStatus();
 
-private:
+ protected:
+  CAM_DataModel* createDataModel();
+  virtual QtxPopupMgr* popupMgr();
+
+ private:
   NewGeom_OCCSelector* createSelector(SUIT_ViewManager* theMgr);
 
   QStringList myActionsList;
@@ -99,6 +118,14 @@ private:
   NewGeom_SalomeViewer* myProxyViewer;
 
   QMap<QString, QStringList> myNestedActions;
+  QMap<QString, QString> myDocumentType;
+
+  bool myIsOpened;
+  // the next parameters should be restored after this module deactivation
+  bool myIsStorePositions; // the application value of the preferences parameter
+  bool myIsEditEnabled;    // the application value
+
+  QtxPopupMgr* myPopupMgr;
 };
 
 #endif