1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File : SMESHGUI_MeshDlg.h
25 // Author : Sergey LITONIN, Open CASCADE S.A.S.
27 #ifndef SMESHGUI_MESHDLG_H
28 #define SMESHGUI_MESHDLG_H
31 #include "SMESH_SMESHGUI.hxx"
33 #include "SMESHGUI_Dialog.h"
37 #include <QStringList>
40 class SMESHGUI_MeshTab;
48 * \brief Dialog for mech creation or editing
50 * This dialog is used for mech creation or editing.
52 class SMESHGUI_EXPORT SMESHGUI_MeshDlg : public SMESHGUI_Dialog
58 enum Controls { Obj, Mesh, Geom };
60 /*! Describes dimensions */
61 enum Dimensions { Dim0D = 0, Dim1D, Dim2D, Dim3D };
64 SMESHGUI_MeshDlg( const bool, const bool );
65 virtual ~SMESHGUI_MeshDlg();
67 SMESHGUI_MeshTab* tab( const int ) const;
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();
79 void hypoSet( const QString& );
80 void geomSelectionByMesh( bool );
83 void onHypoSetPopup( QAction* );
84 void onGeomPopup( QAction* );
85 void onGeomSelectionButton( bool );
88 QMap<int, SMESHGUI_MeshTab*> myTabs;
90 QToolButton* myHypoSetButton;
95 * \brief Tab for tab widget containing controls for definition of
96 * algorithms and hypotheses
99 class SMESHGUI_EXPORT SMESHGUI_MeshTab : public QFrame
104 /*! To differ main algorithms, hypotheses and additional ones*/
107 Algo = 0, //!< algorithms
108 MainHyp, //!< main hypothesis
109 AddHyp //!< additional hypothesis
113 SMESHGUI_MeshTab( QWidget* );
114 virtual ~SMESHGUI_MeshTab();
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;
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
138 QMap<int, QComboBox*> myHyp;
139 QMap<int, QToolButton*> myCreateHyp;
140 QMap<int, QToolButton*> myEditHyp;
142 QMap<int, QStringList> myAvailableHyps;
143 QMap<int, QStringList> myExistingHyps;
146 #endif // SMESHGUI_MESHDLG_H