geom/src/EntityGUI/EntityGUI_3DSketcherDlg.h

150 lines
5.6 KiB
C
Raw Normal View History

2012-08-09 13:58:02 +06:00
// Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
2009-02-13 17:16:39 +05: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.
//
// 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
//
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
//
2012-08-09 13:58:02 +06:00
// GEOM GEOMGUI : GUI for Geometry component
2009-02-13 17:16:39 +05:00
// File : EntityGUI_3DSketcherDlg.h
// Author : DMV, OCN
//
#ifndef ENTITYGUI_3DSKETCHERDLG_H
#define ENTITYGUI_3DSKETCHERDLG_H
#include <GEOMBase_Skeleton.h>
2012-08-09 13:58:02 +06:00
class QButtonGroup;
2009-02-13 17:16:39 +05:00
class QDoubleSpinBox;
class EntityGUI_3Spin;
2012-08-09 13:58:02 +06:00
class EntityGUI_Angles;
class EntityGUI_Controls;
2009-02-13 17:16:39 +05:00
class DlgRef_3Radio;
2012-08-09 13:58:02 +06:00
class SOCC_Prs;
#include <AIS_ListOfInteractive.hxx>
2009-02-13 17:16:39 +05:00
#ifndef COORD_MIN
# define COORD_MIN -1e+15
# define COORD_MAX +1e+15
# define MAX_NUMBER 100000
# define DBL_DIGITS_DISPLAY 16
#endif // COORD_MIN
//=================================================================================
// class : EntityGUI_Dlg
// purpose :
//=================================================================================
class EntityGUI_3DSketcherDlg : public GEOMBase_Skeleton
{
Q_OBJECT
2012-08-09 13:58:02 +06:00
struct XYZ
{
XYZ() { x = y = z = 0.0; xt = yt = zt = "0.0"; }
double x, y, z;
QString xt, yt, zt;
};
typedef QList<XYZ> XYZList;
2009-02-13 17:16:39 +05:00
public:
EntityGUI_3DSketcherDlg( GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0, const double = 2. );
~EntityGUI_3DSketcherDlg();
protected:
2012-08-09 13:58:02 +06:00
2009-02-13 17:16:39 +05:00
// redefined from GEOMBase_Helper
virtual GEOM::GEOM_IOperations_ptr createOperation();
virtual bool isValid( QString& );
virtual bool execute( ObjectList& );
private:
void Init();
void enterEvent( QEvent* );
virtual void displayPreview( GEOM::GEOM_Object_ptr,
2012-08-09 13:58:02 +06:00
const bool = false,
const bool = false,
const bool = true,
const double = -1,
const int = -1,
const int = -1);
void displayTrihedron( int );
void displayAngle( double, double, double, int, bool store = false );
void displayLength( double theLength = -1.0, bool store = false );
2009-02-13 17:16:39 +05:00
bool createShapes( GEOM::GEOM_Object_ptr,
2012-08-09 13:58:02 +06:00
TopoDS_Shape&,
TopoDS_Shape& );
XYZ getLastPoint() const;
XYZ getPenultimatePoint() const;
XYZ getCurrentPoint() const;
std::string doubleToString( double );
void removeLastIOFromPrs( int );
void restoreLastIOToPrs( int );
2009-02-13 17:16:39 +05:00
private:
2012-08-09 13:58:02 +06:00
XYZList myPointsList;
XYZList myRedoList;
AIS_ListOfInteractive myLengthIORedoList;
AIS_ListOfInteractive myAngleIORedoList;
int myPrsType;
std::list<int> myPrsTypeList;
std::list<int> myPrsTypeRedoList;
2009-02-13 17:16:39 +05:00
EntityGUI_3Spin* Group3Spin;
2012-08-09 13:58:02 +06:00
EntityGUI_Angles* GroupAngles;
EntityGUI_Controls* GroupControls;
2009-02-13 17:16:39 +05:00
DlgRef_3Radio* GroupType;
2012-08-09 13:58:02 +06:00
QButtonGroup* myTypeGroup;
2009-02-13 17:16:39 +05:00
2012-08-09 13:58:02 +06:00
int myMode;
int myOrientation;
2009-02-13 17:16:39 +05:00
bool myOK;
2012-08-09 13:58:02 +06:00
bool isLengthVisible;
bool isAngleVisible;
2009-02-13 17:16:39 +05:00
double myLineWidth;
GeometryGUI* myGeometryGUI;
2012-08-09 13:58:02 +06:00
SOCC_Prs* myAnglePrs;
SOCC_Prs* myLengthPrs;
2009-02-13 17:16:39 +05:00
private slots:
void ClickOnOk();
void ClickOnAddPoint();
bool ClickOnApply();
// bool isSameAsPrevious();
void UpdateButtonsState();
void ClickOnUndo();
void ClickOnRedo();
void SelectionIntoArgument();
void DeactivateActiveDialog();
void ActivateThisDialog();
2012-08-09 13:58:02 +06:00
void TypeClicked( int );
2009-02-13 17:16:39 +05:00
void ValueChangedInSpinBox( double );
2012-08-09 13:58:02 +06:00
void ButtonClicked( bool );
void BoxChecked ( bool );
2009-02-13 17:16:39 +05:00
void SetDoubleSpinBoxStep( double );
};
#endif // ENTITYGUI_SKETCHERDLG_H