0027805: Visualization - AIS_InteractiveContext::FitSelected() is broken for global...
[occt.git] / src / AIS / AIS_InteractiveContext.hxx
1 // Created on: 1996-12-18
2 // Created by: Robert COUBLANC
3 // Copyright (c) 1996-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 _AIS_InteractiveContext_HeaderFile
18 #define _AIS_InteractiveContext_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_Type.hxx>
22
23 #include <AIS_DataMapOfIOStatus.hxx>
24 #include <PrsMgr_PresentationManager3d.hxx>
25 #include <StdSelect_ViewerSelector3d.hxx>
26 #include <TCollection_AsciiString.hxx>
27 #include <Standard_Boolean.hxx>
28 #include <Prs3d_Drawer.hxx>
29 #include <Quantity_NameOfColor.hxx>
30 #include <Standard_Integer.hxx>
31 #include <AIS_DataMapOfILC.hxx>
32 #include <AIS_SequenceOfInteractive.hxx>
33 #include <MMgt_TShared.hxx>
34 #include <AIS_DisplayStatus.hxx>
35 #include <AIS_KindOfInteractive.hxx>
36 #include <Standard_Real.hxx>
37 #include <Aspect_TypeOfFacingModel.hxx>
38 #include <Graphic3d_NameOfMaterial.hxx>
39 #include <Standard_ShortReal.hxx>
40 #include <TColStd_ListOfInteger.hxx>
41 #include <AIS_DisplayMode.hxx>
42 #include <AIS_TypeOfIso.hxx>
43 #include <AIS_StatusOfDetection.hxx>
44 #include <AIS_StatusOfPick.hxx>
45 #include <TColgp_Array1OfPnt2d.hxx>
46 #include <SelectMgr_IndexedMapOfOwner.hxx>
47 #include <AIS_ClearMode.hxx>
48 #include <TopAbs_ShapeEnum.hxx>
49 #include <SelectMgr_ListOfFilter.hxx>
50 #include <AIS_ListOfInteractive.hxx>
51 #include <Standard_CString.hxx>
52 #include <AIS_Selection.hxx>
53 class SelectMgr_SelectionManager;
54 class V3d_Viewer;
55 class AIS_InteractiveObject;
56 class SelectMgr_OrFilter;
57 class V3d_View;
58 class AIS_LocalContext;
59 class TopLoc_Location;
60 class Quantity_Color;
61 class TCollection_ExtendedString;
62 class Prs3d_LineAspect;
63 class Prs3d_BasicAspect;
64 class SelectMgr_EntityOwner;
65 class Standard_Transient;
66 class SelectMgr_Filter;
67 class TCollection_AsciiString;
68
69
70 class AIS_InteractiveContext;
71 DEFINE_STANDARD_HANDLE(AIS_InteractiveContext, MMgt_TShared)
72
73 //! The Interactive Context allows you to manage
74 //! graphic behavior and selection of Interactive Objects
75 //! in one or more viewers. Class methods make this
76 //! highly transparent.
77 //! It is essential to remember that an Interactive Object
78 //! which is already known by the Interactive Context
79 //! must be modified using Context methods. You can
80 //! only directly call the methods available for an
81 //! Interactive Object if it has not been loaded into an
82 //! Interactive Context.
83 //! You must distinguish two states in the Interactive Context:
84 //! -   No Open Local Context, also known as the Neutral Point.
85 //! -   One or several open local contexts, each
86 //! representing a temporary state of selection and presentation.
87 //! Some methods can only be used in open Local
88 //! Context; others in closed Local Context; others do
89 //! not have the same behavior in one state as in the other.
90 //! The possiblities of use for local contexts are
91 //! numerous depending on the type of operation that
92 //! you want to perform, for example:
93 //! -   working on all visualized interactive objects,
94 //! -   working on only a few objects,
95 //! -   working on a single object.
96 //! 1. When you want ot work on one type of entity, you
97 //! may open a local context with the option
98 //! UseDisplayedObjects set to false. DisplayedObjects
99 //! allows you to recover the visualized Interactive
100 //! Objects which have a given Type and
101 //! Signature   from Neutral Point.
102 //! 2. You must keep in mind the fact that when you open
103 //! a Local Context with default options:
104 //! -   The Interactive Objects visualized at Neutral Point
105 //! are activated with their default selection mode. You
106 //! must deactivate those which you do not want ot use.
107 //! -   The Shape type Interactive Objects are
108 //! automatically decomposed into sub-shapes when
109 //! standard activation modes are launched.
110 //! -   The "temporary" Interactive Objects present in the
111 //! Local Contexts are not automatically taken into
112 //! account. You have to load them manually if you
113 //! want to use them.
114 //! -   The stages could be the following:
115 //! -   Open a Local Context with the right options;
116 //! -   Load/Visualize the required complementary
117 //! objects with the desired activation modes.
118 //! -   Activate Standard modes if necessary
119 //! - Create its filters and add them to the Local Context
120 //! -   Detect/Select/recover the desired entities
121 //! -   Close the Local Context with the adequate index.
122 //! -   It is useful to create an interactive editor, to which
123 //! you pass the Interactive Context. This will take care
124 //! of setting up the different contexts of
125 //! selection/presentation according to the operation
126 //! which you want to perform.
127
128 //! Selection of parts of the objects can also be done without opening a local context.
129 //! Interactive context itself supports decomposed object selection with selection filters
130 //! support. Note that each selectable object must specify the selection mode that is
131 //! responsible for selection of object as a whole (global selection mode). By default, global
132 //! selection mode is equal to 0, but it might be redefined if needed. Sub-part selection
133 //! of the objects without using local context provides a possibility to activate part
134 //! selection modes along with global selection mode.
135 class AIS_InteractiveContext : public MMgt_TShared
136 {
137
138 public:
139
140   
141
142   //! Constructs the interactive context object defined by
143   //! the principal viewer MainViewer.
144   Standard_EXPORT AIS_InteractiveContext(const Handle(V3d_Viewer)& MainViewer);
145   
146   Standard_EXPORT virtual void Delete() const Standard_OVERRIDE;
147   
148   Standard_EXPORT void SetAutoActivateSelection (const Standard_Boolean Auto);
149   
150   Standard_EXPORT Standard_Boolean GetAutoActivateSelection() const;
151   
152   //! Controls the choice between the using the display
153   //! and selection modes of open local context which you
154   //! have defined and activating those available by default.
155   //! If a local context is open and if updateviewer equals
156   //! Standard_False, the Interactive Object anIobj is
157   //! displayed in the default active mode. This will be the
158   //! object's default display mode, if there is one.
159   //! Otherwise, it will be the context mode. The Interactive
160   //! Object's default selection mode is activated. In
161   //! general, this is 0.
162   //! This syntax has the same behavior as local context,
163   //! open or closed. If you want to view the object in open
164   //! local context without selection, use the syntax below,
165   //! setting aSelectionMode to -1.
166   Standard_EXPORT void Display (const Handle(AIS_InteractiveObject)& anIobj, const Standard_Boolean updateviewer = Standard_True);
167   
168   //! Controls the choice between the using the display
169   //! and selection modes of open local context which you
170   //! have defined and activating those available by default.
171   //! If no Local Context is opened. and the Interactive
172   //! Object theIObj has no display mode of its own, the
173   //! default display mode, 0, is used. Likewise, if theIObj
174   //! has no selection mode of its own, the default one, 0, is used.
175   //! If a local context is open and if theToUpdateViewer equals
176   //! Standard_False, the presentation of the Interactive
177   //! Object activates the selection mode; the object is
178   //! displayed but no viewer will be updated.
179   //! If theSelectionMode equals -1, theIObj will not be
180   //! activated: it will be displayed but will not be selectable.
181   //! Use this if you want to view the object in open local
182   //! context without selection. Note: This option is only
183   //! available in Local Context.
184   //! If theToAllowDecomposition equals true, theIObj can have
185   //! subshapes detected by selection mechanisms. theIObj
186   //! must be able to give a shape selection modes which
187   //! fit the AIS_Shape selection modes:
188   //! -   vertices: 1
189   //! -   edges: 2
190   //! -   wires: 3.
191   Standard_EXPORT void Display (const Handle(AIS_InteractiveObject)& theIObj, const Standard_Integer theDispMode, const Standard_Integer theSelectionMode, const Standard_Boolean theToUpdateViewer = Standard_True, const Standard_Boolean theToAllowDecomposition = Standard_True, const AIS_DisplayStatus theDispStatus = AIS_DS_None);
192   
193   //! Allows you to load the Interactive Object aniobj
194   //! with a given selection mode SelectionMode, and/or
195   //! with the desired decomposition option, whether the
196   //! object is visualized or not. If AllowDecomp =
197   //! Standard_True and, if the interactive object is of
198   //! the "Shape" type, these "standard" selection
199   //! modes will be automatically activated as a function
200   //! of the modes present in the Local Context.
201   //! The loaded objects will be selectable but
202   //! displayable in highlighting only when detected by the Selector.
203   //! This method is available only when Local Contexts are open.
204   Standard_EXPORT void Load (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Integer SelectionMode = -1, const Standard_Boolean AllowDecomp = Standard_False);
205   
206   //! Hides the object. The object's presentations are simply
207   //! flagged as invisible and therefore excluded from redrawing.
208   //! To show hidden objects, use Display().
209   Standard_EXPORT void Erase (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Boolean updateviewer = Standard_True);
210   
211   //! Hides all objects. The object's presentations are simply
212   //! flagged as invisible and therefore excluded from redrawing.
213   //! To show all hidden objects, use DisplayAll().
214   Standard_EXPORT void EraseAll (const Standard_Boolean updateviewer = Standard_True);
215   
216   //! Displays all hidden objects.
217   Standard_EXPORT void DisplayAll (const Standard_Boolean updateviewer = Standard_True);
218   
219
220   //! Hides selected objects. The object's presentations are simply
221   //! flagged as invisible and therefore excluded from redrawing.
222   //! To show hidden objects, use Display().
223   Standard_EXPORT void EraseSelected (const Standard_Boolean updateviewer = Standard_True);
224   
225   //! Displays selected objects if a local context is open.
226   //! Displays current objects if there is no active local context.
227   //! Objects selected when there is no open local context
228   //! are called current objects; those selected in open
229   //! local context, selected objects.
230   //! If a local context is open and if updateviewer equals
231   //! Standard_False, the presentation   of the Interactive
232   //! Object activates   the   selection   mode; the   object is
233   //! displayed but no viewer will be updated.
234   Standard_EXPORT void DisplaySelected (const Standard_Boolean updateviewer = Standard_True);
235   
236   //! Changes the status of a temporary object. It will be
237   //! kept at the neutral point, i.e. put in the list of
238   //! displayed   objects along withwith   its temporary
239   //! attributes. These include display mode and
240   //! selection   mode, for example.
241   //! Returns true if done.
242   //! inWhichLocal gives the local context in which anIObj
243   //! is displayed. By default, the index -1 refers to the last
244   //! Local Context opened.
245   Standard_EXPORT Standard_Boolean KeepTemporary (const Handle(AIS_InteractiveObject)& anIObj, const Standard_Integer InWhichLocal = -1);
246   
247   //! Empties the graphic presentation of the mode
248   //! indexed by aMode.
249   //! If a local context is open and if updateviewer equals
250   //! Standard_False, the presentation of the Interactive
251   //! Object activates the selection mode; the object is
252   //! displayed but no viewer will be updated.
253   //! Warning
254   //! Removes anIobj. anIobj is still active if it was
255   //! previously activated.
256   Standard_EXPORT void ClearPrs (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Integer aMode = 0, const Standard_Boolean updateviewer = Standard_True);
257   
258   //! Removes aniobj from every viewer. aniobj is no
259   //! longer referenced in the Context.
260   //! If a local context is open and if updateviewer equals
261   //! Standard_False, the presentation   of the Interactive
262   //! Object activates the selection mode; the object is
263   //! displayed but no viewer will be updated.
264   Standard_EXPORT void Remove (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Boolean updateviewer = Standard_True);
265   
266   //! Removes all the objects from all opened Local Contexts
267   //! and from the Neutral Point
268   Standard_EXPORT void RemoveAll (const Standard_Boolean updateviewer = Standard_True);
269   
270
271   //! Updates the display in the viewer to take dynamic
272   //! detection into account. On dynamic detection by the
273   //! mouse cursor, sensitive primitives are highlighted.
274   //! The highlight color of entities detected by mouse
275   //! movement is white by default.
276   //! If a local context is open and if updateviewer equals
277   //! Standard_False, the presentation of the Interactive
278   //! Object activates the selection mode; the object is
279   //! displayed but no viewer will be updated.
280   Standard_EXPORT void Hilight (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Boolean updateviewer = Standard_True);
281   
282
283   //! Changes the color of all the lines of the object in view,
284   //! aniobj. It paints these lines the color passed as the
285   //! argument, aCol.
286   //! If a local context is open and if updateviewer equals
287   //! Standard_False, the presentation of the Interactive
288   //! Object activates the selection mode; the object is
289   //! displayed but no viewer will be updated.
290   Standard_EXPORT void HilightWithColor (const Handle(AIS_InteractiveObject)& aniobj, const Quantity_NameOfColor aCol, const Standard_Boolean updateviewer = Standard_True);
291   
292
293   //! Removes hilighting from the entity aniobj. Updates the viewer.
294   //! If a local context is open and if updateviewer equals
295   //! Standard_False, the presentation of the Interactive
296   //! Object activates the selection mode; the object is
297   //! displayed but no viewer will be updated.
298   Standard_EXPORT void Unhilight (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Boolean updateviewer = Standard_True);
299   
300   //! Sets the display priority aPriority of the seen parts
301   //! presentation of the entity anIobj.
302   Standard_EXPORT void SetDisplayPriority (const Handle(AIS_InteractiveObject)& anIobj, const Standard_Integer aPriority);
303   
304   //! Set Z layer id for interactive object.
305   //! The Z layers can be used to display temporarily presentations of some object in front of the other objects in the scene.
306   //! The ids for Z layers are generated by V3d_Viewer.
307   Standard_EXPORT void SetZLayer (const Handle(AIS_InteractiveObject)& theIObj, const Standard_Integer theLayerId);
308   
309   //! Get Z layer id set for displayed interactive object.
310   Standard_EXPORT Standard_Integer GetZLayer (const Handle(AIS_InteractiveObject)& theIObj) const;
311   
312   //! Recomputes the seen parts presentation of the entity
313   //! aniobj. If allmodes equals true, all presentations are
314   //! present in the object even if unseen.
315   //! If a local context is open and if updateviewer equals
316   //! Standard_False, the presentation of the Interactive
317   //! Object activates the selection mode; the object is
318   //! displayed but no viewer will be updated.
319   Standard_EXPORT void Redisplay (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Boolean updateviewer = Standard_True, const Standard_Boolean allmodes = Standard_False);
320   
321   //! Recomputes the Prs/Selection of displayed objects of
322   //! a given type and a given signature.
323   //! if signature = -1  doesnt take signature criterion.
324   Standard_EXPORT void Redisplay (const AIS_KindOfInteractive aTypeOfObject, const Standard_Integer Signature = -1, const Standard_Boolean updateviewer = Standard_True);
325   
326   //! Recomputes the displayed presentations, flags the others
327   //! Doesn't update presentations
328   Standard_EXPORT void RecomputePrsOnly (const Handle(AIS_InteractiveObject)& anIobj, const Standard_Boolean updateviewer = Standard_True, const Standard_Boolean allmodes = Standard_False);
329   
330   //! Recomputes the active selections, flags the others
331   //! Doesn't update presentations
332   Standard_EXPORT void RecomputeSelectionOnly (const Handle(AIS_InteractiveObject)& anIObj);
333   
334   //! Updates displayed interactive object by checking and
335   //! recomputing its flagged as "to be recomputed" presentation
336   //! and selection structures. This method does not force any
337   //! recomputation on its own. The method recomputes selections
338   //! even if they are loaded without activation in particular selector.
339   Standard_EXPORT void Update (const Handle(AIS_InteractiveObject)& theIObj, const Standard_Boolean theUpdateViewer = Standard_True);
340   
341
342   //! Sets the display mode of seen Interactive Objects.
343   //! aMode provides the display mode index of the entity aniobj.
344   //! If updateviewer equals Standard_True, the
345   //! predominant mode aMode will overule the context mode.
346   //! If a local context is open and if updateviewer equals
347   //! Standard_False, the presentation of the Interactive
348   //! Object returns to the default selection mode; the
349   //! object is displayed but no viewer will be updated.
350   //! Note that display mode 3 is only used if you have an
351   //! AIS_Textured Shape.
352   Standard_EXPORT void SetDisplayMode (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Integer aMode, const Standard_Boolean updateviewer = Standard_True);
353   
354
355   //! Unsets the display mode of seen Interactive Objects.
356   //! aMode provides the display mode index of the entity aniobj.
357   //! If updateviewer equals Standard_True, the
358   //! predominant mode aMode will overule the context mode.
359   //! If a local context is open and if updateviewer equals
360   //! Standard_False, the presentation of the Interactive
361   //! Object returns to the default selection mode; the
362   //! object is displayed but no viewer will be updated.
363   Standard_EXPORT void UnsetDisplayMode (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Boolean updateviewer = Standard_True);
364
365   //! Disables the mechanism of adaptive tolerance calculation in SelectMgr_ViewerSelector and
366   //! sets the given tolerance for ALL sensitive entities activated. For more information, see
367   //! SelectMgr_ViewerSelector documentation
368   //! Warning: When a local context is open the sensitivity is apply on it
369   //! instead on the main context.
370   Standard_EXPORT void SetPixelTolerance (const Standard_Integer aPrecision = 2);
371   
372   //! Returns the pixel tolerance.
373   Standard_EXPORT Standard_Integer PixelTolerance() const;
374
375   //! Allows to manage sensitivity of a particular selection of interactive object theObject
376   //! and changes previous sensitivity value of all sensitive entities in selection with theMode
377   //! to the given theNewSensitivity.
378   Standard_EXPORT void SetSelectionSensitivity (const Handle(AIS_InteractiveObject)& theObject,
379                                                 const Standard_Integer theMode,
380                                                 const Standard_Integer theNewSensitivity);
381   
382   //! Puts the location aLocation on the initial graphic
383   //! representation and the selection for the entity aniobj.
384   //! In other words, aniobj is visible and selectable at a
385   //! position other than initial position.
386   //! Graphic and selection primitives are not recomputed.
387   //! To clean the view correctly, you must reset the previous location.
388   Standard_EXPORT void SetLocation (const Handle(AIS_InteractiveObject)& aniobj, const TopLoc_Location& aLocation);
389   
390   //! Puts the entity aniobj back into its initial position.
391   Standard_EXPORT void ResetLocation (const Handle(AIS_InteractiveObject)& aniobj);
392   
393
394   //! Returns true if the entity aniobj has a location.
395   Standard_EXPORT Standard_Boolean HasLocation (const Handle(AIS_InteractiveObject)& aniobj) const;
396   
397
398   //! Returns the location of the entity aniobj.
399   Standard_EXPORT TopLoc_Location Location (const Handle(AIS_InteractiveObject)& aniobj) const;
400   
401   //! change the current facing model apply on polygons for
402   //! SetColor(), SetTransparency(), SetMaterial() methods
403   //! default facing model is Aspect_TOFM_TWO_SIDE. This mean that attributes is
404   //! applying both on the front and back face.
405   Standard_EXPORT void SetCurrentFacingModel (const Handle(AIS_InteractiveObject)& aniobj, const Aspect_TypeOfFacingModel aModel = Aspect_TOFM_BOTH_SIDE);
406   
407   Standard_EXPORT void SetColor (const Handle(AIS_InteractiveObject)& aniobj, const Quantity_NameOfColor aColor, const Standard_Boolean updateviewer = Standard_True);
408   
409
410   //! Sets the color of the selected entity.
411   //! If a local context is open and if updateviewer equals
412   //! Standard_False, the presentation   of the Interactive
413   //! Object activates the selection mode; the object is
414   //! displayed but no viewer will be updated.
415   Standard_EXPORT void SetColor (const Handle(AIS_InteractiveObject)& aniobj, const Quantity_Color& aColor, const Standard_Boolean updateviewer = Standard_True);
416   
417   //! Removes the color selection for the selected entity.
418   //! If a local context is open and if updateviewer equals
419   //! Standard_False, the presentation of the Interactive
420   //! Object activates the selection mode; the object is
421   //! displayed but no viewer will be updated.
422   Standard_EXPORT void UnsetColor (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Boolean updateviewer = Standard_True);
423   
424
425   //! Sets the width of the entity aniobj.
426   //! If a local context is open and if updateviewer equals
427   //! Standard_False, the presentation of the Interactive
428   //! Object activates the selection mode; the object is
429   //! displayed but no viewer will be updated.
430   Standard_EXPORT virtual void SetWidth (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Real aValue, const Standard_Boolean updateviewer = Standard_True);
431   
432
433   //! Removes the width setting of the entity aniobj.
434   //! If a local context is open and if updateviewer equals
435   //! Standard_False, the presentation of the Interactive
436   //! Object activates the selection mode; the object is
437   //! displayed but no viewer will be updated.
438   Standard_EXPORT virtual void UnsetWidth (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Boolean updateviewer = Standard_True);
439   
440
441   //! Provides the type of material setting for the view of
442   //! the entity aniobj.
443   //! The range of settings includes: BRASS, BRONZE,
444   //! GOLD, PEWTER, SILVER, STONE.
445   //! If a local context is open and if updateviewer equals
446   //! Standard_False, the presentation of the Interactive
447   //! Object activates the selection mode; the object is
448   //! displayed but no viewer will be updated.
449   Standard_EXPORT void SetMaterial (const Handle(AIS_InteractiveObject)& aniobj, const Graphic3d_NameOfMaterial aName, const Standard_Boolean updateviewer = Standard_True);
450   
451
452   //! Removes the type of material setting for viewing the
453   //! entity aniobj.
454   //! If a local context is open and if updateviewer equals
455   //! Standard_False, the presentation of the Interactive
456   //! Object activates the selection mode; the object is
457   //! displayed but no viewer will be updated.
458   Standard_EXPORT void UnsetMaterial (const Handle(AIS_InteractiveObject)& anObj, const Standard_Boolean updateviewer = Standard_True);
459   
460   //! Provides the transparency settings for viewing the
461   //! entity aniobj. The transparency value aValue may be
462   //! between 0.0, opaque, and 1.0, fully transparent.
463   //! If a local context is open and if updateviewer equals
464   //! Standard_False, the presentation of the Interactive
465   //! Object activates the selection mode; the object is
466   //! displayed but no viewer will be updated.
467   Standard_EXPORT void SetTransparency (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Real aValue = 0.6, const Standard_Boolean updateviewer = Standard_True);
468   
469
470   //! Removes   the transparency settings for viewing the
471   //! entity aniobj. The transparency value aValue may be
472   //! between 0.0, opaque, and 1.0, fully transparent.
473   //! If a local context is open and if updateviewer equals
474   //! Standard_False, the presentation of the Interactive
475   //! Object activates the selection mode; the object is
476   //! displayed but no viewer will be updated.
477   Standard_EXPORT void UnsetTransparency (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Boolean updateviewer = Standard_True);
478   
479
480   //! Sets the attributes of the interactive object aniobj by
481   //! plugging the attribute manager aDrawer into the local
482   //! context. The graphic attributes of aDrawer such as
483   //! visualization mode, color, and material, are then used
484   //! to display aniobj.
485   //! If a local context is open and if updateviewer equals
486   //! Standard_False, the presentation of the Interactive
487   //! Object activates the selection mode; the object is
488   //! displayed but no viewer will be updated.
489   Standard_EXPORT void SetLocalAttributes (const Handle(AIS_InteractiveObject)& aniobj, const Handle(Prs3d_Drawer)& aDrawer, const Standard_Boolean updateviewer = Standard_True);
490   
491
492   //! Removes the settings for local attributes of the entity
493   //! anObj   and returns to the Neutral Point attributes or
494   //! those of the previous local context.
495   //! If a local context is open and if updateviewer equals
496   //! Standard_False, the presentation of the Interactive
497   //! Object activates the selection mode; the object is
498   //! displayed but no viewer will be updated.
499   Standard_EXPORT void UnsetLocalAttributes (const Handle(AIS_InteractiveObject)& anObj, const Standard_Boolean updateviewer = Standard_True);
500   
501   //! Sets up polygon offsets for the given AIS_InteractiveObject.
502   //! It simply calls anObj->SetPolygonOffsets()
503   Standard_EXPORT void SetPolygonOffsets (const Handle(AIS_InteractiveObject)& anObj, const Standard_Integer aMode, const Standard_ShortReal aFactor = 1.0, const Standard_ShortReal aUnits = 0.0, const Standard_Boolean updateviewer = Standard_True);
504   
505   //! simply calls anObj->HasPolygonOffsets()
506   Standard_EXPORT Standard_Boolean HasPolygonOffsets (const Handle(AIS_InteractiveObject)& anObj) const;
507   
508   //! Retrieves current polygon offsets settings for <anObj>.
509   Standard_EXPORT void PolygonOffsets (const Handle(AIS_InteractiveObject)& anObj, Standard_Integer& aMode, Standard_ShortReal& aFactor, Standard_ShortReal& aUnits) const;
510   
511   //! Sets the size aSize of the trihedron.
512   //! Is used to change the default value 100 mm for
513   //! display of trihedra.
514   //! Use of this function in one of your own interactive
515   //! objects requires a call to the Compute function of the
516   //! new class. This will recalculate the presentation for
517   //! every trihedron displayed.
518   //! If a local context is open and if updateviewer equals
519   //! Standard_False, the presentation of the Interactive
520   //! Object activates the selection mode; the object is
521   //! displayed but no viewer will be updated.
522   Standard_EXPORT void SetTrihedronSize (const Standard_Real aSize, const Standard_Boolean updateviewer = Standard_True);
523   
524   //! returns the current value of trihedron size.
525   Standard_EXPORT Standard_Real TrihedronSize() const;
526   
527
528   //! Sets the plane size defined by the length in the X
529   //! direction XSize and that in the Y direction YSize.
530   //! If a local context is open and if updateviewer equals
531   //! Standard_False, the presentation of the Interactive
532   //! Object activates the selection mode; the object is
533   //! displayed but no viewer will be updated.
534   Standard_EXPORT void SetPlaneSize (const Standard_Real aSizeX, const Standard_Real aSizeY, const Standard_Boolean updateviewer = Standard_True);
535   
536
537   //! Sets the plane size aSize.
538   //! If a local context is open and if updateviewer equals
539   //! Standard_False, the presentation of the Interactive
540   //! Object activates the selection mode; the object is
541   //! displayed but no viewer will be updated.
542   //! May be used if PlaneSize returns true.
543   Standard_EXPORT void SetPlaneSize (const Standard_Real aSize, const Standard_Boolean updateviewer = Standard_True);
544   
545   //! Returns true if the length in the X direction XSize is
546   //! the same as that in the Y direction YSize.
547   Standard_EXPORT Standard_Boolean PlaneSize (Standard_Real& XSize, Standard_Real& YSize) const;
548   
549   //! Returns the display status of the entity anIobj.
550   //! This will be one of the following:
551   //! -   DS_Displayed   displayed in main viewer
552   //! -   DS_Erased   hidden in main viewer
553   //! -   DS_Temporary   temporarily displayed
554   //! -   DS_None   nowhere displayed.
555   Standard_EXPORT AIS_DisplayStatus DisplayStatus (const Handle(AIS_InteractiveObject)& anIobj) const;
556   
557
558   //! Returns true if anIobj is displayed in the interactive context.
559   Standard_EXPORT Standard_Boolean IsDisplayed (const Handle(AIS_InteractiveObject)& anIobj) const;
560   
561   Standard_EXPORT Standard_Boolean IsDisplayed (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Integer aMode) const;
562   
563   Standard_EXPORT Standard_Boolean IsHilighted (const Handle(AIS_InteractiveObject)& aniobj) const;
564   
565   //! if <anIObj> is hilighted with a specific color
566   //! <WithColor> will be returned TRUE
567   //! <theHiCol> gives the name of the hilightcolor
568   Standard_EXPORT Standard_Boolean IsHilighted (const Handle(AIS_InteractiveObject)& anIobj, Standard_Boolean& WithColor, Quantity_NameOfColor& theHiCol) const;
569
570   //! if <theOwner> is hilighted with a specific color, than <theIsCustomColor> will be set
571   //! to true and <theCustomColorName> will have the name of the color stored
572   Standard_EXPORT Standard_Boolean IsHilighted (const Handle(SelectMgr_EntityOwner)& theOwner,
573                                                 Standard_Boolean& theIsCustomColor,
574                                                 Quantity_NameOfColor& theCustomColorName) const;
575
576   //! Returns the display priority of the entity anIobj. This
577   //! will be display   mode of anIobj if it is in the main
578   //! viewer.
579   Standard_EXPORT Standard_Integer DisplayPriority (const Handle(AIS_InteractiveObject)& anIobj) const;
580   
581
582   //! Returns true if a view of the Interactive Object aniobj has color.
583   Standard_EXPORT Standard_Boolean HasColor (const Handle(AIS_InteractiveObject)& aniobj) const;
584   
585   Standard_EXPORT Quantity_NameOfColor Color (const Handle(AIS_InteractiveObject)& aniobj) const;
586   
587
588   //! Returns the color Color of the entity aniobj in the interactive context.
589   Standard_EXPORT void Color (const Handle(AIS_InteractiveObject)& aniobj, Quantity_Color& acolor) const;
590   
591
592   //! Returns the width of the Interactive Object aniobj in
593   //! the interactive context.
594   Standard_EXPORT virtual Standard_Real Width (const Handle(AIS_InteractiveObject)& aniobj) const;
595   
596
597   //! Returns the status astatus of the Interactive Context
598   //! for the view of the Interactive Object anObj.
599   Standard_EXPORT void Status (const Handle(AIS_InteractiveObject)& anObj, TCollection_ExtendedString& astatus) const;
600   
601   //! Sets transform persistence.
602   Standard_EXPORT void SetTransformPersistence (const Handle(AIS_InteractiveObject)& theObj,
603                                                 const Graphic3d_TransModeFlags&      theFlag,
604                                                 const gp_Pnt&                        thePoint = gp_Pnt (0.0, 0.0, 0.0));
605
606   //! Updates the current viewer, the viewer in Neutral Point.
607   //! Objects selected when there is no open local context
608   //! are called current objects; those selected in open
609   //! local context, selected objects.
610   Standard_EXPORT void UpdateCurrentViewer();
611   
612   //! Returns the display mode setting.
613   //! Note that mode 3 is only used.
614     Standard_Integer DisplayMode() const;
615   
616
617   //! Returns the name of the color used to show
618   //! highlighted entities, that is, entities picked out by the mouse.
619     Quantity_NameOfColor HilightColor() const;
620   
621
622   //! Returns the name of the color used to show selected entities.
623   //! By default, this is Quantity_NOC_GRAY80.
624     Quantity_NameOfColor SelectionColor() const;
625   
626   //! Returns the name of the color used to show preselection.
627   //! By default, this is Quantity_NOC_GREEN.
628     Quantity_NameOfColor PreSelectionColor() const;
629   
630
631   //! Returns the name of the color used by default.
632   //! By default, this is Quantity_NOC_GOLDENROD.
633     Quantity_NameOfColor DefaultColor() const;
634   
635
636   //! Returns the name of the color used to show that an
637   //! object is not currently selected.
638   //! By default, this is Quantity_NOC_GRAY40.
639     Quantity_NameOfColor SubIntensityColor() const;
640   
641
642   //! Sets the color used to show highlighted entities, that
643   //! is, entities picked by the mouse.
644   //! By default, this is Quantity_NOC_CYAN1.
645     void SetHilightColor (const Quantity_NameOfColor aHiCol);
646   
647
648   //! Sets the color used to show selected entities.
649   //! By default, this is Quantity_NOC_GRAY80.
650     void SelectionColor (const Quantity_NameOfColor aCol);
651   
652
653   //! Allows you to set the color used to show preselection.
654   //! By default, this is Quantity_NOC_GREEN.
655   //! A preselected entity is one which has been selected
656   //! as the domain of application of a function such as a fillet.
657     void SetPreselectionColor (const Quantity_NameOfColor aCol);
658   
659
660   //! Sets the color used to show that an object is not currently selected.
661   //! By default, this is Quantity_NOC_GRAY40.
662     void SetSubIntensityColor (const Quantity_NameOfColor aCol);
663   
664
665   //! Sets the display mode of seen Interactive Objects.
666   //! aMode provides the display mode index of the entity aniobj.
667   //! If updateviewer equals Standard_True, the
668   //! predominant mode aMode will overule the context mode.
669   //! If a local context is open and if updateviewer equals
670   //! Standard_False, the presentation of the Interactive
671   //! Object returns to the default selection mode; the
672   //! object is displayed but no viewer will be updated.
673   //! Note that display mode 3 is only used if you have an
674   //! AIS_Textured Shape.
675   Standard_EXPORT void SetDisplayMode (const Standard_Integer AMode, const Standard_Boolean updateviewer = Standard_True);
676   
677
678   //! Sets the deviation coefficient aCoefficient.
679   //! Drawings of curves or patches are made with respect
680   //! to a maximal chordal deviation. A Deviation coefficient
681   //! is used in the shading display mode. The shape is
682   //! seen decomposed into triangles. These are used to
683   //! calculate reflection of light from the surface of the
684   //! object. The triangles are formed from chords of the
685   //! curves in the shape. The deviation coefficient
686   //! aCoefficient gives the highest value of the angle with
687   //! which a chord can deviate from a tangent to a   curve.
688   //! If this limit is reached, a new triangle is begun.
689   //! This deviation is absolute and is set through the
690   //! method: SetMaximalChordialDeviation. The default
691   //! value is 0.001.
692   //! In drawing shapes, however, you are allowed to ask
693   //! for a relative deviation. This deviation will be:
694   //! SizeOfObject * DeviationCoefficient.
695   //! default 0.001
696   Standard_EXPORT void SetDeviationCoefficient (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Real aCoefficient, const Standard_Boolean updateviewer = Standard_True);
697   
698   Standard_EXPORT void SetDeviationAngle (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Real anAngle, const Standard_Boolean updateviewer = Standard_True);
699   
700   //! Calls the AIS_Shape SetAngleAndDeviation to set
701   //! both Angle and Deviation coefficients
702   Standard_EXPORT void SetAngleAndDeviation (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Real anAngle, const Standard_Boolean updateviewer = Standard_True);
703   
704
705   //! Sets the deviation coefficient aCoefficient for
706   //! removal of hidden lines created by different
707   //! viewpoints in different presentations. The Default value is 0.02.
708   Standard_EXPORT void SetHLRDeviationCoefficient (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Real aCoefficient, const Standard_Boolean updateviewer = Standard_True);
709   
710   Standard_EXPORT void SetHLRDeviationAngle (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Real anAngle, const Standard_Boolean updateviewer = Standard_True);
711   
712   //! Computes a HLRAngle and a
713   //! HLRDeviationCoefficient by means of the angle
714   //! anAngle and sets the corresponding methods in the
715   //! default drawing tool with these values.
716   Standard_EXPORT void SetHLRAngleAndDeviation (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Real anAngle, const Standard_Boolean updateviewer = Standard_True);
717   
718   //! Sets the deviation coefficient aCoefficient.
719   //! Drawings of curves or patches are made with respect
720   //! to a maximal chordal deviation. A Deviation coefficient
721   //! is used in the shading display mode. The shape is
722   //! seen decomposed into triangles. These are used to
723   //! calculate reflection of light from the surface of the
724   //! object. The triangles are formed from chords of the
725   //! curves in the shape. The deviation coefficient
726   //! aCoefficient gives the highest value of the angle with
727   //! which a chord can deviate from a tangent to a   curve.
728   //! If this limit is reached, a new triangle is begun.
729   //! This deviation is absolute and is set through the
730   //! method: SetMaximalChordialDeviation. The default
731   //! value is 0.001.
732   //! In drawing shapes, however, you are allowed to ask
733   //! for a relative deviation. This deviation will be:
734   //! SizeOfObject * DeviationCoefficient.
735   //! default 0.001
736   Standard_EXPORT void SetDeviationCoefficient (const Standard_Real aCoefficient);
737   
738   //! Returns the deviation coefficient.
739   //! Drawings of curves or patches are made with respect
740   //! to a maximal chordal deviation. A Deviation coefficient
741   //! is used in the shading display mode. The shape is
742   //! seen decomposed into triangles. These are used to
743   //! calculate reflection of light from the surface of the
744   //! object. The triangles are formed from chords of the
745   //! curves in the shape. The deviation coefficient gives
746   //! the highest value of the angle with which a chord can
747   //! deviate from a tangent to a   curve. If this limit is
748   //! reached, a new triangle is begun.
749   //! This deviation is absolute and is set through
750   //! Prs3d_Drawer::SetMaximalChordialDeviation. The
751   //! default value is 0.001.
752   //! In drawing shapes, however, you are allowed to ask
753   //! for a relative deviation. This deviation will be:
754   //! SizeOfObject * DeviationCoefficient.
755   Standard_EXPORT Standard_Real DeviationCoefficient() const;
756   
757   //! default 12 degrees
758   Standard_EXPORT void SetDeviationAngle (const Standard_Real anAngle);
759   
760   Standard_EXPORT Standard_Real DeviationAngle() const;
761   
762   //! Sets the deviation coefficient aCoefficient for
763   //! removal of hidden lines created by different
764   //! viewpoints in different presentations. The Default value is 0.02.
765   Standard_EXPORT void SetHLRDeviationCoefficient (const Standard_Real aCoefficient);
766   
767
768   //! Returns the real number value of the hidden line
769   //! removal deviation coefficient.
770   //! A Deviation coefficient is used in the shading display
771   //! mode. The shape is seen decomposed into triangles.
772   //! These are used to calculate reflection of light from the
773   //! surface of the object.
774   //! The triangles are formed from chords of the curves in
775   //! the shape. The deviation coefficient give the highest
776   //! value of the angle with which a chord can deviate
777   //! from a tangent to a curve. If this limit is reached, a
778   //! new triangle is begun.
779   //! To find the hidden lines, hidden line display mode
780   //! entails recalculation of the view at each different
781   //! projector perspective.
782   //! Because hidden lines entail calculations of more than
783   //! usual complexity to decompose them into these
784   //! triangles, a deviation coefficient allowing greater
785   //! tolerance is used. This increases efficiency in calculation.
786   //! The Default value is 0.02.
787   Standard_EXPORT Standard_Real HLRDeviationCoefficient() const;
788   
789   //! Sets the HLR angle anAngle.
790   Standard_EXPORT void SetHLRAngle (const Standard_Real anAngle);
791   
792
793   //! Returns the real number value of the deviation angle
794   //! in hidden line removal views in this interactive context.
795   //! The default value is 20*PI/180.
796   Standard_EXPORT Standard_Real HLRAngle() const;
797   
798   //! compute with anangle a HLRAngle and a HLRDeviationCoefficient
799   //! and set them in myHLRAngle and in myHLRDeviationCoefficient
800   //! of myDefaultDrawer ;
801   //! anAngle is in radian ; ( 1 deg < angle in deg < 20 deg)
802   Standard_EXPORT void SetHLRAngleAndDeviation (const Standard_Real anAngle);
803   
804   //! Initializes hidden line aspect in the default drawing tool, or Drawer.
805   //! The default values are:
806   //! Color: Quantity_NOC_YELLOW
807   //! Type of line: Aspect_TOL_DASH
808   //! Width: 1.
809   Standard_EXPORT Handle(Prs3d_LineAspect) HiddenLineAspect() const;
810   
811
812   //! Sets the hidden line aspect anAspect.
813   //! anAspect defines display attributes for hidden lines in
814   //! HLR projections.
815   Standard_EXPORT void SetHiddenLineAspect (const Handle(Prs3d_LineAspect)& anAspect) const;
816   
817   //! returns Standard_True if the hidden lines are to be drawn.
818   //! By default the hidden lines are not drawn.
819   Standard_EXPORT Standard_Boolean DrawHiddenLine() const;
820   
821   Standard_EXPORT void EnableDrawHiddenLine() const;
822   
823   Standard_EXPORT void DisableDrawHiddenLine() const;
824   
825   //! Sets the number of U and V isoparameters displayed.
826   Standard_EXPORT void SetIsoNumber (const Standard_Integer NbIsos, const AIS_TypeOfIso WhichIsos = AIS_TOI_Both);
827   
828   //! Returns the number of U and V isoparameters displayed.
829   Standard_EXPORT Standard_Integer IsoNumber (const AIS_TypeOfIso WhichIsos = AIS_TOI_Both);
830   
831   //! Returns True if drawing isoparameters on planes is enabled.
832   Standard_EXPORT void IsoOnPlane (const Standard_Boolean SwitchOn);
833   
834   //! Returns True if drawing isoparameters on planes is enabled.
835   //! if <forUIsos> = False,
836   Standard_EXPORT Standard_Boolean IsoOnPlane() const;
837
838   //! Enables or disables on-triangulation build for isolines for a particular object.
839   //! In case if on-triangulation builder is disabled, default on-plane
840   //! builder will compute isolines for the object given.
841   Standard_EXPORT void IsoOnTriangulation (const Standard_Boolean theIsEnabled,
842                                            const Handle(AIS_InteractiveObject)& theObject);
843
844   //! Enables or disables on-triangulation build for isolines for default drawer.
845   //! In case if on-triangulation builder is disabled, default on-plane
846   //! builder will compute isolines for the object given.
847   Standard_EXPORT void IsoOnTriangulation (const Standard_Boolean theToSwitchOn);
848
849   //! Returns true if drawing isolines on triangulation algorithm is enabled.
850   Standard_EXPORT Standard_Boolean IsoOnTriangulation() const;
851
852   //! Sets the graphic basic aspect to the current presentation of
853   //! ALL selected objects.
854   //! Flag globalChange has no effect (left to simplify porting).
855   //! Updates the viewer when <updateViewer> is TRUE
856   Standard_EXPORT void SetSelectedAspect (const Handle(Prs3d_BasicAspect)& anAspect, const Standard_Boolean globalChange = Standard_True, const Standard_Boolean updateViewer = Standard_True);
857   
858   //! Relays mouse position in pixels theXPix and theYPix to the interactive context selectors.
859   //! This is done by the view theView passing this position to the main viewer and updating it.
860   //! Functions in both Neutral Point and local contexts.
861   //! If theToRedrawOnUpdate is set to false, callee should call RedrawImmediate() to highlight detected object.
862   Standard_EXPORT AIS_StatusOfDetection MoveTo (const Standard_Integer theXPix, const Standard_Integer theYPix, const Handle(V3d_View)& theView, const Standard_Boolean theToRedrawOnUpdate = Standard_True);
863   
864   //! returns True  if other entities  were detected  in the
865   //! last mouse detection
866   Standard_EXPORT Standard_Boolean HasNextDetected() const;
867   
868   //! if more than 1 object is detected by the selector,
869   //! only the "best" owner is hilighted at the mouse position.
870   //! This Method allows the user to hilight one after another
871   //! the other detected entities.
872   //! if The method select is called, the selected entity
873   //! will be the hilighted one!
874   //! returns the Rank of hilighted entity
875   //! WARNING : Loop Method. When all the detected entities
876   //! have been hilighted , the next call will hilight
877   //! the first one again
878   Standard_EXPORT Standard_Integer HilightNextDetected (const Handle(V3d_View)& theView, const Standard_Boolean theToRedrawImmediate = Standard_True);
879   
880   //! Same as previous methods in reverse direction...
881   Standard_EXPORT Standard_Integer HilightPreviousDetected (const Handle(V3d_View)& theView, const Standard_Boolean theToRedrawImmediate = Standard_True);
882   
883   //! Adds object in the selection.
884   Standard_EXPORT AIS_StatusOfPick AddSelect (const Handle(SelectMgr_EntityOwner)& theObject);
885
886   //! Adds object in the selection.
887   AIS_StatusOfPick AddSelect (const Handle(AIS_InteractiveObject)& theObject)
888   {
889     return AddSelect (theObject->GlobalSelOwner());
890   }
891
892   //! Selects everything found in the bounding rectangle
893   //! defined by the pixel minima and maxima, XPMin,
894   //! YPMin, XPMax, and YPMax in the view, aView
895   //! The objects detected are passed to the main viewer,
896   //! which is then updated.
897   Standard_EXPORT AIS_StatusOfPick Select (const Standard_Integer XPMin, const Standard_Integer YPMin, const Standard_Integer XPMax, const Standard_Integer YPMax, const Handle(V3d_View)& aView, const Standard_Boolean updateviewer = Standard_True);
898   
899   //! polyline selection; clears the previous picked list
900   Standard_EXPORT AIS_StatusOfPick Select (const TColgp_Array1OfPnt2d& Polyline, const Handle(V3d_View)& aView, const Standard_Boolean updateviewer = Standard_True);
901   
902   //! Stores  and hilights the previous detected; Unhilights
903   //! the previous picked.
904   Standard_EXPORT AIS_StatusOfPick Select (const Standard_Boolean updateviewer = Standard_True);
905   
906   //! adds the last detected to the list of previous picked.
907   //! if the last detected was already declared as picked,
908   //! removes it from the Picked List.
909   Standard_EXPORT AIS_StatusOfPick ShiftSelect (const Standard_Boolean updateviewer = Standard_True);
910   
911   //! adds the last detected to the list of previous picked.
912   //! if the last detected was already declared as picked,
913   //! removes it from the Picked List.
914   Standard_EXPORT AIS_StatusOfPick ShiftSelect (const TColgp_Array1OfPnt2d& Polyline, const Handle(V3d_View)& aView, const Standard_Boolean updateviewer = Standard_True);
915   
916   //! rectangle  of selection  ; adds new detected entities into the
917   //! picked list, removes the detected entities that were already stored...
918   Standard_EXPORT AIS_StatusOfPick ShiftSelect (const Standard_Integer XPMin, const Standard_Integer YPMin, const Standard_Integer XPMax, const Standard_Integer YPMax, const Handle(V3d_View)& aView, const Standard_Boolean updateviewer = Standard_True);
919   
920   //! Specify whether selected object must be hilighted when mouse cursor
921   //! is moved above it (in MoveTo method). By default this value is false and
922   //! selected object is not hilighted in this case.
923     void SetToHilightSelected (const Standard_Boolean toHilight);
924   
925   //! Return value specified whether selected object must be hilighted
926   //! when mouse cursor is moved above it
927     Standard_Boolean ToHilightSelected() const;
928
929
930   //! @name OBSOLETE METHODS THAT ARE VALID FOR LOCAL CONTEXT ONLY
931
932   //! Updates the view of the current object in open context.
933   //! Objects selected when there is no open local context
934   //! are called current objects; those selected in open
935   //! local context, selected objects.
936   //! If a local context is open and if updateviewer equals
937   //! Standard_False, the presentation of the Interactive
938   //! Object activates the selection mode; the object is
939   //! displayed but no viewer will be updated.
940   Standard_EXPORT void SetCurrentObject (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Boolean updateviewer = Standard_True);
941   
942
943   //! Allows to add or remove the object given to the list of current and highlight/unhighlight it
944   //! correspondingly. Is valid for global context only; for local context use method AddOrRemoveSelected.
945   //! Since this method makes sence only for neutral point selection of a whole object, if 0 selection
946   //! of the object is empty this method simply does nothing.
947   Standard_EXPORT void AddOrRemoveCurrentObject (const Handle(AIS_InteractiveObject)& theObj,
948                                                  const Standard_Boolean theIsToUpdateViewer = Standard_True);
949   
950   //! Updates the list of current objects, i.e. hilights new
951   //! current objects, removes hilighting from former current objects.
952   //! Objects selected when there is no open local context
953   //! are called current objects; those selected in open
954   //! local context, selected objects.
955   Standard_EXPORT void UpdateCurrent();
956   
957
958   //! Returns the current selection touched by the cursor.
959   //! Objects selected when there is no open local context
960   //! are called current objects; those selected in open
961   //! local context, selected objects.
962     Standard_Boolean WasCurrentTouched() const;
963   
964     void SetOkCurrent();
965   
966
967   //! Returns true if there is a non-null interactive object in Neutral Point.
968   //! Objects selected when there is no open local context are called current objects;
969   //! those selected in open local context, selected objects.
970   Standard_EXPORT Standard_Boolean IsCurrent (const Handle(AIS_InteractiveObject)& theObject) const;
971   
972
973   //! Initializes a scan of the current selected objects in
974   //! Neutral Point.
975   //! Objects selected when there is no open local context
976   //! are called current objects; those selected in open
977   //! local context, selected objects.
978   Standard_EXPORT void InitCurrent();
979   
980
981   //! Returns true if there is another object found by the
982   //! scan of the list of current objects.
983   //! Objects selected when there is no open local context
984   //! are called current objects; those selected in open
985   //! local context, selected objects.
986   Standard_EXPORT Standard_Boolean MoreCurrent() const;
987   
988
989   //! Continues the scan to the next object in the list of
990   //! current objects.
991   //! Objects selected when there is no open local context
992   //! are called current objects; those selected in open
993   //! local context, selected objects.
994   Standard_EXPORT void NextCurrent();
995   
996
997   //! Returns the current interactive object.
998   //! Objects selected when there is no open local context
999   //! are called current objects; those selected in open
1000   //! local context, selected objects.
1001   Standard_EXPORT Handle(AIS_InteractiveObject) Current() const;
1002   
1003   Standard_EXPORT Standard_Integer NbCurrents();
1004
1005   //! Highlights current objects.
1006   //! Objects selected when there is no open local context
1007   //! are called current objects; those selected in open
1008   //! local context, selected objects.
1009   //! If a local context is open and if updateviewer equals
1010   //! Standard_False, the presentation of the Interactive
1011   //! Object activates the selection mode; the object is
1012   //! displayed but no viewer will be updated.
1013   Standard_EXPORT void HilightCurrents (const Standard_Boolean theToUpdateViewer = Standard_True);
1014
1015   //! Removes highlighting from current objects.
1016   //! Objects selected when there is no open local context
1017   //! are called current objects; those selected in open
1018   //! local context, selected objects.
1019   //! If a local context is open and if updateviewer equals
1020   //! Standard_False, the presentation of the Interactive
1021   //! Object activates the selection mode; the object is
1022   //! displayed but no viewer will be updated.
1023   Standard_EXPORT void UnhilightCurrents (const Standard_Boolean updateviewer = Standard_True);
1024
1025   //! Empties previous current objects in order to get the
1026   //! current objects detected by the selector using
1027   //! UpdateCurrent.
1028   //! Objects selected when there is no open local context
1029   //! are called current objects; those selected in open
1030   //! local context, selected objects.
1031   //! If a local context is open and if updateviewer equals
1032   //! Standard_False, the presentation of the Interactive
1033   //! Object activates the selection mode; the object is
1034   //! displayed but no viewer will be updated.
1035   Standard_EXPORT void ClearCurrents (const Standard_Boolean theToUpdateViewer = Standard_True);
1036
1037   //! @return current mouse-detected shape or empty (null) shape, if current interactive object
1038   //! is not a shape (AIS_Shape) or there is no current mouse-detected interactive object at all.
1039   Standard_EXPORT const TopoDS_Shape& DetectedCurrentShape() const;
1040   
1041   //! @return current mouse-detected interactive object or null object, if there is no
1042   //! currently detected interactives
1043   Standard_EXPORT Handle(AIS_InteractiveObject) DetectedCurrentObject() const;
1044
1045   //! @name COMMON SELECTION METHODS VALID FOR BOTH GLOBAL AND LOCAL CONTEXT
1046
1047   //! Unhighlights previously selected owners and marks them as not selected.
1048   //! Marks owner given as selected and highlights it.
1049   //! Performs selection filters check.
1050   Standard_EXPORT void SetSelected (const Handle(SelectMgr_EntityOwner)& theOwners,
1051                                     const Standard_Boolean theToUpdateViewer = Standard_True);
1052
1053   //! Puts the interactive object aniObj in the list of
1054   //! selected objects.
1055   //! If a local context is open and if updateviewer equals
1056   //! Standard_False, the presentation of the Interactive
1057   //! Object activates the selection mode; the object is
1058   //! displayed but no viewer will be updated.
1059   //! Performs selection filters check.
1060   Standard_EXPORT void SetSelected (const Handle(AIS_InteractiveObject)& theObject,
1061                                     const Standard_Boolean theToUpdateViewer = Standard_True);
1062
1063   //! Updates the list of selected objects:
1064   //! i.e. highlights the newely selected ones and unhighlights previously selected objects.
1065   Standard_EXPORT void UpdateSelected (const Standard_Boolean theToUpdateViewer = Standard_True);
1066   
1067   //! Allows to highlight or unhighlight the owner given depending on its selection status
1068   Standard_EXPORT void AddOrRemoveSelected (const Handle(AIS_InteractiveObject)& theObject,
1069                                             const Standard_Boolean theToUpdateViewer = Standard_True);
1070
1071   //! Highlights selected objects.
1072   //! If a local context is open and if updateviewer equals
1073   //! Standard_False, the presentation of the Interactive
1074   //! Object activates the selection mode; the object is
1075   //! displayed but no viewer will be updated.
1076   Standard_EXPORT void HilightSelected (const Standard_Boolean theToUpdateViewer = Standard_True);
1077
1078   //! Removes highlighting from selected objects.
1079   //! If a local context is open and if updateviewer equals
1080   //! Standard_False, the presentation of the Interactive
1081   //! Object activates the selection mode; the object is
1082   //! displayed but no viewer will be updated.
1083   Standard_EXPORT void UnhilightSelected (const Standard_Boolean theToUpdateViewer = Standard_True);
1084
1085   //! Empties previous selected objects in order to get the
1086   //! selected objects detected by the selector using
1087   //! UpdateSelected.
1088   //! If a local context is open and if updateviewer equals
1089   //! Standard_False, the presentation of the Interactive
1090   //! Object activates the selection mode; the object is
1091   //! displayed but no viewer will be updated.
1092   Standard_EXPORT void ClearSelected (const Standard_Boolean theToUpdateViewer = Standard_True);
1093   
1094   //! No right to Add a selected Shape (Internal Management
1095   //! of shape Selection).
1096   //! A Previous selected shape may only be removed.
1097   Standard_EXPORT void AddOrRemoveSelected (const TopoDS_Shape& aShape, const Standard_Boolean updateviewer = Standard_True);
1098
1099   //! Allows to highlight or unhighlight the owner given depending on its selection status
1100   Standard_EXPORT void AddOrRemoveSelected (const Handle(SelectMgr_EntityOwner)& theOwner,
1101                                             const Standard_Boolean theToUpdateViewer = Standard_True);
1102
1103   //! Returns true is the owner given is selected
1104   Standard_EXPORT Standard_Boolean IsSelected (const Handle(SelectMgr_EntityOwner)& theOwner) const;
1105
1106   //! Returns true is the object given is selected
1107   Standard_EXPORT Standard_Boolean IsSelected (const Handle(AIS_InteractiveObject)& theObj) const;
1108
1109   //! Returns the first selected object in the list of current selected.
1110   Standard_EXPORT Handle(AIS_InteractiveObject) FirstSelectedObject();
1111
1112   //! Initializes a scan of the selected objects.
1113   Standard_EXPORT void InitSelected();
1114
1115   //! Returns true if there is another object found by the
1116   //! scan of the list of selected objects.
1117   Standard_EXPORT Standard_Boolean MoreSelected() const;
1118
1119   //! Continues the scan to the next object in the list of
1120   //! selected objects.
1121   Standard_EXPORT void NextSelected();
1122
1123   Standard_EXPORT Standard_Integer NbSelected();
1124
1125   //! Returns true if the interactive context has a shape
1126   //! selected in it which results from the decomposition of
1127   //! another entity.
1128   //! If HasSelectedShape returns true, SelectedShape
1129   //! returns the shape which has been shown to be
1130   //! selected. Interactive returns the Interactive Object
1131   //! from which the shape has been selected.
1132   //! If HasSelectedShape returns false, Interactive
1133   //! returns the interactive entity selected by the click of the mouse.
1134   Standard_EXPORT Standard_Boolean HasSelectedShape() const;
1135
1136   //! Returns the selected shape.
1137   Standard_EXPORT TopoDS_Shape SelectedShape() const;
1138
1139   //! Returns the owner of the selected entity resulting
1140   //! from the decomposition of another entity.
1141   Standard_EXPORT Handle(SelectMgr_EntityOwner) SelectedOwner() const;
1142
1143   //! Returns a collection containing all entity owners
1144   //! created for the interactive object <theIObj> in
1145   //! the selection mode theMode (in all active modes
1146   //! if the Mode == -1)
1147   Standard_EXPORT void EntityOwners (Handle(SelectMgr_IndexedMapOfOwner)& theOwners,
1148                                      const Handle(AIS_InteractiveObject)& theIObj,
1149                                      const Standard_Integer theMode = -1) const;
1150
1151   Standard_EXPORT Handle(AIS_InteractiveObject) SelectedInteractive() const;
1152
1153   //! Returns true if the applicative object has an owner
1154   //! from Interactive attributed to it.
1155   Standard_EXPORT Standard_Boolean HasApplicative() const;
1156   
1157
1158   //! Returns the owner of the applicative entity detected
1159   //! in interactive context. The owner can be a shape for
1160   //! a set of sub-shapes or a sub-shape for sub-shapes
1161   //! which it is composed of.
1162   Standard_EXPORT Handle(Standard_Transient) Applicative() const;
1163   
1164
1165   //! Returns true if there is a mouse-detected entity in local context.
1166   //! If there is no open local context, the objects selected
1167   //! are called current objects; selected objects if there is
1168   //! one. Iterators allow entities to be recovered in either
1169   //! case. This method is one of a set which allows you to
1170   //! manipulate the objects which have been placed in these two lists.
1171   Standard_EXPORT Standard_Boolean HasDetected() const;
1172   
1173
1174   //! Returns true if there is a detected shape in local context.
1175   //! If there is no open local context, the objects selected
1176   //! are called current objects; selected objects if there is
1177   //! one. Iterators allow entities to be recovered in either
1178   //! case. This method is one of a set which allows you to
1179   //! manipulate the objects which have been placed in these two lists.
1180   Standard_EXPORT Standard_Boolean HasDetectedShape() const;
1181   
1182
1183   //! Returns the shape detected in local context.
1184   //! If there is no open local context, the objects selected
1185   //! are called current objects; selected objects if there is
1186   //! one. Iterators allow entities to be recovered in either
1187   //! case. This method is one of a set which allows you to
1188   //! manipulate the objects which have been placed in these two lists.
1189   Standard_EXPORT const TopoDS_Shape& DetectedShape() const;
1190   
1191
1192   //! Returns the interactive objects last detected in open context.
1193   //! If there is no open local context, the objects selected
1194   //! are called current objects; selected objects if there is
1195   //! one. Iterators allow entities to be recovered in either
1196   //! case. This method is one of a set which allows you to
1197   //! manipulate the objects which have been placed in these two lists.
1198   Standard_EXPORT Handle(AIS_InteractiveObject) DetectedInteractive() const;
1199   
1200   //! returns the owner of the detected sensitive primitive.
1201   Standard_EXPORT Handle(SelectMgr_EntityOwner) DetectedOwner() const;
1202   
1203
1204   //! Initialization for iteration through mouse-detected objects in
1205   //! interactive context or in local context if it is opened.
1206   Standard_EXPORT void InitDetected();
1207   
1208
1209   //! @return true if there is more mouse-detected objects after the current one
1210   //! during iteration through mouse-detected interactive objects.
1211   Standard_EXPORT Standard_Boolean MoreDetected() const;
1212   
1213
1214   //! Gets next current object during iteration through mouse-detected
1215   //! interactive objects.
1216   Standard_EXPORT void NextDetected();
1217
1218   //! Opens local contexts and specifies how this is to be
1219   //! done. The options listed above function in the following manner:
1220   //! -   UseDisplayedObjects -allows you to load or not
1221   //! load the interactive objects visualized at Neutral
1222   //! Point in the local context which you open. If false,
1223   //! the local context is empty after being opened. If
1224   //! true, the objects at Neutral Point are loaded by their
1225   //! default selection mode.
1226   //! -   AllowShapeDecomposition -AIS_Shape allows or
1227   //! prevents decomposition in standard shape location
1228   //! mode of objects at Neutral Point which are
1229   //! type-"privileged". This Flag is only taken into
1230   //! account when UseDisplayedObjects is true.
1231   //! -   AcceptEraseOfObjects -authorises other local
1232   //! contexts to erase the interactive objects present in
1233   //! this context. This option is rarely used.
1234   //! -   BothViewers - Has no use currently defined.
1235   //! This method returns the index of the created local
1236   //! context. It should be kept and used to close the context.
1237   //! Opening a local context allows you to prepare an
1238   //! environment for temporary presentations and
1239   //! selections which will disappear once the local context is closed.
1240   //! You can open several local contexts, but only the last
1241   //! one will be active.
1242   Standard_EXPORT Standard_Integer OpenLocalContext (const Standard_Boolean UseDisplayedObjects = Standard_True, const Standard_Boolean AllowShapeDecomposition = Standard_True, const Standard_Boolean AcceptEraseOfObjects = Standard_False, const Standard_Boolean BothViewers = Standard_False);
1243   
1244   //! Allows you to close local contexts. For greater
1245   //! security, you should close the context with the
1246   //! index Index given on opening.
1247   //! When you close a local context, the one before,
1248   //! which is still on the stack,   reactivates. If none is
1249   //! left, you return to Neutral Point.
1250   //! If a local context is open and if updateviewer
1251   //! equals Standard_False, the presentation of the
1252   //! Interactive Object activates the selection mode; the
1253   //! object is displayed but no viewer will be updated.
1254   //! Warning
1255   //! When the index isn't specified, the current context
1256   //! is closed. This option can be dangerous, as other
1257   //! Interactive Functions can open local contexts
1258   //! without necessarily warning the user.
1259   Standard_EXPORT void CloseLocalContext (const Standard_Integer Index = -1, const Standard_Boolean updateviewer = Standard_True);
1260   
1261   //! returns -1 if no opened local context.
1262   Standard_EXPORT Standard_Integer IndexOfCurrentLocal() const;
1263   
1264
1265   //! Allows you to close all local contexts at one go and
1266   //! return to Neutral Point.
1267   //! If a local context is open and if updateviewer equals
1268   //! Standard_False, the presentation of the Interactive
1269   //! Object activates the selection mode; the object is
1270   //! displayed but no viewer will be updated.
1271   Standard_EXPORT void CloseAllContexts (const Standard_Boolean updateviewer = Standard_True);
1272   
1273   //! to   be  used only with no  opened
1274   //! local context..  displays and activates objects in their
1275   //! original state before local contexts were opened...
1276   Standard_EXPORT void ResetOriginalState (const Standard_Boolean updateviewer = Standard_True);
1277   
1278   //! clears Objects/Filters/Activated Modes list in the current opened
1279   //! local context.
1280   Standard_EXPORT void ClearLocalContext (const AIS_ClearMode TheMode = AIS_CM_All);
1281   
1282   Standard_EXPORT void UseDisplayedObjects();
1283   
1284   //! when a local Context is opened, one is able to
1285   //! use/not use the displayed objects at neutral point
1286   //! at anytime.
1287   Standard_EXPORT void NotUseDisplayedObjects();
1288   
1289   //! initializes the list of presentations to be displayed
1290   //! returns False if no local context is opened.
1291   Standard_EXPORT Standard_Boolean BeginImmediateDraw();
1292   
1293   //! returns True if <anIObj> has been stored in the list.
1294   Standard_EXPORT Standard_Boolean ImmediateAdd (const Handle(AIS_InteractiveObject)& theObj, const Standard_Integer theMode = 0);
1295   
1296   //! returns True if the immediate display has been done.
1297   Standard_EXPORT Standard_Boolean EndImmediateDraw (const Handle(V3d_View)& theView);
1298   
1299   //! Uses the First Active View of Main Viewer!
1300   //! returns True if the immediate display has been done.
1301   Standard_EXPORT Standard_Boolean EndImmediateDraw();
1302   
1303   Standard_EXPORT Standard_Boolean IsImmediateModeOn() const;
1304   
1305
1306   //! Sets the highlighting status aStatus of detected and
1307   //! selected entities.
1308   //! Whether you are in Neutral Point or local context, this
1309   //! is automatically managed by the Interactive Context.
1310   //! This function allows you to disconnect the automatic mode.
1311   Standard_EXPORT void SetAutomaticHilight (const Standard_Boolean aStatus);
1312   
1313
1314   //! Returns true if the automatic highlight mode is active
1315   //! in an open context.
1316   Standard_EXPORT Standard_Boolean AutomaticHilight() const;
1317   
1318   //! Enables/Disables the Z detection.
1319   //! If TRUE the detection echo can be partially hidden by the
1320   //! detected object.
1321   Standard_EXPORT void SetZDetection (const Standard_Boolean aStatus = Standard_False);
1322   
1323   //! Retrieves the Z detection state.
1324   Standard_EXPORT Standard_Boolean ZDetection() const;
1325   
1326   //! Activates the selection mode aMode whose index is
1327   //! given, for the given interactive entity anIobj.
1328   Standard_EXPORT void Activate (const Handle(AIS_InteractiveObject)& anIobj, const Standard_Integer aMode = 0, const Standard_Boolean theIsForce = Standard_False);
1329   
1330   //! Deactivates all the activated selection modes
1331   //! of an object.
1332   Standard_EXPORT void Deactivate (const Handle(AIS_InteractiveObject)& anIObj);
1333   
1334
1335   //! Deactivates all the activated selection modes of the
1336   //! interactive object anIobj with a given selection mode aMode.
1337   Standard_EXPORT void Deactivate (const Handle(AIS_InteractiveObject)& anIobj, const Standard_Integer aMode);
1338   
1339
1340   //! Returns the list of activated selection modes in an open context.
1341   Standard_EXPORT void ActivatedModes (const Handle(AIS_InteractiveObject)& anIobj, TColStd_ListOfInteger& theList) const;
1342   
1343   //! to be Used only with opened local context and
1344   //! if <anIobj> is of type shape...
1345   //! if <aStatus> = True <anIobj> will be sensitive to
1346   //! shape selection modes activation.
1347   //! = False, <anIobj> will not be senstive
1348   //! any more.
1349   Standard_EXPORT void SetShapeDecomposition (const Handle(AIS_InteractiveObject)& anIobj, const Standard_Boolean aStatus);
1350   
1351
1352   //! Sets the temporary graphic attributes of the entity
1353   //! anObj. These are provided by the attribute manager
1354   //! aDrawer and are valid for a particular local context only.
1355   //! If a local context is open and if updateviewer equals
1356   //! Standard_False, the presentation of the Interactive
1357   //! Object activates the selection mode; the object is
1358   //! displayed but no viewer will be updated.
1359   Standard_EXPORT void SetTemporaryAttributes (const Handle(AIS_InteractiveObject)& anObj, const Handle(Prs3d_Drawer)& aDrawer, const Standard_Boolean updateviewer = Standard_True);
1360   
1361
1362   //! Highlights, and removes highlights from, the displayed
1363   //! object aniobj which is displayed at Neutral Point with
1364   //! subintensity color; available only for active local
1365   //! context. There is no effect if there is no local context.
1366   //! If a local context is open and if updateviewer equals
1367   //! Standard_False, the presentation of the Interactive
1368   //! Object activates the selection mode; the object is
1369   //! displayed but no viewer will be updated.
1370   Standard_EXPORT void SubIntensityOn (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Boolean updateviewer = Standard_True);
1371   
1372
1373   //! Removes the subintensity option for the entity aniobj.
1374   //! If a local context is open and if updateviewer equals
1375   //! Standard_False, the presentation of the Interactive
1376   //! Object activates the selection mode; the object is
1377   //! displayed but no viewer will be updated.
1378   Standard_EXPORT void SubIntensityOff (const Handle(AIS_InteractiveObject)& aniobj, const Standard_Boolean updateviewer = Standard_True);
1379   
1380   //! hilights/unhilights displayed objects which are displayed at
1381   //! neutral state with subintensity color;
1382   //! available only for active local context.
1383   //! No effect if no local context.
1384   Standard_EXPORT void SubIntensityOn (const Standard_Boolean updateviewer = Standard_True);
1385   
1386   //! removes subintensity option for all objects.
1387   Standard_EXPORT void SubIntensityOff (const Standard_Boolean updateviewer = Standard_True);
1388   
1389   //! Allows you to add the filter aFilter to Neutral Point or
1390   //! to a local context if one or more selection modes have been activated.
1391   //! Only type filters may be active in Neutral Point.
1392   Standard_EXPORT void AddFilter (const Handle(SelectMgr_Filter)& aFilter);
1393   
1394
1395   //! Removes a filter from Neutral Point or a local context
1396   //! if one or more selection modes have been activated.
1397   //! Only type filters are activated in Neutral Point.
1398   Standard_EXPORT void RemoveFilter (const Handle(SelectMgr_Filter)& aFilter);
1399   
1400   //! Remove a filter to Neutral Point or a local context if
1401   //! one or more selection modes have been activated.
1402   //! Only type filters are active in Neutral Point.
1403   Standard_EXPORT void RemoveFilters();
1404   
1405   //! Provides an alternative to the Display methods when
1406   //! activating specific selection modes. This has the
1407   //! effect of activating the corresponding selection mode
1408   //! aStandardActivation for all objects in Local Context
1409   //! which accept decomposition into sub-shapes.
1410   //! Every new Object which has been loaded into the
1411   //! interactive context and which answers these
1412   //! decomposition criteria is automatically activated
1413   //! according to these modes.
1414   //! Warning
1415   //! If you have opened a local context by loading an
1416   //! object with the default options
1417   //! (<AllowShapeDecomposition >= Standard_True), all
1418   //! objects of the "Shape" type are also activated with
1419   //! the same modes. You can act on the state of these
1420   //! "Standard" objects by using SetShapeDecomposition(Status).
1421   Standard_EXPORT void ActivateStandardMode (const TopAbs_ShapeEnum aStandardActivation);
1422   
1423
1424   //! Provides an alternative to the Display methods when
1425   //! deactivating specific selection modes. This has the
1426   //! effect of deactivating the corresponding selection
1427   //! mode aStandardActivation for all objects in Local
1428   //! Context which accept decomposition into sub-shapes.
1429   Standard_EXPORT void DeactivateStandardMode (const TopAbs_ShapeEnum aStandardActivation);
1430   
1431
1432   //! Returns the list of activated standard selection modes
1433   //! available in a local context.
1434   Standard_EXPORT const TColStd_ListOfInteger& ActivatedStandardModes() const;
1435   
1436
1437   //! Returns the list of filters active in a local context.
1438   Standard_EXPORT const SelectMgr_ListOfFilter& Filters() const;
1439   
1440
1441   //! Returns the default attribute manager.
1442   //! This contains all the color and line attributes which
1443   //! can be used by interactive objects which do not have
1444   //! their own attributes.
1445     const Handle(Prs3d_Drawer)& DefaultDrawer() const;
1446   
1447   //! Returns the current viewer.
1448     const Handle(V3d_Viewer)& CurrentViewer() const;
1449   
1450   //! Returns the list of displayed objects of a particular
1451   //! Type WhichKind and Signature WhichSignature. By
1452   //! Default, WhichSignature equals -1. This means that
1453   //! there is a check on type only.
1454   Standard_EXPORT void DisplayedObjects (AIS_ListOfInteractive& aListOfIO, const Standard_Boolean OnlyFromNeutral = Standard_False) const;
1455   
1456   //! gives the list of displayed objects of a particular
1457   //! Type and signature.
1458   //! by Default, <WhichSignature> = -1 means
1459   //! control only on <WhichKind>.
1460   Standard_EXPORT void DisplayedObjects (const AIS_KindOfInteractive WhichKind, const Standard_Integer WhichSignature, AIS_ListOfInteractive& aListOfIO, const Standard_Boolean OnlyFromNeutral = Standard_False) const;
1461   
1462
1463   //! Returns the list theListOfIO of erased objects (hidden objects)
1464   //! particular Type WhichKind and Signature WhichSignature.
1465   //! By Default, WhichSignature equals 1. This means
1466   //! that there is a check on type only.
1467   Standard_EXPORT void ErasedObjects (AIS_ListOfInteractive& theListOfIO) const;
1468   
1469   //! gives the list of erased objects (hidden objects)
1470   //! Type and signature
1471   //! by Default, <WhichSignature> = -1 means
1472   //! control only on <WhichKind>.
1473   Standard_EXPORT void ErasedObjects (const AIS_KindOfInteractive WhichKind, const Standard_Integer WhichSignature, AIS_ListOfInteractive& theListOfIO) const;
1474   
1475
1476   //! Returns the list theListOfIO of objects with indicated display status
1477   //! particular Type WhichKind and Signature WhichSignature.
1478   //! By Default, WhichSignature equals 1. This means
1479   //! that there is a check on type only.
1480   Standard_EXPORT void ObjectsByDisplayStatus (const AIS_DisplayStatus theStatus, AIS_ListOfInteractive& theListOfIO) const;
1481   
1482   //! gives the list of objects with indicated display status
1483   //! Type and signature
1484   //! by Default, <WhichSignature> = -1 means
1485   //! control only on <WhichKind>.
1486   Standard_EXPORT void ObjectsByDisplayStatus (const AIS_KindOfInteractive WhichKind, const Standard_Integer WhichSignature, const AIS_DisplayStatus theStatus, AIS_ListOfInteractive& theListOfIO) const;
1487   
1488   //! fills <aListOfIO> with objects of a particular
1489   //! Type and Signature with no consideration of display status.
1490   //! by Default, <WhichSignature> = -1 means
1491   //! control only on <WhichKind>.
1492   //! if <WhichKind> = AIS_KOI_None and <WhichSignature> = -1,
1493   //! all the objects are put into the list.
1494   Standard_EXPORT void ObjectsInside (AIS_ListOfInteractive& aListOfIO, const AIS_KindOfInteractive WhichKind = AIS_KOI_None, const Standard_Integer WhichSignature = -1) const;
1495   
1496   //! Returns true if there is an open context.
1497     Standard_Boolean HasOpenedContext() const;
1498   
1499   //! Returns the domain name of the main viewer.
1500   Standard_EXPORT Standard_CString DomainOfMainViewer() const;
1501   
1502
1503   //! This method is only intended for advanced operation, particularly with
1504   //! the aim to improve performance when many objects have to be selected
1505   //! together. Otherwise, you should use other (non-internal) methods of
1506   //! class AIS_InteractiveContext without trying to obtain an instance of
1507   //! AIS_LocalContext.
1508     Handle(AIS_LocalContext) LocalContext() const;
1509   
1510     const Handle(SelectMgr_SelectionManager)& SelectionManager() const;
1511   
1512     const Handle(PrsMgr_PresentationManager3d)& MainPrsMgr() const;
1513   
1514     const Handle(StdSelect_ViewerSelector3d)& MainSelector() const;
1515   
1516   Standard_EXPORT Handle(StdSelect_ViewerSelector3d) LocalSelector() const;
1517   
1518   //! Clears all the structures which don't
1519   //! belong to objects displayed at neutral point
1520   //! only effective when no Local Context is opened...
1521   //! returns the number of removed  structures from the viewers.
1522   Standard_EXPORT Standard_Integer PurgeDisplay();
1523   
1524   Standard_EXPORT Standard_Integer HighestIndex() const;
1525   
1526   Standard_EXPORT void DisplayActiveSensitive (const Handle(V3d_View)& aView);
1527   
1528   Standard_EXPORT void ClearActiveSensitive (const Handle(V3d_View)& aView);
1529   
1530   //! Fits the view correspondingly to the bounds of selected objects.
1531   //! Infinite objects are ignored if infinite state of AIS_InteractiveObject
1532   //! is set to true.
1533   Standard_EXPORT void FitSelected (const Handle(V3d_View)& theView, const Standard_Real theMargin = 0.01, const Standard_Boolean theToUpdate = Standard_True);
1534   
1535   Standard_EXPORT void DisplayActiveSensitive (const Handle(AIS_InteractiveObject)& anObject, const Handle(V3d_View)& aView);
1536   
1537   //! returns if possible,
1538   //! the first local context where the object is seen
1539   Standard_EXPORT Standard_Boolean IsInLocal (const Handle(AIS_InteractiveObject)& anObject, Standard_Integer& TheIndex) const;
1540   
1541   //! Rebuilds 1st level of BVH selection forcibly
1542   Standard_EXPORT void RebuildSelectionStructs();
1543   
1544   //! setup object visibility in specified view,
1545   //! has no effect if object is not disaplyed in this context.
1546   Standard_EXPORT void SetViewAffinity (const Handle(AIS_InteractiveObject)& theIObj, const Handle(V3d_View)& theView, const Standard_Boolean theIsVisible);
1547   
1548   //! Disconnects theObjToDisconnect from theAssembly and removes dependent selection structures
1549   Standard_EXPORT void Disconnect (const Handle(AIS_InteractiveObject)& theAssembly, const Handle(AIS_InteractiveObject)& theObjToDisconnect = NULL);
1550   
1551   //! Query objects visible or hidden in specified view due to affinity mask.
1552   Standard_EXPORT void ObjectsForView (AIS_ListOfInteractive& theListOfIO, const Handle(V3d_View)& theView, const Standard_Boolean theIsVisibleInView, const AIS_DisplayStatus theStatus = AIS_DS_None) const;
1553
1554   //! Redraws immediate structures in all views of the viewer given taking into account its visibility.
1555   Standard_EXPORT void RedrawImmediate (const Handle(V3d_Viewer)& theViewer);
1556
1557
1558 friend class AIS_LocalContext;
1559
1560
1561   DEFINE_STANDARD_RTTIEXT(AIS_InteractiveContext,MMgt_TShared)
1562
1563 protected:
1564
1565   Standard_EXPORT void GetDefModes (const Handle(AIS_InteractiveObject)& anIobj, Standard_Integer& Dmode, Standard_Integer& HiMod, Standard_Integer& SelMode) const;
1566   
1567   Standard_EXPORT void EraseGlobal (const Handle(AIS_InteractiveObject)& anObj, const Standard_Boolean updateviewer = Standard_True);
1568   
1569   Standard_EXPORT void ClearGlobal (const Handle(AIS_InteractiveObject)& anObj, const Standard_Boolean updateviewer = Standard_True);
1570   
1571   Standard_EXPORT void ClearGlobalPrs (const Handle(AIS_InteractiveObject)& anObj, const Standard_Integer aMode, const Standard_Boolean updateviewer = Standard_True);
1572   
1573   Standard_EXPORT void InitAttributes();
1574   
1575   Standard_EXPORT Standard_Integer PurgeViewer (const Handle(V3d_Viewer)& Vwr);
1576   
1577   //! UNKNOWN
1578   Standard_EXPORT void redisplayPrsModes (const Handle(AIS_InteractiveObject)& theIObj, const Standard_Boolean theToUpdateViewer = Standard_True);
1579   
1580   //! UNKNOWN
1581   Standard_EXPORT void redisplayPrsRecModes (const Handle(AIS_InteractiveObject)& theIObj, const Standard_Boolean theToUpdateViewer = Standard_True);
1582
1583   //! Helper function to unhighlight all entity owners currently highlighted with seleciton color.
1584   Standard_EXPORT void unhighlightOwners (const Handle(AIS_InteractiveObject)& theObject);
1585
1586   //! Helper function that highlights the owner given with <theColor> without
1587   //! performing AutoHighlight checks, e.g. is used for dynamic highlight.
1588   //! If the parameter <theViewer> is set and <theIsImmediate> is true, highlight will be synchronized
1589   //! automatically in all views of the viewer.
1590   Standard_EXPORT void highlightWithColor (const Handle(SelectMgr_EntityOwner)& theOwner,
1591                                            const Quantity_NameOfColor theColor,
1592                                            const Handle(V3d_Viewer)& theViewer = NULL);
1593
1594   //! Helper function that highlights the owner given with <theColor> with check
1595   //! for AutoHighlight, e.g. is used for selection.
1596   //! If the parameter <theViewer> is set and <theIsImmediate> is true, selection color will be synchronized
1597   //! automatically in all views of the viewer.
1598   Standard_EXPORT void highlightSelected (const Handle(SelectMgr_EntityOwner)& theOwner,
1599                                           const Quantity_NameOfColor theSelColor);
1600
1601   //! Helper function that unhighlights all owners that are stored in current AIS_Selection.
1602   //! The function updates global status and selection state of owner and interactive object.
1603   //! If the parameter <theIsToHilightSubIntensity> is set to true, interactive objects with sub-intensity
1604   //! switched on in AIS_GlobalStatus will be highlighted with context's sub-intensity color.
1605   Standard_EXPORT void unhighlightSelected (const Standard_Boolean theIsToHilightSubIntensity = Standard_False);
1606
1607 protected:
1608
1609   AIS_DataMapOfIOStatus myObjects;
1610   Handle(SelectMgr_SelectionManager) mgrSelector;
1611   Handle(PrsMgr_PresentationManager3d) myMainPM;
1612   Handle(V3d_Viewer) myMainVwr;
1613   Handle(StdSelect_ViewerSelector3d) myMainSel;
1614   Handle(SelectMgr_EntityOwner) myLastPicked;
1615   Handle(SelectMgr_EntityOwner) myLastinMain;
1616   Standard_Boolean myWasLastMain;
1617   Standard_Boolean myCurrentTouched;
1618   Standard_Boolean mySelectedTouched;
1619   Standard_Boolean myToHilightSelected;
1620   Handle(SelectMgr_OrFilter) myFilters;
1621   Handle(Prs3d_Drawer) myDefaultDrawer;
1622   Handle(AIS_Selection) mySelection;
1623   Quantity_NameOfColor myDefaultColor;
1624   Quantity_NameOfColor myHilightColor;
1625   Quantity_NameOfColor mySelectionColor;
1626   Quantity_NameOfColor myPreselectionColor;
1627   Quantity_NameOfColor mySubIntensity;
1628   Standard_Integer myDisplayMode;
1629   AIS_DataMapOfILC myLocalContexts;
1630   Standard_Integer myCurLocalIndex;
1631   Handle(V3d_View) mylastmoveview;
1632   AIS_SequenceOfInteractive myAISDetectedSeq;
1633   Standard_Integer myAISCurDetected;
1634   Standard_Boolean myZDetectionFlag;
1635   Standard_Boolean myIsAutoActivateSelMode;
1636
1637
1638 };
1639
1640
1641 #include <AIS_InteractiveContext.lxx>
1642
1643
1644
1645
1646
1647 #endif // _AIS_InteractiveContext_HeaderFile