Salome HOME
Updated copyright comment
[modules/hexablock.git] / src / HEXABLOCKGUI / HEXABLOCKGUI_GraphicViewsHandler.hxx
1 // Copyright (C) 2009-2024  CEA, EDF
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef _HEXABLOCKGUI_VTKGRAPHICVIEWSHANDLER_HXX_
21 #define _HEXABLOCKGUI_VTKGRAPHICVIEWSHANDLER_HXX_
22
23 //Salome Includes
24 #include <SVTK_ViewWindow.h>
25 #include <OCCViewer_ViewWindow.h>
26
27 //Qt Includes
28 #include <QMap>
29
30 //HEXABLOCK Includes
31 #include "HEXABLOCKGUI_Export.hxx"
32 #include "HEXABLOCKGUI_VtkDocumentGraphicView.hxx"
33
34 namespace HEXABLOCK
35 {
36   namespace GUI
37   {
38
39       class HEXABLOCK_EXPORT GraphicViewsHandler
40       {
41
42       public:
43           GraphicViewsHandler() {}
44           virtual ~GraphicViewsHandler() {}
45           VtkDocumentGraphicView* getDocumentGraphicView(SVTK_ViewWindow* view) const;
46           VtkDocumentGraphicView* createDocumentGraphicView(DocumentModel* docModel, SVTK_ViewWindow* wnd, QWidget* parent);
47           SVTK_ViewWindow* getOrCreateVtkWindow() const;
48           SVTK_ViewWindow* createVtkWindow() const;
49           OCCViewer_ViewWindow* getOrCreateOccWindow() const;
50           OCCViewer_ViewWindow* createOccWindow() const;
51           void closeDocumentGraphicView(SVTK_ViewWindow* window);
52               void setViewManager(SUIT_ViewManager* vmanager);
53           int getNbDocumentGViews() { return docGraphicViews.count();}
54
55       protected:
56           QMap<SVTK_ViewWindow*, VtkDocumentGraphicView*> docGraphicViews;
57       };
58
59   }
60 }
61
62 #endif