Salome HOME
Merge from V6_main 11/02/2013
[modules/geom.git] / src / MeasureGUI / MeasureGUI_DistanceDlg.h
1 // Copyright (C) 2007-2012  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 // GEOM GEOMGUI : GUI for Geometry component
23 // File   : MeasureGUI_DistanceDlg.h
24 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
25
26 #ifndef MEASUREGUI_DISTANCEDLG_H
27 #define MEASUREGUI_DISTANCEDLG_H
28
29 #include <GEOMBase_Skeleton.h>
30
31 // IDL Headers
32 #include <SALOMEconfig.h>
33 #include CORBA_SERVER_HEADER(GEOM_Gen)
34
35 #include <QGridLayout>
36 #include <QGroupBox>
37 #include <QLabel>
38 #include <QPushButton>
39 #include <QLineEdit>
40 #include <QComboBox>
41
42 class gp_Pnt;
43
44 //=================================================================================
45 // class    : MeasureGUI_DistanceGroup
46 // purpose  :
47 //=================================================================================
48 class MeasureGUI_DistanceGroup : public QWidget
49 {
50   Q_OBJECT
51
52  public:
53   MeasureGUI_DistanceGroup (QWidget *parent);
54   ~MeasureGUI_DistanceGroup();
55
56  public:
57   QGridLayout *gridLayout;
58   QGroupBox *GroupBox1;
59   QGridLayout *gridLayout1;
60
61   // 2Sel
62   QLabel *TextLabel1;
63   QLabel *TextLabel2;
64   QPushButton *PushButton1;
65   QPushButton *PushButton2;
66   QLineEdit *LineEdit1;
67   QLineEdit *LineEdit2;
68
69   // 1Combo
70   QLabel *TextLabel7;
71   QComboBox *ComboBox1;
72
73   // 4Text
74   QLabel *TextLabel3;
75   QLabel *TextLabel4;
76   QLabel *TextLabel5;
77   QLabel *TextLabel6;
78   QLineEdit *LineEdit3;
79   QLineEdit *LineEdit4;
80   QLineEdit *LineEdit5;
81   QLineEdit *LineEdit6;
82 };
83
84 //=================================================================================
85 // class    : MeasureGUI_DistanceDlg
86 // purpose  :
87 //=================================================================================
88 class MeasureGUI_DistanceDlg : public GEOMBase_Skeleton
89 {
90   Q_OBJECT
91
92 public:
93   MeasureGUI_DistanceDlg (GeometryGUI*, QWidget*);
94   ~MeasureGUI_DistanceDlg();
95
96 protected:
97   // redefined from GEOMBase_Helper and GEOMBase_Skeleton
98   virtual GEOM::GEOM_IOperations_ptr  createOperation();
99   virtual bool                        isValid (QString&);
100   virtual bool                        execute (ObjectList&);
101   virtual QString                     getNewObjectName (int CurrObj = -1) const; 
102
103   void                                redisplayPreview();
104   virtual void                        processObject();
105   virtual SALOME_Prs*                 buildPrs();
106
107 private:
108   void                                Init();
109   void                                enterEvent (QEvent*);
110
111 private:
112   GEOM::GEOM_Object_var               myObj1;
113   GEOM::GEOM_Object_var               myObj2;
114
115   MeasureGUI_DistanceGroup*           myGrp;
116   GEOM::ListOfDouble_var              myDbls;
117
118 private slots:
119   void                                ClickOnOk();
120   bool                                ClickOnApply();
121   void                                ActivateThisDialog();
122   void                                SelectionIntoArgument();
123   void                                SetEditCurrentArgument();
124   void                                SolutionSelected (int i);
125 };
126
127 #endif // MEASUREGUI_DISTANCEDLG_H