]> SALOME platform Git repositories - modules/gui.git/blob - src/Plot2d/Plot2d_ViewWindow.h
Salome HOME
Join modifications from branch BR_3_1_0deb
[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   virtual QImage    dumpView();
51   virtual QString   filter() const;
52   virtual bool      dumpViewToFormat( const QString& fileName, const QString& format );
53
54 private:
55   bool eventFilter(QObject* watched, QEvent* e);
56
57   void createActions();
58   void createToolBar();
59
60 public slots:
61   void onChangeHorMode();
62   void onChangeVerMode();
63   void onChangeCurveMode();
64   void onChangeLegendMode();
65   
66   void onFitAll();
67   void onFitRect();
68   void onZoom();
69   void onPanning();
70   void onGlobalPanning();
71   void onViewHorMode();
72   void onViewVerMode();
73   void onLegend();
74   void onCurves();
75
76   void onDumpView();
77
78 signals:
79   void cloneView();
80
81 protected:
82   enum { DumpId, FitAllId, FitRectId, ZoomId, PanId, GlobalPanId, HorId,
83          VerId, LegendId, CurvPointsId, CurvLinesId, CurvSplinesId, CurvSettingsId, CloneId,
84          PModeXLinearId, PModeXLogarithmicId, PModeYLinearId, PModeYLogarithmicId };
85   typedef QMap<int, QtxAction*> ActionsMap;
86   ActionsMap        myActionsMap;
87
88 private:
89   Plot2d_Viewer*    myModel;
90   Plot2d_ViewFrame* myViewFrame;
91   QToolBar*         myToolBar;
92
93   SUIT_ToolButton*  myCurveBtn;
94 };
95
96 #ifdef WIN32
97 #pragma warning( default:4251 )
98 #endif
99
100 #endif