Salome HOME
Do no highlight the boolean widget
[modules/shaper.git] / src / ModuleBase / ModuleBase_IViewWindow.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3
4
5 #ifndef ModuleBase_IViewWindow_H
6 #define ModuleBase_IViewWindow_H
7
8 #include <V3d_View.hxx>
9
10
11 /** 
12 * \ingroup GUI
13 * Interface to ViewWindow object which contains 3d scene
14 */
15 class ModuleBase_IViewWindow
16 {
17 public:
18   /// Returns OCCT object which contains 3d view object
19   virtual Handle(V3d_View) v3dView() const = 0;
20
21   /// Returns the view window view port
22   virtual QWidget* viewPort() const = 0;
23 };
24
25
26 #endif