Salome HOME
Merge from BR_imps_2013 14/01/2014
[modules/geom.git] / src / MeasureGUI / MeasureGUI_ManageDimensionsDlg.h
1 // Copyright (C) 2007-2013  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.
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   : MeasureGUI_ManageDimensionsDlg.h
25 // Author : Anton POLETAEV, Open CASCADE S.A.S.
26 //
27 #ifndef MEASUREGUI_MANAGEDIMENSIONSDLG_H
28 #define MEASUREGUI_MANAGEDIMENSIONSDLG_H
29
30 #include <GEOMBase_Skeleton.h>
31 #include "MeasureGUI_DimensionInteractor.h"
32 #include "MeasureGUI_Widgets.h"
33 #include <GEOMGUI_DimensionProperty.h>
34
35 class DlgRef_1Sel;
36 class QTreeWidget;
37 class QPushButton;
38 class SOCC_Viewer;
39
40 //=================================================================================
41 // class    : MeasureGUI_ManageDimensionsDlg
42 // purpose  : The dialog provides interactive management of measurement
43 //            dimension presentations and the "dimension" property state of
44 //            GEOM shape objects.
45 //=================================================================================
46 class MeasureGUI_ManageDimensionsDlg : public GEOMBase_Skeleton
47 {
48   Q_OBJECT
49
50 public:
51   MeasureGUI_ManageDimensionsDlg( GeometryGUI*, QWidget* );
52   ~MeasureGUI_ManageDimensionsDlg();
53
54 protected:
55   enum Selection
56   {
57     Selection_None,
58     Selection_Object,
59     Selection_Dimension
60   };
61
62 /* User event logics */
63 protected slots:
64   void                            StartObjectSelection() { StartSelection( Selection_Object ); }
65   void                            StartSelection( const Selection theSelection );
66   void                            StopSelection();
67   void                            OnSelection();
68   void                            SelectionIntoArgument( const Selection theSelection );
69   void                            OnAdd();
70   void                            OnRemove();
71   void                            OnChangeItem( QTreeWidgetItem* theItem );
72   void                            OnSelectItem();
73   void                            OnShowAll();
74   void                            OnHideAll();
75   void                            OnInteractionFinished( Handle_AIS_InteractiveObject theIO );
76   void                            Suspend();
77   void                            Resume();
78   void                            ClickOnOk();
79   virtual void                    ClickOnCancel();
80   bool                            ClickOnApply();
81   void                            OnFinish();
82
83 /* Utils */
84 private:
85   void                            SetEditObject( const GEOM::GeomObjPtr& );
86   void                            RestoreState();
87   void                            PopulateList();
88   bool                            WarnUnsaved();
89   int                             IdFromItem( QTreeWidgetItem* theItem );
90   int                             IdFromPrs( const Handle(AIS_InteractiveObject)& theAIS );
91   void                            SelectInList( const Handle(AIS_InteractiveObject)& theIO );
92   void                            SelectInList( const int theId );
93   void                            SelectInViewer( SOCC_Viewer* theViewer, const int theId );
94   void                            RedisplayObject();
95
96 private:
97   enum GroupItems
98   {
99     GroupItem_Distance = 0,
100     GroupItem_Diameter = 1,
101     GroupItem_Angle    = 2
102   };
103
104 private:
105   GEOM::GeomObjPtr                myEditObject;
106
107 private:
108   DlgRef_1Sel*                    myObjectSelector;
109   MeasureGUI_1TreeWidget_4Button* myDimensionView;
110   MeasureGUI_DimensionInteractor* myDimensionInteractor;
111   GEOMGUI_DimensionProperty       mySavedPropertyState;
112   SOCC_Viewer*                    myOperatedViewer;
113   Selection                       myCurrentSelection;
114 };
115
116 #endif