Salome HOME
Merge from BR_V5_DEV 16Feb09
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_CreatePatternDlg.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 // File   : SMESHGUI_CreatePatternDlg.h
23 // Author : Sergey LITONIN, Open CASCADE S.A.S.
24 //
25 #ifndef SMESHGUI_CREATEPATTERNDLG_H
26 #define SMESHGUI_CREATEPATTERNDLG_H
27
28 // SMESH includes
29 #include "SMESH_SMESHGUI.hxx"
30
31 // Qt includes
32 #include <QDialog>
33
34 // IDL includes
35 #include <SALOMEconfig.h>
36 #include CORBA_SERVER_HEADER(SMESH_Mesh)
37 #include CORBA_SERVER_HEADER(SMESH_Pattern)
38
39 class SMESHGUI_PatternWidget;
40 class SALOMEDSClient_SObject;
41
42 class QLineEdit;
43 class QRadioButton;
44 class QCheckBox;
45 class QButtonGroup;
46 class SVTK_Selector;
47 class LightApp_SelectionMgr;
48 class SMESHGUI;
49
50 /*!
51  *  Class       : SMESHGUI_CreatePatternDlg
52  *  Description : Dialog to specify filters for VTK viewer
53  */
54
55 class SMESHGUI_EXPORT SMESHGUI_CreatePatternDlg : public QDialog
56 {
57   Q_OBJECT
58
59 public:
60   enum { Type_2d, Type_3d };
61
62 public:
63   SMESHGUI_CreatePatternDlg( SMESHGUI*, const int );
64   virtual ~SMESHGUI_CreatePatternDlg();
65
66   void                     Init( const int );
67   QString                  GetPatternName() const;
68   SMESH::SMESH_Pattern_ptr GetPattern();
69   void                     SetMesh( SMESH::SMESH_Mesh_ptr );
70
71 signals:
72   void                     NewPattern();
73   void                     Close();
74
75 private:
76   void                     closeEvent( QCloseEvent* );
77   void                     enterEvent( QEvent* );
78   void                     keyPressEvent( QKeyEvent* );
79  
80 private slots:
81   void                     onOk();
82   void                     onSave();
83   void                     onClose();
84   void                     onHelp();
85
86   void                     onDeactivate();
87
88   void                     onSelectionDone();
89   void                     onTypeChanged( int );
90   void                     onProject( bool );
91   void                     onSelBtnClicked();
92
93 private:
94   QWidget*                 createButtonFrame( QWidget* );
95   QWidget*                 createMainFrame( QWidget* );
96   void                     displayPreview();
97   void                     erasePreview();
98   void                     activateSelection();
99   QString                  autoExtension( const QString& ) const;
100   bool                     isValid();
101   bool                     loadFromObject( const bool = true );
102   QString                  getDefaultName() const;
103   GEOM::GEOM_Object_ptr    getGeom( SALOMEDSClient_SObject* ) const;
104
105 private:
106   QButtonGroup*            myTypeGrp;
107   QRadioButton*            mySwitch2d;
108   QRadioButton*            mySwitch3d;
109
110   QLineEdit*               myMeshEdit;
111   QLineEdit*               myName;
112
113   SMESHGUI_PatternWidget*  myPicture2d;
114
115   QCheckBox*               myProjectChk;
116
117   SMESHGUI*                mySMESHGUI;
118   SVTK_Selector*           mySelector;
119   LightApp_SelectionMgr*   mySelectionMgr;
120   int                      myType;
121
122   SMESH::SMESH_Mesh_var    myMesh;
123   SMESH::SMESH_subMesh_var mySubMesh;
124   GEOM::GEOM_Object_var    myGeomObj;
125
126   SMESH::SMESH_Pattern_var myPattern;
127   bool                     myIsLoaded;
128
129   QString                  myHelpFileName;
130 };
131
132 #endif // SMESHGUI_CREATEPATTERNDLG_H