1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-02 17:46:22 +03:00

OCC22362 AIS_LocalContext should be public class

This commit is contained in:
AGV 2011-04-28 15:28:36 +00:00 committed by bugmaster
parent 23be742115
commit 1bd2fa6705
4 changed files with 19 additions and 4 deletions

View File

@ -318,7 +318,7 @@ is
class GraphicTool;
private class LocalContext;
class LocalContext;
private class LocalStatus;

View File

@ -2038,6 +2038,18 @@ is
---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;
---C++: inline
---C++: return const &

View File

@ -77,6 +77,9 @@ inline const Handle(PrsMgr_PresentationManager3d)& AIS_InteractiveContext::Colle
inline Standard_Boolean AIS_InteractiveContext::HasOpenedContext() const
{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
{return myCurrentName;}

View File

@ -20,7 +20,7 @@
---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.
-- It becomes possible to:
@ -531,10 +531,10 @@ is
FindSelectedOwnerFromIO(me;anIObj:InteractiveObject from AIS)
returns EntityOwner from SelectMgr is private;
returns EntityOwner from SelectMgr;
FindSelectedOwnerFromShape(me;aShape : Shape from TopoDS)
returns EntityOwner from SelectMgr is private;
returns EntityOwner from SelectMgr;