1 // Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
18 // See http://www.salome-platform.org/
23 * Copyright (C) 2005 CEA/DEN, EDF R&D
27 * File : SMESHGUI_MeshDlg.h
28 * Author : Sergey LITONIN
33 #ifndef SMESHGUI_MeshDlg_H
34 #define SMESHGUI_MeshDlg_H
36 #include "SMESHGUI_Dialog.h"
38 #include <qstringlist.h>
41 class SMESHGUI_MeshTab;
50 * \brief Dialog for mech creation or editing
52 * This dialog is used for mech creation or editing.
54 class SMESHGUI_MeshDlg : public SMESHGUI_Dialog
60 enum Controls { Obj, Mesh, Geom };
62 /*! Describes dimensions */
63 enum Dimensions { Dim1D = 0, Dim2D, Dim3D };
66 SMESHGUI_MeshDlg( const bool theToCreate, const bool theIsMesh );
67 virtual ~SMESHGUI_MeshDlg();
69 SMESHGUI_MeshTab* tab( const int ) const;
71 void setCurrentTab( const int );
72 void setMaxHypoDim( const int );
73 void setHypoSets( const QStringList& );
74 void setGeomPopupEnabled( const bool );
78 void hypoSet( const QString& );
79 void geomSelectionByMesh( bool );
83 void onHypoSetPopup( int );
84 void onHypoSetButton();
85 void onGeomPopup( int );
86 void onGeomSelectionButton( bool );
90 QMap< int, SMESHGUI_MeshTab* > myTabs;
92 QPopupMenu* myHypoSetPopup;
93 QPopupMenu* myGeomPopup;
97 * \brief Tab for tab widget containing controls for definition of
98 * algorithms and hypotheses
101 class SMESHGUI_MeshTab : public QFrame
106 /*! To differ main algorithms, hypotheses and additional ones*/
109 Algo = 0, //!< algorithms
110 MainHyp, //!< main hypothesis
111 AddHyp //!< additional hypothesis
115 SMESHGUI_MeshTab( QWidget* );
116 virtual ~SMESHGUI_MeshTab();
118 void setAvailableHyps( const int, const QStringList& );
119 void setExistingHyps( const int, const QStringList& );
120 void addHyp( const int, const QString& );
121 void renameHyp( const int, const int, const QString& );
122 void setCurrentHyp( const int, const int );
123 int currentHyp( const int ) const;
128 void createHyp( const int theHypType, const int theIndex );
129 //!< Emited when "Create hypothesis" button clicked
130 void editHyp( const int theHypType, const int theIndex );
131 //!< Emited when "Edit hypothesis" button clicked
138 void onPopupItem( int );
142 QMap< int, QComboBox* > myHyp;
143 QMap< int, QToolButton* > myCreateHyp;
144 QMap< int, QToolButton* > myEditHyp;
146 QMap< int, QStringList > myAvailableHyps;
147 QMap< int, QStringList > myExistingHyps;