X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMESHGUI%2FSMESHGUI_CreatePatternDlg.h;h=838b609d4f126969a0d5cfadec6bc15ea46d7d0d;hb=2401f44552bb686696c46fccec1aaa874695e3db;hp=b7c1db78f7edc64d406f079d5d1df546c9a9bcce;hpb=c63ee099ad2b149bd70136839c973e8910137bc5;p=modules%2Fsmesh.git diff --git a/src/SMESHGUI/SMESHGUI_CreatePatternDlg.h b/src/SMESHGUI/SMESHGUI_CreatePatternDlg.h index b7c1db78f..838b609d4 100755 --- a/src/SMESHGUI/SMESHGUI_CreatePatternDlg.h +++ b/src/SMESHGUI/SMESHGUI_CreatePatternDlg.h @@ -1,4 +1,6 @@ -// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS // // This library is free software; you can redistribute it and/or @@ -15,41 +17,34 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com -// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // +// File : SMESHGUI_CreatePatternDlg.h +// Author : Sergey LITONIN, Open CASCADE S.A.S. // -// File : SMESHGUI_CreatePatternDlg.h -// Author : Sergey LITONIN -// Module : SMESH - +#ifndef SMESHGUI_CREATEPATTERNDLG_H +#define SMESHGUI_CREATEPATTERNDLG_H -#ifndef SMESHGUI_CreatePatternDlg_H -#define SMESHGUI_CreatePatternDlg_H +// SMESH includes +#include "SMESH_SMESHGUI.hxx" -#include +// Qt includes +#include -// IDL Headers +// IDL includes #include -#include CORBA_SERVER_HEADER(GEOM_Gen) #include CORBA_SERVER_HEADER(SMESH_Mesh) #include CORBA_SERVER_HEADER(SMESH_Pattern) class SMESHGUI_PatternWidget; class SALOMEDSClient_SObject; -class QCloseEvent; -class QFrame; class QLineEdit; -class SMESHGUI_SpinBox; -class QPushButton; -class LightApp_SelectionMgr; class QRadioButton; class QCheckBox; class QButtonGroup; -class QLabel; -class SVTK_ViewWindow; class SVTK_Selector; +class LightApp_SelectionMgr; class SMESHGUI; /*! @@ -57,7 +52,7 @@ class SMESHGUI; * Description : Dialog to specify filters for VTK viewer */ -class SMESHGUI_CreatePatternDlg : public QDialog +class SMESHGUI_EXPORT SMESHGUI_CreatePatternDlg : public QDialog { Q_OBJECT @@ -65,28 +60,24 @@ public: enum { Type_2d, Type_3d }; public: - SMESHGUI_CreatePatternDlg( SMESHGUI*, - const int, - const char* = 0); - virtual ~SMESHGUI_CreatePatternDlg(); + SMESHGUI_CreatePatternDlg( SMESHGUI*, const int ); + virtual ~SMESHGUI_CreatePatternDlg(); - void Init(const int); + void Init( const int ); QString GetPatternName() const; SMESH::SMESH_Pattern_ptr GetPattern(); - void SetMesh (SMESH::SMESH_Mesh_ptr); + void SetMesh( SMESH::SMESH_Mesh_ptr ); signals: - void NewPattern(); void Close(); private: - - void closeEvent (QCloseEvent* e); - void enterEvent (QEvent*); - + void closeEvent( QCloseEvent* ); + void enterEvent( QEvent* ); + void keyPressEvent( QKeyEvent* ); + private slots: - void onOk(); void onSave(); void onClose(); @@ -95,34 +86,26 @@ private slots: void onDeactivate(); void onSelectionDone(); - void onTypeChanged (int); - void onProject (bool); + void onTypeChanged( int ); + void onProject( bool ); void onSelBtnClicked(); private: - - QFrame* createButtonFrame (QWidget*); - QFrame* createMainFrame (QWidget*); + QWidget* createButtonFrame( QWidget* ); + QWidget* createMainFrame( QWidget* ); void displayPreview(); void erasePreview(); void activateSelection(); - QString autoExtension (const QString& theFileName) const; + QString autoExtension( const QString& ) const; bool isValid(); - bool loadFromObject (const bool = true); + bool loadFromObject( const bool = true ); QString getDefaultName() const; - GEOM::GEOM_Object_ptr getGeom (SALOMEDSClient_SObject*) const; + GEOM::GEOM_Object_ptr getGeom( SALOMEDSClient_SObject* ) const; private: - - QPushButton* myOkBtn; - QPushButton* mySaveBtn; - QPushButton* myCloseBtn; - QPushButton* myHelpBtn; - QButtonGroup* myTypeGrp; QRadioButton* mySwitch2d; QRadioButton* mySwitch3d; - QRadioButton* mySwitchSMESH_Pattern3d; QLineEdit* myMeshEdit; QLineEdit* myName; @@ -134,7 +117,6 @@ private: SMESHGUI* mySMESHGUI; SVTK_Selector* mySelector; LightApp_SelectionMgr* mySelectionMgr; - int myNbPoints; int myType; SMESH::SMESH_Mesh_var myMesh; @@ -147,4 +129,4 @@ private: QString myHelpFileName; }; -#endif +#endif // SMESHGUI_CREATEPATTERNDLG_H