Salome HOME
Merge from V6_main 01/04/2013
[modules/hexablock.git] / src / HEXABLOCKGUI / HEXABLOCKGUI_OccGraphicView.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
21
22 #ifndef _HEXABLOCKGUI_OCCGRAPHICVIEW_HXX_
23 #define _HEXABLOCKGUI_OCCGRAPHICVIEW_HXX_
24
25
26 #include <OCCViewer_ViewWindow.h>
27 #include "HEXABLOCKGUI_SalomeTools.hxx"
28
29 #include <QModelIndex>
30 #include <QModelIndexList>
31
32
33
34
35 namespace HEXABLOCK
36 {
37
38     namespace GUI
39     {
40
41         /********************************************************************************
42          *                          OccGraphicView
43          ********************************************************************************/
44
45         class OccGraphicView
46         {
47
48          public:
49             OccGraphicView(OCCViewer_ViewWindow* view, QWidget* parent=NULL);
50             virtual ~OccGraphicView(){};
51
52             void highlight( const QModelIndex & index );
53             void highlight( const QModelIndexList & indexList );
54             void highlight( const QMultiMap<QString, int>&  entrySubIDs );
55
56             void setViewWindow(OCCViewer_ViewWindow* view) { viewWindow = view; }
57             OCCViewer_ViewWindow* getViewWindow() const { return viewWindow; }
58
59             void setSelectionMode(TopAbs_ShapeEnum mode);
60             void setSelectionMode(const QModelIndex& eltIndex);
61             TopAbs_ShapeEnum getSelectionMode() const { return selectionMode; }
62             void clearSelection();
63
64          private:
65             OCCViewer_ViewWindow*  viewWindow;
66             TopAbs_ShapeEnum selectionMode;
67
68         };
69     }
70 }
71
72
73 #endif