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