2009-02-17 10:27:49 +05:00
|
|
|
// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
|
|
|
|
//
|
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
2005-06-07 19:22:20 +06:00
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
//
|
2009-02-17 10:27:49 +05:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2005-06-07 19:22:20 +06:00
|
|
|
//
|
2009-02-17 10:27:49 +05:00
|
|
|
// File : SMESHGUI_CreatePatternDlg.h
|
|
|
|
// Author : Sergey LITONIN, Open CASCADE S.A.S.
|
2005-06-07 19:22:20 +06:00
|
|
|
//
|
2009-02-17 10:27:49 +05:00
|
|
|
#ifndef SMESHGUI_CREATEPATTERNDLG_H
|
|
|
|
#define SMESHGUI_CREATEPATTERNDLG_H
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// SMESH includes
|
2008-03-07 12:47:05 +05:00
|
|
|
#include "SMESH_SMESHGUI.hxx"
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// Qt includes
|
|
|
|
#include <QDialog>
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// IDL includes
|
2005-06-07 19:22:20 +06:00
|
|
|
#include <SALOMEconfig.h>
|
|
|
|
#include CORBA_SERVER_HEADER(SMESH_Mesh)
|
|
|
|
#include CORBA_SERVER_HEADER(SMESH_Pattern)
|
|
|
|
|
|
|
|
class SMESHGUI_PatternWidget;
|
|
|
|
class SALOMEDSClient_SObject;
|
|
|
|
|
|
|
|
class QLineEdit;
|
|
|
|
class QRadioButton;
|
|
|
|
class QCheckBox;
|
|
|
|
class QButtonGroup;
|
|
|
|
class SVTK_Selector;
|
2009-02-17 10:27:49 +05:00
|
|
|
class LightApp_SelectionMgr;
|
2005-06-07 19:22:20 +06:00
|
|
|
class SMESHGUI;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Class : SMESHGUI_CreatePatternDlg
|
|
|
|
* Description : Dialog to specify filters for VTK viewer
|
|
|
|
*/
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
class SMESHGUI_EXPORT SMESHGUI_CreatePatternDlg : public QDialog
|
2005-06-07 19:22:20 +06:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum { Type_2d, Type_3d };
|
|
|
|
|
|
|
|
public:
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESHGUI_CreatePatternDlg( SMESHGUI*, const int );
|
|
|
|
virtual ~SMESHGUI_CreatePatternDlg();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
void Init( const int );
|
2005-06-07 19:22:20 +06:00
|
|
|
QString GetPatternName() const;
|
|
|
|
SMESH::SMESH_Pattern_ptr GetPattern();
|
2009-02-17 10:27:49 +05:00
|
|
|
void SetMesh( SMESH::SMESH_Mesh_ptr );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void NewPattern();
|
|
|
|
void Close();
|
|
|
|
|
|
|
|
private:
|
2009-02-17 10:27:49 +05:00
|
|
|
void closeEvent( QCloseEvent* );
|
|
|
|
void enterEvent( QEvent* );
|
|
|
|
void keyPressEvent( QKeyEvent* );
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
private slots:
|
|
|
|
void onOk();
|
|
|
|
void onSave();
|
|
|
|
void onClose();
|
2006-05-06 14:51:48 +06:00
|
|
|
void onHelp();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
void onDeactivate();
|
|
|
|
|
|
|
|
void onSelectionDone();
|
2009-02-17 10:27:49 +05:00
|
|
|
void onTypeChanged( int );
|
|
|
|
void onProject( bool );
|
2005-06-07 19:22:20 +06:00
|
|
|
void onSelBtnClicked();
|
|
|
|
|
|
|
|
private:
|
2009-02-17 10:27:49 +05:00
|
|
|
QWidget* createButtonFrame( QWidget* );
|
|
|
|
QWidget* createMainFrame( QWidget* );
|
2005-06-07 19:22:20 +06:00
|
|
|
void displayPreview();
|
|
|
|
void erasePreview();
|
|
|
|
void activateSelection();
|
2009-02-17 10:27:49 +05:00
|
|
|
QString autoExtension( const QString& ) const;
|
2005-06-07 19:22:20 +06:00
|
|
|
bool isValid();
|
2009-02-17 10:27:49 +05:00
|
|
|
bool loadFromObject( const bool = true );
|
2005-06-07 19:22:20 +06:00
|
|
|
QString getDefaultName() const;
|
2009-02-17 10:27:49 +05:00
|
|
|
GEOM::GEOM_Object_ptr getGeom( SALOMEDSClient_SObject* ) const;
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
private:
|
|
|
|
QButtonGroup* myTypeGrp;
|
|
|
|
QRadioButton* mySwitch2d;
|
|
|
|
QRadioButton* mySwitch3d;
|
|
|
|
|
|
|
|
QLineEdit* myMeshEdit;
|
|
|
|
QLineEdit* myName;
|
|
|
|
|
|
|
|
SMESHGUI_PatternWidget* myPicture2d;
|
|
|
|
|
|
|
|
QCheckBox* myProjectChk;
|
|
|
|
|
|
|
|
SMESHGUI* mySMESHGUI;
|
|
|
|
SVTK_Selector* mySelector;
|
2005-11-03 13:38:17 +05:00
|
|
|
LightApp_SelectionMgr* mySelectionMgr;
|
2005-06-07 19:22:20 +06:00
|
|
|
int myType;
|
|
|
|
|
|
|
|
SMESH::SMESH_Mesh_var myMesh;
|
|
|
|
SMESH::SMESH_subMesh_var mySubMesh;
|
|
|
|
GEOM::GEOM_Object_var myGeomObj;
|
|
|
|
|
|
|
|
SMESH::SMESH_Pattern_var myPattern;
|
|
|
|
bool myIsLoaded;
|
2006-05-06 14:51:48 +06:00
|
|
|
|
|
|
|
QString myHelpFileName;
|
2005-06-07 19:22:20 +06:00
|
|
|
};
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
#endif // SMESHGUI_CREATEPATTERNDLG_H
|