]> SALOME platform Git repositories - modules/med.git/blob - src/MEDCalc/gui/MEDModule.hxx
Salome HOME
[MEDCalc] icons and preferences
[modules/med.git] / src / MEDCalc / gui / MEDModule.hxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // Author : Guillaume Boulant (EDF)
21
22 #ifndef _MED_MODULE_HXX_
23 #define _MED_MODULE_HXX_
24
25 #include "MEDCALCGUI.hxx"
26
27 #include <SalomeApp_Module.h>
28 #include <SALOME_AppStudyEditor.hxx>
29
30 #include "WorkspaceController.hxx"
31 #include "XmedDataModel.hxx"
32 #include "DatasourceController.hxx"
33 #include "PresentationController.hxx"
34
35 #include <SALOMEconfig.h>
36 #include CORBA_CLIENT_HEADER(MED_Gen)
37 #include CORBA_SERVER_HEADER(MEDPresentationManager)
38
39 class SalomeApp_Application;
40
41 /*!
42  * This class defines the gui of the MED module.
43  */
44 class MEDCALCGUI_EXPORT MEDModule: public SalomeApp_Module
45 {
46   Q_OBJECT
47
48   // ===========================================================
49   // This part implements the standard interface of a SALOME gui
50   // ===========================================================
51
52 public:
53   MEDModule();
54   ~MEDModule();
55
56   static MED_ORB::MED_Gen_var engine();
57
58   virtual void initialize(CAM_Application* app);
59   virtual QString engineIOR() const;
60
61   virtual QString iconName() const;
62
63   virtual void windows(QMap<int, int>& theMap) const;
64   virtual void viewManagers(QStringList& theList) const;
65
66   virtual void createPreferences();
67
68   int createStandardAction(const QString& label,
69                            QObject* slotobject,
70                            const char* slotmember,
71                            const QString& iconName,
72                            const QString& tooltip=QString());
73   void addActionInPopupMenu(int actionId,
74                             const QString& menus="",
75                             const QString& rule="client='ObjectBrowser'");
76
77   MEDCALC::MEDPresentationViewMode getSelectedViewMode();
78
79   inline SALOME_AppStudyEditor* getStudyEditor() { return _studyEditor; }
80
81 public slots:
82   virtual bool activateModule(SUIT_Study* theStudy);
83   virtual bool deactivateModule(SUIT_Study* theStudy);
84
85 private:
86   void createModuleWidgets();
87   void createModuleActions();
88   static void init();
89
90 private:
91   SALOME_AppStudyEditor* _studyEditor;
92   DatasourceController* _datasourceController;
93   WorkspaceController* _workspaceController;
94   XmedDataModel* _xmedDataModel;
95   PresentationController* _presentationController;
96   static MED_ORB::MED_Gen_var myEngine;
97 };
98
99 #endif