Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef GEOMTOOLSGUI_H
00028 #define GEOMTOOLSGUI_H
00029
00030 #include "GEOM_ToolsGUI.hxx"
00031
00032 #include <GEOMGUI.h>
00033
00034 #include <SALOMEDSClient.hxx>
00035
00036 class GEOM_Displayer;
00037 class SALOME_View;
00038 class SALOME_ListIO;
00039
00040 #include <QList>
00041
00042
00043
00044
00045
00046 class GEOMTOOLSGUI_EXPORT GEOMToolsGUI : public GEOMGUI
00047 {
00048 public:
00049 GEOMToolsGUI( GeometryGUI* );
00050 ~GEOMToolsGUI();
00051
00052 bool OnGUIEvent( int, SUIT_Desktop* );
00053 virtual void deactivate();
00054
00055 enum ActionType { SHOWDLG, INCR, DECR };
00056
00057 private:
00058
00059 bool Import();
00060 bool Export();
00061
00062 void OnEditDelete();
00063 void OnCheckGeometry();
00064
00065
00066 void OnAutoColor();
00067 void OnDisableAutoColor();
00068 void OnColor();
00069 void OnTransparency();
00070 void OnNbIsos( ActionType actionType = SHOWDLG );
00071 void OnDeflection();
00072 void OnSelectOnly(int mode);
00073 void OnShowHideChildren( bool );
00074 void OnUnpublishObject();
00075 void OnPublishObject() ;
00076 void OnPointMarker();
00077
00078
00079 void OnChangeTransparency( bool );
00080
00081
00082 void removeObjectWithChildren( _PTR(SObject),
00083 _PTR(Study),
00084 QList<SALOME_View*>,
00085 GEOM_Displayer* );
00086 };
00087
00088 #endif // GEOMTOOLSGUI_H