Salome HOME
08f11ff6fee6755b3418db23aaeaaf5b38d23aff
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MeshDlg.h
1 // Copyright (C) 2007-2013  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_MeshDlg.h
25 // Author : Sergey LITONIN, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_MESHDLG_H
28 #define SMESHGUI_MESHDLG_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32
33 #include "SMESHGUI_Dialog.h"
34
35 // Qt includes
36 #include <QFrame>
37 #include <QStringList>
38 #include <QMap>
39
40 class SMESHGUI_MeshTab;
41 class QTabWidget;
42 class QComboBox;
43 class QToolButton;
44 class QMenu;
45 class QAction;
46
47 /*!
48  * \brief Dialog for mech creation or editing
49  *
50  *  This dialog is used for mech creation or editing. 
51 */
52 class SMESHGUI_EXPORT SMESHGUI_MeshDlg : public SMESHGUI_Dialog
53
54   Q_OBJECT       
55       
56 public:
57   
58   enum Controls { Obj, Mesh, Geom };
59   
60   /*! Describes dimensions */
61   enum Dimensions { Dim0D = 0, Dim1D, Dim2D, Dim3D };      
62   
63 public:
64   SMESHGUI_MeshDlg( const bool, const bool );
65   virtual ~SMESHGUI_MeshDlg();
66   
67   SMESHGUI_MeshTab*            tab( const int ) const;
68   void                         reset();
69   void                         setCurrentTab( const int );
70   void                         setMaxHypoDim( const int );
71   void                         setHypoSets( const QStringList& );
72   void                         setGeomPopupEnabled( const bool );
73   void                         disableTab(const int);
74   void                         enableTab(const int);
75   bool                         isTabEnabled(const int) const;
76   int                          getActiveObject();
77   void                         setAvailableMeshType(const QStringList& );
78   int                          currentMeshType();
79
80 signals:
81   void                         hypoSet( const QString& );
82   void                         geomSelectionByMesh( bool );
83   void                         selectMeshType( const int, const int );
84
85 private slots:  
86   void                         onHypoSetPopup( QAction* );
87   void                         onGeomPopup( QAction* );
88   void                         onGeomSelectionButton( bool );
89   void                         onChangedMeshType( const int );
90
91 private:
92   QMap<int, SMESHGUI_MeshTab*> myTabs;
93   QTabWidget*                  myTabWg;
94   QToolButton*                 myHypoSetButton;
95   QMenu*                       myGeomPopup;
96   QComboBox*                   myMeshType;
97 };
98
99 /*!
100  * \brief Tab for tab widget containing controls for definition of 
101  * algorithms and hypotheses
102 */ 
103
104 class SMESHGUI_EXPORT SMESHGUI_MeshTab : public QFrame
105 {
106   Q_OBJECT
107       
108 public:      
109   /*! To differ main algorithms, hypotheses and additional ones*/
110   enum HypType
111   { 
112     Algo = 0, //!< algorithms
113     MainHyp,  //!< main hypothesis
114     AddHyp    //!< additional hypothesis
115   };            
116       
117 public:      
118   SMESHGUI_MeshTab( QWidget* );
119   virtual ~SMESHGUI_MeshTab();
120   
121   void                         setAvailableHyps( const int, const QStringList& );
122   void                         setExistingHyps( const int, const QStringList& );
123   void                         addHyp( const int, const QString& );
124   void                         renameHyp( const int, const int, const QString& );
125   void                         setCurrentHyp( const int, const int );
126   int                          currentHyp( const int ) const;
127   void                         reset();
128
129 signals:  
130   void                         createHyp( const int, const int );
131   //!< Emited when "Create hypothesis" button clicked
132   void                         editHyp( const int, const int );
133   //!< Emited when "Edit hypothesis" button clicked
134   void                         selectAlgo( const int );
135   //!< Emited when an algorithm is selected
136   
137 private slots:  
138   void                         onCreateHyp();  
139   void                         onEditHyp();
140   void                         onHyp( int );
141   
142 private:  
143   QMap<int, QComboBox*>        myHyp;
144   QMap<int, QToolButton*>      myCreateHyp;
145   QMap<int, QToolButton*>      myEditHyp;
146   
147   QMap<int, QStringList>       myAvailableHyps;
148   QMap<int, QStringList>       myExistingHyps;
149 };
150
151 #endif // SMESHGUI_MESHDLG_H