Salome HOME
977e71950a4604695d7cc88621c06eea5ec9faba
[modules/superv.git] / src / SUPERVGUI / SUPERVGUI.h
1 //  SUPERV SUPERVGUI : GUI for Supervisor component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SUPERVGUI.h
25 //  Author : Francis KLOSS
26 //  Module : SUPERV
27
28 #ifndef SUPERVGUI_H
29 #define SUPERVGUI_H
30
31 // Acces a l`ihm de SALOME
32 // -----------------------
33
34 #include "QAD_Desktop.h"
35
36
37 #include "SUPERVGUI_Def.h"
38 #include "SUPERVGUI_Service.h"
39 #include "SUPERVGUI_Main.h"
40 //#include "SUPERVGUI_Information.h"
41
42 #include "SALOMEGUI.h"
43
44 // Definition de la classe principale du module de supervision
45 // -----------------------------------------------------------
46
47 class SUPERVGUI: public SALOMEGUI {
48   Q_OBJECT
49
50   public:
51     SUPERVGUI( const QString&, QObject* = 0 );
52     virtual ~SUPERVGUI();
53
54     QAD_Desktop*       getDesktop();
55     SUPERV_Engine      getEngine();
56     QAD_Study*         getActiveStudy() 
57       { return study; };
58
59     SUPERVGUI_Service* getBrowser();
60     QCursor            getCursor();
61     //bool information(SUPERV_CNode node, bool isReadOnly);
62     void putInfo(const char* mess);
63
64     void importDataflow();
65     void exportDataflow();
66     void newDataflow();
67     void modifyDataflow();
68     void reloadDataflow();
69     void runDataflow();
70     void stepByStep();
71     void killDataflow();
72     void suspendResumeDataflow();
73     void showComponents();
74
75     void init(QAD_Desktop* parent);
76     SUPERVGUI_Main* getMain();
77
78     bool OnGUIEvent(int theCommandID, QAD_Desktop* parent);
79     bool SetSettings(QAD_Desktop* parent);
80     void DefinePopup(QString & theContext,
81                      QString & theParent, 
82                      QString & theObject ) ;
83     bool CustomPopup(QAD_Desktop* parent,
84                      QPopupMenu* popup,
85                      const QString & theContext,
86                      const QString & theParent,
87                      const QString & theObject);
88     bool ActiveStudyChanged( QAD_Desktop* parent );
89     void SupportedViewType (int* buffer, int bufferSize);
90
91     bool isContains(QAD_Study* theStudy, const QString theKey);
92
93     void registerGraph(QString theName, SUPERVGUI_Main* theGraph);
94     void unregisterGraph(SUPERVGUI_Main* theGraph);
95     QAD_StudyFrame* createGraph();
96
97     /** Returns:
98         theIsOwner = true if Selected object belongs to Suipervision.
99         theIsDataflow = true if Selected object is Dataflow
100     */
101     void whatIsSelected(const Handle(SALOME_InteractiveObject)& theObj, bool& theIsOwner, bool& theIsDataflow);
102
103   private slots:
104     void setMain(QWidget* w);
105     void displayDataflow();
106     void renameDataflow();
107     void deleteObject();
108     void onGraphClosed(QAD_StudyFrame* );
109
110   private:
111     void loadEngine(SALOME_NamingService* namingService);
112
113     static int             factory;
114     QAD_Desktop*           desktop;
115     QAD_Study*             study;
116     SUPERV_Engine          engine;
117     SUPERVGUI_Service*     browser;
118     //SUPERVGUI_Information* info;
119     QCursor                cursor;
120
121     SUPERVGUI_Main*        main;  // active main    
122     QPtrList<SUPERVGUI_Main> myGraphList;
123 };
124
125
126 // Acces a l'instance unique de la classe du module de l'interface graphique de la supervision
127 // -------------------------------------------------------------------------------------------
128 extern SUPERVGUI Supervision;
129
130 #endif