Salome HOME
6c1a4a4190ff8046de07f6f9233fdfabfdbd5188
[samples/atomsolv.git] / src / ATOMSOLVGUI / ATOMSOLVGUI.h
1 // Copyright (C) 2007-2020  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, 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 #ifndef _ATOMSOLVGUI_H_
21 #define _ATOMSOLVGUI_H_
22
23 #include "ATOMSOLVGUI_ATOMSOLVGUI.hxx"
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_EXPORT 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