2022-05-05 15:01:14 +03:00
|
|
|
// Copyright (C) 2007-2022 CEA/DEN, EDF R&D, OPEN CASCADE
|
2012-08-09 07:58:02 +00:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
2014-02-18 10:44:41 +04:00
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
2012-08-09 07:58:02 +00: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.
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
|
|
|
|
// File : GEOM_Constants.h
|
2013-02-12 11:35:16 +00:00
|
|
|
// Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
|
|
|
|
|
2012-08-09 07:58:02 +00:00
|
|
|
#ifndef GEOM_CONSTANTS_H
|
|
|
|
#define GEOM_CONSTANTS_H
|
|
|
|
|
2013-02-12 11:35:16 +00:00
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
#include "GEOM_OBJECT_defs.hxx"
|
|
|
|
|
|
|
|
namespace GEOM
|
|
|
|
{
|
|
|
|
enum Property {
|
|
|
|
Visibility,
|
|
|
|
Transparency,
|
|
|
|
DisplayMode,
|
|
|
|
NbIsos,
|
|
|
|
Color,
|
|
|
|
EdgesDirection,
|
2014-08-27 11:03:29 +04:00
|
|
|
Vertices,
|
2015-03-11 13:18:51 +03:00
|
|
|
ShowName,
|
2013-02-12 11:35:16 +00:00
|
|
|
Deflection,
|
|
|
|
PointMarker,
|
|
|
|
Material,
|
|
|
|
LineWidth,
|
|
|
|
IsosWidth,
|
|
|
|
TopLevel,
|
|
|
|
LastStudyProperty = TopLevel,
|
|
|
|
Opacity,
|
|
|
|
ShadingColor,
|
|
|
|
WireframeColor,
|
|
|
|
LineColor,
|
|
|
|
FreeBndColor,
|
|
|
|
PointColor,
|
|
|
|
IsosColor,
|
|
|
|
OutlineColor,
|
2013-12-18 14:23:59 +00:00
|
|
|
Texture,
|
2014-01-15 09:27:18 +00:00
|
|
|
Dimensions,
|
2016-09-26 20:01:28 +03:00
|
|
|
ShapeAnnotations,
|
|
|
|
LastProperty = ShapeAnnotations,
|
2013-02-12 11:35:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GEOM_OBJECT_EXPORT double minDeflection();
|
|
|
|
|
|
|
|
GEOM_OBJECT_EXPORT QString sectionSeparator();
|
|
|
|
GEOM_OBJECT_EXPORT QString subSectionSeparator();
|
|
|
|
|
|
|
|
GEOM_OBJECT_EXPORT QString propertyName( Property );
|
2014-01-15 09:27:18 +00:00
|
|
|
|
|
|
|
GEOM_OBJECT_EXPORT int sharedPropertiesId();
|
2013-02-12 11:35:16 +00:00
|
|
|
}
|
2012-08-09 07:58:02 +00:00
|
|
|
|
2013-02-12 11:35:16 +00:00
|
|
|
|
2012-08-09 07:58:02 +00:00
|
|
|
#endif //GEOM_CONSTANTS_H
|