blob: c8090e10a7fbcc6be1200430b74debc5819c1412 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
-- File: SelectBasics.cdl
-- Created: Mon Jan 23 10:57:48 1995
-- Author: Mister rmi
-- <rmi@photon>
---Copyright: Matra Datavision 1995
package SelectBasics
---Purpose: kernel of dynamic selection:
-- - contains the algorithm to sort the sensitive areas
-- before the selection action;->quick selection of
-- an item in a set of items...
-- - contains the entities able to give the algorithm
-- sensitive areas .
uses
Bnd,
TCollection,
TColStd,
Standard,
MMgt,
gp,
TColgp,
TopLoc
is
deferred class EntityOwner;
---Purpose: entity able to set multiple owners for a SensitiveEntity;
class SortAlgo;
---Purpose: sort algorithm for 2D rectangles.
class BasicTool;
---Purpose: give Tools for sorting Selection results
-- (example : sensitive entities matching)
class ListOfBox2d instantiates List from TCollection
(Box2d from Bnd);
class SequenceOfOwner instantiates Sequence from TCollection
(EntityOwner);
deferred class SensitiveEntity;
---Purpose: general entity able to give sensitive areas
class ListOfSensitive instantiates List from TCollection
(SensitiveEntity);
MaxOwnerPriority returns Integer;
MinOwnerPriority returns Integer;
end SelectBasics;
|