0030520: VIS - IVtkTools_ShapePicker::GetPickPosition() returns incorrect point
[occt.git] / src / STEPEdit / STEPEdit.hxx
CommitLineData
42cf5bc1 1// Created on: 1998-07-29
2// Created by: Christian CAILLET
3// Copyright (c) 1998-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 _STEPEdit_HeaderFile
18#define _STEPEdit_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
23
24class Interface_Protocol;
25class StepData_StepModel;
26class IFSelect_Signature;
27class IFSelect_SelectSignature;
28class STEPEdit_EditContext;
29class STEPEdit_EditSDR;
30
31
32//! Provides tools to exploit and edit a set of STEP data :
33//! editors, selections ..
34class STEPEdit
35{
36public:
37
38 DEFINE_STANDARD_ALLOC
39
40
41 //! Returns a Protocol fit for STEP (creates the first time)
42 Standard_EXPORT static Handle(Interface_Protocol) Protocol();
43
44 //! Returns a new empty StepModel fit for STEP
45 //! i.e. with its header determined from Protocol
46 Standard_EXPORT static Handle(StepData_StepModel) NewModel();
47
48 //! Returns a SignType fit for STEP (creates the first time)
49 Standard_EXPORT static Handle(IFSelect_Signature) SignType();
50
51 //! Creates a Selection for ShapeDefinitionRepresentation
52 //! By default searches among root entities
53 Standard_EXPORT static Handle(IFSelect_SelectSignature) NewSelectSDR();
54
55 //! Creates a Selection for Placed Items, i.e. MappedItem or
56 //! ContextDependentShapeRepresentation, which itself refers to a
57 //! RepresentationRelationship with possible subtypes (Shape...
58 //! and/or ...WithTransformation)
59 //! By default in the whole StepModel
60 Standard_EXPORT static Handle(IFSelect_SelectSignature) NewSelectPlacedItem();
61
62 //! Creates a Selection for ShapeRepresentation and its sub-types,
63 //! plus ContextDependentShapeRepresentation (which is not a
64 //! sub-type of ShapeRepresentation)
65 //! By default in the whole StepModel
66 Standard_EXPORT static Handle(IFSelect_SelectSignature) NewSelectShapeRepr();
67
68
69
70
71protected:
72
73
74
75
76
77private:
78
79
80
81
82friend class STEPEdit_EditContext;
83friend class STEPEdit_EditSDR;
84
85};
86
87
88
89
90
91
92
93#endif // _STEPEdit_HeaderFile