mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
OCC22362 AIS_LocalContext should be public class
This commit is contained in:
parent
23be742115
commit
1bd2fa6705
@ -318,7 +318,7 @@ is
|
|||||||
|
|
||||||
class GraphicTool;
|
class GraphicTool;
|
||||||
|
|
||||||
private class LocalContext;
|
class LocalContext;
|
||||||
|
|
||||||
private class LocalStatus;
|
private class LocalStatus;
|
||||||
|
|
||||||
|
@ -2038,6 +2038,18 @@ is
|
|||||||
|
|
||||||
---Category: Internal
|
---Category: Internal
|
||||||
|
|
||||||
|
---Category: Internal
|
||||||
|
|
||||||
|
LocalContext(me) returns LocalContext from AIS;
|
||||||
|
---Level: Internal
|
||||||
|
---Purpose:
|
||||||
|
-- This method is only intended for advanced operation, particularly with
|
||||||
|
-- the aim to improve performance when many objects have to be selected
|
||||||
|
-- together. Otherwise, you should use other (non-internal) methods of
|
||||||
|
-- class AIS_InteractiveContext without trying to obtain an instance of
|
||||||
|
-- AIS_LocalContext.
|
||||||
|
---C++: inline
|
||||||
|
|
||||||
SelectionManager(me) returns any SelectionManager from SelectMgr;
|
SelectionManager(me) returns any SelectionManager from SelectMgr;
|
||||||
---C++: inline
|
---C++: inline
|
||||||
---C++: return const &
|
---C++: return const &
|
||||||
|
@ -77,6 +77,9 @@ inline const Handle(PrsMgr_PresentationManager3d)& AIS_InteractiveContext::Colle
|
|||||||
inline Standard_Boolean AIS_InteractiveContext::HasOpenedContext() const
|
inline Standard_Boolean AIS_InteractiveContext::HasOpenedContext() const
|
||||||
{return myCurLocalIndex != 0;}
|
{return myCurLocalIndex != 0;}
|
||||||
|
|
||||||
|
inline Handle_AIS_LocalContext AIS_InteractiveContext::LocalContext() const
|
||||||
|
{ return (myCurLocalIndex > 0) ? myLocalContexts(myCurLocalIndex) : NULL; }
|
||||||
|
|
||||||
inline const TCollection_AsciiString& AIS_InteractiveContext::CurrentName() const
|
inline const TCollection_AsciiString& AIS_InteractiveContext::CurrentName() const
|
||||||
{return myCurrentName;}
|
{return myCurrentName;}
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
---Copyright: Matra Datavision 1996
|
---Copyright: Matra Datavision 1996
|
||||||
|
|
||||||
|
|
||||||
private class LocalContext from AIS inherits TShared from MMgt
|
class LocalContext from AIS inherits TShared from MMgt
|
||||||
|
|
||||||
---Purpose: Defines a specific context for selection.
|
---Purpose: Defines a specific context for selection.
|
||||||
-- It becomes possible to:
|
-- It becomes possible to:
|
||||||
@ -531,10 +531,10 @@ is
|
|||||||
|
|
||||||
|
|
||||||
FindSelectedOwnerFromIO(me;anIObj:InteractiveObject from AIS)
|
FindSelectedOwnerFromIO(me;anIObj:InteractiveObject from AIS)
|
||||||
returns EntityOwner from SelectMgr is private;
|
returns EntityOwner from SelectMgr;
|
||||||
|
|
||||||
FindSelectedOwnerFromShape(me;aShape : Shape from TopoDS)
|
FindSelectedOwnerFromShape(me;aShape : Shape from TopoDS)
|
||||||
returns EntityOwner from SelectMgr is private;
|
returns EntityOwner from SelectMgr;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user