X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPlot2d%2FPlot2d_ViewWindow.h;h=bea8be3f8c0256f0e66a2e1d160435f9226c2051;hb=c6ff10e99d965a30525f201639a84655cac74507;hp=16012d4b7b42c01366c65a9937fc2ad7e71ab09d;hpb=232b55569765049c7d1cceb5096a45f8584c9369;p=modules%2Fgui.git diff --git a/src/Plot2d/Plot2d_ViewWindow.h b/src/Plot2d/Plot2d_ViewWindow.h old mode 100755 new mode 100644 index 16012d4b7..bea8be3f8 --- a/src/Plot2d/Plot2d_ViewWindow.h +++ b/src/Plot2d/Plot2d_ViewWindow.h @@ -1,26 +1,35 @@ -// Copyright (C) 2005 OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D -// +// Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 2.1 of the License. -// -// This library is distributed in the hope that it will be useful -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// + +// File : Plot2d_ViewWindow.h +// Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com) // #ifndef PLOT2D_VIEWWINDOW_H #define PLOT2D_VIEWWINDOW_H #include "Plot2d.h" #include +#include + #ifdef WIN32 #pragma warning( disable:4251 ) @@ -30,69 +39,92 @@ class SUIT_Desktop; class Plot2d_Viewer; class Plot2d_ViewFrame; class QtxAction; -class SUIT_ToolButton; +class QImage; +class QMenu; +class QToolBar; class PLOT2D_EXPORT Plot2d_ViewWindow : public SUIT_ViewWindow { Q_OBJECT public: - Plot2d_ViewWindow( SUIT_Desktop* theDesktop, Plot2d_Viewer* theModel ); + enum { DumpId, + ScaleOpId, FitAllId, FitRectId, ZoomId, + MoveOpId, PanId, GlobalPanId, + PModeXLinearId, PModeXLogarithmicId, + PModeYLinearId, PModeYLogarithmicId, + PModeNormLMaxId, PModeNormLMinId, + PModeNormRMaxId, PModeNormRMinId, + CurvPointsId, CurvLinesId, CurvSplinesId, + LegendId, + CurvSettingsId, + CloneId, PrintId, + AnalyticalCurveId }; + +public: + Plot2d_ViewWindow( SUIT_Desktop*, Plot2d_Viewer* ); virtual ~Plot2d_ViewWindow(); - Plot2d_Viewer* getModel() { return myModel; } - void putInfo(QString theMsg); - Plot2d_ViewFrame* getViewFrame() { return myViewFrame; }; - QToolBar* getToolBar() { return myToolBar; }; - void contextMenuPopup( QPopupMenu* thePopup ); + Plot2d_Viewer* getModel(); + void putInfo( const QString&); + Plot2d_ViewFrame* getViewFrame(); + QToolBar* getToolBar(); + virtual void initLayout(); + void contextMenuPopup( QMenu* ); -protected: - QImage dumpView(); + virtual bool eventFilter( QObject*, QEvent* ); -private: - bool eventFilter(QObject* watched, QEvent* e); + void createActions(); + void createToolBar(); - void createActions(); - void createToolBar(); + virtual QString getVisualParameters(); + virtual void setVisualParameters( const QString& ); + + virtual void RefreshDumpImage(); public slots: - void onChangeHorMode(); - void onChangeVerMode(); - void onChangeCurveMode(); - void onChangeLegendMode(); - - void onFitAll(); - void onFitRect(); - void onZoom(); - void onPanning(); - void onGlobalPanning(); - void onViewHorMode(); - void onViewVerMode(); - void onLegend(); - void onCurves(); - - void onDumpView(); + void onChangeHorMode(); + void onChangeVerMode(); + void onChangeCurveMode(); + void onChangeLegendMode(); + void onChangeNormLMode(); + void onChangeNormRMode(); -signals: - void cloneView(); + + void onFitAll(); + void onFitRect(); + void onZoom(); + void onPanning(); + void onGlobalPanning(); + void onViewHorMode(); + void onViewVerMode(); + void onViewNormLMode(); + void onViewNormRMode(); + void onLegend(); + void onCurves(); + + void onDumpView(); + void onPrintView(); protected: - enum { DumpId, FitAllId, FitRectId, ZoomId, PanId, GlobalPanId, HorId, - VerId, LegendId, CurvPointsId, CurvLinesId, CurvSplinesId, CurvSettingsId, CloneId, - PModeXLinearId, PModeXLogarithmicId, PModeYLinearId, PModeYLogarithmicId }; - typedef QMap ActionsMap; - ActionsMap myActionsMap; + virtual QImage dumpView(); + virtual bool dumpViewToFormat( const QImage&, + const QString&, + const QString& ); + virtual QString filter() const; + +signals: + void cloneView(); private: Plot2d_Viewer* myModel; Plot2d_ViewFrame* myViewFrame; - QToolBar* myToolBar; - - SUIT_ToolButton* myCurveBtn; + int myToolBar; + QImage myDumpImage; }; #ifdef WIN32 #pragma warning( default:4251 ) #endif -#endif +#endif // PLOT2D_VIEWWINDOW_H