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