smesh/src/SMESHGUI/SMESHGUI_MeshDlg.h

133 lines
3.2 KiB
C++

/**
* SMESH SMESHGUI
*
* Copyright (C) 2005 CEA/DEN, EDF R&D
*
*
*
* File : SMESHGUI_MeshDlg.h
* Author : Sergey LITONIN
* Module : SMESH
*/
#ifndef SMESHGUI_MeshDlg_H
#define SMESHGUI_MeshDlg_H
#include "SMESHGUI_Dialog.h"
#include <qframe.h>
#include <qstringlist.h>
#include <qmap.h>
class SMESHGUI_MeshTab;
class QTabWidget;
class QLineEdit;
class QComboBox;
class QToolButton;
class QString;
class QPopupMenu;
/*!
* \brief Dialog for mech creation or editing
*
* This dialog is used for mech creation or editing.
*/
class SMESHGUI_MeshDlg : public SMESHGUI_Dialog
{
Q_OBJECT
public:
enum Controls { Obj, Mesh, Geom };
/*! Describes dimensions */
enum Dimensions { Dim1D = 0, Dim2D, Dim3D };
public:
SMESHGUI_MeshDlg( const bool theToCreate, const bool theIsMesh );
virtual ~SMESHGUI_MeshDlg();
SMESHGUI_MeshTab* tab( const int ) const;
void reset();
void setCurrentTab( const int );
void setMaxHypoDim( const int );
void setHypoSets( const QStringList& );
signals:
void hypoSet( const QString& );
private slots:
void onHypoSetPopup( int );
void onHypoSetButton();
private:
QMap< int, SMESHGUI_MeshTab* > myTabs;
QTabWidget* myTabWg;
QPopupMenu* myHypoSetPopup;
};
/*!
* \brief Tab for tab widget containing controls for definition of
* algorithms and hypotheses
*/
class SMESHGUI_MeshTab : public QFrame
{
Q_OBJECT
public:
/*! To differ main algorithms, hypotheses and additional ones*/
enum HypType
{
Algo = 0, //!< algorithms
MainHyp, //!< main hypothesis
AddHyp //!< additional hypothesis
};
public:
SMESHGUI_MeshTab( QWidget* );
virtual ~SMESHGUI_MeshTab();
void setAvailableHyps( const int, const QStringList& );
void setExistingHyps( const int, const QStringList& );
void addHyp( const int, const QString& );
void renameHyp( const int, const int, const QString& );
void setCurrentHyp( const int, const int );
int currentHyp( const int ) const;
void reset();
signals:
void createHyp( const int theHypType, const int theIndex );
//!< Emited when "Create hypothesis" button clicked
void editHyp( const int theHypType, const int theIndex );
//!< Emited when "Edit hypothesis" button clicked
private slots:
void onCreateHyp();
void onEditHyp();
void onHyp( int );
void onPopupItem( int );
private:
QMap< int, QComboBox* > myHyp;
QMap< int, QToolButton* > myCreateHyp;
QMap< int, QToolButton* > myEditHyp;
QMap< int, QStringList > myAvailableHyps;
QMap< int, QStringList > myExistingHyps;
QPopupMenu* myPopup;
};
#endif