Salome HOME
Merge from V6_main 13/12/2012
[modules/hexablock.git] / src / HEXABLOCKGUI / HEXABLOCKGUI_GraphicViewsHandler.hxx
1 // Copyright (C) 2009-2012  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 //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_VtkDocumentGraphicView.hxx"
32
33 namespace HEXABLOCK
34 {
35   namespace GUI
36   {
37
38       class GraphicViewsHandler
39       {
40
41       public:
42           GraphicViewsHandler()/*: vtkViewManager(NULL)*/ {}
43           virtual ~GraphicViewsHandler() {}
44           VtkDocumentGraphicView* getDocumentGraphicView(SVTK_ViewWindow* view) const;
45           VtkDocumentGraphicView* createDocumentGraphicView(DocumentModel* docModel, SVTK_ViewWindow* wnd, QWidget* parent);
46           SVTK_ViewWindow* getOrCreateVtkWindow() const;
47           SVTK_ViewWindow* createVtkWindow() const;
48           OCCViewer_ViewWindow* getOrCreateOccWindow() const;
49           OCCViewer_ViewWindow* createOccWindow() const;
50           void closeDocumentGraphicView(SVTK_ViewWindow* window);
51               void setViewManager(SUIT_ViewManager* vmanager);
52           int getNbDocumentGViews() { return docGraphicViews.count();}
53
54       protected:
55           QMap<SVTK_ViewWindow*, VtkDocumentGraphicView*> docGraphicViews;
56       };
57
58   }
59 }
60
61 #endif