1 // Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File : MeasureGUI_ManageDimensionsDlg.h
25 // Author : Anton POLETAEV, Open CASCADE S.A.S.
27 #ifndef MEASUREGUI_MANAGEDIMENSIONSDLG_H
28 #define MEASUREGUI_MANAGEDIMENSIONSDLG_H
30 #include <GEOMBase_Skeleton.h>
31 #include "MeasureGUI_DimensionInteractor.h"
32 #include "MeasureGUI_Widgets.h"
33 #include <GEOMGUI_DimensionProperty.h>
39 class MeasureGUI_CreateDimensionDlg;
41 //=================================================================================
42 // class : MeasureGUI_ManageDimensionsDlg
43 // purpose : The dialog provides interactive management of measurement
44 // dimension presentations and the "dimension" property state of
45 // GEOM shape objects.
46 //=================================================================================
47 class MeasureGUI_ManageDimensionsDlg : public GEOMBase_Skeleton
52 MeasureGUI_ManageDimensionsDlg( GeometryGUI*, QWidget* );
53 ~MeasureGUI_ManageDimensionsDlg();
63 /* User event logics */
65 void StartObjectSelection() { StartSelection( Selection_Object ); }
66 void StartSelection( const Selection theSelection );
69 void SelectionIntoArgument( const Selection theSelection );
72 void OnChangeItem( QTreeWidgetItem* theItem );
76 void OnInteractionFinished( Handle_AIS_InteractiveObject theIO );
80 virtual void ClickOnCancel();
83 void OnActivateThisDialog();
84 void OnDeactivateThisDialog();
85 void OnDimensionAdded();
90 void SetEditObject( const GEOM::GeomObjPtr& );
93 bool HasUnsavedChanges();
94 bool AllowedToCancelChanges();
95 bool AllowedToSaveChanges();
97 int IdFromItem( QTreeWidgetItem* theItem );
98 int IdFromPrs( const Handle(AIS_InteractiveObject)& theAIS );
99 void SelectInList( const Handle(AIS_InteractiveObject)& theIO );
100 void SelectInList( const int theId );
101 void SelectInViewer( SOCC_Viewer* theViewer, const int theId );
102 void RedisplayObject();
105 void enterEvent(QEvent*);
110 GroupItem_Distance = 0,
111 GroupItem_Diameter = 1,
116 GEOM::GeomObjPtr myEditObject;
117 bool myIsNeedRedisplay;
119 DlgRef_1Sel* myObjectSelector;
120 MeasureGUI_1TreeWidget_4Button* myDimensionView;
121 MeasureGUI_DimensionInteractor* myDimensionInteractor;
122 GEOMGUI_DimensionProperty mySavedPropertyState;
123 SOCC_Viewer* myOperatedViewer;
124 Selection myCurrentSelection;
125 MeasureGUI_CreateDimensionDlg* myCreateDialog;