0030675: Visualization - remove redundant proxy classes in hierarchy of PrsMgr_Presen...
[occt.git] / src / IFSelect / IFSelect_DispPerSignature.hxx
CommitLineData
42cf5bc1 1// Created on: 1994-12-21
2// Created by: Christian CAILLET
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 _IFSelect_DispPerSignature_HeaderFile
18#define _IFSelect_DispPerSignature_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <IFSelect_Dispatch.hxx>
24#include <Standard_CString.hxx>
25#include <Standard_Boolean.hxx>
26#include <Standard_Integer.hxx>
27class IFSelect_SignCounter;
28class Interface_InterfaceError;
29class TCollection_AsciiString;
30class Interface_Graph;
31class IFGraph_SubPartsIterator;
32
33
34class IFSelect_DispPerSignature;
35DEFINE_STANDARD_HANDLE(IFSelect_DispPerSignature, IFSelect_Dispatch)
36
37//! A DispPerSignature sorts input Entities according to a
38//! Signature : it works with a SignCounter to do this.
39class IFSelect_DispPerSignature : public IFSelect_Dispatch
40{
41
42public:
43
44
45 //! Creates a DispPerSignature with no SignCounter (by default,
46 //! produces only one packet)
47 Standard_EXPORT IFSelect_DispPerSignature();
48
49 //! Returns the SignCounter used for splitting
50 Standard_EXPORT Handle(IFSelect_SignCounter) SignCounter() const;
51
52 //! Sets a SignCounter for sort
53 //! Remark : it is set to record lists of entities, not only counts
54 Standard_EXPORT void SetSignCounter (const Handle(IFSelect_SignCounter)& sign);
55
56 //! Returns the name of the SignCounter, which caracterises the
57 //! sorting criterium for this Dispatch
58 Standard_EXPORT Standard_CString SignName() const;
59
60 //! Returns as Label, "One File per Signature <name>"
79104795 61 Standard_EXPORT TCollection_AsciiString Label() const Standard_OVERRIDE;
42cf5bc1 62
63 //! Returns True, maximum count is given as <nbent>
64 Standard_EXPORT virtual Standard_Boolean LimitedMax (const Standard_Integer nbent, Standard_Integer& max) const Standard_OVERRIDE;
65
66 //! Computes the list of produced Packets. It defines Packets from
67 //! the SignCounter, which sirts the input Entities per Signature
68 //! (specific of the SignCounter).
79104795 69 Standard_EXPORT void Packets (const Interface_Graph& G, IFGraph_SubPartsIterator& packs) const Standard_OVERRIDE;
42cf5bc1 70
71
72
73
92efcf78 74 DEFINE_STANDARD_RTTIEXT(IFSelect_DispPerSignature,IFSelect_Dispatch)
42cf5bc1 75
76protected:
77
78
79
80
81private:
82
83
84 Handle(IFSelect_SignCounter) thesign;
85
86
87};
88
89
90
91
92
93
94
95#endif // _IFSelect_DispPerSignature_HeaderFile