Salome HOME
4dd572f2913a9bb818d220bc1cdc479f866b11da
[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 SMESHGUI_FilterDlg;
51 class SVTK_Selector;
52 class LightApp_SelectionMgr;
53 class SMESH_LogicalFilter;
54
55 //=================================================================================
56 // class    : SMESHGUI_RotationDlg
57 // purpose  :
58 //=================================================================================
59 class SMESHGUI_EXPORT SMESHGUI_RotationDlg : public QDialog
60
61   Q_OBJECT
62
63 public:
64   SMESHGUI_RotationDlg( SMESHGUI* );
65   ~SMESHGUI_RotationDlg();
66
67 private:
68   void                   Init( bool = true );
69   void                   closeEvent( QCloseEvent* );
70   void                   enterEvent( QEvent* );         /* mouse enter the QWidget */
71   void                   hideEvent( QHideEvent* );      /* ESC key */
72   void                   keyPressEvent( QKeyEvent* );
73   bool                   IsAxisOk();
74   void                   setNewMeshName();
75   
76   bool                   isValid();
77
78   SMESHGUI*              mySMESHGUI;              /* Current SMESHGUI object */
79   SMESHGUI_IdValidator*  myIdValidator;
80   LightApp_SelectionMgr* mySelectionMgr;          /* User shape selection */
81   int                    myNbOkElements;          /* to check when elements are defined */
82   QString                myElementsId;
83   SVTK_Selector*         mySelector;
84   
85   QWidget*               myEditCurrentArgument;   /* Current  LineEdit */
86   int                    myConstructorId;
87   bool                   myBusy;
88   SMESH::SMESH_Mesh_var  myMesh;
89   SMESH_Actor*           myActor;
90   SMESH_LogicalFilter*   myMeshOrSubMeshOrGroupFilter;
91   SMESH::SMESH_IDSource_var mySelectedObject;
92   
93   QGroupBox*             GroupConstructors;
94   QRadioButton*          RadioButton1;
95   QGroupBox*             GroupButtons;
96   QPushButton*           buttonOk;
97   QPushButton*           buttonCancel;
98   QPushButton*           buttonApply;
99   QPushButton*           buttonHelp;
100   QGroupBox*             GroupArguments;
101   QGroupBox*             GroupAxis;
102   QLabel*                TextLabelElements;
103   QPushButton*           SelectElementsButton;
104   QLineEdit*             LineEditElements;
105   QCheckBox*             CheckBoxMesh;
106   
107   QLabel*                TextLabelPoint;
108   QPushButton*           SelectPointButton;
109   QLabel*                TextLabelX;
110   SMESHGUI_SpinBox*      SpinBox_X;
111   QLabel*                TextLabelY;
112   SMESHGUI_SpinBox*      SpinBox_Y;
113   QLabel*                TextLabelZ;
114   SMESHGUI_SpinBox*      SpinBox_Z;
115   QLabel*                TextLabelVector;
116   QPushButton*           SelectVectorButton;
117   QLabel*                TextLabelDX;
118   SMESHGUI_SpinBox*      SpinBox_DX;
119   QLabel*                TextLabelDY;
120   SMESHGUI_SpinBox*      SpinBox_DY;
121   QLabel*                TextLabelDZ;
122   SMESHGUI_SpinBox*      SpinBox_DZ;
123
124   QLabel*                TextLabelAngle;
125   SMESHGUI_SpinBox*      SpinBox_Angle;
126   //QCheckBox* CheckBoxCopy;
127   QGroupBox*             ActionBox;
128   QButtonGroup*          ActionGroup;
129   QCheckBox*             MakeGroupsCheck;
130   QLineEdit*             LineEditNewMesh;
131
132   QString                myHelpFileName;
133
134   SMESHGUI_FilterDlg*    myFilterDlg;
135
136 private slots:
137   void                   ClickOnOk();
138   void                   ClickOnCancel();
139   bool                   ClickOnApply();
140   void                   ClickOnHelp();
141   void                   SetEditCurrentArgument();
142   void                   SelectionIntoArgument();
143   void                   DeactivateActiveDialog();
144   void                   ActivateThisDialog();
145   void                   onTextChange( const QString& );
146   void                   onSelectMesh( bool );
147   void                   onVectorChanged();
148   void                   onActionClicked( int );
149   void                   setFilters();
150 };
151
152 #endif // SMESHGUI_ROTATIONDLG_H