]> SALOME platform Git repositories - modules/hexablock.git/blob - src/HEXABLOCKGUI/HEXABLOCKGUI_GraphicViewsHandler.hxx
Salome HOME
Porting HEXABLOCK module on WIN32 platform.
[modules/hexablock.git] / src / HEXABLOCKGUI / HEXABLOCKGUI_GraphicViewsHandler.hxx
1 // Copyright (C) 2009-2013  CEA/DEN, EDF R&D
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.
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 #include "HEXABLOCKGUI_Export.hxx"
24
25 //Salome Includes
26 #include <SVTK_ViewWindow.h>
27 #include <OCCViewer_ViewWindow.h>
28
29 //Qt Includes
30 #include <QMap>
31
32 //HEXABLOCK Includes
33 #include "HEXABLOCKGUI_VtkDocumentGraphicView.hxx"
34
35 namespace HEXABLOCK
36 {
37   namespace GUI
38   {
39
40       class HEXABLOCK_EXPORT GraphicViewsHandler
41       {
42
43       public:
44           GraphicViewsHandler() {}
45           virtual ~GraphicViewsHandler() {}
46           VtkDocumentGraphicView* getDocumentGraphicView(SVTK_ViewWindow* view) const;
47           VtkDocumentGraphicView* createDocumentGraphicView(DocumentModel* docModel, SVTK_ViewWindow* wnd, QWidget* parent);
48           SVTK_ViewWindow* getOrCreateVtkWindow() const;
49           SVTK_ViewWindow* createVtkWindow() const;
50           OCCViewer_ViewWindow* getOrCreateOccWindow() const;
51           OCCViewer_ViewWindow* createOccWindow() const;
52           void closeDocumentGraphicView(SVTK_ViewWindow* window);
53               void setViewManager(SUIT_ViewManager* vmanager);
54           int getNbDocumentGViews() { return docGraphicViews.count();}
55
56       protected:
57           QMap<SVTK_ViewWindow*, VtkDocumentGraphicView*> docGraphicViews;
58       };
59
60   }
61 }
62
63 #endif