Salome HOME
8d4e68f4bac0cd7facc0e6db988aa87039ce95dc
[modules/geom.git] / src / BlocksGUI / BlocksGUI_TrsfDlg.h
1 //  Copyright (C) 2007-2008  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   : BlocksGUI_TrsfDlg.h
24 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S. (julia.dorovskikh@opencascade.com)
25 //
26 #ifndef BLOCKSGUI_TRSFDLG_H
27 #define BLOCKSGUI_TRSFDLG_H
28
29 #include <GEOMBase_Skeleton.h>
30
31 #include <QMap>
32
33 class QtxDoubleSpinBox;
34 class QGroupBox;
35 class QPushButton;
36 class QLineEdit;
37
38 //=================================================================================
39 // class    : BlocksGUI_TrsfDlg
40 // purpose  :
41 //=================================================================================
42 class BlocksGUI_TrsfDlg : public GEOMBase_Skeleton
43 {
44   Q_OBJECT
45
46   enum { MainObj1, Face1, Face2, MainObj2, Face1U, Face2U, Face1V, Face2V };
47   enum { SpinBox1, SpinBox2U, SpinBox2V };
48
49 public:
50   BlocksGUI_TrsfDlg (GeometryGUI*, QWidget*);
51   ~BlocksGUI_TrsfDlg();
52
53 protected:
54   // redefined from GEOMBase_Helper
55   virtual GEOM::GEOM_IOperations_ptr createOperation();
56   virtual bool                       isValid (QString&);
57   virtual bool                       execute (ObjectList&);
58
59 private:
60   void                               Init();
61   void                               enterEvent(QEvent*);
62
63   void                               createSelWg (const QString&, QPixmap&, QWidget*, const int);
64   void                               createSpinWg (const QString&, QWidget*, const int);
65   void                               activateSelection();
66   void                               enableWidgets();
67
68 private:
69   int                                myConstructorId;
70
71   GEOM::GEOM_Object_var              myShape;
72   QMap<int, int>                     myFaces;
73
74   // to initialize the first selection field with a selected object on the dialog creation
75   bool                               myInitial;
76
77   QGroupBox*                         myGrp1;
78   QGroupBox*                         myGrp2;
79
80   QMap<int, QPushButton*>            mySelBtn;
81   QMap<int, QLineEdit*>              mySelName;
82   QMap<int, QtxDoubleSpinBox*>       mySpinBox;
83
84 private slots:
85   void                               ClickOnOk();
86   bool                               ClickOnApply();
87   void                               ActivateThisDialog();
88   void                               ConstructorsClicked (int);
89
90   void                               SelectionIntoArgument();
91   void                               SetEditCurrentArgument();
92
93   void                               ValueChangedInSpinBox (double);
94 };
95
96 #endif // BLOCKSGUI_TRSFDLG_H