mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 08:39:16 +05:00
103 lines
2.8 KiB
C
103 lines
2.8 KiB
C
|
// File : SMESHGUI_AddFaceDlg.h
|
||
|
// Created : Wed Jun 26 21:00:41 2002
|
||
|
// Author : Nicolas REJNERI
|
||
|
|
||
|
// Project : SALOME
|
||
|
// Module : SMESH
|
||
|
// Copyright : Open CASCADE 2002
|
||
|
// $Header$
|
||
|
|
||
|
|
||
|
#ifndef DIALOGBOX_ADD_FACE_H
|
||
|
#define DIALOGBOX_ADD_FACE_H
|
||
|
|
||
|
#include "SALOME_Selection.h"
|
||
|
|
||
|
// QT Includes
|
||
|
#include <qvariant.h>
|
||
|
#include <qdialog.h>
|
||
|
|
||
|
// Open CASCADE Includes
|
||
|
#include <TColStd_MapOfInteger.hxx>
|
||
|
|
||
|
class QVBoxLayout;
|
||
|
class QHBoxLayout;
|
||
|
class QGridLayout;
|
||
|
class QButtonGroup;
|
||
|
class QGroupBox;
|
||
|
class QLabel;
|
||
|
class QLineEdit;
|
||
|
class QPushButton;
|
||
|
class QRadioButton;
|
||
|
class QCheckBox;
|
||
|
class SMESHGUI;
|
||
|
|
||
|
// IDL Headers
|
||
|
#include <SALOMEconfig.h>
|
||
|
#include CORBA_SERVER_HEADER(SMESH_Mesh)
|
||
|
|
||
|
//=================================================================================
|
||
|
// class : SMESHGUI_AddFaceDlg
|
||
|
// purpose :
|
||
|
//=================================================================================
|
||
|
class SMESHGUI_AddFaceDlg : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
SMESHGUI_AddFaceDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0,
|
||
|
int nbNode = 3, bool modal = FALSE, WFlags fl = 0 );
|
||
|
~SMESHGUI_AddFaceDlg();
|
||
|
|
||
|
private:
|
||
|
|
||
|
void Init( SALOME_Selection* Sel ) ;
|
||
|
void closeEvent( QCloseEvent* e ) ;
|
||
|
void enterEvent ( QEvent * ) ; /* mouse enter the QWidget */
|
||
|
|
||
|
SMESHGUI* mySMESHGUI ; /* Current SMESHGUI object */
|
||
|
SALOME_Selection* mySelection ; /* User shape selection */
|
||
|
bool myOkNodes ; /* to check when arguments is defined */
|
||
|
|
||
|
int myNodes ;
|
||
|
bool reverse ;
|
||
|
int myConstructorId ; /* Current constructor id = radio button id */
|
||
|
QLineEdit* myEditCurrentArgument; /* Current LineEdit */
|
||
|
|
||
|
SMESH::SMESH_Mesh_var myMesh;
|
||
|
TColStd_MapOfInteger myMapIndex;
|
||
|
|
||
|
QButtonGroup* GroupConstructors;
|
||
|
QRadioButton* Constructor1;
|
||
|
QGroupBox* GroupButtons;
|
||
|
QPushButton* buttonOk;
|
||
|
QPushButton* buttonCancel;
|
||
|
QPushButton* buttonApply;
|
||
|
QGroupBox* GroupC1;
|
||
|
QLabel* TextLabelC1A1;
|
||
|
QPushButton* SelectButtonC1A1;
|
||
|
QLineEdit* LineEditC1A1;
|
||
|
|
||
|
QCheckBox* Reverse;
|
||
|
|
||
|
private slots:
|
||
|
|
||
|
void ConstructorsClicked(int constructorId);
|
||
|
void ClickOnOk();
|
||
|
void ClickOnCancel();
|
||
|
void ClickOnApply();
|
||
|
void SetEditCurrentArgument() ;
|
||
|
void SelectionIntoArgument() ;
|
||
|
void DeactivateActiveDialog() ;
|
||
|
void ActivateThisDialog() ;
|
||
|
void CheckBox( int );
|
||
|
|
||
|
protected:
|
||
|
QGridLayout* SMESHGUI_AddFaceDlgLayout;
|
||
|
QGridLayout* GroupConstructorsLayout;
|
||
|
QGridLayout* GroupButtonsLayout;
|
||
|
QGridLayout* GroupC1Layout;
|
||
|
};
|
||
|
|
||
|
#endif // DIALOGBOX_ADD_FACE_H
|