Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/gui.git] / src / Plot2d / Plot2d_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 // File   : Plot2d_ViewWindow.h
23 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
24 //
25 #ifndef PLOT2D_VIEWWINDOW_H
26 #define PLOT2D_VIEWWINDOW_H
27
28 #include "Plot2d.h"
29 #include <SUIT_ViewWindow.h>
30 #include <QMap>
31
32
33 #ifdef WIN32
34 #pragma warning( disable:4251 )
35 #endif
36
37 class SUIT_Desktop;
38 class Plot2d_Viewer;
39 class Plot2d_ViewFrame;
40 class QtxAction;
41 class QImage;
42 class QMenu;
43 class QToolBar;
44
45 class PLOT2D_EXPORT Plot2d_ViewWindow : public SUIT_ViewWindow  
46 {
47   Q_OBJECT
48
49 public:
50   enum { DumpId, 
51          ScaleOpId, FitAllId, FitRectId, ZoomId,
52          MoveOpId, PanId, GlobalPanId,
53          PModeXLinearId, PModeXLogarithmicId, 
54          PModeYLinearId, PModeYLogarithmicId,
55          CurvPointsId, CurvLinesId, CurvSplinesId, 
56          LegendId,
57          CurvSettingsId,
58          CloneId };
59
60 public:
61   Plot2d_ViewWindow( SUIT_Desktop*, Plot2d_Viewer* );
62   virtual ~Plot2d_ViewWindow();
63
64   Plot2d_Viewer*    getModel();
65   void              putInfo( const QString&);
66   Plot2d_ViewFrame* getViewFrame();
67   QToolBar*         getToolBar();
68   void              contextMenuPopup( QMenu* );
69
70   virtual bool      eventFilter( QObject*, QEvent* );
71
72   void              createActions();
73   void              createToolBar();
74
75   virtual QString   getVisualParameters();
76   virtual void      setVisualParameters( const QString& );
77   
78   virtual void      RefreshDumpImage();
79
80 public slots:
81   void              onChangeHorMode();
82   void              onChangeVerMode();
83   void              onChangeCurveMode();
84   void              onChangeLegendMode();
85   
86   void              onFitAll();
87   void              onFitRect();
88   void              onZoom();
89   void              onPanning();
90   void              onGlobalPanning();
91   void              onViewHorMode();
92   void              onViewVerMode();
93   void              onLegend();
94   void              onCurves();
95
96   void              onDumpView();
97
98 protected:
99   virtual QImage    dumpView();
100   virtual bool      dumpViewToFormat( const QImage&, 
101                                       const QString&, 
102                                       const QString& );
103   virtual QString   filter() const;
104
105 signals:
106   void              cloneView();
107
108 private:
109   Plot2d_Viewer*    myModel;
110   Plot2d_ViewFrame* myViewFrame;
111   int               myToolBar;
112   QImage            myDumpImage;
113 };
114
115 #ifdef WIN32
116 #pragma warning( default:4251 )
117 #endif
118
119 #endif // PLOT2D_VIEWWINDOW_H