Salome HOME
Merge from V6_main_20120808 08Aug12
[tools/tutorial.git] / ATOMICGUI.h
1 // Copyright (C) 2007-2012  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 #if !defined(ATOMICGUI_H)
21 #define ATOMICGUI_H
22
23 #include <LightApp_Module.h>
24
25 /*!
26  * Class       : ATOMICGUI
27  * Description : GUI module class for ATOMIC component
28  */
29 class ATOMICGUI: public LightApp_Module
30 {
31   Q_OBJECT
32   enum { agCreateMol,  agAddAtom };
33
34 public:
35   ATOMICGUI();
36
37   virtual void           initialize ( CAM_Application* );
38   virtual QString        iconName () const;
39
40   virtual void           windows ( QMap<int, int>& ) const;
41
42   void                   selected( QStringList&, const bool );
43
44   void                   contextMenuPopup( const QString& client, QMenu* menu, QString& title );
45
46 protected:
47   virtual CAM_DataModel* createDataModel();
48
49 public slots:
50   virtual bool           activateModule   ( SUIT_Study* );
51   virtual bool           deactivateModule ( SUIT_Study* );
52
53 private slots:
54   void                   onOperation();
55 };
56
57 #endif // ATOMICGUI_H