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