]> SALOME platform Git repositories - samples/atomsolv.git/blob - src/ATOMSOLVGUI/ATOMSOLVGUI.h
Salome HOME
Example of a c++ component with engine from Salome tutorial
[samples/atomsolv.git] / src / ATOMSOLVGUI / ATOMSOLVGUI.h
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21
22 #ifndef _ATOMSOLVGUI_H_
23 #define _ATOMSOLVGUI_H_
24
25 #include <SalomeApp_Module.h>
26
27 #include <SALOMEconfig.h>
28 #include CORBA_CLIENT_HEADER(ATOMSOLV)
29
30 class SalomeApp_Application;
31
32 class ATOMSOLVGUI: public SalomeApp_Module
33 {
34   Q_OBJECT
35
36 public:
37   ATOMSOLVGUI();
38
39   void    initialize( CAM_Application* );
40   void    windows( QMap<int, int>& ) const;
41   void    viewManagers( QStringList& ) const;
42
43   virtual LightApp_Displayer* displayer();
44   
45   virtual void createPreferences();
46   virtual void preferencesChanged( const QString&, const QString& );
47
48   void    selected( QStringList&, const bool );
49
50   virtual QString engineIOR() const;
51
52   static void InitATOMSOLVGen( SalomeApp_Application* );
53   static ATOMSOLV_ORB::ATOMSOLV_Gen_var GetATOMSOLVGen();
54
55 protected:
56   enum { ProcessData = 901,
57          RetrieveData,
58          Display,
59          Erase,
60          Shading,
61          PointsMode,
62          Wireframe,
63          Color,
64          Transparency };
65
66   virtual CAM_DataModel*      createDataModel();
67   virtual LightApp_Selection* createSelection() const;
68
69 public slots:
70   virtual bool    deactivateModule( SUIT_Study* );
71   virtual bool    activateModule( SUIT_Study* );
72
73   virtual void    studyClosed( SUIT_Study* );
74
75 protected slots:
76   void    OnProcessData();
77   void    OnRetrieveData();
78   void    OnDisplayerCommand();
79
80 private:
81   static ATOMSOLV_ORB::ATOMSOLV_Gen_var myEngine;
82 };
83
84 #endif