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