]> SALOME platform Git repositories - modules/geom.git/blob - src/BasicGUI/BasicGUI_MarkerDlg.h
Salome HOME
Improve reaction of 'Divide edge' dialog on Display of objects
[modules/geom.git] / src / BasicGUI / BasicGUI_MarkerDlg.h
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : BasicGUI_MarkerDlg.h
25 //  Author : Sergey LITONIN
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_Marker_H
30 #define DIALOGBOX_Marker_H
31
32 #include "GEOMBase_Skeleton.h"
33 #include "DlgRef_1Sel_QTD.h"
34 #include "DlgRef_3Sel_QTD.h"
35
36 #include <qmap.h>
37
38 class DlgRef_SpinBox;
39
40 #if defined WNT && defined WIN32 && defined SALOME_WNT_EXPORTS
41 #define BASICGUI_WNT_EXPORT __declspec( dllexport )
42 #else
43 #define BASICGUI_WNT_EXPORT
44 #endif
45
46 class BasicGUI_MarkerDlg : public GEOMBase_Skeleton
47 {
48   Q_OBJECT
49
50 private:
51   enum { X, Y, Z, DX1, DY1, DZ1, DX2, DY2, DZ2 };
52   typedef QMap< int, DlgRef_SpinBox* > DataMap;
53
54 public:
55                                 BasicGUI_MarkerDlg( GeometryGUI* theGeometryGUI, QWidget* );
56   virtual                       ~BasicGUI_MarkerDlg();
57   void                          Init();
58
59 protected:
60   virtual                       GEOM::GEOM_IOperations_ptr createOperation();
61   virtual bool                  isValid( QString& );
62   virtual bool                  execute( ObjectList& objects );
63   virtual void                  closeEvent( QCloseEvent* e );
64   virtual void                  displayPreview ( const bool   activate = false,
65                                                  const bool   update = true,
66                                                  const bool   toRemoveFromEngine = true,
67                                                  const double lineWidth = -1 );
68
69 private :
70   void                          enterEvent( QEvent* e );
71   void                          onSelectionDone0();
72
73   GeometryGUI* myGeometryGUI;
74
75 private slots:
76   void                          onOk();
77   void                          onClose();
78   bool                          onApply();
79   void                          onActivate();
80   void                          onDeactivate();
81   void                          onSelectionDone();
82   void                          onValueChanged( double );
83   void                          ConstructorsClicked( int );
84   void                          LineEditReturnPressed();
85   void                          SetEditCurrentArgument();
86
87 private:
88   DataMap                       myData;
89   int                           myConstructorId;
90   int                           myBlockPreview;
91
92   QGroupBox*                    aMainGrp;
93   DlgRef_1Sel_QTD*              Group1;
94   DlgRef_3Sel_QTD*              Group2;
95
96 };
97
98 #endif // DIALOGBOX_Marker_H