X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FPVGUI%2FPVGUI_Module.h;h=bbeed82bdc63333b3f7fee268c1a9664b53d2809;hb=654addd46335c9a7f42e87b662f9085414db8069;hp=3b9de1455e0646b80253b545dab67c9cec5b6934;hpb=1cf8a004e92b0dbc3d886b9809d70addbb6391d5;p=modules%2Fparavis.git diff --git a/src/PVGUI/PVGUI_Module.h b/src/PVGUI/PVGUI_Module.h index 3b9de145..bbeed82b 100644 --- a/src/PVGUI/PVGUI_Module.h +++ b/src/PVGUI/PVGUI_Module.h @@ -1,12 +1,11 @@ // PARAVIS : ParaView wrapper SALOME module // -// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// Copyright (C) 2010-2016 CEA/DEN, EDF R&D // // 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. +// 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 @@ -20,77 +19,217 @@ // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // // File : PVGUI_Module.h -// Author : Sergey ANIKIN +// Author : Sergey ANIKIN, Adrien BRUNETON // + #ifndef PVGUI_Module_H #define PVGUI_Module_H #include class QMenu; -class LightApp_Selection; -class LightApp_SelectionMgr; -class PVGUI_ProcessModuleHelper; -class vtkPVMain; -class pqOptions; +class QTimer; +class vtkEventQtSlotConnect; class pqServer; -class pqActiveServer; -class pqViewManager; +class pqPythonScriptEditor; +class pqPVApplicationCore; +class PVViewer_GUIElements; +class PVServer_ServiceWrapper; +class SUIT_ViewWindow; -class PVGUI_Module : public LightApp_Module +class PVGUI_Module: public LightApp_Module { Q_OBJECT //! Menu actions - /*enum { - lgLoadFile = 931, //!< load text file - lgSaveFile, //!< save text file - lgDisplayLine, //!< display selected line - lgEraseLine, //!< erase selected line - lgEditLine, //!< edit selected line - lgAddLine, //!< insert new line - lgDelLine, //!< delete selected line - lgClear //!< clear all contents - };*/ + enum { + //----------- + // Menu "File" + OpenFileId, + //- + LoadStateId, + SaveStateId, + //- + SaveDataId, + SaveScreenshotId, + ExportId, + //- + SaveAnimationId, + SaveGeometryId, + //- + ConnectId, + DisconnectId, + //----------- + // Menu "Edit" + UndoId, + RedoId, + //- + CameraUndoId, + CameraRedoId, + //- + FindDataId, + ChangeInputId, + IgnoreTimeId, + DeleteId, + DeleteAllId, + //- + SettingsId, // not used + ViewSettingsId, // not used + //----------- + // Menu "View" + FullScreenId, // not used + //----------- + // Menu "Animation" + FirstFrameId, // not used + PreviousFrameId, // not used + PlayId, // not used + NextFrameId, // not used + LastFrameId, // not used + LoopId, // not used + //----------- + // Menu "Tools" + CreateCustomFilterId, + ManageCustomFiltersId, + CreateLookmarkId, // not used + ManageLinksId, + AddCameraLinkId, + ManagePluginsExtensionsId, + DumpWidgetNamesId, // not used + RecordTestId, + RecordTestScreenshotId, // not used + PlayTestId, + MaxWindowSizeId, + CustomWindowSizeId, + TimerLogId, + OutputWindowId, + PythonShellId, + ShowTraceId, + RestartTraceId, + //----------- + // Menu "Help" + AboutParaViewId, + ParaViewHelpId, + EnableTooltipsId, // not used + }; public: PVGUI_Module(); ~PVGUI_Module(); - virtual void initialize( CAM_Application* ); - virtual void windows( QMap& ) const; + virtual void initialize( CAM_Application* ); + virtual void windows( QMap& ) const; + + void openFile( const char* ); // not used inside PARAVIS + void executeScript( const char* ); // not used inside PARAVIS + + void saveParaviewState( const QString& ); + void loadParaviewState( const QString& ); + void clearParaviewState(); - //virtual LightApp_Selection* createSelection() const; + QString getTraceString(); + void startTrace(); + void stopTrace(); + void saveTrace( const char* ); - pqViewManager* getMultiViewManager() const; + pqServer* getActiveServer(); -protected: - //virtual CAM_DataModel* createDataModel(); + virtual void createPreferences(); + + inline static PVServer_ServiceWrapper* GetEngine(); + inline static pqPVApplicationCore* GetPVApplication(); // not used inside PARAVIS + + virtual CAM_DataModel* createDataModel(); private: - //! Initialize ParaView if not yet done (once per session) - static bool pvInit(); - //! Shutdown ParaView, should be called on application exit - static void pvShutdown(); - //! Create actions for ParaView GUI operations - //! duplicating menus and toolbars in pqMainWindow ParaView class - void pvCreateActions(); + void pvCreateActions(); + + //! Create menus for ParaView GUI operations duplicating menus in pqMainWindow ParaView class + void pvCreateMenus(); + + //! Create toolbars for ParaView GUI operations duplicating toolbars in pqMainWindow ParaView class + void pvCreateToolBars(); //! Create dock widgets for ParaView widgets - void setupDockWidgets(); + void setupDockWidgets(); + + //! Save states of dockable ParaView widgets + void saveDockWidgetsState( bool = true ); + + //! Restore states of dockable ParaView widgets + void restoreDockWidgetsState(); //! Shows or hides ParaView view window - void showView( bool ); + void showView( bool ); + + //! Get list of embedded macros files + QStringList getEmbeddedMacrosList(); + + //! update macros state + void updateMacros(); + + //! store visibility of the common dockable windows (OB, PyConsole, ... etc.) + void storeCommonWindowsState(); + + //! restore visibility of the common dockable windows (OB, PyConsole, ... etc.) + void restoreCommonWindowsState(); + +private slots: + void showHelpForProxy( const QString&, const QString& ); + + void onPreAccept(); // not used inside PARAVIS + void onPostAccept(); // not used inside PARAVIS + void endWaitCursor(); // not used inside PARAVIS + + void onDataRepresentationUpdated(); + + void onStartProgress(); + void onEndProgress(); + void onShowTrace(); + void onRestartTrace(); + void onStopTrace(); public slots: virtual bool activateModule( SUIT_Study* ); virtual bool deactivateModule( SUIT_Study* ); + virtual void onApplicationClosed( SUIT_Application* ); + virtual void studyClosed( SUIT_Study* ); + +protected slots: + virtual void onInitTimer(); + virtual void onViewManagerAdded( SUIT_ViewManager* ); + virtual void onViewManagerRemoved( SUIT_ViewManager* ); + virtual void onPVViewCreated( SUIT_ViewWindow* ); + virtual void onPVViewDelete( SUIT_ViewWindow* ); private: - class pqImplementation; - pqImplementation* Implementation; + int mySourcesMenuId; + int myFiltersMenuId; + int myMacrosMenuId; + int myRecentMenuId; + + typedef QMap WgMap; + WgMap myDockWidgets; + WgMap myToolbars; + WgMap myToolbarBreaks; + QList myMenus; + + typedef QMap DockWindowMap; + DockWindowMap myCommonMap; +#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) + QtMsgHandler myOldMsgHandler; +#else + QtMessageHandler myOldMsgHandler; +#endif + vtkEventQtSlotConnect* VTKConnect; + + pqPythonScriptEditor* myTraceWindow; + + //! Single shot timer used to connect to the PVServer, and start the trace. + QTimer* myInitTimer; + + PVViewer_GUIElements* myGuiElements; }; #endif // PVGUI_Module_H