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_DistanceDlg.h
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
27 #ifndef MEASUREGUI_DISTANCEDLG_H
28 #define MEASUREGUI_DISTANCEDLG_H
30 #include <GEOMBase_Skeleton.h>
33 #include <SALOMEconfig.h>
34 #include CORBA_SERVER_HEADER(GEOM_Gen)
36 #include <QGridLayout>
39 #include <QPushButton>
45 //=================================================================================
46 // class : MeasureGUI_DistanceGroup
48 //=================================================================================
49 class MeasureGUI_DistanceGroup : public QWidget
54 MeasureGUI_DistanceGroup (QWidget *parent);
55 ~MeasureGUI_DistanceGroup();
58 QGridLayout *gridLayout;
60 QGridLayout *gridLayout1;
65 QPushButton *PushButton1;
66 QPushButton *PushButton2;
85 //=================================================================================
86 // class : MeasureGUI_DistanceDlg
88 //=================================================================================
89 class MeasureGUI_DistanceDlg : public GEOMBase_Skeleton
94 MeasureGUI_DistanceDlg (GeometryGUI*, QWidget*);
95 ~MeasureGUI_DistanceDlg();
98 // redefined from GEOMBase_Helper and GEOMBase_Skeleton
99 virtual GEOM::GEOM_IOperations_ptr createOperation();
100 virtual bool isValid (QString&);
101 virtual bool execute (ObjectList&);
102 virtual void addSubshapesToStudy();
103 virtual QString getNewObjectName (int CurrObj = -1) const;
104 virtual QList<GEOM::GeomObjPtr> getSourceObjects();
106 void redisplayPreview();
107 virtual void processObject();
108 virtual SALOME_Prs* buildPrs();
112 void enterEvent (QEvent*);
113 void activateSelection();
116 GEOM::GeomObjPtr myObj1;
117 GEOM::GeomObjPtr myObj2;
119 MeasureGUI_DistanceGroup* myGrp;
120 GEOM::ListOfDouble_var myDbls;
125 void ActivateThisDialog();
126 void SelectionIntoArgument();
127 void SetEditCurrentArgument();
128 void SolutionSelected (int i);
131 #endif // MEASUREGUI_DISTANCEDLG_H