smesh/src/SMESHGUI/SMESHGUI_ExtrusionAlongPathDlg.h

148 lines
4.9 KiB
C
Raw Normal View History

2015-02-13 13:38:35 +05:00
// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE
2005-01-20 11:25:54 +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
2005-01-20 11:25:54 +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
2014-02-20 18:25:37 +06:00
// version 2.1 of the License, or (at your option) any later version.
2005-01-20 11:25:54 +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.
2005-01-20 11:25:54 +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
// SMESH SMESHGUI : GUI for SMESH component
// File : SMESHGUI_ExtrusionAlongPathDlg.h
// Author : Vadim SANDLER, Open CASCADE S.A.S.
//
#ifndef SMESHGUI_EXTRUSIONALONGPATHDLG_H
#define SMESHGUI_EXTRUSIONALONGPATHDLG_H
2005-01-20 11:25:54 +05:00
2009-02-17 10:27:49 +05:00
// SMESH includes
#include "SMESH_SMESHGUI.hxx"
2012-08-09 16:03:55 +06:00
#include "SMESHGUI_PreviewDlg.h"
2009-02-17 10:27:49 +05:00
// IDL includes
#include <SALOMEconfig.h>
#include CORBA_SERVER_HEADER(SMESH_Mesh)
2005-01-20 11:25:54 +05:00
class QButtonGroup;
class QRadioButton;
class QGroupBox;
class QLabel;
class QToolButton;
class QLineEdit;
class QCheckBox;
2009-02-17 10:27:49 +05:00
class QListWidget;
2005-01-20 11:25:54 +05:00
class QPushButton;
class LightApp_SelectionMgr;
2005-01-20 11:25:54 +05:00
class SMESHGUI;
class SMESHGUI_3TypesSelector;
class SMESHGUI_FilterDlg;
2009-02-17 10:27:49 +05:00
class SMESHGUI_IdValidator;
class SMESHGUI_SpinBox;
class SMESH_Actor;
2009-02-17 10:27:49 +05:00
class SUIT_SelectionFilter;
class SVTK_Selector;
2005-01-20 11:25:54 +05:00
//=================================================================================
// class : SMESHGUI_ExtrusionAlongPathDlg
// purpose :
//=================================================================================
2012-08-09 16:03:55 +06:00
class SMESHGUI_EXPORT SMESHGUI_ExtrusionAlongPathDlg : public SMESHGUI_PreviewDlg
{
2005-01-20 11:25:54 +05:00
Q_OBJECT
2009-02-17 10:27:49 +05:00
class SetBusy;
2005-01-20 11:25:54 +05:00
friend class SetBusy;
public:
2009-02-17 10:27:49 +05:00
SMESHGUI_ExtrusionAlongPathDlg( SMESHGUI* );
2005-01-20 11:25:54 +05:00
~SMESHGUI_ExtrusionAlongPathDlg();
2009-02-17 10:27:49 +05:00
bool eventFilter( QObject*, QEvent* );
2005-01-20 11:25:54 +05:00
private:
2009-02-17 10:27:49 +05:00
void Init( bool = true );
void enterEvent( QEvent* ); /* mouse enter the QWidget */
void keyPressEvent( QKeyEvent* );
void SetEditCurrentArgument( QPushButton* );
2009-02-17 10:27:49 +05:00
bool isValid();
2012-08-09 16:03:55 +06:00
bool isValuesValid();
SMESH::double_array_var getAngles();
2009-02-17 10:27:49 +05:00
void updateLinearAngles();
SMESHGUI_IdValidator* myIdValidator;
LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
SVTK_Selector* mySelector;
QWidget* myEditCurrentArgument; /* Current argument */
bool myBusy;
2012-08-09 16:03:55 +06:00
SMESH::SMESH_IDSource_var myPath;
2009-02-17 10:27:49 +05:00
SUIT_SelectionFilter* myPathMeshFilter;
QList<double> myAnglesList;
2005-01-20 11:25:54 +05:00
// widgets
SMESHGUI_3TypesSelector* SelectorWdg;
2009-02-17 10:27:49 +05:00
QGroupBox* GroupArguments;
QGroupBox* PathGrp;
QPushButton* SelectPathMeshButton;
2009-02-17 10:27:49 +05:00
QLineEdit* PathMeshLineEdit;
QPushButton* SelectStartPointButton;
2009-02-17 10:27:49 +05:00
QLineEdit* StartPointLineEdit;
QCheckBox* LinearAnglesCheck;
QGroupBox* AnglesGrp;
QListWidget* AnglesList;
QToolButton* AddAngleButton;
QToolButton* RemoveAngleButton;
SMESHGUI_SpinBox* AngleSpin;
QGroupBox* BasePointGrp;
QPushButton* SelectBasePointButton;
2009-02-17 10:27:49 +05:00
SMESHGUI_SpinBox* XSpin;
SMESHGUI_SpinBox* YSpin;
SMESHGUI_SpinBox* ZSpin;
QCheckBox* MakeGroupsCheck;
QGroupBox* GroupButtons;
QPushButton* OkButton;
QPushButton* ApplyButton;
QPushButton* CloseButton;
QPushButton* HelpButton;
QString myHelpFileName;
protected slots:
2009-02-17 10:27:49 +05:00
void reject();
2012-08-09 16:03:55 +06:00
virtual void onDisplaySimulation( bool );
2005-01-20 11:25:54 +05:00
private slots:
2009-02-17 10:27:49 +05:00
void ClickOnOk();
bool ClickOnApply();
void ClickOnHelp();
void CheckIsEnable();
2009-02-17 10:27:49 +05:00
void SetEditCurrentArgument();
void SelectionIntoArgument();
void DeactivateActiveDialog();
void ActivateThisDialog();
void onTextChange( const QString& );
void OnAngleAdded();
void OnAngleRemoved();
void onOpenView();
void onCloseView();
2005-01-20 11:25:54 +05:00
};
2009-02-17 10:27:49 +05:00
#endif // SMESHGUI_EXTRUSIONALONGPATHDLG_H