]> SALOME platform Git repositories - modules/gui.git/blob - src/QxGraph/QxGraph_ViewWindow.h
Salome HOME
2de18419a8b9cb7202eb9e109e003c4e2e01486f
[modules/gui.git] / src / QxGraph / QxGraph_ViewWindow.h
1 //  Copyright (C) 2007-2008  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 //  SALOME QxGraph : build Supervisor viewer into desktop
23 //
24 #ifndef QXGRAPH_VIEWWINDOW_H
25 #define QXGRAPH_VIEWWINDOW_H
26
27 #include "QxGraph.h"
28 #include "QxGraph_ViewModel.h"
29
30 #include "SUIT_ViewWindow.h"
31
32 #include "QtxAction.h"
33
34 #include <qaction.h>
35
36 #ifdef WIN32
37 #pragma warning ( disable:4251 )
38 #endif
39
40 class SUIT_ResourceMgr;
41
42 class QXGRAPH_EXPORT QxGraph_ViewWindow : public SUIT_ViewWindow {
43   Q_OBJECT
44
45  public:
46   QxGraph_ViewWindow(SUIT_Desktop* theDesktop, QxGraph_Viewer* theModel);
47   virtual ~QxGraph_ViewWindow();
48
49   void              setBackgroundColor( const QColor& );
50   QColor            backgroundColor() const;
51
52   QToolBar*         getToolBar() { return myToolBar; }
53
54   SUIT_ResourceMgr* resMgr() const;
55
56   QxGraph_Viewer*   getViewModel() const { return myViewModel; }
57   void              setViewModel(QxGraph_Viewer* theViewModel) { myViewModel = theViewModel; }
58
59   virtual void      initLayout();
60
61   void              contextPopupEvent(QContextMenuEvent* theEvent) { emit contextMenuRequested( theEvent); }
62   
63  public slots:
64   void              onViewFitAll();
65   void              onViewFitArea();
66   void              onViewZoom();
67   void              onViewPan(); 
68   void              onViewGlobalPan(); 
69   void              onViewReset(); 
70   
71  protected:
72   void              resizeEvent( QResizeEvent* theEvent );
73
74   virtual void      initCanvas();
75   virtual void      initCanvasViews();
76
77  private:
78   void              createActions();
79   void              createToolBar();
80
81   //! Actions ID
82   enum { FitAllId, FitRectId, ZoomId, PanId, GlobalPanId, ResetId };
83   typedef QMap<int, QtxAction*> ActionsMap;
84
85   ActionsMap        myActionsMap;
86   QToolBar*         myToolBar;
87
88   QxGraph_Viewer*   myViewModel;
89   
90 };
91
92 #ifdef WIN32
93 #pragma warning ( default:4251 )
94 #endif
95
96 #endif