0031570: Samples - add Qt samples similar to standard MFC samples
[occt.git] / samples / qt / OCCTOverview / src / GeomWidget.h
1 // Copyright (c) 2020 OPEN CASCADE SAS
2 //
3 // This file is part of the examples of the Open CASCADE Technology software library.
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a copy
6 // of this software and associated documentation files (the "Software"), to deal
7 // in the Software without restriction, including without limitation the rights
8 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 // copies of the Software, and to permit persons to whom the Software is
10 // furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in all
13 // copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
21
22 #ifndef GEOMWIDGET_H
23 #define GEOMWIDGET_H
24
25 #include "View.h"
26 #include "DocumentCommon.h"
27
28 #include <Standard_WarningsDisable.hxx>
29 #include <QWidget>
30 #include <Standard_WarningsRestore.hxx>
31
32 class ApplicationCommon;
33 class QStackedWidget;
34
35 //! Qt widget for organize 3D & 2D documents
36 class GeomWidget : public QWidget
37 {
38   Q_OBJECT
39 public:
40   GeomWidget(DocumentCommon* theDocument3d,
41              DocumentCommon* theDocument2d,
42              QWidget* theParent = nullptr);
43
44   void FitAll();
45
46   Handle(V3d_View) Get3dView() { return myView3d->getView(); }
47
48   Handle(V3d_View) Get2dView() { return myView2d->getView(); }
49
50   void Show3d();
51   void Show2d();
52
53 private:
54   View*    myView3d;
55   View*    myView2d;
56
57   QWidget* my3dVidget;
58   QWidget* my2dVidget;
59   QStackedWidget* myStackWidget;
60
61   DocumentCommon* myDocument3d;
62   DocumentCommon* myDocument2d;
63 };
64
65 #endif //GEOMWIDGET_H