Salome HOME
Update copyright information
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_RotationDlg.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 // SMESH SMESHGUI : GUI for SMESH component
23 // File   : SMESHGUI_RotationDlg.h
24 // Author : Michael ZORIN, Open CASCADE S.A.S.
25 //
26 #ifndef SMESHGUI_ROTATIONDLG_H
27 #define SMESHGUI_ROTATIONDLG_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 // Qt includes
33 #include <QDialog>
34
35 // IDL includes
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
38
39 class QButtonGroup;
40 class QGroupBox;
41 class QLabel;
42 class QLineEdit;
43 class QPushButton;
44 class QRadioButton;
45 class QCheckBox;
46 class SMESHGUI;
47 class SMESH_Actor;
48 class SMESHGUI_IdValidator;
49 class SMESHGUI_SpinBox;
50 class SVTK_Selector;
51 class LightApp_SelectionMgr;
52 class SMESH_LogicalFilter;
53
54 //=================================================================================
55 // class    : SMESHGUI_RotationDlg
56 // purpose  :
57 //=================================================================================
58 class SMESHGUI_EXPORT SMESHGUI_RotationDlg : public QDialog
59
60   Q_OBJECT
61
62 public:
63   SMESHGUI_RotationDlg( SMESHGUI* );
64   ~SMESHGUI_RotationDlg();
65
66 private:
67   void                   Init( bool = true );
68   void                   closeEvent( QCloseEvent* );
69   void                   enterEvent( QEvent* );         /* mouse enter the QWidget */
70   void                   hideEvent( QHideEvent* );      /* ESC key */
71   void                   keyPressEvent( QKeyEvent* );
72   bool                   IsAxisOk();
73   void                   setNewMeshName();
74   
75   SMESHGUI*              mySMESHGUI;              /* Current SMESHGUI object */
76   SMESHGUI_IdValidator*  myIdValidator;
77   LightApp_SelectionMgr* mySelectionMgr;          /* User shape selection */
78   int                    myNbOkElements;          /* to check when elements are defined */
79   QString                myElementsId;
80   SVTK_Selector*         mySelector;
81   
82   QWidget*               myEditCurrentArgument;   /* Current  LineEdit */
83   int                    myConstructorId;
84   bool                   myBusy;
85   SMESH::SMESH_Mesh_var  myMesh;
86   SMESH_Actor*           myActor;
87   SMESH_LogicalFilter*   myMeshOrSubMeshOrGroupFilter;
88   
89   QGroupBox*             GroupConstructors;
90   QRadioButton*          RadioButton1;
91   QGroupBox*             GroupButtons;
92   QPushButton*           buttonOk;
93   QPushButton*           buttonCancel;
94   QPushButton*           buttonApply;
95   QPushButton*           buttonHelp;
96   QGroupBox*             GroupArguments;
97   QGroupBox*             GroupAxis;
98   QLabel*                TextLabelElements;
99   QPushButton*           SelectElementsButton;
100   QLineEdit*             LineEditElements;
101   QCheckBox*             CheckBoxMesh;
102   
103   QLabel*                TextLabelPoint;
104   QPushButton*           SelectPointButton;
105   QLabel*                TextLabelX;
106   SMESHGUI_SpinBox*      SpinBox_X;
107   QLabel*                TextLabelY;
108   SMESHGUI_SpinBox*      SpinBox_Y;
109   QLabel*                TextLabelZ;
110   SMESHGUI_SpinBox*      SpinBox_Z;
111   QLabel*                TextLabelVector;
112   QPushButton*           SelectVectorButton;
113   QLabel*                TextLabelDX;
114   SMESHGUI_SpinBox*      SpinBox_DX;
115   QLabel*                TextLabelDY;
116   SMESHGUI_SpinBox*      SpinBox_DY;
117   QLabel*                TextLabelDZ;
118   SMESHGUI_SpinBox*      SpinBox_DZ;
119
120   QLabel*                TextLabelAngle;
121   SMESHGUI_SpinBox*      SpinBox_Angle;
122   //QCheckBox* CheckBoxCopy;
123   QGroupBox*             ActionBox;
124   QButtonGroup*          ActionGroup;
125   QCheckBox*             MakeGroupsCheck;
126   QLineEdit*             LineEditNewMesh;
127
128   QString                myHelpFileName;
129
130 private slots:
131   void                   ClickOnOk();
132   void                   ClickOnCancel();
133   void                   ClickOnApply();
134   void                   ClickOnHelp();
135   void                   SetEditCurrentArgument();
136   void                   SelectionIntoArgument();
137   void                   DeactivateActiveDialog();
138   void                   ActivateThisDialog();
139   void                   onTextChange( const QString& );
140   void                   onSelectMesh( bool );
141   void                   onVectorChanged();
142   void                   onActionClicked( int );
143 };
144
145 #endif // SMESHGUI_ROTATIONDLG_H