0030058: Visualization, Select3D_SensitivePrimitiveArray - the selection is not fast...
[occt.git] / src / SelectBasics / SelectBasics_EntityOwner.hxx
CommitLineData
42cf5bc1 1// Created on: 1995-02-09
2// Created by: Mister rmi
3// Copyright (c) 1995-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 _SelectBasics_EntityOwner_HeaderFile
18#define _SelectBasics_EntityOwner_HeaderFile
19
20#include <Standard.hxx>
f838dac4 21#include <Standard_Transient.hxx>
22#include <Standard_Type.hxx>
f838dac4 23#include <TopLoc_Location.hxx>
42cf5bc1 24
25//! defines an abstract owner of sensitive primitives.
26//! Owners are typically used to establish a connection
27//! between sensitive entities and high-level objects (e.g. presentations).
28//!
29//! Priority : It's possible to give a priority:
30//! the scale : [0-9] ; the default priority is 0
31//! it allows the predominance of one selected object upon
32//! another one if many objects are selected at the same time
33//!
34//! example : Selection of shapes : the owners are
35//! selectable objects (presentations)
36//!
37//! a user can give vertex priority [3], edges [2] faces [1] shape [0],
38//! so that if during selection one vertex one edge and one face are
39//! simultaneously detected, the vertex will only be hilighted.
f838dac4 40class SelectBasics_EntityOwner : public Standard_Transient
42cf5bc1 41{
f838dac4 42 DEFINE_STANDARD_RTTIEXT(SelectBasics_EntityOwner, Standard_Transient)
42cf5bc1 43public:
44
42cf5bc1 45 //! sets the selectable priority of the owner
f838dac4 46 void SetPriority (const Standard_Integer thePriority) { mypriority = thePriority; }
47
48 Standard_Integer Priority() const { return mypriority; }
49
42cf5bc1 50 Standard_EXPORT virtual Standard_Boolean HasLocation() const = 0;
f838dac4 51
42cf5bc1 52 Standard_EXPORT virtual void SetLocation (const TopLoc_Location& aLoc) = 0;
f838dac4 53
42cf5bc1 54 Standard_EXPORT virtual void ResetLocation() = 0;
f838dac4 55
42cf5bc1 56 Standard_EXPORT virtual TopLoc_Location Location() const = 0;
57
f838dac4 58public:
42cf5bc1 59
f838dac4 60 //! sets the selectable priority of the owner
61 void Set (const Standard_Integer thePriority) { SetPriority (thePriority); }
42cf5bc1 62
f838dac4 63protected:
42cf5bc1 64
4a056d20 65 Standard_EXPORT SelectBasics_EntityOwner (const Standard_Integer thePriority);
66
67 Standard_EXPORT SelectBasics_EntityOwner();
42cf5bc1 68
69protected:
70
42cf5bc1 71 Standard_Integer mypriority;
72
42cf5bc1 73};
74
f838dac4 75DEFINE_STANDARD_HANDLE(SelectBasics_EntityOwner, Standard_Transient)
42cf5bc1 76
77#endif // _SelectBasics_EntityOwner_HeaderFile