Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef SMESHGUI_CONVTOQUADDLG_H
00028 #define SMESHGUI_CONVTOQUADDLG_H
00029
00030
00031 #include "SMESH_SMESHGUI.hxx"
00032
00033 #include "SMESHGUI_Dialog.h"
00034
00035 class QCheckBox;
00036 class QRadioButton;
00037 class QButtonGroup;
00038 class QGroupBox;
00039 class QLabel;
00040
00041 class SMESHGUI_EXPORT SMESHGUI_ConvToQuadDlg : public SMESHGUI_Dialog
00042 {
00043 Q_OBJECT
00044
00045 public:
00046 SMESHGUI_ConvToQuadDlg();
00047 virtual ~SMESHGUI_ConvToQuadDlg();
00048
00049 bool IsMediumNdsOnGeom() const;
00050 void SetMediumNdsOnGeom( const bool );
00051 bool IsEnabledCheck() const;
00052 void SetEnabledCheck( const bool );
00053 void SetEnabledGroup( const bool );
00054 void SetEnabledControls( const bool );
00055 void SetEnabledRB( const int, const bool );
00056 int CurrentRB();
00057 void ShowWarning(bool);
00058 bool isWarningShown();
00059
00060 signals:
00061 void onClicked( int );
00062
00063 private:
00064 QCheckBox* myMedNdsOnGeom;
00065 QGroupBox* myBGBox;
00066 QButtonGroup* myBG;
00067 QRadioButton* myRB1;
00068 QRadioButton* myRB2;
00069 QLabel* myWarning;
00070 };
00071
00072 #endif // SMESHGUI_CONVTOQUADDLG_H