From bd236b88cd42934946ab37fd878586a6c6f8c562 Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=A9dric=20Aguerre?= Date: Wed, 16 Mar 2016 13:35:54 +0100 Subject: [PATCH] Revert "Merge branch 'agr/edf12447-catalyst'" This reverts commit 9d4cbe023ff3be5adfc2b401fcf0aeba95b51941, reversing changes made to 10b37dd7682b80461572726837d430f86b890cb8. --- src/PVViewer/CMakeLists.txt | 31 +++++++++------------------ src/PVViewer/PVViewer_GUIElements.cxx | 6 +----- src/PVViewer/PVViewer_GUIElements.h | 8 +------ 3 files changed, 12 insertions(+), 33 deletions(-) diff --git a/src/PVViewer/CMakeLists.txt b/src/PVViewer/CMakeLists.txt index b40741f37..45f3b7439 100644 --- a/src/PVViewer/CMakeLists.txt +++ b/src/PVViewer/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2010-2016 CEA/DEN, EDF R&D +# Copyright (C) 2010-2015 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 @@ -20,17 +20,6 @@ # Install ParaView filters, etc ... ADD_SUBDIRECTORY(resources) -FIND_PACKAGE(ParaView COMPONENTS vtkPVCatalyst vtkPVPythonCatalyst) -LIST(FIND VTK_MODULES_ENABLED vtkPVCatalyst vtkPVCatalyst_index) -LIST(FIND VTK_MODULES_ENABLED vtkPVPythonCatalyst vtkPVPythonCatalyst_index) -IF (${vtkPVCatalyst_index} GREATER -1 AND - ${vtkPVPythonCatalyst_index} GREATER -1) - SET(PVCATALYST_ENABLED yes) -ENDIF() -IF (PVCATALYST_ENABLED) - ADD_DEFINITIONS("-DPVCATALYST_ENABLED") -ENDIF() - INCLUDE(UseQtExt) # --- options --- @@ -50,12 +39,12 @@ ADD_DEFINITIONS( ${PYTHON_DEFINITIONS} ) -SET(_link_LIBRARIES - ${KERNEL_SALOMELocalTrace} +SET(_link_LIBRARIES + ${KERNEL_SALOMELocalTrace} ${KERNEL_OpUtil} - PyInterp - suit - Event + PyInterp + suit + Event PVServerService pqApplicationComponents #vtkRenderingFreeTypeOpenGL @@ -107,11 +96,11 @@ SET(_other_SOURCES PVViewer_GUIElements.cxx PVViewer_Core.cxx ) - + # sources / to compile -SET(PVViewer_SOURCES - ${_other_SOURCES} - ${_moc_SOURCES} +SET(PVViewer_SOURCES + ${_other_SOURCES} + ${_moc_SOURCES} ${_rcc_SOURCES} ) diff --git a/src/PVViewer/PVViewer_GUIElements.cxx b/src/PVViewer/PVViewer_GUIElements.cxx index a30c17e5e..e2b77ddb8 100644 --- a/src/PVViewer/PVViewer_GUIElements.cxx +++ b/src/PVViewer/PVViewer_GUIElements.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2010-2016 CEA/DEN, EDF R&D +// Copyright (C) 2010-2015 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 @@ -59,10 +59,6 @@ PVViewer_GUIElements::PVViewer_GUIElements(QMainWindow* desk) : pqParaViewMenuBuilders::buildSourcesMenu(*sourcesMenu, desk); filtersMenu = new QMenu(0); pqParaViewMenuBuilders::buildFiltersMenu(*filtersMenu, desk); -#ifdef PVCATALYST_ENABLED - catalystMenu = new QMenu(0); - pqParaViewMenuBuilders::buildCatalystMenu(*catalystMenu); -#endif macrosMenu = new QMenu(0); pqParaViewMenuBuilders::buildMacrosMenu(*macrosMenu); diff --git a/src/PVViewer/PVViewer_GUIElements.h b/src/PVViewer/PVViewer_GUIElements.h index a61f88d05..a498ff333 100644 --- a/src/PVViewer/PVViewer_GUIElements.h +++ b/src/PVViewer/PVViewer_GUIElements.h @@ -1,4 +1,4 @@ -// Copyright (C) 2010-2016 CEA/DEN, EDF R&D +// Copyright (C) 2010-2015 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 @@ -52,9 +52,6 @@ public: QMenu* getFiltersMenu() { return filtersMenu; } QMenu* getSourcesMenu() { return sourcesMenu; } QMenu* getMacrosMenu() { return macrosMenu; } -#ifdef PVCATALYST_ENABLED - QMenu* getCatalystMenu() { return catalystMenu; } -#endif pqVCRToolbar* getVCRToolbar() { return vcrToolbar; } pqAnimationTimeToolbar* getTimeToolbar() { return timeToolbar; } @@ -79,9 +76,6 @@ private: QMenu* sourcesMenu; QMenu* filtersMenu; QMenu* macrosMenu; -#ifdef PVCATALYST_ENABLED - QMenu* catalystMenu; -#endif // Toolbars also need to be instanciated early: QToolBar* mainToolBar; -- 2.39.2