Salome HOME
isReadyToStart method added
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Operation.h
1 //  SALOME SMESHGUI
2 //
3 //  Copyright (C) 2005  CEA/DEN, EDF R&D
4 //
5 //
6 //
7 //  File   : SMESHGUI_Operation.h
8 //  Author : Sergey LITONIN
9 //  Module : SALOME
10
11
12 #ifndef SMESHGUI_Operation_H
13 #define SMESHGUI_Operation_H
14
15 #include <SalomeApp_Operation.h>
16 #include <SALOME_InteractiveObject.hxx>
17 #include <SVTK_Selection.h>
18
19 class SMESHGUI;
20 class SVTK_ViewWindow;
21 class SVTK_Selector;
22 class TColStd_MapOfInteger;
23
24
25 /*
26   Class       : SMESHGUI_Operation
27   Description : Base class for all SMESH operations
28 */
29
30 class SMESHGUI_Operation : public SalomeApp_Operation
31 {
32   Q_OBJECT
33
34 public:
35   SMESHGUI_Operation( SalomeApp_Application* );
36   virtual ~SMESHGUI_Operation();
37
38 protected:
39
40   void              setSelectionMode( const Selection_Mode );
41   void              highlight( const Handle( SALOME_InteractiveObject )&,
42                                const bool, const bool = true );
43   void              addOrRemoveIndex( const Handle( SALOME_InteractiveObject )&,
44                                       const TColStd_MapOfInteger&, const bool );
45
46   virtual void      startOperation();
47   virtual bool      isReadyToStart();
48   
49   SMESHGUI*         getSMESHGUI() const;
50   SVTK_ViewWindow*  viewWindow() const;
51   SVTK_Selector*    selector() const;
52   
53 };
54
55 #endif
56
57
58
59
60
61