0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / IGESSelect / IGESSelect_IGESTypeForm.hxx
CommitLineData
42cf5bc1 1// Created on: 1994-05-31
2// Created by: Modelistation
3// Copyright (c) 1994-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _IGESSelect_IGESTypeForm_HeaderFile
18#define _IGESSelect_IGESTypeForm_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <Standard_Boolean.hxx>
24#include <IFSelect_Signature.hxx>
25#include <Standard_CString.hxx>
26class Standard_Transient;
27class Interface_InterfaceModel;
28
896faa72 29// Avoid possible conflict with SetForm macro defined by windows.h
30#ifdef SetForm
31#undef SetForm
32#endif
42cf5bc1 33
34class IGESSelect_IGESTypeForm;
35DEFINE_STANDARD_HANDLE(IGESSelect_IGESTypeForm, IFSelect_Signature)
36
37//! IGESTypeForm is a Signature specific to the IGES Norm :
38//! it gives the signature under two possible forms :
39//! - as "mmm nnn", with "mmm" as IGES Type Number, and "nnn"
40//! as IGES From Number (even if = 0) [Default]
41//! - as "mmm" alone, which gives only the IGES Type Number
42class IGESSelect_IGESTypeForm : public IFSelect_Signature
43{
44
45public:
46
47
48 //! Creates a Signature for IGES Type & Form Numbers
49 //! If <withform> is False, for IGES Type Number only
50 Standard_EXPORT IGESSelect_IGESTypeForm(const Standard_Boolean withform = Standard_True);
51
52 //! Changes the mode for giving the Form Number
53 Standard_EXPORT void SetForm (const Standard_Boolean withform);
54
55 //! Returns the signature for IGES, "mmm nnn" or "mmm" according
56 //! creation choice (Type & Form or Type only)
79104795 57 Standard_EXPORT Standard_CString Value (const Handle(Standard_Transient)& ent, const Handle(Interface_InterfaceModel)& model) const Standard_OVERRIDE;
42cf5bc1 58
59
60
61
92efcf78 62 DEFINE_STANDARD_RTTIEXT(IGESSelect_IGESTypeForm,IFSelect_Signature)
42cf5bc1 63
64protected:
65
66
67
68
69private:
70
71
72 Standard_Boolean theform;
73
74
75};
76
77
78
79
80
81
82
83#endif // _IGESSelect_IGESTypeForm_HeaderFile