Salome HOME
Merge from V5_1_main 14/05/2010
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MeshDlg.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 // 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
78 signals:
79   void                         hypoSet( const QString& );
80   void                         geomSelectionByMesh( bool );
81
82 private slots:  
83   void                         onHypoSetPopup( QAction* );
84   void                         onGeomPopup( QAction* );
85   void                         onGeomSelectionButton( bool );
86
87 private:
88   QMap<int, SMESHGUI_MeshTab*> myTabs;
89   QTabWidget*                  myTabWg;
90   QToolButton*                 myHypoSetButton;
91   QMenu*                       myGeomPopup;
92 };
93
94 /*!
95  * \brief Tab for tab widget containing controls for definition of 
96  * algorithms and hypotheses
97 */ 
98
99 class SMESHGUI_EXPORT SMESHGUI_MeshTab : public QFrame
100 {
101   Q_OBJECT
102       
103 public:      
104   /*! To differ main algorithms, hypotheses and additional ones*/
105   enum HypType
106   { 
107     Algo = 0, //!< algorithms
108     MainHyp,  //!< main hypothesis
109     AddHyp    //!< additional hypothesis
110   };            
111       
112 public:      
113   SMESHGUI_MeshTab( QWidget* );
114   virtual ~SMESHGUI_MeshTab();
115   
116   void                         setAvailableHyps( const int, const QStringList& );
117   void                         setExistingHyps( const int, const QStringList& );
118   void                         addHyp( const int, const QString& );
119   void                         renameHyp( const int, const int, const QString& );
120   void                         setCurrentHyp( const int, const int );
121   int                          currentHyp( const int ) const;
122   void                         reset();
123
124 signals:  
125   void                         createHyp( const int, const int );
126   //!< Emited when "Create hypothesis" button clicked
127   void                         editHyp( const int, const int );
128   //!< Emited when "Edit hypothesis" button clicked
129   void                         selectAlgo( const int );
130   //!< Emited when an algorithm is selected
131   
132 private slots:  
133   void                         onCreateHyp();  
134   void                         onEditHyp();
135   void                         onHyp( int );
136   
137 private:  
138   QMap<int, QComboBox*>        myHyp;
139   QMap<int, QToolButton*>      myCreateHyp;
140   QMap<int, QToolButton*>      myEditHyp;
141   
142   QMap<int, QStringList>       myAvailableHyps;
143   QMap<int, QStringList>       myExistingHyps;
144 };
145
146 #endif // SMESHGUI_MESHDLG_H