]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/NewGeom/NewGeom_Module.h
Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / NewGeom / NewGeom_Module.h
index b18ff6606c7f321ea35efecc3982a82e609ffb31..9b63a18c636955e24e04e6347f39fb6f0151bed5 100644 (file)
@@ -4,29 +4,97 @@
 #define NewGeom_Module_H
 
 #include "NewGeom.h"
+#include "NewGeom_SalomeViewer.h"
+
 #include <LightApp_Module.h>
+#include <XGUI_SalomeConnector.h>
+
+#include <QStringList>
+#include <QMap>
+
+class XGUI_Workshop; 
+class NewGeom_OCCSelector;
+class OCCViewer_Viewer;
 
-class NewGeom_EXPORT NewGeom_Module: public LightApp_Module
+/** 
+* 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:
   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 selectionChanged();
+
+  //--- XGUI connector interface -----
+  virtual void addFeature(const QString& theWBName,
+                          const QString& theId, 
+                          const QString& theTitle, 
+                          const QString& theTip,
+                          const QIcon& theIcon, 
+                          bool isCheckable = false,
+                          QObject* reciever = 0,
+                          const char* member = 0,
+                          const QKeySequence& theKeys = QKeySequence());
+
+  virtual void addEditCommand(const QString& theId,
+                              const QString& theTitle,
+                              const QString& theTip,
+                              const QIcon& theIcon, 
+                              bool isCheckable,
+                              QObject* reciever,
+                              const char* member,
+                              const QKeySequence& theKeys);
+
+  virtual void addEditMenuSeparator();
+
+  virtual QMainWindow* desktop() const;
+
+  virtual QString commandId(const QAction* theCmd) const;
+
+  virtual QAction* command(const QString& theId) const;
+
+  //! Set nested actions dependent on command Id
+  //! \param theId - the command ID
+  //! \param theActions - the list of nested actions
+  virtual void setNestedActions(const QString& theId, const QStringList& theActions);
+
+  //! Returns list of nested actions according to the given command ID
+  virtual QStringList nestedActions(const QString& theId) const;
+
+  //! Returns interface to Salome viewer
+  virtual XGUI_SalomeViewer* viewer() const { return myProxyViewer; }
 
 public slots:
-  bool activateModule( SUIT_Study* theStudy);
-  bool deactivateModule( SUIT_Study* theStudy);
+  virtual bool activateModule( SUIT_Study* theStudy);
+  virtual bool deactivateModule( SUIT_Study* theStudy);
+
+protected slots:
+  virtual void onViewManagerAdded( SUIT_ViewManager* theMgr );
 
 protected:
   CAM_DataModel* createDataModel();
 
 
 private:
+  NewGeom_OCCSelector* createSelector(SUIT_ViewManager* theMgr);
+
+  QStringList myActionsList;
+
+  XGUI_Workshop* myWorkshop;
+
+  NewGeom_OCCSelector* mySelector;
+
+  NewGeom_SalomeViewer* myProxyViewer;
 
+  QMap<QString, QStringList> myNestedActions;
 };
 
 #endif