0027398: Integrate Qt Browser Widget to Open CASCADE Technology
[occt.git] / tools / VInspector / VInspector_CallBackMode.hxx
1 // Created on: 2017-06-16
2 // Created by: Natalia ERMOLAEVA
3 // Copyright (c) 2017 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement. 
15
16 #ifndef VInspector_CallBackMode_H
17 #define VInspector_CallBackMode_H
18
19 //! History context modes corresponding to actions in AIS_InteractiveContext
20 enum VInspector_CallBackMode
21 {
22   VInspector_CallBackMode_None, //!< undefined 
23   VInspector_CallBackMode_Display, //!< Display
24   VInspector_CallBackMode_Redisplay, //!< Redisplay
25   VInspector_CallBackMode_Remove, //!< Remove
26   VInspector_CallBackMode_Load, //!< Load
27   VInspector_CallBackMode_ActivatedModes, //!< ActivatedModes
28   VInspector_CallBackMode_Activate, //!< Activate
29   VInspector_CallBackMode_Deactivate, //!< Deactivate
30   VInspector_CallBackMode_AddOrRemoveSelectedShape, //!< AddOrRemoveSelectedShape for TopoDS_Shape
31   VInspector_CallBackMode_AddOrRemoveSelected, //!< AddOrRemoveSelectedShape for Presentation
32   VInspector_CallBackMode_AddOrRemoveSelectedOwner, //!< AddOrRemoveSelectedShape for Owner
33   VInspector_CallBackMode_ClearSelected, //!< ClearSelected
34   VInspector_CallBackMode_MoveTo, //!< MoveTo
35   VInspector_CallBackMode_SetSelected, //!< SetSelected
36   VInspector_CallBackMode_Select, //!< Select
37   VInspector_CallBackMode_ShiftSelect //!< ShiftSelect
38 };
39
40 #endif