]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMToolsGUI/GEOMToolsGUI.h
Salome HOME
4d27b0656e636bac29c67829530b9afe15f0f9c5
[modules/geom.git] / src / GEOMToolsGUI / GEOMToolsGUI.h
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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
23 //  GEOM GEOMGUI : GUI for Geometry component
24 //  File   : GEOMToolsGUI.h
25 //  Author : Damien COQUERET, Open CASCADE S.A.S.
26 //
27 #ifndef GEOMTOOLSGUI_H
28 #define GEOMTOOLSGUI_H
29
30 #include "GEOM_ToolsGUI.hxx"
31
32 #include <GEOMGUI.h>
33 #include <GEOMBase.h>
34 #include <SALOMEDSClient.hxx>
35
36 class GEOM_Displayer;
37 class SALOME_View;
38 class SALOME_ListIO;
39 class SalomeApp_Study;
40 class SVTK_View;
41 class QColor;
42 class Handle_SALOME_InteractiveObject;
43 class Handle_AIS_InteractiveContext;
44
45 #include <QList>
46 #include <QMap>
47 #include <QPair>
48
49 typedef QMap< QString, QStringList > NodeLevel;
50 typedef QMap< QString, QPair<QList<NodeLevel>, QList<NodeLevel> > > DependencyTree;
51
52 //=================================================================================
53 // class    : GEOMToolsGUI
54 // purpose  :
55 //=================================================================================
56 class GEOMTOOLSGUI_EXPORT GEOMToolsGUI : public GEOMGUI
57 {
58 public:
59   GEOMToolsGUI( GeometryGUI* ); // hide constructor to avoid direct creation
60   ~GEOMToolsGUI();
61
62   bool         OnGUIEvent( int, SUIT_Desktop* );
63   bool         OnGUIEvent( int theCommandID, SUIT_Desktop*, const QVariant& );
64
65   virtual void deactivate();
66
67   enum ActionType { SHOWDLG, INCR, DECR };
68
69   std::string getDependencyTree( QStringList rootObjectIORs );
70   void getUpwardDependency( GEOM::GEOM_BaseObject_ptr gbo, 
71                             QList<NodeLevel> &upLevelList,  
72                             int level = 0 );
73   void getDownwardDependency( GEOM::GEOM_BaseObject_ptr gbo, 
74                               QList<NodeLevel> &downLevelList, 
75                               int level = 0 );
76
77 private:
78   // Import and export topology methods
79   bool         Import();
80   bool         Export();
81
82   void         OnEditDelete();
83   void         OnCheckGeometry();
84
85   // Popup commands
86   void         OnAutoColor();
87   void         OnDisableAutoColor();
88   void         OnColor();
89   void         OnTexture();
90   void         OnTransparency();
91   void         OnNbIsos( ActionType actionType = SHOWDLG );
92   void         OnDeflection();
93   void         OnSelectOnly(int mode);
94   void         OnDiscloseConcealChildren( bool );
95   void         OnUnpublishObject();
96   void         OnPublishObject() ;
97   void         OnPointMarker();
98   void         OnMaterialProperties();
99   void         OnMaterialsLibrary();
100   void         OnSetMaterial(const QVariant& );
101   void         OnEdgeWidth();
102   void         OnIsosWidth();
103   void         OnBringToFront();
104   void         OnClsBringToFront();
105   void         OnCreateFolder();
106   void         OnSortChildren();
107
108   // Shortcut commands
109   void         OnChangeTransparency( bool );
110
111   // Recursive deletion of object with children
112   void         removeObjectWithChildren( _PTR(SObject),
113                                          _PTR(Study),
114                                          QList<SALOME_View*>,
115                                          GEOM_Displayer* );
116 };
117
118 #endif // GEOMTOOLSGUI_H