smesh/src/SMESHGUI/SMESHGUI_SingleEditDlg.h

135 lines
4.0 KiB
C
Raw Normal View History

2012-08-09 16:03:55 +06:00
// Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
2004-12-01 15:48:31 +05:00
//
2012-08-09 16:03:55 +06:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2004-12-01 15:48:31 +05:00
//
2012-08-09 16:03:55 +06:00
// 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.
2004-12-01 15:48:31 +05:00
//
2012-08-09 16:03:55 +06:00
// 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.
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
// 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
//
2012-08-09 16:03:55 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
2009-02-17 10:27:49 +05:00
// File : SMESHGUI_SingleEditDlg.h
// Author : Sergey LITONIN, Open CASCADE S.A.S.
//
#ifndef SMESHGUI_SINGLEEDITDLG_H
#define SMESHGUI_SINGLEEDITDLG_H
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
// SMESH includes
#include "SMESH_SMESHGUI.hxx"
2009-02-17 10:27:49 +05:00
// Qt includes
#include <QDialog>
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
// IDL includes
2004-12-01 15:48:31 +05:00
#include <SALOMEconfig.h>
#include CORBA_SERVER_HEADER(SMESH_MeshEditor)
2004-12-01 15:48:31 +05:00
class QLineEdit;
class QPushButton;
class SMESHGUI;
class SMESH_Actor;
class SVTK_Selector;
class LightApp_SelectionMgr;
/*!
* Class : SMESHGUI_SingleEditDlg
* Description : Base class for dialogs of diagonal inversion and
* union of two neighboring triangles
*/
class SMESHGUI_EXPORT SMESHGUI_SingleEditDlg : public QDialog
2004-12-01 15:48:31 +05:00
{
Q_OBJECT
public:
2009-02-17 10:27:49 +05:00
SMESHGUI_SingleEditDlg( SMESHGUI* );
virtual ~SMESHGUI_SingleEditDlg();
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
void Init();
2004-12-01 15:48:31 +05:00
protected slots:
void onOk();
virtual bool onApply();
void onClose();
void onHelp();
2004-12-01 15:48:31 +05:00
void onDeactivate();
2004-12-01 15:48:31 +05:00
void onSelectionDone();
2009-02-17 10:27:49 +05:00
void onTextChange( const QString& );
2004-12-01 15:48:31 +05:00
protected:
2009-02-17 10:27:49 +05:00
void closeEvent( QCloseEvent* );
void enterEvent( QEvent* );
void hideEvent( QHideEvent* ); /* ESC key */
void keyPressEvent( QKeyEvent* );
QWidget* createButtonFrame( QWidget* );
QWidget* createMainFrame( QWidget* );
bool isValid( const bool ) const;
bool getNodeIds( const QString&, int&, int& ) const;
virtual bool process( SMESH::SMESH_MeshEditor_ptr, const int, const int ) = 0;
2004-12-01 15:48:31 +05:00
protected:
bool myBusy;
QPushButton* myOkBtn;
QPushButton* myApplyBtn;
QPushButton* myCloseBtn;
QPushButton* myHelpBtn;
QLineEdit* myEdge;
SMESH_Actor* myActor;
LightApp_SelectionMgr* mySelectionMgr;
SVTK_Selector* mySelector;
SMESHGUI* mySMESHGUI;
QString myHelpFileName;
2004-12-01 15:48:31 +05:00
};
/*!
* Class : SMESHGUI_TrianglesInversionDlg
* Description : Inversion of the diagonal of a pseudo-quadrangle formed by
* 2 neighboring triangles with 1 common edge
*/
2004-12-01 15:48:31 +05:00
class SMESHGUI_TrianglesInversionDlg : public SMESHGUI_SingleEditDlg
{
Q_OBJECT
2004-12-01 15:48:31 +05:00
public:
2009-02-17 10:27:49 +05:00
SMESHGUI_TrianglesInversionDlg( SMESHGUI* );
virtual ~SMESHGUI_TrianglesInversionDlg();
2004-12-01 15:48:31 +05:00
protected:
2009-02-17 10:27:49 +05:00
virtual bool process( SMESH::SMESH_MeshEditor_ptr, const int, const int );
2004-12-01 15:48:31 +05:00
};
/*!
* Class : SMESHGUI_UnionOfTwoTrianglesDlg
* Description : Construction of a quadrangle by deletion of the
* common border of 2 neighboring triangles
*/
2004-12-01 15:48:31 +05:00
class SMESHGUI_UnionOfTwoTrianglesDlg : public SMESHGUI_SingleEditDlg
{
Q_OBJECT
public:
2009-02-17 10:27:49 +05:00
SMESHGUI_UnionOfTwoTrianglesDlg( SMESHGUI* );
virtual ~SMESHGUI_UnionOfTwoTrianglesDlg();
2004-12-01 15:48:31 +05:00
protected:
2009-02-17 10:27:49 +05:00
virtual bool process( SMESH::SMESH_MeshEditor_ptr, const int, const int );
2004-12-01 15:48:31 +05:00
};
2009-02-17 10:27:49 +05:00
#endif // SMESHGUI_SINGLEEDITDLG_H