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