Salome HOME
Merge from V6_main 01/04/2013
[modules/gui.git] / src / QxGraph / QxGraph_ViewWindow.h
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SALOME QxGraph : build Supervisor viewer into desktop
24 //
25 #ifndef QXGRAPH_VIEWWINDOW_H
26 #define QXGRAPH_VIEWWINDOW_H
27
28 #include "QxGraph.h"
29 #include "QxGraph_ViewModel.h"
30
31 #include "SUIT_ViewWindow.h"
32
33 #include "QtxAction.h"
34
35 #include <qaction.h>
36
37 #ifdef WIN32
38 #pragma warning ( disable:4251 )
39 #endif
40
41 class SUIT_ResourceMgr;
42
43 class QXGRAPH_EXPORT QxGraph_ViewWindow : public SUIT_ViewWindow {
44   Q_OBJECT
45
46  public:
47   QxGraph_ViewWindow(SUIT_Desktop* theDesktop, QxGraph_Viewer* theModel);
48   virtual ~QxGraph_ViewWindow();
49
50   void              setBackgroundColor( const QColor& );
51   QColor            backgroundColor() const;
52
53   QToolBar*         getToolBar() { return myToolBar; }
54
55   SUIT_ResourceMgr* resMgr() const;
56
57   QxGraph_Viewer*   getViewModel() const { return myViewModel; }
58   void              setViewModel(QxGraph_Viewer* theViewModel) { myViewModel = theViewModel; }
59
60   virtual void      initLayout();
61
62   void              contextPopupEvent(QContextMenuEvent* theEvent) { emit contextMenuRequested( theEvent); }
63   
64  public slots:
65   void              onViewFitAll();
66   void              onViewFitArea();
67   void              onViewZoom();
68   void              onViewPan(); 
69   void              onViewGlobalPan(); 
70   void              onViewReset(); 
71   
72  protected:
73   void              resizeEvent( QResizeEvent* theEvent );
74
75   virtual void      initCanvas();
76   virtual void      initCanvasViews();
77
78  private:
79   void              createActions();
80   void              createToolBar();
81
82   //! Actions ID
83   enum { FitAllId, FitRectId, ZoomId, PanId, GlobalPanId, ResetId };
84   typedef QMap<int, QtxAction*> ActionsMap;
85
86   ActionsMap        myActionsMap;
87   QToolBar*         myToolBar;
88
89   QxGraph_Viewer*   myViewModel;
90   
91 };
92
93 #ifdef WIN32
94 #pragma warning ( default:4251 )
95 #endif
96
97 #endif