]> SALOME platform Git repositories - modules/gui.git/blob - src/Plot2d/Plot2d_ViewWindow.h
Salome HOME
Copyrights update
[modules/gui.git] / src / Plot2d / Plot2d_ViewWindow.h
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA 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/
18 //
19 #ifndef PLOT2D_VIEWWINDOW_H
20 #define PLOT2D_VIEWWINDOW_H
21
22 #include "Plot2d.h"
23 #include <SUIT_ViewWindow.h>
24
25 #ifdef WIN32
26 #pragma warning( disable:4251 )
27 #endif
28
29 class SUIT_Desktop;
30 class Plot2d_Viewer;
31 class Plot2d_ViewFrame;
32 class QtxAction;
33 class SUIT_ToolButton;
34
35 class PLOT2D_EXPORT Plot2d_ViewWindow : public SUIT_ViewWindow  
36 {
37   Q_OBJECT
38
39 public:
40   Plot2d_ViewWindow( SUIT_Desktop* theDesktop, Plot2d_Viewer* theModel );
41   virtual ~Plot2d_ViewWindow();
42
43   Plot2d_Viewer*    getModel() { return myModel; }
44   void              putInfo(QString theMsg);
45   Plot2d_ViewFrame* getViewFrame() { return myViewFrame; };
46   QToolBar*         getToolBar() { return myToolBar; };
47   void              contextMenuPopup( QPopupMenu* thePopup );
48
49 protected:
50   QImage dumpView();
51
52 private:
53   bool eventFilter(QObject* watched, QEvent* e);
54
55   void createActions();
56   void createToolBar();
57
58 public slots:
59   void onChangeHorMode();
60   void onChangeVerMode();
61   void onChangeCurveMode();
62   void onChangeLegendMode();
63   
64   void onFitAll();
65   void onFitRect();
66   void onZoom();
67   void onPanning();
68   void onGlobalPanning();
69   void onViewHorMode();
70   void onViewVerMode();
71   void onLegend();
72   void onCurves();
73
74   void onDumpView();
75
76 signals:
77   void cloneView();
78
79 protected:
80   enum { DumpId, FitAllId, FitRectId, ZoomId, PanId, GlobalPanId, HorId,
81          VerId, LegendId, CurvPointsId, CurvLinesId, CurvSplinesId, CurvSettingsId, CloneId,
82          PModeXLinearId, PModeXLogarithmicId, PModeYLinearId, PModeYLogarithmicId };
83   typedef QMap<int, QtxAction*> ActionsMap;
84   ActionsMap        myActionsMap;
85
86 private:
87   Plot2d_Viewer*    myModel;
88   Plot2d_ViewFrame* myViewFrame;
89   QToolBar*         myToolBar;
90
91   SUIT_ToolButton*  myCurveBtn;
92 };
93
94 #ifdef WIN32
95 #pragma warning( default:4251 )
96 #endif
97
98 #endif