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