Salome HOME
Merging with WPdev
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MeshDlg.h
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 /**
21 *  SMESH SMESHGUI
22 *
23 *  Copyright (C) 2005  CEA/DEN, EDF R&D
24 *
25 *
26 *
27 *  File   : SMESHGUI_MeshDlg.h
28 *  Author : Sergey LITONIN
29 *  Module : SMESH
30 */
31
32
33 #ifndef SMESHGUI_MeshDlg_H
34 #define SMESHGUI_MeshDlg_H
35
36 #include "SMESH_SMESHGUI.hxx"
37
38 #include "SMESHGUI_Dialog.h"
39 #include <qframe.h>
40 #include <qstringlist.h>
41 #include <qmap.h>
42
43 class SMESHGUI_MeshTab;
44 class QTabWidget;
45 class QLineEdit;
46 class QComboBox;
47 class QToolButton;
48 class QString;
49 class QPopupMenu;
50
51 /*!
52  * \brief Dialog for mech creation or editing
53  *
54  *  This dialog is used for mech creation or editing. 
55 */
56 class SMESHGUI_EXPORT SMESHGUI_MeshDlg : public SMESHGUI_Dialog
57
58   Q_OBJECT       
59       
60 public:
61   
62   enum Controls { Obj, Mesh, Geom };
63   
64   /*! Describes dimensions */
65   enum Dimensions { Dim1D = 0, Dim2D, Dim3D };      
66   
67 public:
68   SMESHGUI_MeshDlg( const bool theToCreate, const bool theIsMesh );
69   virtual ~SMESHGUI_MeshDlg();
70   
71   SMESHGUI_MeshTab*            tab( const int ) const;
72   void                         reset();
73   void                         setCurrentTab( const int );
74   void                         setMaxHypoDim( const int );
75   void                         setHypoSets( const QStringList& );
76   void                         setGeomPopupEnabled( const bool );
77
78 signals:
79
80   void                         hypoSet( const QString& );
81   void                         geomSelectionByMesh( bool );
82
83 private slots:  
84
85   void                         onHypoSetPopup( int );
86   void                         onHypoSetButton();
87   void                         onGeomPopup( int );
88   void                         onGeomSelectionButton( bool );
89
90 private:
91
92   QMap< int, SMESHGUI_MeshTab* > myTabs;
93   QTabWidget*                    myTabWg;
94   QPopupMenu*                    myHypoSetPopup;
95   QPopupMenu*                    myGeomPopup;
96 };
97
98 /*!
99  * \brief Tab for tab widget containing controls for definition of 
100  * algorithms and hypotheses
101 */ 
102
103 class SMESHGUI_EXPORT SMESHGUI_MeshTab : public QFrame
104 {
105   Q_OBJECT
106       
107 public:      
108   /*! To differ main algorithms, hypotheses and additional ones*/
109   enum HypType
110   { 
111     Algo = 0, //!< algorithms
112     MainHyp,  //!< main hypothesis
113     AddHyp    //!< additional hypothesis
114   };            
115       
116 public:      
117   SMESHGUI_MeshTab( QWidget* );
118   virtual ~SMESHGUI_MeshTab();
119   
120   void                         setAvailableHyps( const int, const QStringList& );
121   void                         setExistingHyps( const int, const QStringList& );
122   void                         addHyp( const int, const QString& );
123   void                         renameHyp( const int, const int, const QString& );
124   void                         setCurrentHyp( const int, const int );
125   int                          currentHyp( const int ) const;
126   void                         reset();
127
128 signals:  
129
130   void                         createHyp( const int theHypType, const int theIndex );
131   //!< Emited when "Create hypothesis" button clicked
132   void                         editHyp( const int theHypType, const int theIndex );
133   //!< Emited when "Edit hypothesis" button clicked
134   void                         selectAlgo( const int theIndex );
135   //!< Emited when an algorithm is selected
136   
137 private slots:  
138
139   void                         onCreateHyp();  
140   void                         onEditHyp();
141   void                         onHyp( int );
142   void                         onPopupItem( int );
143   
144 private:  
145   
146   QMap< int, QComboBox* >      myHyp;
147   QMap< int, QToolButton* >    myCreateHyp;
148   QMap< int, QToolButton* >    myEditHyp;
149   
150   QMap< int, QStringList >     myAvailableHyps;
151   QMap< int, QStringList >     myExistingHyps;
152   
153   QPopupMenu*                  myPopup;
154 };
155
156 #endif