From 1504a2809ca576d9c499f0135d1b8d2e930f0a7d Mon Sep 17 00:00:00 2001 From: Max Brazhnikov Date: Sat, 5 Jun 2010 13:07:51 +0000 Subject: [PATCH] Update to 3.8.0 PR: ports/147266 Submitted by: Stas Timokhin (maintainer) --- science/paraview/Makefile | 48 +- science/paraview/distinfo | 6 +- .../patch-Applications-Client-CMakeLists.txt | 49 - ...plications-SteamingParaView-CMakeLists.txt | 49 - .../patch-Plugins_PointSprite_CMakeLists.txt | 11 + ..._PointSprite_ParaViewPlugin_CMakeLists.txt | 11 + .../files/patch-Qt_Components_CMakeLists.txt | 11 - .../files/patch-Qt_Core_CMakeLists.txt | 18 +- .../patch-VTK_GUISupport_Qt_CMakeLists.txt | 23 +- .../patch-VTK__GraphicsView_CMakeLists.txt | 11 - .../patch-VTK__ImageViewer_CMakeLists.txt | 11 - science/paraview/pkg-plist | 918 +++++++++++------- 12 files changed, 636 insertions(+), 530 deletions(-) delete mode 100644 science/paraview/files/patch-Applications-Client-CMakeLists.txt delete mode 100644 science/paraview/files/patch-Applications-SteamingParaView-CMakeLists.txt create mode 100644 science/paraview/files/patch-Plugins_PointSprite_CMakeLists.txt create mode 100644 science/paraview/files/patch-Plugins_PointSprite_ParaViewPlugin_CMakeLists.txt delete mode 100644 science/paraview/files/patch-Qt_Components_CMakeLists.txt delete mode 100644 science/paraview/files/patch-VTK__GraphicsView_CMakeLists.txt delete mode 100644 science/paraview/files/patch-VTK__ImageViewer_CMakeLists.txt diff --git a/science/paraview/Makefile b/science/paraview/Makefile index fd22106fde35..453b6e656782 100644 --- a/science/paraview/Makefile +++ b/science/paraview/Makefile @@ -6,10 +6,10 @@ # PORTNAME= paraview -PORTVERSION= 3.6.2 -PORTREVISION= 1 +PORTVERSION= 3.8.0 CATEGORIES= science graphics -MASTER_SITES= http://www.paraview.org/files/v3.6/ +MASTER_SITES= http://www.paraview.org/files/v3.8/ +DISTNAME= ParaView-${PORTVERSION} MAINTAINER= devel@stasyan.com COMMENT= ParaView is a powerful scientific data visualization application @@ -31,6 +31,7 @@ USE_XORG= x11 xt USE_GMAKE= yes USE_LDCONFIG= yes USE_CMAKE= yes +CONFLICTS= vtk-5.* CMAKE_ARGS+= -DPARAVIEW_USE_SYSTEM_HDF5=1 \ -DBUILD_SHARED_LIBS="ON" \ -DVTK_USE_SYSTEM_PNG="ON" \ @@ -43,16 +44,36 @@ CMAKE_ARGS+= -DPARAVIEW_USE_SYSTEM_HDF5=1 \ -DVTK_HAVE_GETSOCKNAME_WITH_SOCKLEN_T=1 \ -DQT_ASSISTANT_EXECUTABLE="${LOCALBASE}/bin/assistant-qt4" \ -DVTK_INSTALL_QT_PLUGIN_DIR="${PREFIX}/${QT_PLUGINDIR_REL}/designer" \ - -DCMAKE_INCLUDE_DIRECTORIES_BEFORE="ON" \ - -DPARAVIEW_INSTALL_DEVELOPMENT="ON" + -DPARAVIEW_INSTALL_DEVELOPMENT="ON" \ + -DPV_INSTALL_DOC_DIR=${DOCSDIR} +# -DVTK_PYTHON_INCLUDE_PATH=${PYTHON_INCLUDEDIR} \ +# -DPYTHON_INCLUDE_PATH:FILEPATH=${PYTHON_INCLUDEDIR} \ +# -DVTK_WRAP_PYTHON:BOOL=ON \ +# -DPARAVIEW_ENABLE_PYTHON:BOOL=ON +# -DVTK_PYTHON_SETUP_ARGS:STRING='--prefix="${PREFIX}"' \ + +OPTIONS= MANGLEDMESA "Use off-screen (Mangled) Mesa" Off +# VTKMPEG2 "Install patented MPEG2 encoder module" Off \ +# GL2PS "Install support conversion OpenGL to PostScript" On + +.if defined(WITH_MANGLEDMESA) +LIB_DEPENDS+= MesaGL.14:${PORTSDIR}/graphics/mesagl +CMAKE_ARGS+= -DVTK_OPENGL_HAS_OSMESA:BOOL=OFF \ + -DVTK_USE_MANGLED_MESA:BOOL=ON \ + -DMANGLED_MESA_INCLUDE_DIR:PATH=${LOCALBASE}/include/Mesa \ + -DMANGLED_MESA_LIBRARY:FILEPATH=${LOCALBASE}/lib/libMesaGL.so \ + -DMANGLED_OSMESA_INCLUDE_DIR:PATH=${LOCALBASE}/include/Mesa \ + -DMANGLED_OSMESA_LIBRARY:FILEPATH=${LOCALBASE}/lib/libMesaOSMesa.so +.else +LIB_DEPENDS+= OSMesa.7:${PORTSDIR}/graphics/libosmesa +CMAKE_ARGS+= -DVTK_OPENGL_HAS_OSMESA:BOOL=ON \ + -DOSMESA_LIBRARY:FILEPATH=${LOCALBASE}/lib/libOSMesa.so +.endif MAKE_JOBS_SAFE= yes +CMAKE_OUTSOURCE= yes -PATCH_WRKSRC= ${WRKDIR}/ParaView3 -WRKSRC= ${WRKDIR}/ParaView3/build -CMAKE_SOURCE_PATH= .. - -PLIST_SUB+= VERMAJORMINOR=3.6 +PLIST_SUB+= VERMAJORMINOR=3.8 CMAKE2INST= ParaViewConfig.cmake \ ParaViewLibraryDepends.cmake cmake_install.cmake LIB_INSTDIR= ${PREFIX}/lib/${PORTNAME}-${PORTVERSION:R} @@ -63,18 +84,15 @@ LIB_INSTDIR= ${PREFIX}/lib/${PORTNAME}-${PORTVERSION:R} BROKEN= does not build on 6.x .endif -post-extract: - ${MKDIR} ${WRKSRC} - post-patch: ${REINPLACE_CMD} -e 's|png_set_gray_1_2_4_to_8|png_set_expand_gray_1_2_4_to_8|' \ ${PATCH_WRKSRC}/VTK/IO/vtkPNGReader.cxx post-install: .for c2f in ${CMAKE2INST} - ${SED} -e 's|${WRKSRC}|${LIB_INSTDIR}|g' \ + ${SED} -e 's|${BUILD_WRKSRC}|${LIB_INSTDIR}|g' \ -e 's|${PATCH_WRKSRC}|${LIB_INSTDIR}|g' \ - ${WRKSRC}/${c2f} > ${LIB_INSTDIR}/`${BASENAME} ${c2f}` + ${BUILD_WRKSRC}/${c2f} > ${LIB_INSTDIR}/`${BASENAME} ${c2f}` .endfor ${INSTALL_DATA} ${PATCH_WRKSRC}/ParaViewUse.cmake \ ${PREFIX}/lib/${PORTNAME}-${PORTVERSION:R} diff --git a/science/paraview/distinfo b/science/paraview/distinfo index 5644804e5fa8..8f1d03563910 100644 --- a/science/paraview/distinfo +++ b/science/paraview/distinfo @@ -1,3 +1,3 @@ -MD5 (paraview-3.6.2.tar.gz) = 1c004eb82e291452efb45527745a78e4 -SHA256 (paraview-3.6.2.tar.gz) = 062f581a6f3fda5cead647fb32b0fab6d9bb3be38aace5e4080dab38a9eaea04 -SIZE (paraview-3.6.2.tar.gz) = 28323172 +MD5 (ParaView-3.8.0.tar.gz) = 4f371631c373452b202a3d91f2cca12f +SHA256 (ParaView-3.8.0.tar.gz) = fe26c5aab225e804a9d890007d3963988c5f1000bdb270576dc9c2549c6a4078 +SIZE (ParaView-3.8.0.tar.gz) = 31703024 diff --git a/science/paraview/files/patch-Applications-Client-CMakeLists.txt b/science/paraview/files/patch-Applications-Client-CMakeLists.txt deleted file mode 100644 index 694559ca177a..000000000000 --- a/science/paraview/files/patch-Applications-Client-CMakeLists.txt +++ /dev/null @@ -1,49 +0,0 @@ ---- Applications/Client/CMakeLists.txt.orig 2009-09-27 20:18:25.000000000 +0700 -+++ Applications/Client/CMakeLists.txt 2009-09-27 20:18:49.000000000 +0700 -@@ -527,26 +527,26 @@ - SET (QTLIBLIST ${QTLIBLIST} QTOPENGL) - ENDIF (VTK_USE_QVTK_QTOPENGL) - --IF(NOT Q_WS_MAC) -- FOREACH(qtlib ${QTLIBLIST}) -- IF (NOT WIN32) -- #INSTALL(FILES ${QT_${qtlib}_LIBRARY_RELEASE} DESTINATION ${PV_INSTALL_LIB_DIR}) -- GET_FILENAME_COMPONENT(QT_LIB_DIR_tmp ${QT_${qtlib}_LIBRARY_RELEASE} PATH) -- GET_FILENAME_COMPONENT(QT_LIB_NAME_tmp ${QT_${qtlib}_LIBRARY_RELEASE} NAME) -- FILE(GLOB QT_LIB_LIST RELATIVE ${QT_LIB_DIR_tmp} "${QT_${qtlib}_LIBRARY_RELEASE}*") -- INSTALL(CODE " --MESSAGE(STATUS \"Installing \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}/${QT_LIB_NAME_tmp}\") --EXECUTE_PROCESS (WORKING_DIRECTORY ${QT_LIB_DIR_tmp} -- COMMAND tar c ${QT_LIB_LIST} -- COMMAND tar -xC \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}) -- " COMPONENT Runtime) -- ELSE (NOT WIN32) -- GET_FILENAME_COMPONENT(QT_DLL_PATH_tmp ${QT_QMAKE_EXECUTABLE} PATH) -- INSTALL(FILES ${QT_DLL_PATH_tmp}/${qtlib}4.dll DESTINATION ${PV_INSTALL_BIN_DIR} COMPONENT Runtime) -- ENDIF (NOT WIN32) -- -- ENDFOREACH(qtlib) --ENDIF(NOT Q_WS_MAC) -+#IF(NOT Q_WS_MAC) -+# FOREACH(qtlib ${QTLIBLIST}) -+# IF (NOT WIN32) -+# #INSTALL(FILES ${QT_${qtlib}_LIBRARY_RELEASE} DESTINATION ${PV_INSTALL_LIB_DIR}) -+# GET_FILENAME_COMPONENT(QT_LIB_DIR_tmp ${QT_${qtlib}_LIBRARY_RELEASE} PATH) -+# GET_FILENAME_COMPONENT(QT_LIB_NAME_tmp ${QT_${qtlib}_LIBRARY_RELEASE} NAME) -+# FILE(GLOB QT_LIB_LIST RELATIVE ${QT_LIB_DIR_tmp} "${QT_${qtlib}_LIBRARY_RELEASE}*") -+# INSTALL(CODE " -+#MESSAGE(STATUS \"Installing \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}/${QT_LIB_NAME_tmp}\") -+#EXECUTE_PROCESS (WORKING_DIRECTORY ${QT_LIB_DIR_tmp} -+# COMMAND tar c ${QT_LIB_LIST} -+# COMMAND tar -xC \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}) -+# " COMPONENT Runtime) -+# ELSE (NOT WIN32) -+# GET_FILENAME_COMPONENT(QT_DLL_PATH_tmp ${QT_QMAKE_EXECUTABLE} PATH) -+# INSTALL(FILES ${QT_DLL_PATH_tmp}/${qtlib}4.dll DESTINATION ${PV_INSTALL_BIN_DIR} COMPONENT Runtime) -+# ENDIF (NOT WIN32) -+# -+# ENDFOREACH(qtlib) -+#ENDIF(NOT Q_WS_MAC) - - # Hard-coded install rules for anything left to install. These should - # probably go to a local cmake file. Change to match the build system's diff --git a/science/paraview/files/patch-Applications-SteamingParaView-CMakeLists.txt b/science/paraview/files/patch-Applications-SteamingParaView-CMakeLists.txt deleted file mode 100644 index 7a3404f08997..000000000000 --- a/science/paraview/files/patch-Applications-SteamingParaView-CMakeLists.txt +++ /dev/null @@ -1,49 +0,0 @@ ---- Applications/StreamingParaView/CMakeLists.txt.orig 2009-09-27 20:18:57.000000000 +0700 -+++ Applications/StreamingParaView/CMakeLists.txt 2009-09-27 20:19:25.000000000 +0700 -@@ -198,26 +198,26 @@ - SET (QTLIBLIST ${QTLIBLIST} QTASSISTANT) - ENDIF (WIN32) - --IF(NOT Q_WS_MAC) -- FOREACH(qtlib ${QTLIBLIST}) -- IF (NOT WIN32) -- #INSTALL(FILES ${QT_${qtlib}_LIBRARY_RELEASE} DESTINATION ${PV_INSTALL_LIB_DIR}) -- GET_FILENAME_COMPONENT(QT_LIB_DIR_tmp ${QT_${qtlib}_LIBRARY_RELEASE} PATH) -- GET_FILENAME_COMPONENT(QT_LIB_NAME_tmp ${QT_${qtlib}_LIBRARY_RELEASE} NAME) -- FILE(GLOB QT_LIB_LIST RELATIVE ${QT_LIB_DIR_tmp} "${QT_${qtlib}_LIBRARY_RELEASE}*") -- INSTALL(CODE " --MESSAGE(STATUS \"Installing \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}/${QT_LIB_NAME_tmp}\") --EXECUTE_PROCESS (WORKING_DIRECTORY ${QT_LIB_DIR_tmp} -- COMMAND tar c ${QT_LIB_LIST} -- COMMAND tar -xC \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}) -- " COMPONENT Runtime) -- ELSE (NOT WIN32) -- GET_FILENAME_COMPONENT(QT_DLL_PATH_tmp ${QT_QMAKE_EXECUTABLE} PATH) -- INSTALL(FILES ${QT_DLL_PATH_tmp}/${qtlib}4.dll DESTINATION ${PV_INSTALL_BIN_DIR} COMPONENT Runtime) -- ENDIF (NOT WIN32) -- -- ENDFOREACH(qtlib) --ENDIF(NOT Q_WS_MAC) -+#IF(NOT Q_WS_MAC) -+# FOREACH(qtlib ${QTLIBLIST}) -+# IF (NOT WIN32) -+# #INSTALL(FILES ${QT_${qtlib}_LIBRARY_RELEASE} DESTINATION ${PV_INSTALL_LIB_DIR}) -+# GET_FILENAME_COMPONENT(QT_LIB_DIR_tmp ${QT_${qtlib}_LIBRARY_RELEASE} PATH) -+# GET_FILENAME_COMPONENT(QT_LIB_NAME_tmp ${QT_${qtlib}_LIBRARY_RELEASE} NAME) -+# FILE(GLOB QT_LIB_LIST RELATIVE ${QT_LIB_DIR_tmp} "${QT_${qtlib}_LIBRARY_RELEASE}*") -+# INSTALL(CODE " -+#MESSAGE(STATUS \"Installing \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}/${QT_LIB_NAME_tmp}\") -+#EXECUTE_PROCESS (WORKING_DIRECTORY ${QT_LIB_DIR_tmp} -+# COMMAND tar c ${QT_LIB_LIST} -+# COMMAND tar -xC \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}) -+# " COMPONENT Runtime) -+# ELSE (NOT WIN32) -+# GET_FILENAME_COMPONENT(QT_DLL_PATH_tmp ${QT_QMAKE_EXECUTABLE} PATH) -+# INSTALL(FILES ${QT_DLL_PATH_tmp}/${qtlib}4.dll DESTINATION ${PV_INSTALL_BIN_DIR} COMPONENT Runtime) -+# ENDIF (NOT WIN32) -+# -+# ENDFOREACH(qtlib) -+#ENDIF(NOT Q_WS_MAC) - - # Hard-coded install rules for anything left to install. These should - # probably go to a local cmake file. Change to match the build system's diff --git a/science/paraview/files/patch-Plugins_PointSprite_CMakeLists.txt b/science/paraview/files/patch-Plugins_PointSprite_CMakeLists.txt new file mode 100644 index 000000000000..3c1d2b532eee --- /dev/null +++ b/science/paraview/files/patch-Plugins_PointSprite_CMakeLists.txt @@ -0,0 +1,11 @@ +--- Plugins/PointSprite/CMakeLists.txt.orig 2009-07-28 21:17:26.000000000 +0700 ++++ Plugins/PointSprite/CMakeLists.txt 2010-04-19 16:41:17.000000000 +0700 +@@ -25,6 +25,8 @@ + #-------------------------------------------------- + # Find and Use ParaView + #-------------------------------------------------- ++INCLUDE_DIRECTORIES(BEFORE ${QT_QTCORE_INCLUDE_DIR}) ++INCLUDE_DIRECTORIES(BEFORE ${QT_QTGUI_INCLUDE_DIR}) + IF (ParaView_SOURCE_DIR) + INCLUDE_DIRECTORIES( + ${PARAVIEW_INCLUDE_DIRS} diff --git a/science/paraview/files/patch-Plugins_PointSprite_ParaViewPlugin_CMakeLists.txt b/science/paraview/files/patch-Plugins_PointSprite_ParaViewPlugin_CMakeLists.txt new file mode 100644 index 000000000000..4e2c77f3f1de --- /dev/null +++ b/science/paraview/files/patch-Plugins_PointSprite_ParaViewPlugin_CMakeLists.txt @@ -0,0 +1,11 @@ +--- Plugins/PointSprite/ParaViewPlugin/CMakeLists.txt.orig 2010-03-19 22:12:33.000000000 +0600 ++++ Plugins/PointSprite/ParaViewPlugin/CMakeLists.txt 2010-04-19 16:40:56.000000000 +0700 +@@ -17,6 +17,8 @@ + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR}/Resources + ) ++INCLUDE_DIRECTORIES(BEFORE ${QT_QTCORE_INCLUDE_DIR}) ++INCLUDE_DIRECTORIES(BEFORE ${QT_QTGUI_INCLUDE_DIR}) + + set(SM_SOURCES + vtkSMPointSpriteRepresentationProxy.cxx diff --git a/science/paraview/files/patch-Qt_Components_CMakeLists.txt b/science/paraview/files/patch-Qt_Components_CMakeLists.txt deleted file mode 100644 index 5886ae109bd3..000000000000 --- a/science/paraview/files/patch-Qt_Components_CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ ---- Qt/Components/CMakeLists.txt.orig 2009-12-07 13:27:33.000000000 +0600 -+++ Qt/Components/CMakeLists.txt 2009-12-07 13:28:16.000000000 +0600 -@@ -27,7 +27,7 @@ - SET(EXTRA_PQ_COMPONENT_SOURCES pqSiloPanel.cxx) - ENDIF(PARAVIEW_USE_SILO) - --INCLUDE_DIRECTORIES( -+INCLUDE_DIRECTORIES(AFTER - ${QtPython_BINARY_DIR} - ${QtPython_SOURCE_DIR} - ${pqComponents_BINARY_DIR} diff --git a/science/paraview/files/patch-Qt_Core_CMakeLists.txt b/science/paraview/files/patch-Qt_Core_CMakeLists.txt index 2978b215ed0f..36d68b597164 100644 --- a/science/paraview/files/patch-Qt_Core_CMakeLists.txt +++ b/science/paraview/files/patch-Qt_Core_CMakeLists.txt @@ -1,14 +1,14 @@ ---- Qt/Core/CMakeLists.txt.orig 2009-12-03 16:47:26.000000000 +0600 -+++ Qt/Core/CMakeLists.txt 2009-12-03 16:56:19.000000000 +0600 -@@ -2,9 +2,10 @@ - - # Any build configured headers should be added to this +--- Qt/Core/CMakeLists.txt.orig 2010-04-16 10:20:51.000000000 +0700 ++++ Qt/Core/CMakeLists.txt 2010-04-16 10:21:00.000000000 +0700 +@@ -5,6 +5,11 @@ # variable so that they also get installed. -+ SET (dynamicHeaders) --INCLUDE_DIRECTORIES( -+INCLUDE_DIRECTORIES(AFTER ++INCLUDE_DIRECTORIES(BEFORE ${QT_QTDESIGNER_INCLUDE_DIR}) ++INCLUDE_DIRECTORIES(BEFORE ${QT_QTGUI_INCLUDE_DIR}) ++INCLUDE_DIRECTORIES(BEFORE ${QT_QTSQL_INCLUDE_DIR}) ++INCLUDE_DIRECTORIES(BEFORE ${QT_QTCORE_INCLUDE_DIR}) ++ + INCLUDE_DIRECTORIES( ${VTK_INCLUDE_DIR} ${PARAVIEW_INCLUDE_DIRS} - ${ParaView_SOURCE_DIR}/VTK/GUISupport/Qt diff --git a/science/paraview/files/patch-VTK_GUISupport_Qt_CMakeLists.txt b/science/paraview/files/patch-VTK_GUISupport_Qt_CMakeLists.txt index 286a88b19497..03e947220a7c 100644 --- a/science/paraview/files/patch-VTK_GUISupport_Qt_CMakeLists.txt +++ b/science/paraview/files/patch-VTK_GUISupport_Qt_CMakeLists.txt @@ -1,11 +1,14 @@ ---- VTK/GUISupport/Qt/CMakeLists.txt.orig 2009-12-03 14:47:44.000000000 +0600 -+++ VTK/GUISupport/Qt/CMakeLists.txt 2009-12-03 14:47:49.000000000 +0600 -@@ -190,7 +190,7 @@ +--- VTK/GUISupport/Qt/CMakeLists.txt.orig 2010-03-08 21:22:50.000000000 +0600 ++++ VTK/GUISupport/Qt/CMakeLists.txt 2010-04-16 11:21:17.000000000 +0700 +@@ -164,7 +164,10 @@ ${QT_QTGUI_LIBRARY} - ) - ENDIF(QT_QTGUI_LIBRARY) -- INCLUDE_DIRECTORIES(${QT_QTDESIGNER_INCLUDE_DIR}) -+ INCLUDE_DIRECTORIES(BEFORE ${QT_QTDESIGNER_INCLUDE_DIR}) - QT4_WRAP_CPP ( PluginMocSrcs ${PluginMocHeaders} ) - ELSE(DESIRED_QT_VERSION MATCHES 4) - QT_WRAP_CPP ( QVTKWidgetPlugin PluginMocSrcs ${PluginMocHeaders} ) + ) + ENDIF(QT_QTGUI_LIBRARY) +-INCLUDE_DIRECTORIES(${QT_QTDESIGNER_INCLUDE_DIR}) ++INCLUDE_DIRECTORIES(BEFORE ${QT_QTDESIGNER_INCLUDE_DIR}) ++INCLUDE_DIRECTORIES(BEFORE ${QT_QTGUI_INCLUDE_DIR}) ++INCLUDE_DIRECTORIES(BEFORE ${QT_QTSQL_INCLUDE_DIR}) ++INCLUDE_DIRECTORIES(BEFORE ${QT_QTCORE_INCLUDE_DIR}) + QT4_WRAP_CPP ( PluginMocSrcs ${PluginMocHeaders} ) + + # add QVTK plugin from sources diff --git a/science/paraview/files/patch-VTK__GraphicsView_CMakeLists.txt b/science/paraview/files/patch-VTK__GraphicsView_CMakeLists.txt deleted file mode 100644 index 11b7eb21c4b3..000000000000 --- a/science/paraview/files/patch-VTK__GraphicsView_CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ ---- VTK/Examples/GUI/Qt/GraphicsView/CMakeLists.txt.orig 2009-12-03 14:37:13.000000000 +0600 -+++ VTK/Examples/GUI/Qt/GraphicsView/CMakeLists.txt 2009-12-03 14:37:25.000000000 +0600 -@@ -26,7 +26,7 @@ - ) - - # Use the include path and library for Qt that is used by VTK. --INCLUDE_DIRECTORIES( ${QT_INCLUDE_DIR} ${QT_QTGUI_INCLUDE_DIR} -+INCLUDE_DIRECTORIES(BEFORE ${QT_INCLUDE_DIR} ${QT_QTGUI_INCLUDE_DIR} - ${QT_QTCORE_INCLUDE_DIR}) - - ADD_EXECUTABLE( qtgraphicsview MACOSX_BUNDLE ${SRCS}) diff --git a/science/paraview/files/patch-VTK__ImageViewer_CMakeLists.txt b/science/paraview/files/patch-VTK__ImageViewer_CMakeLists.txt deleted file mode 100644 index 11f36e997011..000000000000 --- a/science/paraview/files/patch-VTK__ImageViewer_CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ ---- VTK/Examples/GUI/Qt/ImageViewer/CMakeLists.txt.orig 2009-12-03 14:37:31.000000000 +0600 -+++ VTK/Examples/GUI/Qt/ImageViewer/CMakeLists.txt 2009-12-03 14:37:38.000000000 +0600 -@@ -22,7 +22,7 @@ - ) - - # Use the include path and library for Qt that is used by VTK. --INCLUDE_DIRECTORIES( ${QT_INCLUDE_DIR} ${QT_QTGUI_INCLUDE_DIR} -+INCLUDE_DIRECTORIES(BEFORE ${QT_INCLUDE_DIR} ${QT_QTGUI_INCLUDE_DIR} - ${QT_QTCORE_INCLUDE_DIR}) - - ADD_EXECUTABLE( qtimageviewer MACOSX_BUNDLE ${SRCS}) diff --git a/science/paraview/pkg-plist b/science/paraview/pkg-plist index ecd5b799b37a..ca8ee33d8adc 100644 --- a/science/paraview/pkg-plist +++ b/science/paraview/pkg-plist @@ -1,23 +1,25 @@ -bin/about.html -bin/assistant bin/kwProcessXML bin/lproj bin/paraview -bin/plugins/Moments/libMoments.so -bin/plugins/PrismClientPlugin/libPrismClientPlugin.so -bin/plugins/PrismServerPlugin/libPrismServerPlugin.so -bin/plugins/CosmoFiltersPlugin/libCosmoFiltersPlugin.so -bin/plugins/CSCS_PointSprite_Plugin/libCSCS_PointSprite_Plugin.so -bin/plugins/SLACTools/libSLACTools.so -bin/plugins/H5PartReader/libH5PartReader.so -bin/pqClientDocFinder.txt -bin/pvTestDriver bin/pvdataserver bin/pvrenderserver bin/pvserver +bin/smTestDriver bin/vtkEncodeString -bin/vtkSMExtractDocumentation bin/vtkWrapClientServer +%%DOCSDIR%%/paraview.qch +include/paraview-%%VERMAJORMINOR%%/Cosmo/BasicDefinition.h +include/paraview-%%VERMAJORMINOR%%/Cosmo/ChainingMesh.h +include/paraview-%%VERMAJORMINOR%%/Cosmo/CosmoDefinition.h +include/paraview-%%VERMAJORMINOR%%/Cosmo/CosmoHalo.h +include/paraview-%%VERMAJORMINOR%%/Cosmo/CosmoHaloFinder.h +include/paraview-%%VERMAJORMINOR%%/Cosmo/CosmoHaloFinderP.h +include/paraview-%%VERMAJORMINOR%%/Cosmo/FOFHaloProperties.h +include/paraview-%%VERMAJORMINOR%%/Cosmo/Message.h +include/paraview-%%VERMAJORMINOR%%/Cosmo/ParticleDistribute.h +include/paraview-%%VERMAJORMINOR%%/Cosmo/ParticleExchange.h +include/paraview-%%VERMAJORMINOR%%/Cosmo/Partition.h +include/paraview-%%VERMAJORMINOR%%/Cosmo/winDirent.h include/paraview-%%VERMAJORMINOR%%/DICOMAppHelper.h include/paraview-%%VERMAJORMINOR%%/DICOMCMakeConfig.h include/paraview-%%VERMAJORMINOR%%/DICOMCallback.h @@ -26,15 +28,15 @@ include/paraview-%%VERMAJORMINOR%%/DICOMFile.h include/paraview-%%VERMAJORMINOR%%/DICOMParser.h include/paraview-%%VERMAJORMINOR%%/DICOMParserMap.h include/paraview-%%VERMAJORMINOR%%/DICOMTypes.h +include/paraview-%%VERMAJORMINOR%%/QFilterTreeProxyModel.h include/paraview-%%VERMAJORMINOR%%/QVTKWidget.h include/paraview-%%VERMAJORMINOR%%/QVTKWin32Header.h -include/paraview-%%VERMAJORMINOR%%/Qt/Chart/Resources/pqChart.qrc -include/paraview-%%VERMAJORMINOR%%/Qt/Chart/Resources/pqColorMap22.png -include/paraview-%%VERMAJORMINOR%%/Qt/Chart/Resources/pqHistogram22.png -include/paraview-%%VERMAJORMINOR%%/Qt/Chart/Resources/pqLineChart22.png -include/paraview-%%VERMAJORMINOR%%/Qt/Chart/Resources/zoom.xpm include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/PVSplashScreen.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/ParaViewLogo.png +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/PluginGray.png +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/PluginGreen.png +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/PluginRed.png +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/PluginYellow.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/SplitViewHorizontal.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/SplitViewVertical.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/lookmark.svg @@ -47,6 +49,7 @@ include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqAppIcon32.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqAppIcon64.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqArrowDown16.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqArrowUp16.png +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqAutoApply32.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqBack16.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqBottomCenter32.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqBottomLeftCorner32.png @@ -128,8 +131,6 @@ include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqLinkBack16.pn include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqLinkIn16.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqLock.svg include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqLock24.png -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqLookmark16.png -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqLookmarkThumbnail.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqMeasure24.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqMinus16.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqMouseMove15.png @@ -191,6 +192,8 @@ include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqScalarBar32.p include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqSelect16.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqSelect24.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqSelect32.png +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqSelectBlock.svg +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqSelectBlock24.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqSelectFrustPoints24.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqSelectSurfPoints24.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqServer16.png @@ -198,8 +201,9 @@ include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqServer22.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqServer32.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqShowCenterAxes24.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqShowCenterAxes32.png -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqShowOrientationAxes32.png +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqShowOrientationAxes.svg include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqShowOrientationAxes24.png +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqShowOrientationAxes32.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqSideSet16.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqSideSetData16.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pqSinusoidal16.png @@ -289,8 +293,10 @@ include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pvicons_repr.sv include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pvsplash1.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pvsplash2.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/pvsplash3.png +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/warning.png include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/zoom_to_selection.svg include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqAbortAnimation.ui +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqAboutDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqAddSourceDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqAnimationSettings.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqApplicationOptions.ui @@ -301,17 +307,19 @@ include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqBoxWidget.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqCalculatorPanel.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqCameraDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqCameraKeyFrameWidget.ui +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqChangeInputDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqChartOptionsWidget.ui -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqClientAboutDialog.ui -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqClientMainWindow.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqColorPresetDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqColorScaleDialog.ui +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqComparativeParameterRangeDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqComparativeVisPanel.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqContourControls.ui +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqContourWidget.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqCreateServerStartupDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqCubeAxesEditorDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqCustomFilterDefinitionWizard.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqCustomFilterManager.ui +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqCustomViewButtonDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqDisplayProxyEditor.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqDisplayProxyEditorWidget.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqDisplayRepresentationWidget.ui @@ -329,9 +337,7 @@ include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqLineSourceContro include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqLineWidget.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqLinksEditor.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqLinksManager.ui -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqLookmarkBrowser.ui -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqLookmarkDefinitionWizard.ui -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqLookmarkInspector.ui +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqLockViewSizeCustomDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqMultiViewFrameMenu.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqOptionsDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqOrbitCreatorDialog.ui @@ -340,11 +346,15 @@ include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqPipelineTimeKeyF include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqPluginDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqPointSourceControls.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqProxyInformationWidget.ui +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqQueryClauseWidget.ui +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqQueryCompositeTreeDialog.ui +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqQueryDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqRenderViewOptions.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqRescaleRangeDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqSampleScalarAddRangeDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqSampleScalarWidget.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqSaveSnapshotDialog.ui +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqScatterPlotDisplayPanel.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqSelectReaderDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqSelectionInputWidget.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqSelectionInspectorPanel.ui @@ -362,48 +372,29 @@ include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqThresholdPanel.u include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqTimerLogDisplay.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqTwoDRenderViewOptions.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqWriterDialog.ui -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqXDMFPanel.ui -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/XML/ParaViewFilters.xml -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/XML/ParaViewReaders.xml -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/XML/ParaViewSources.xml -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/XML/ParaViewWriters.xml -include/paraview-%%VERMAJORMINOR%%/Qt/Components/pqActionGroupImplementation.cxx.in -include/paraview-%%VERMAJORMINOR%%/Qt/Components/pqActionGroupImplementation.h.in -include/paraview-%%VERMAJORMINOR%%/Qt/Components/pqDisplayPanelDecoratorImplementation.cxx.in -include/paraview-%%VERMAJORMINOR%%/Qt/Components/pqDisplayPanelDecoratorImplementation.h.in -include/paraview-%%VERMAJORMINOR%%/Qt/Components/pqDisplayPanelImplementation.cxx.in -include/paraview-%%VERMAJORMINOR%%/Qt/Components/pqDisplayPanelImplementation.h.in -include/paraview-%%VERMAJORMINOR%%/Qt/Components/pqDockWindowImplementation.cxx.in -include/paraview-%%VERMAJORMINOR%%/Qt/Components/pqDockWindowImplementation.h.in -include/paraview-%%VERMAJORMINOR%%/Qt/Components/pqExtraResources.qrc.in -include/paraview-%%VERMAJORMINOR%%/Qt/Components/pqObjectPanelImplementation.cxx.in -include/paraview-%%VERMAJORMINOR%%/Qt/Components/pqObjectPanelImplementation.h.in -include/paraview-%%VERMAJORMINOR%%/Qt/Components/pqViewFrameActionGroupImplementation.cxx.in -include/paraview-%%VERMAJORMINOR%%/Qt/Components/pqViewFrameActionGroupImplementation.h.in -include/paraview-%%VERMAJORMINOR%%/Qt/Components/pqViewOptionsImplementation.cxx.in -include/paraview-%%VERMAJORMINOR%%/Qt/Components/pqViewOptionsImplementation.h.in +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqXYChartDisplayPanel.ui +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/XML/Placeholder.xml include/paraview-%%VERMAJORMINOR%%/Qt/Core/Resources/Icons/pqDomain16.png include/paraview-%%VERMAJORMINOR%%/Qt/Core/Resources/Icons/pqLinkOut16.png include/paraview-%%VERMAJORMINOR%%/Qt/Core/Resources/Icons/pqNetwork16.png include/paraview-%%VERMAJORMINOR%%/Qt/Core/Resources/UI/pqFileDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Core/Resources/UI/pqOutputWindow.ui -include/paraview-%%VERMAJORMINOR%%/Qt/Core/pqAutoStartImplementation.cxx.in -include/paraview-%%VERMAJORMINOR%%/Qt/Core/pqAutoStartImplementation.h.in -include/paraview-%%VERMAJORMINOR%%/Qt/Core/pqPluginImplementation.cxx.in -include/paraview-%%VERMAJORMINOR%%/Qt/Core/pqPluginImplementation.h.in -include/paraview-%%VERMAJORMINOR%%/Qt/Core/pqViewModuleImplementation.cxx.in -include/paraview-%%VERMAJORMINOR%%/Qt/Core/pqViewModuleImplementation.h.in include/paraview-%%VERMAJORMINOR%%/Qt/Widgets/Resources/Icons/pqCollapsedGroup22.png include/paraview-%%VERMAJORMINOR%%/Qt/Widgets/Resources/Icons/pqDelete16.png include/paraview-%%VERMAJORMINOR%%/Qt/Widgets/Resources/Icons/pqDelete24.png include/paraview-%%VERMAJORMINOR%%/Qt/Widgets/Resources/Icons/pqDelete32.png include/paraview-%%VERMAJORMINOR%%/Qt/Widgets/Resources/Icons/pqPlus16.png include/paraview-%%VERMAJORMINOR%%/Qt/Widgets/Resources/QtWidgets.qrc +include/paraview-%%VERMAJORMINOR%%/Qt/Widgets/Resources/UI/pqHelpWindow.ui include/paraview-%%VERMAJORMINOR%%/Qt/Widgets/Resources/UI/pqQuickLaunchDialog.ui -include/paraview-%%VERMAJORMINOR%%/QtChartExport.h include/paraview-%%VERMAJORMINOR%%/QtWidgetsExport.h include/paraview-%%VERMAJORMINOR%%/QtWidgetsPlugin.h -include/paraview-%%VERMAJORMINOR%%/Servers/Common/vtkPVPluginInit.cxx.in/vtkPVPluginInit.cxx.in +include/paraview-%%VERMAJORMINOR%%/VPIC/VPICDataSet.h +include/paraview-%%VERMAJORMINOR%%/VPIC/VPICDefinition.h +include/paraview-%%VERMAJORMINOR%%/VPIC/VPICGlobal.h +include/paraview-%%VERMAJORMINOR%%/VPIC/VPICHeader.h +include/paraview-%%VERMAJORMINOR%%/VPIC/VPICPart.h +include/paraview-%%VERMAJORMINOR%%/VPIC/VPICView.h include/paraview-%%VERMAJORMINOR%%/Xdmf/Xdmf.h include/paraview-%%VERMAJORMINOR%%/Xdmf/XdmfArray.h include/paraview-%%VERMAJORMINOR%%/Xdmf/XdmfArrayCopyMacro.h @@ -441,14 +432,21 @@ include/paraview-%%VERMAJORMINOR%%/Xdmf/XdmfSet.h include/paraview-%%VERMAJORMINOR%%/Xdmf/XdmfTime.h include/paraview-%%VERMAJORMINOR%%/Xdmf/XdmfTopology.h include/paraview-%%VERMAJORMINOR%%/Xdmf/XdmfValues.h +include/paraview-%%VERMAJORMINOR%%/Xdmf/XdmfValuesBinary.h include/paraview-%%VERMAJORMINOR%%/Xdmf/XdmfValuesHDF.h include/paraview-%%VERMAJORMINOR%%/Xdmf/XdmfValuesMySQL.h include/paraview-%%VERMAJORMINOR%%/Xdmf/XdmfValuesXML.h +include/paraview-%%VERMAJORMINOR%%/Xdmf/bz2stream.h +include/paraview-%%VERMAJORMINOR%%/Xdmf/gzstream.h include/paraview-%%VERMAJORMINOR%%/Xdmf/ice.h +include/paraview-%%VERMAJORMINOR%%/Xdmf/vtkSILBuilder.h include/paraview-%%VERMAJORMINOR%%/Xdmf/vtkXdmfDataArray.h +include/paraview-%%VERMAJORMINOR%%/Xdmf/vtkXdmfHeavyData.h include/paraview-%%VERMAJORMINOR%%/Xdmf/vtkXdmfReader.h +include/paraview-%%VERMAJORMINOR%%/Xdmf/vtkXdmfReaderInternal.h include/paraview-%%VERMAJORMINOR%%/Xdmf/vtkXdmfRenderWindowInteractor.h include/paraview-%%VERMAJORMINOR%%/Xdmf/vtkXdmfWriter.h +include/paraview-%%VERMAJORMINOR%%/Xdmf/vtkXdmfWriter2.h include/paraview-%%VERMAJORMINOR%%/alglib/ap.h include/paraview-%%VERMAJORMINOR%%/alglib/apvt.h include/paraview-%%VERMAJORMINOR%%/alglib/bdsvd.h @@ -461,17 +459,33 @@ include/paraview-%%VERMAJORMINOR%%/alglib/rotations.h include/paraview-%%VERMAJORMINOR%%/alglib/svd.h include/paraview-%%VERMAJORMINOR%%/internal/stdio_core.h include/paraview-%%VERMAJORMINOR%%/metaIOConfig.h +include/paraview-%%VERMAJORMINOR%%/mrmpi/cmapreduce.h +include/paraview-%%VERMAJORMINOR%%/mrmpi/error.h +include/paraview-%%VERMAJORMINOR%%/mrmpi/hash.h +include/paraview-%%VERMAJORMINOR%%/mrmpi/irregular.h +include/paraview-%%VERMAJORMINOR%%/mrmpi/keymultivalue.h +include/paraview-%%VERMAJORMINOR%%/mrmpi/keyvalue.h +include/paraview-%%VERMAJORMINOR%%/mrmpi/mapreduce.h +include/paraview-%%VERMAJORMINOR%%/mrmpi/memory.h +include/paraview-%%VERMAJORMINOR%%/mrmpi/mpi.h +include/paraview-%%VERMAJORMINOR%%/mrmpi/mrmpi_config.h include/paraview-%%VERMAJORMINOR%%/pq3DWidget.h include/paraview-%%VERMAJORMINOR%%/pq3DWidgetFactory.h +include/paraview-%%VERMAJORMINOR%%/pq3DWidgetInterface.h +include/paraview-%%VERMAJORMINOR%%/pqAboutDialog.h +include/paraview-%%VERMAJORMINOR%%/pqAboutDialogReaction.h include/paraview-%%VERMAJORMINOR%%/pqActionGroupInterface.h include/paraview-%%VERMAJORMINOR%%/pqActiveChartOptions.h +include/paraview-%%VERMAJORMINOR%%/pqActiveObjects.h include/paraview-%%VERMAJORMINOR%%/pqActiveRenderViewOptions.h include/paraview-%%VERMAJORMINOR%%/pqActiveServer.h include/paraview-%%VERMAJORMINOR%%/pqActiveTwoDRenderViewOptions.h include/paraview-%%VERMAJORMINOR%%/pqActiveView.h include/paraview-%%VERMAJORMINOR%%/pqActiveViewOptions.h include/paraview-%%VERMAJORMINOR%%/pqActiveViewOptionsManager.h +include/paraview-%%VERMAJORMINOR%%/pqActiveXYChartOptions.h include/paraview-%%VERMAJORMINOR%%/pqAddSourceDialog.h +include/paraview-%%VERMAJORMINOR%%/pqAlwaysConnectedBehavior.h include/paraview-%%VERMAJORMINOR%%/pqAnimatablePropertiesComboBox.h include/paraview-%%VERMAJORMINOR%%/pqAnimatableProxyComboBox.h include/paraview-%%VERMAJORMINOR%%/pqAnimationCue.h @@ -480,14 +494,20 @@ include/paraview-%%VERMAJORMINOR%%/pqAnimationManager.h include/paraview-%%VERMAJORMINOR%%/pqAnimationModel.h include/paraview-%%VERMAJORMINOR%%/pqAnimationScene.h include/paraview-%%VERMAJORMINOR%%/pqAnimationSceneImageWriter.h +include/paraview-%%VERMAJORMINOR%%/pqAnimationTimeToolbar.h include/paraview-%%VERMAJORMINOR%%/pqAnimationTrack.h include/paraview-%%VERMAJORMINOR%%/pqAnimationViewWidget.h include/paraview-%%VERMAJORMINOR%%/pqAnimationWidget.h +include/paraview-%%VERMAJORMINOR%%/pqApplicationComponentsExport.h include/paraview-%%VERMAJORMINOR%%/pqApplicationCore.h include/paraview-%%VERMAJORMINOR%%/pqApplicationOptions.h include/paraview-%%VERMAJORMINOR%%/pqApplicationOptionsDialog.h +include/paraview-%%VERMAJORMINOR%%/pqApplicationSettingsReaction.h +include/paraview-%%VERMAJORMINOR%%/pqAutoApplyReaction.h include/paraview-%%VERMAJORMINOR%%/pqAutoGeneratedObjectPanel.h +include/paraview-%%VERMAJORMINOR%%/pqAutoLoadPluginXMLBehavior.h include/paraview-%%VERMAJORMINOR%%/pqAutoStartInterface.h +include/paraview-%%VERMAJORMINOR%%/pqAxesToolbar.h include/paraview-%%VERMAJORMINOR%%/pqBarChartDisplayPanel.h include/paraview-%%VERMAJORMINOR%%/pqBarChartOptionsEditor.h include/paraview-%%VERMAJORMINOR%%/pqBarChartOptionsHandler.h @@ -497,83 +517,68 @@ include/paraview-%%VERMAJORMINOR%%/pqBoxChartOptionsEditor.h include/paraview-%%VERMAJORMINOR%%/pqBoxChartOptionsHandler.h include/paraview-%%VERMAJORMINOR%%/pqBoxChartViewContextMenuHandler.h include/paraview-%%VERMAJORMINOR%%/pqBoxWidget.h +include/paraview-%%VERMAJORMINOR%%/pqBrandPluginsLoader.h include/paraview-%%VERMAJORMINOR%%/pqCalculatorPanel.h include/paraview-%%VERMAJORMINOR%%/pqCameraDialog.h include/paraview-%%VERMAJORMINOR%%/pqCameraKeyFrameWidget.h -include/paraview-%%VERMAJORMINOR%%/pqChartArea.h -include/paraview-%%VERMAJORMINOR%%/pqChartAxis.h -include/paraview-%%VERMAJORMINOR%%/pqChartAxisLayer.h -include/paraview-%%VERMAJORMINOR%%/pqChartAxisModel.h -include/paraview-%%VERMAJORMINOR%%/pqChartAxisOptions.h -include/paraview-%%VERMAJORMINOR%%/pqChartContentsSpace.h -include/paraview-%%VERMAJORMINOR%%/pqChartCoordinate.h -include/paraview-%%VERMAJORMINOR%%/pqChartGridLayer.h -include/paraview-%%VERMAJORMINOR%%/pqChartInteractor.h -include/paraview-%%VERMAJORMINOR%%/pqChartInteractorSetup.h -include/paraview-%%VERMAJORMINOR%%/pqChartLayer.h -include/paraview-%%VERMAJORMINOR%%/pqChartLegend.h -include/paraview-%%VERMAJORMINOR%%/pqChartLegendModel.h -include/paraview-%%VERMAJORMINOR%%/pqChartMouseBox.h -include/paraview-%%VERMAJORMINOR%%/pqChartMouseFunction.h -include/paraview-%%VERMAJORMINOR%%/pqChartMousePan.h -include/paraview-%%VERMAJORMINOR%%/pqChartMouseSelection.h -include/paraview-%%VERMAJORMINOR%%/pqChartMouseZoom.h +include/paraview-%%VERMAJORMINOR%%/pqCameraLinkReaction.h +include/paraview-%%VERMAJORMINOR%%/pqCameraReaction.h +include/paraview-%%VERMAJORMINOR%%/pqCameraToolbar.h +include/paraview-%%VERMAJORMINOR%%/pqCameraUndoRedoReaction.h +include/paraview-%%VERMAJORMINOR%%/pqCategoryToolbarsBehavior.h +include/paraview-%%VERMAJORMINOR%%/pqChangeInputDialog.h +include/paraview-%%VERMAJORMINOR%%/pqChangePipelineInputReaction.h include/paraview-%%VERMAJORMINOR%%/pqChartOptionsEditor.h include/paraview-%%VERMAJORMINOR%%/pqChartOptionsHandler.h include/paraview-%%VERMAJORMINOR%%/pqChartPixelScale.h -include/paraview-%%VERMAJORMINOR%%/pqChartPlugin.h include/paraview-%%VERMAJORMINOR%%/pqChartPrintSave.h include/paraview-%%VERMAJORMINOR%%/pqChartRepresentation.h -include/paraview-%%VERMAJORMINOR%%/pqChartSeriesColorManager.h include/paraview-%%VERMAJORMINOR%%/pqChartSeriesEditorModel.h -include/paraview-%%VERMAJORMINOR%%/pqChartSeriesOptionsGenerator.h -include/paraview-%%VERMAJORMINOR%%/pqChartTitle.h include/paraview-%%VERMAJORMINOR%%/pqChartValue.h -include/paraview-%%VERMAJORMINOR%%/pqChartValueFormatter.h include/paraview-%%VERMAJORMINOR%%/pqChartView.h include/paraview-%%VERMAJORMINOR%%/pqChartViewContextMenu.h include/paraview-%%VERMAJORMINOR%%/pqChartViewContextMenuHandler.h -include/paraview-%%VERMAJORMINOR%%/pqChartWidget.h -include/paraview-%%VERMAJORMINOR%%/pqChartWidgetPlugin.h -include/paraview-%%VERMAJORMINOR%%/pqChartZoomHistory.h +include/paraview-%%VERMAJORMINOR%%/pqCheckBoxPixMaps.h include/paraview-%%VERMAJORMINOR%%/pqCheckableHeaderModel.h include/paraview-%%VERMAJORMINOR%%/pqCheckableHeaderView.h -include/paraview-%%VERMAJORMINOR%%/pqClientAboutDialog.h -include/paraview-%%VERMAJORMINOR%%/pqClientMainWindow.h -include/paraview-%%VERMAJORMINOR%%/pqClientProcessModuleGUIHelper.h include/paraview-%%VERMAJORMINOR%%/pqClipPanel.h include/paraview-%%VERMAJORMINOR%%/pqCloseViewUndoElement.h include/paraview-%%VERMAJORMINOR%%/pqCollapsedGroup.h include/paraview-%%VERMAJORMINOR%%/pqColorButtonEventPlayer.h include/paraview-%%VERMAJORMINOR%%/pqColorButtonEventTranslator.h include/paraview-%%VERMAJORMINOR%%/pqColorChooserButton.h -include/paraview-%%VERMAJORMINOR%%/pqColorMapColorChanger.h include/paraview-%%VERMAJORMINOR%%/pqColorMapModel.h -include/paraview-%%VERMAJORMINOR%%/pqColorMapWidget.h -include/paraview-%%VERMAJORMINOR%%/pqColorMapWidgetPlugin.h include/paraview-%%VERMAJORMINOR%%/pqColorPresetManager.h include/paraview-%%VERMAJORMINOR%%/pqColorPresetModel.h include/paraview-%%VERMAJORMINOR%%/pqColorScaleEditor.h include/paraview-%%VERMAJORMINOR%%/pqColorScaleToolbar.h include/paraview-%%VERMAJORMINOR%%/pqColorTableDelegate.h include/paraview-%%VERMAJORMINOR%%/pqColorTableModel.h +include/paraview-%%VERMAJORMINOR%%/pqColorToolbar.h include/paraview-%%VERMAJORMINOR%%/pqComboBoxDomain.h +include/paraview-%%VERMAJORMINOR%%/pqCommandLineOptionsBehavior.h include/paraview-%%VERMAJORMINOR%%/pqCommandServerStartup.h include/paraview-%%VERMAJORMINOR%%/pqComparativeBarChartView.h include/paraview-%%VERMAJORMINOR%%/pqComparativeChartView.h +include/paraview-%%VERMAJORMINOR%%/pqComparativeCueWidget.h include/paraview-%%VERMAJORMINOR%%/pqComparativeLineChartView.h include/paraview-%%VERMAJORMINOR%%/pqComparativePlotView.h include/paraview-%%VERMAJORMINOR%%/pqComparativeRenderView.h -include/paraview-%%VERMAJORMINOR%%/pqComparativeTracksWidget.h include/paraview-%%VERMAJORMINOR%%/pqComparativeVisPanel.h include/paraview-%%VERMAJORMINOR%%/pqComponentsExport.h include/paraview-%%VERMAJORMINOR%%/pqComponentsInit.h +include/paraview-%%VERMAJORMINOR%%/pqComponentsTestUtility.h include/paraview-%%VERMAJORMINOR%%/pqConnect.h include/paraview-%%VERMAJORMINOR%%/pqConsoleWidget.h +include/paraview-%%VERMAJORMINOR%%/pqContextView.h include/paraview-%%VERMAJORMINOR%%/pqContourPanel.h +include/paraview-%%VERMAJORMINOR%%/pqContourWidget.h include/paraview-%%VERMAJORMINOR%%/pqCoreExport.h include/paraview-%%VERMAJORMINOR%%/pqCoreInit.h include/paraview-%%VERMAJORMINOR%%/pqCoreTestUtility.h +include/paraview-%%VERMAJORMINOR%%/pqCoreUtilities.h +include/paraview-%%VERMAJORMINOR%%/pqCrashRecoveryBehavior.h +include/paraview-%%VERMAJORMINOR%%/pqCreateCustomFilterReaction.h include/paraview-%%VERMAJORMINOR%%/pqCreateServerStartupDialog.h include/paraview-%%VERMAJORMINOR%%/pqCubeAxesEditorDialog.h include/paraview-%%VERMAJORMINOR%%/pqCurrentTimeToolbar.h @@ -581,11 +586,18 @@ include/paraview-%%VERMAJORMINOR%%/pqCustomFilterDefinitionModel.h include/paraview-%%VERMAJORMINOR%%/pqCustomFilterDefinitionWizard.h include/paraview-%%VERMAJORMINOR%%/pqCustomFilterManager.h include/paraview-%%VERMAJORMINOR%%/pqCustomFilterManagerModel.h +include/paraview-%%VERMAJORMINOR%%/pqCustomViewButtonDialog.h include/paraview-%%VERMAJORMINOR%%/pqCutPanel.h include/paraview-%%VERMAJORMINOR%%/pqDataInformationModel.h include/paraview-%%VERMAJORMINOR%%/pqDataInformationModelSelectionAdaptor.h include/paraview-%%VERMAJORMINOR%%/pqDataInformationWidget.h +include/paraview-%%VERMAJORMINOR%%/pqDataQueryReaction.h include/paraview-%%VERMAJORMINOR%%/pqDataRepresentation.h +include/paraview-%%VERMAJORMINOR%%/pqDataTimeStepBehavior.h +include/paraview-%%VERMAJORMINOR%%/pqDefaultMainWindow.h +include/paraview-%%VERMAJORMINOR%%/pqDefaultViewBehavior.h +include/paraview-%%VERMAJORMINOR%%/pqDeleteBehavior.h +include/paraview-%%VERMAJORMINOR%%/pqDeleteReaction.h include/paraview-%%VERMAJORMINOR%%/pqDelimitedTextParser.h include/paraview-%%VERMAJORMINOR%%/pqDialog.h include/paraview-%%VERMAJORMINOR%%/pqDisplayColorWidget.h @@ -600,8 +612,12 @@ include/paraview-%%VERMAJORMINOR%%/pqDistanceWidget.h include/paraview-%%VERMAJORMINOR%%/pqDockWindowInterface.h include/paraview-%%VERMAJORMINOR%%/pqDoubleRangeWidget.h include/paraview-%%VERMAJORMINOR%%/pqDoubleSpinBox.h +include/paraview-%%VERMAJORMINOR%%/pqEditCameraReaction.h +include/paraview-%%VERMAJORMINOR%%/pqEditColorMapReaction.h +include/paraview-%%VERMAJORMINOR%%/pqEditMenu.h include/paraview-%%VERMAJORMINOR%%/pqEditServerStartupDialog.h include/paraview-%%VERMAJORMINOR%%/pqExodusIIPanel.h +include/paraview-%%VERMAJORMINOR%%/pqExportReaction.h include/paraview-%%VERMAJORMINOR%%/pqExtractCTHPartsPanel.h include/paraview-%%VERMAJORMINOR%%/pqFieldSelectionAdaptor.h include/paraview-%%VERMAJORMINOR%%/pqFileChooserWidget.h @@ -612,8 +628,7 @@ include/paraview-%%VERMAJORMINOR%%/pqFileDialogFavoriteModel.h include/paraview-%%VERMAJORMINOR%%/pqFileDialogFilter.h include/paraview-%%VERMAJORMINOR%%/pqFileDialogModel.h include/paraview-%%VERMAJORMINOR%%/pqFileDialogRecentDirsModel.h -include/paraview-%%VERMAJORMINOR%%/pqFilterInputDialog.h -include/paraview-%%VERMAJORMINOR%%/pqFiltersMenuManager.h +include/paraview-%%VERMAJORMINOR%%/pqFiltersMenuReaction.h include/paraview-%%VERMAJORMINOR%%/pqFlatTreeView.h include/paraview-%%VERMAJORMINOR%%/pqFlatTreeViewEventPlayer.h include/paraview-%%VERMAJORMINOR%%/pqFlatTreeViewEventTranslator.h @@ -622,15 +637,13 @@ include/paraview-%%VERMAJORMINOR%%/pqGlobalRenderViewOptions.h include/paraview-%%VERMAJORMINOR%%/pqGlyphPanel.h include/paraview-%%VERMAJORMINOR%%/pqGraphLayoutStrategyInterface.h include/paraview-%%VERMAJORMINOR%%/pqHandleWidget.h +include/paraview-%%VERMAJORMINOR%%/pqHelpReaction.h +include/paraview-%%VERMAJORMINOR%%/pqHelpWindow.h include/paraview-%%VERMAJORMINOR%%/pqHelperProxyRegisterUndoElement.h -include/paraview-%%VERMAJORMINOR%%/pqHistogramChart.h -include/paraview-%%VERMAJORMINOR%%/pqHistogramChartOptions.h -include/paraview-%%VERMAJORMINOR%%/pqHistogramColor.h -include/paraview-%%VERMAJORMINOR%%/pqHistogramModel.h -include/paraview-%%VERMAJORMINOR%%/pqHistogramSelection.h -include/paraview-%%VERMAJORMINOR%%/pqHistogramSelectionModel.h +include/paraview-%%VERMAJORMINOR%%/pqHelperProxyStateLoader.h include/paraview-%%VERMAJORMINOR%%/pqHistogramTableModel.h -include/paraview-%%VERMAJORMINOR%%/pqHistogramWidget.h +include/paraview-%%VERMAJORMINOR%%/pqIgnoreSourceTimeReaction.h +include/paraview-%%VERMAJORMINOR%%/pqImageCompressorType.h include/paraview-%%VERMAJORMINOR%%/pqImageTip.h include/paraview-%%VERMAJORMINOR%%/pqImageUtil.h include/paraview-%%VERMAJORMINOR%%/pqImplicitPlaneWidget.h @@ -638,17 +651,11 @@ include/paraview-%%VERMAJORMINOR%%/pqIntRangeWidget.h include/paraview-%%VERMAJORMINOR%%/pqKeyFrameEditor.h include/paraview-%%VERMAJORMINOR%%/pqKeyFrameTimeValidator.h include/paraview-%%VERMAJORMINOR%%/pqKeyFrameTypeWidget.h -include/paraview-%%VERMAJORMINOR%%/pqLineChart.h include/paraview-%%VERMAJORMINOR%%/pqLineChartDisplayPanel.h -include/paraview-%%VERMAJORMINOR%%/pqLineChartModel.h -include/paraview-%%VERMAJORMINOR%%/pqLineChartOptions.h include/paraview-%%VERMAJORMINOR%%/pqLineChartOptionsEditor.h include/paraview-%%VERMAJORMINOR%%/pqLineChartOptionsHandler.h -include/paraview-%%VERMAJORMINOR%%/pqLineChartSeries.h -include/paraview-%%VERMAJORMINOR%%/pqLineChartSeriesOptions.h include/paraview-%%VERMAJORMINOR%%/pqLineChartView.h include/paraview-%%VERMAJORMINOR%%/pqLineChartViewContextMenuHandler.h -include/paraview-%%VERMAJORMINOR%%/pqLineChartWidget.h include/paraview-%%VERMAJORMINOR%%/pqLineEdit.h include/paraview-%%VERMAJORMINOR%%/pqLineSourceWidget.h include/paraview-%%VERMAJORMINOR%%/pqLineWidget.h @@ -656,29 +663,26 @@ include/paraview-%%VERMAJORMINOR%%/pqLinkViewWidget.h include/paraview-%%VERMAJORMINOR%%/pqLinksEditor.h include/paraview-%%VERMAJORMINOR%%/pqLinksManager.h include/paraview-%%VERMAJORMINOR%%/pqLinksModel.h +include/paraview-%%VERMAJORMINOR%%/pqListNewProxyDefinitionsBehavior.h include/paraview-%%VERMAJORMINOR%%/pqListWidgetCheckHelper.h include/paraview-%%VERMAJORMINOR%%/pqListWidgetItemObject.h +include/paraview-%%VERMAJORMINOR%%/pqLoadDataReaction.h +include/paraview-%%VERMAJORMINOR%%/pqLoadStateReaction.h include/paraview-%%VERMAJORMINOR%%/pqLoadedFormObjectPanel.h -include/paraview-%%VERMAJORMINOR%%/pqLookmarkBrowser.h -include/paraview-%%VERMAJORMINOR%%/pqLookmarkBrowserModel.h -include/paraview-%%VERMAJORMINOR%%/pqLookmarkDefinitionWizard.h -include/paraview-%%VERMAJORMINOR%%/pqLookmarkInspector.h -include/paraview-%%VERMAJORMINOR%%/pqLookmarkManagerModel.h -include/paraview-%%VERMAJORMINOR%%/pqLookmarkModel.h -include/paraview-%%VERMAJORMINOR%%/pqLookmarkSourceDialog.h -include/paraview-%%VERMAJORMINOR%%/pqLookmarkStateLoader.h -include/paraview-%%VERMAJORMINOR%%/pqLookmarkToolbar.h +include/paraview-%%VERMAJORMINOR%%/pqLockViewSizeCustomDialog.h include/paraview-%%VERMAJORMINOR%%/pqLookupTableManager.h -include/paraview-%%VERMAJORMINOR%%/pqMain.h -include/paraview-%%VERMAJORMINOR%%/pqMainWindowCore.h +include/paraview-%%VERMAJORMINOR%%/pqMainControlsToolbar.h +include/paraview-%%VERMAJORMINOR%%/pqManageCustomFiltersReaction.h +include/paraview-%%VERMAJORMINOR%%/pqManageLinksReaction.h +include/paraview-%%VERMAJORMINOR%%/pqManagePluginsReaction.h include/paraview-%%VERMAJORMINOR%%/pqManualServerStartup.h include/paraview-%%VERMAJORMINOR%%/pqMultiView.h include/paraview-%%VERMAJORMINOR%%/pqMultiViewFrame.h include/paraview-%%VERMAJORMINOR%%/pqNameCount.h include/paraview-%%VERMAJORMINOR%%/pqNamedObjectPanel.h include/paraview-%%VERMAJORMINOR%%/pqNamedWidgets.h +include/paraview-%%VERMAJORMINOR%%/pqNetCDFPanel.h include/paraview-%%VERMAJORMINOR%%/pqObjectBuilder.h -include/paraview-%%VERMAJORMINOR%%/pqObjectInspectorDriver.h include/paraview-%%VERMAJORMINOR%%/pqObjectInspectorWidget.h include/paraview-%%VERMAJORMINOR%%/pqObjectPanel.h include/paraview-%%VERMAJORMINOR%%/pqObjectPanelInterface.h @@ -693,72 +697,97 @@ include/paraview-%%VERMAJORMINOR%%/pqOutputPortComboBox.h include/paraview-%%VERMAJORMINOR%%/pqOutputWindow.h include/paraview-%%VERMAJORMINOR%%/pqOutputWindowAdapter.h include/paraview-%%VERMAJORMINOR%%/pqPQLookupTableManager.h +include/paraview-%%VERMAJORMINOR%%/pqPVAnimationWidget.h +include/paraview-%%VERMAJORMINOR%%/pqPVApplicationCore.h +include/paraview-%%VERMAJORMINOR%%/pqPVNewSourceBehavior.h +include/paraview-%%VERMAJORMINOR%%/pqParaViewBehaviors.h +include/paraview-%%VERMAJORMINOR%%/pqParaViewMenuBuilders.h include/paraview-%%VERMAJORMINOR%%/pqParticleTracerPanel.h -include/paraview-%%VERMAJORMINOR%%/pqPendingDisplayManager.h -include/paraview-%%VERMAJORMINOR%%/pqPendingDisplayUndoElement.h +include/paraview-%%VERMAJORMINOR%%/pqPersistentMainWindowStateBehavior.h include/paraview-%%VERMAJORMINOR%%/pqPickHelper.h -include/paraview-%%VERMAJORMINOR%%/pqPipelineBrowser.h -include/paraview-%%VERMAJORMINOR%%/pqPipelineBrowserContextMenu.h -include/paraview-%%VERMAJORMINOR%%/pqPipelineBrowserStateManager.h +include/paraview-%%VERMAJORMINOR%%/pqPipelineBrowserWidget.h include/paraview-%%VERMAJORMINOR%%/pqPipelineFilter.h -include/paraview-%%VERMAJORMINOR%%/pqPipelineMenu.h include/paraview-%%VERMAJORMINOR%%/pqPipelineModel.h include/paraview-%%VERMAJORMINOR%%/pqPipelineModelSelectionAdaptor.h include/paraview-%%VERMAJORMINOR%%/pqPipelineRepresentation.h include/paraview-%%VERMAJORMINOR%%/pqPipelineSource.h include/paraview-%%VERMAJORMINOR%%/pqPipelineTimeKeyFrameEditor.h +include/paraview-%%VERMAJORMINOR%%/pqPlotSettingsModel.h include/paraview-%%VERMAJORMINOR%%/pqPlugin.h +include/paraview-%%VERMAJORMINOR%%/pqPluginActionGroupBehavior.h include/paraview-%%VERMAJORMINOR%%/pqPluginDialog.h +include/paraview-%%VERMAJORMINOR%%/pqPluginDockWidgetsBehavior.h include/paraview-%%VERMAJORMINOR%%/pqPluginManager.h -include/paraview-%%VERMAJORMINOR%%/pqPointMarker.h +include/paraview-%%VERMAJORMINOR%%/pqPluginPathBehavior.h include/paraview-%%VERMAJORMINOR%%/pqPointSourceWidget.h -include/paraview-%%VERMAJORMINOR%%/pqProcessModuleGUIHelper.h include/paraview-%%VERMAJORMINOR%%/pqProgressBar.h +include/paraview-%%VERMAJORMINOR%%/pqProgressBarHelper.h include/paraview-%%VERMAJORMINOR%%/pqProgressManager.h include/paraview-%%VERMAJORMINOR%%/pqProgressWidget.h include/paraview-%%VERMAJORMINOR%%/pqPropertyLinks.h include/paraview-%%VERMAJORMINOR%%/pqPropertyManager.h include/paraview-%%VERMAJORMINOR%%/pqProxy.h +include/paraview-%%VERMAJORMINOR%%/pqProxyGroupMenuManager.h include/paraview-%%VERMAJORMINOR%%/pqProxyInformationWidget.h -include/paraview-%%VERMAJORMINOR%%/pqProxyMenuManager.h +include/paraview-%%VERMAJORMINOR%%/pqProxyModifiedStateUndoElement.h include/paraview-%%VERMAJORMINOR%%/pqProxyPanel.h include/paraview-%%VERMAJORMINOR%%/pqProxySILModel.h include/paraview-%%VERMAJORMINOR%%/pqProxySelectionWidget.h include/paraview-%%VERMAJORMINOR%%/pqProxyTabWidget.h include/paraview-%%VERMAJORMINOR%%/pqProxyUnRegisterUndoElement.h include/paraview-%%VERMAJORMINOR%%/pqPythonEventSourceImage.h +include/paraview-%%VERMAJORMINOR%%/pqPythonShellReaction.h include/paraview-%%VERMAJORMINOR%%/pqQVTKWidgetEventPlayer.h include/paraview-%%VERMAJORMINOR%%/pqQVTKWidgetEventTranslator.h +include/paraview-%%VERMAJORMINOR%%/pqQtMessageHandlerBehavior.h +include/paraview-%%VERMAJORMINOR%%/pqQueryClauseWidget.h +include/paraview-%%VERMAJORMINOR%%/pqQueryDialog.h include/paraview-%%VERMAJORMINOR%%/pqQuickLaunchDialog.h -include/paraview-%%VERMAJORMINOR%%/pqReaderFactory.h +include/paraview-%%VERMAJORMINOR%%/pqReaction.h include/paraview-%%VERMAJORMINOR%%/pqRecentFilesMenu.h include/paraview-%%VERMAJORMINOR%%/pqRenderView.h include/paraview-%%VERMAJORMINOR%%/pqRenderViewBase.h include/paraview-%%VERMAJORMINOR%%/pqRenderViewOptions.h include/paraview-%%VERMAJORMINOR%%/pqRepresentation.h +include/paraview-%%VERMAJORMINOR%%/pqRepresentationToolbar.h include/paraview-%%VERMAJORMINOR%%/pqRescaleRange.h +include/paraview-%%VERMAJORMINOR%%/pqResetScalarRangeReaction.h include/paraview-%%VERMAJORMINOR%%/pqRubberBandHelper.h include/paraview-%%VERMAJORMINOR%%/pqSILModel.h +include/paraview-%%VERMAJORMINOR%%/pqSILWidget.h include/paraview-%%VERMAJORMINOR%%/pqSMAdaptor.h include/paraview-%%VERMAJORMINOR%%/pqSMProxy.h include/paraview-%%VERMAJORMINOR%%/pqSMSignalAdaptors.h include/paraview-%%VERMAJORMINOR%%/pqSampleScalarAddRangeDialog.h include/paraview-%%VERMAJORMINOR%%/pqSampleScalarWidget.h +include/paraview-%%VERMAJORMINOR%%/pqSaveAnimationGeometryReaction.h +include/paraview-%%VERMAJORMINOR%%/pqSaveAnimationReaction.h +include/paraview-%%VERMAJORMINOR%%/pqSaveDataReaction.h +include/paraview-%%VERMAJORMINOR%%/pqSaveScreenshotReaction.h include/paraview-%%VERMAJORMINOR%%/pqSaveSnapshotDialog.h +include/paraview-%%VERMAJORMINOR%%/pqSaveStateReaction.h include/paraview-%%VERMAJORMINOR%%/pqScalarBarRepresentation.h include/paraview-%%VERMAJORMINOR%%/pqScalarBarVisibilityAdaptor.h +include/paraview-%%VERMAJORMINOR%%/pqScalarBarVisibilityReaction.h include/paraview-%%VERMAJORMINOR%%/pqScalarOpacityFunction.h include/paraview-%%VERMAJORMINOR%%/pqScalarSetModel.h include/paraview-%%VERMAJORMINOR%%/pqScalarsToColors.h +include/paraview-%%VERMAJORMINOR%%/pqScatterPlotDisplayPanel.h +include/paraview-%%VERMAJORMINOR%%/pqScatterPlotRepresentation.h +include/paraview-%%VERMAJORMINOR%%/pqScatterPlotView.h include/paraview-%%VERMAJORMINOR%%/pqSectionVisibilityContextMenu.h include/paraview-%%VERMAJORMINOR%%/pqSelectReaderDialog.h include/paraview-%%VERMAJORMINOR%%/pqSelectThroughPanel.h include/paraview-%%VERMAJORMINOR%%/pqSelectionAdaptor.h include/paraview-%%VERMAJORMINOR%%/pqSelectionInputWidget.h include/paraview-%%VERMAJORMINOR%%/pqSelectionInspectorPanel.h +include/paraview-%%VERMAJORMINOR%%/pqSelectionInspectorWidget.h include/paraview-%%VERMAJORMINOR%%/pqSelectionManager.h +include/paraview-%%VERMAJORMINOR%%/pqSelectionToolbar.h include/paraview-%%VERMAJORMINOR%%/pqServer.h include/paraview-%%VERMAJORMINOR%%/pqServerBrowser.h +include/paraview-%%VERMAJORMINOR%%/pqServerConnectReaction.h +include/paraview-%%VERMAJORMINOR%%/pqServerDisconnectReaction.h include/paraview-%%VERMAJORMINOR%%/pqServerManagerModel.h include/paraview-%%VERMAJORMINOR%%/pqServerManagerModelInterface.h include/paraview-%%VERMAJORMINOR%%/pqServerManagerModelItem.h @@ -782,17 +811,9 @@ include/paraview-%%VERMAJORMINOR%%/pqSignalAdaptorSelectionTreeWidget.h include/paraview-%%VERMAJORMINOR%%/pqSignalAdaptorTreeWidget.h include/paraview-%%VERMAJORMINOR%%/pqSignalAdaptors.h include/paraview-%%VERMAJORMINOR%%/pqSiloPanel.h -include/paraview-%%VERMAJORMINOR%%/pqSimpleHistogramModel.h -include/paraview-%%VERMAJORMINOR%%/pqSimpleLineChartSeries.h include/paraview-%%VERMAJORMINOR%%/pqSimpleServerStartup.h include/paraview-%%VERMAJORMINOR%%/pqSourceComboBox.h -include/paraview-%%VERMAJORMINOR%%/pqSourceHistoryModel.h -include/paraview-%%VERMAJORMINOR%%/pqSourceInfoFilterModel.h -include/paraview-%%VERMAJORMINOR%%/pqSourceInfoGroupMap.h -include/paraview-%%VERMAJORMINOR%%/pqSourceInfoIcons.h -include/paraview-%%VERMAJORMINOR%%/pqSourceInfoModel.h -include/paraview-%%VERMAJORMINOR%%/pqSourceProxyInfo.h -include/paraview-%%VERMAJORMINOR%%/pqSourcesMenuManager.h +include/paraview-%%VERMAJORMINOR%%/pqSourcesMenuReaction.h include/paraview-%%VERMAJORMINOR%%/pqSphereWidget.h include/paraview-%%VERMAJORMINOR%%/pqSpinBox.h include/paraview-%%VERMAJORMINOR%%/pqSplineWidget.h @@ -802,22 +823,27 @@ include/paraview-%%VERMAJORMINOR%%/pqSpreadSheetView.h include/paraview-%%VERMAJORMINOR%%/pqSpreadSheetViewDecorator.h include/paraview-%%VERMAJORMINOR%%/pqSpreadSheetViewModel.h include/paraview-%%VERMAJORMINOR%%/pqSpreadSheetViewSelectionModel.h +include/paraview-%%VERMAJORMINOR%%/pqSpreadSheetViewWidget.h +include/paraview-%%VERMAJORMINOR%%/pqSpreadSheetVisibilityBehavior.h include/paraview-%%VERMAJORMINOR%%/pqStackedChartOptionsEditor.h include/paraview-%%VERMAJORMINOR%%/pqStackedChartOptionsHandler.h include/paraview-%%VERMAJORMINOR%%/pqStackedChartViewContextMenuHandler.h include/paraview-%%VERMAJORMINOR%%/pqStandardColorButton.h include/paraview-%%VERMAJORMINOR%%/pqStandardColorLinkAdaptor.h include/paraview-%%VERMAJORMINOR%%/pqStandardServerManagerModelInterface.h +include/paraview-%%VERMAJORMINOR%%/pqStandardViewFrameActionGroup.h include/paraview-%%VERMAJORMINOR%%/pqStandardViewModules.h -include/paraview-%%VERMAJORMINOR%%/pqStateLoader.h +include/paraview-%%VERMAJORMINOR%%/pqStatusBar.h include/paraview-%%VERMAJORMINOR%%/pqStreamTracerPanel.h include/paraview-%%VERMAJORMINOR%%/pqTableView.h +include/paraview-%%VERMAJORMINOR%%/pqTestingReaction.h include/paraview-%%VERMAJORMINOR%%/pqTextDisplayPropertiesWidget.h include/paraview-%%VERMAJORMINOR%%/pqTextRepresentation.h include/paraview-%%VERMAJORMINOR%%/pqTextureComboBox.h include/paraview-%%VERMAJORMINOR%%/pqThresholdPanel.h include/paraview-%%VERMAJORMINOR%%/pqTimeKeeper.h include/paraview-%%VERMAJORMINOR%%/pqTimerLogDisplay.h +include/paraview-%%VERMAJORMINOR%%/pqTimerLogReaction.h include/paraview-%%VERMAJORMINOR%%/pqToolTipTrapper.h include/paraview-%%VERMAJORMINOR%%/pqTreeLayoutStrategyInterface.h include/paraview-%%VERMAJORMINOR%%/pqTreeView.h @@ -829,9 +855,12 @@ include/paraview-%%VERMAJORMINOR%%/pqTreeWidgetItemObject.h include/paraview-%%VERMAJORMINOR%%/pqTreeWidgetSelectionHelper.h include/paraview-%%VERMAJORMINOR%%/pqTwoDRenderView.h include/paraview-%%VERMAJORMINOR%%/pqTwoDRenderViewOptions.h +include/paraview-%%VERMAJORMINOR%%/pqUndoRedoBehavior.h +include/paraview-%%VERMAJORMINOR%%/pqUndoRedoReaction.h include/paraview-%%VERMAJORMINOR%%/pqUndoStack.h include/paraview-%%VERMAJORMINOR%%/pqUndoStackBuilder.h include/paraview-%%VERMAJORMINOR%%/pqVCRController.h +include/paraview-%%VERMAJORMINOR%%/pqVCRToolbar.h include/paraview-%%VERMAJORMINOR%%/pqVariableType.h include/paraview-%%VERMAJORMINOR%%/pqView.h include/paraview-%%VERMAJORMINOR%%/pqViewContextMenuHandler.h @@ -839,10 +868,13 @@ include/paraview-%%VERMAJORMINOR%%/pqViewContextMenuManager.h include/paraview-%%VERMAJORMINOR%%/pqViewExporterManager.h include/paraview-%%VERMAJORMINOR%%/pqViewFrameActionGroup.h include/paraview-%%VERMAJORMINOR%%/pqViewFrameActionGroupInterface.h +include/paraview-%%VERMAJORMINOR%%/pqViewFrameActionsBehavior.h include/paraview-%%VERMAJORMINOR%%/pqViewManager.h -include/paraview-%%VERMAJORMINOR%%/pqViewMenu.h +include/paraview-%%VERMAJORMINOR%%/pqViewMenuManager.h include/paraview-%%VERMAJORMINOR%%/pqViewModuleInterface.h include/paraview-%%VERMAJORMINOR%%/pqViewOptionsInterface.h +include/paraview-%%VERMAJORMINOR%%/pqViewSettingsManager.h +include/paraview-%%VERMAJORMINOR%%/pqViewSettingsReaction.h include/paraview-%%VERMAJORMINOR%%/pqWaitCursor.h include/paraview-%%VERMAJORMINOR%%/pqWidgetRangeDomain.h include/paraview-%%VERMAJORMINOR%%/pqWriterDialog.h @@ -851,15 +883,24 @@ include/paraview-%%VERMAJORMINOR%%/pqXDMFPanel.h include/paraview-%%VERMAJORMINOR%%/pqXMLEventObserver.h include/paraview-%%VERMAJORMINOR%%/pqXMLEventSource.h include/paraview-%%VERMAJORMINOR%%/pqXMLUtil.h +include/paraview-%%VERMAJORMINOR%%/pqXYBarChartView.h +include/paraview-%%VERMAJORMINOR%%/pqXYChartDisplayPanel.h +include/paraview-%%VERMAJORMINOR%%/pqXYChartOptionsEditor.h +include/paraview-%%VERMAJORMINOR%%/pqXYChartView.h include/paraview-%%VERMAJORMINOR%%/verdict.h include/paraview-%%VERMAJORMINOR%%/verdict_mangle.h include/paraview-%%VERMAJORMINOR%%/vtk3DS.h include/paraview-%%VERMAJORMINOR%%/vtk3DSImporter.h include/paraview-%%VERMAJORMINOR%%/vtk3DWidget.h +include/paraview-%%VERMAJORMINOR%%/vtkABI.h include/paraview-%%VERMAJORMINOR%%/vtkAMRBox.h +include/paraview-%%VERMAJORMINOR%%/vtkAMRDualClip.h +include/paraview-%%VERMAJORMINOR%%/vtkAMRDualContour.h +include/paraview-%%VERMAJORMINOR%%/vtkAMRDualGridHelper.h include/paraview-%%VERMAJORMINOR%%/vtkAVSucdReader.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractArray.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractCellLocator.h +include/paraview-%%VERMAJORMINOR%%/vtkAbstractInterpolatedVelocityField.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractIterator.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractIterator.txx include/paraview-%%VERMAJORMINOR%%/vtkAbstractList.h @@ -871,6 +912,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkAbstractMapper3D.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractParticleWriter.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractPicker.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractPointLocator.h +include/paraview-%%VERMAJORMINOR%%/vtkAbstractPolygonalHandleRepresentation3D.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractPropPicker.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractTransform.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractVolumeMapper.h @@ -880,6 +922,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkActor2D.h include/paraview-%%VERMAJORMINOR%%/vtkActor2DCollection.h include/paraview-%%VERMAJORMINOR%%/vtkActorCollection.h include/paraview-%%VERMAJORMINOR%%/vtkAddMembershipArray.h +include/paraview-%%VERMAJORMINOR%%/vtkAdjacencyMatrixToEdgeTable.h include/paraview-%%VERMAJORMINOR%%/vtkAdjacentVertexIterator.h include/paraview-%%VERMAJORMINOR%%/vtkAffineRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkAffineRepresentation2D.h @@ -908,6 +951,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkAppendPolyData.h include/paraview-%%VERMAJORMINOR%%/vtkAppendRectilinearGrid.h include/paraview-%%VERMAJORMINOR%%/vtkAppendSelection.h include/paraview-%%VERMAJORMINOR%%/vtkApplyColors.h +include/paraview-%%VERMAJORMINOR%%/vtkApplyIcons.h include/paraview-%%VERMAJORMINOR%%/vtkApproximatingSubdivisionFilter.h include/paraview-%%VERMAJORMINOR%%/vtkArcParallelEdgeStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkArcPlotter.h @@ -915,7 +959,13 @@ include/paraview-%%VERMAJORMINOR%%/vtkArcSource.h include/paraview-%%VERMAJORMINOR%%/vtkAreaLayout.h include/paraview-%%VERMAJORMINOR%%/vtkAreaLayoutStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkAreaPicker.h +include/paraview-%%VERMAJORMINOR%%/vtkArray.h include/paraview-%%VERMAJORMINOR%%/vtkArrayCalculator.h +include/paraview-%%VERMAJORMINOR%%/vtkArrayCoordinates.h +include/paraview-%%VERMAJORMINOR%%/vtkArrayData.h +include/paraview-%%VERMAJORMINOR%%/vtkArrayDataAlgorithm.h +include/paraview-%%VERMAJORMINOR%%/vtkArrayExtents.h +include/paraview-%%VERMAJORMINOR%%/vtkArrayExtentsList.h include/paraview-%%VERMAJORMINOR%%/vtkArrayIterator.h include/paraview-%%VERMAJORMINOR%%/vtkArrayIteratorTemplate.h include/paraview-%%VERMAJORMINOR%%/vtkArrayIteratorTemplate.txx @@ -924,6 +974,13 @@ include/paraview-%%VERMAJORMINOR%%/vtkArrayMap.h include/paraview-%%VERMAJORMINOR%%/vtkArrayMap.txx include/paraview-%%VERMAJORMINOR%%/vtkArrayMapIterator.h include/paraview-%%VERMAJORMINOR%%/vtkArrayMapIterator.txx +include/paraview-%%VERMAJORMINOR%%/vtkArrayNorm.h +include/paraview-%%VERMAJORMINOR%%/vtkArrayRange.h +include/paraview-%%VERMAJORMINOR%%/vtkArrayReader.h +include/paraview-%%VERMAJORMINOR%%/vtkArraySort.h +include/paraview-%%VERMAJORMINOR%%/vtkArrayToTable.h +include/paraview-%%VERMAJORMINOR%%/vtkArrayWeights.h +include/paraview-%%VERMAJORMINOR%%/vtkArrayWriter.h include/paraview-%%VERMAJORMINOR%%/vtkArrowSource.h include/paraview-%%VERMAJORMINOR%%/vtkAssembly.h include/paraview-%%VERMAJORMINOR%%/vtkAssemblyNode.h @@ -932,12 +989,14 @@ include/paraview-%%VERMAJORMINOR%%/vtkAssemblyPaths.h include/paraview-%%VERMAJORMINOR%%/vtkAssignAttribute.h include/paraview-%%VERMAJORMINOR%%/vtkAssignCoordinates.h include/paraview-%%VERMAJORMINOR%%/vtkAssignCoordinatesLayoutStrategy.h +include/paraview-%%VERMAJORMINOR%%/vtkAttributeClustering2DLayoutStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkAttributeDataReductionFilter.h include/paraview-%%VERMAJORMINOR%%/vtkAttributeDataToFieldDataFilter.h include/paraview-%%VERMAJORMINOR%%/vtkAttributeDataToTableFilter.h include/paraview-%%VERMAJORMINOR%%/vtkAttributesErrorMetric.h include/paraview-%%VERMAJORMINOR%%/vtkAxes.h include/paraview-%%VERMAJORMINOR%%/vtkAxesActor.h +include/paraview-%%VERMAJORMINOR%%/vtkAxis.h include/paraview-%%VERMAJORMINOR%%/vtkAxisActor.h include/paraview-%%VERMAJORMINOR%%/vtkAxisActor2D.h include/paraview-%%VERMAJORMINOR%%/vtkBMPReader.h @@ -960,13 +1019,16 @@ include/paraview-%%VERMAJORMINOR%%/vtkBiDimensionalWidget.h include/paraview-%%VERMAJORMINOR%%/vtkBiQuadraticQuad.h include/paraview-%%VERMAJORMINOR%%/vtkBiQuadraticQuadraticHexahedron.h include/paraview-%%VERMAJORMINOR%%/vtkBiQuadraticQuadraticWedge.h +include/paraview-%%VERMAJORMINOR%%/vtkBiQuadraticTriangle.h include/paraview-%%VERMAJORMINOR%%/vtkBitArray.h include/paraview-%%VERMAJORMINOR%%/vtkBitArrayIterator.h +include/paraview-%%VERMAJORMINOR%%/vtkBivariateLinearTableThreshold.h include/paraview-%%VERMAJORMINOR%%/vtkBivariateStatisticsAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkBlankStructuredGrid.h include/paraview-%%VERMAJORMINOR%%/vtkBlankStructuredGridWithImage.h include/paraview-%%VERMAJORMINOR%%/vtkBlockDeliveryPreprocessor.h include/paraview-%%VERMAJORMINOR%%/vtkBlockIdScalars.h +include/paraview-%%VERMAJORMINOR%%/vtkBlockItem.h include/paraview-%%VERMAJORMINOR%%/vtkBooleanTexture.h include/paraview-%%VERMAJORMINOR%%/vtkBorderRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkBorderWidget.h @@ -975,11 +1037,13 @@ include/paraview-%%VERMAJORMINOR%%/vtkBoundingBox.h include/paraview-%%VERMAJORMINOR%%/vtkBox.h include/paraview-%%VERMAJORMINOR%%/vtkBoxClipDataSet.h include/paraview-%%VERMAJORMINOR%%/vtkBoxLayoutStrategy.h +include/paraview-%%VERMAJORMINOR%%/vtkBoxMuellerRandomSequence.h include/paraview-%%VERMAJORMINOR%%/vtkBoxRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkBoxWidget.h include/paraview-%%VERMAJORMINOR%%/vtkBoxWidget2.h include/paraview-%%VERMAJORMINOR%%/vtkBranchExtentTranslator.h include/paraview-%%VERMAJORMINOR%%/vtkBrownianPoints.h +include/paraview-%%VERMAJORMINOR%%/vtkBrush.h include/paraview-%%VERMAJORMINOR%%/vtkButterflySubdivisionFilter.h include/paraview-%%VERMAJORMINOR%%/vtkButtonSource.h include/paraview-%%VERMAJORMINOR%%/vtkByteSwap.h @@ -1016,6 +1080,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkCellDerivatives.h include/paraview-%%VERMAJORMINOR%%/vtkCellIntegrator.h include/paraview-%%VERMAJORMINOR%%/vtkCellLinks.h include/paraview-%%VERMAJORMINOR%%/vtkCellLocator.h +include/paraview-%%VERMAJORMINOR%%/vtkCellLocatorInterpolatedVelocityField.h include/paraview-%%VERMAJORMINOR%%/vtkCellPicker.h include/paraview-%%VERMAJORMINOR%%/vtkCellType.h include/paraview-%%VERMAJORMINOR%%/vtkCellTypes.h @@ -1024,6 +1089,10 @@ include/paraview-%%VERMAJORMINOR%%/vtkCenteredSliderWidget.h include/paraview-%%VERMAJORMINOR%%/vtkChacoGraphReader.h include/paraview-%%VERMAJORMINOR%%/vtkChacoReader.h include/paraview-%%VERMAJORMINOR%%/vtkCharArray.h +include/paraview-%%VERMAJORMINOR%%/vtkChart.h +include/paraview-%%VERMAJORMINOR%%/vtkChartLegend.h +include/paraview-%%VERMAJORMINOR%%/vtkChartParallelCoordinates.h +include/paraview-%%VERMAJORMINOR%%/vtkChartXY.h include/paraview-%%VERMAJORMINOR%%/vtkCheckerboardRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkCheckerboardWidget.h include/paraview-%%VERMAJORMINOR%%/vtkChooserPainter.h @@ -1031,6 +1100,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkCircularLayoutStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkCleanArrays.h include/paraview-%%VERMAJORMINOR%%/vtkCleanPolyData.h include/paraview-%%VERMAJORMINOR%%/vtkCleanUnstructuredGrid.h +include/paraview-%%VERMAJORMINOR%%/vtkClearZPass.h include/paraview-%%VERMAJORMINOR%%/vtkClientConnection.h include/paraview-%%VERMAJORMINOR%%/vtkClientServerConfigure.h include/paraview-%%VERMAJORMINOR%%/vtkClientServerID.h @@ -1038,6 +1108,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkClientServerInterpreter.h include/paraview-%%VERMAJORMINOR%%/vtkClientServerMoveData.h include/paraview-%%VERMAJORMINOR%%/vtkClientServerStream.h include/paraview-%%VERMAJORMINOR%%/vtkClientSocket.h +include/paraview-%%VERMAJORMINOR%%/vtkClipConvexPolyData.h include/paraview-%%VERMAJORMINOR%%/vtkClipDataSet.h include/paraview-%%VERMAJORMINOR%%/vtkClipHyperOctree.h include/paraview-%%VERMAJORMINOR%%/vtkClipPlanesPainter.h @@ -1048,11 +1119,15 @@ include/paraview-%%VERMAJORMINOR%%/vtkClustering2DLayoutStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkCoincidentPoints.h include/paraview-%%VERMAJORMINOR%%/vtkCoincidentTopologyResolutionPainter.h include/paraview-%%VERMAJORMINOR%%/vtkCollapseGraph.h +include/paraview-%%VERMAJORMINOR%%/vtkCollapseVerticesByArray.h include/paraview-%%VERMAJORMINOR%%/vtkCollectGraph.h include/paraview-%%VERMAJORMINOR%%/vtkCollectPolyData.h include/paraview-%%VERMAJORMINOR%%/vtkCollectTable.h include/paraview-%%VERMAJORMINOR%%/vtkCollection.h include/paraview-%%VERMAJORMINOR%%/vtkCollectionIterator.h +include/paraview-%%VERMAJORMINOR%%/vtkColor.h +include/paraview-%%VERMAJORMINOR%%/vtkColorMaterialHelper.h +include/paraview-%%VERMAJORMINOR%%/vtkColorSeries.h include/paraview-%%VERMAJORMINOR%%/vtkColorTransferFunction.h include/paraview-%%VERMAJORMINOR%%/vtkCommand.h include/paraview-%%VERMAJORMINOR%%/vtkCommandOptions.h @@ -1075,9 +1150,13 @@ include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataToUnstructuredGridFilter.h include/paraview-%%VERMAJORMINOR%%/vtkCompositePainter.h include/paraview-%%VERMAJORMINOR%%/vtkCompositePolyDataMapper.h include/paraview-%%VERMAJORMINOR%%/vtkCompositePolyDataMapper2.h +include/paraview-%%VERMAJORMINOR%%/vtkCompositeRGBAPass.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeRenderManager.h +include/paraview-%%VERMAJORMINOR%%/vtkCompositeZPass.h include/paraview-%%VERMAJORMINOR%%/vtkCompositer.h include/paraview-%%VERMAJORMINOR%%/vtkCompressCompositer.h +include/paraview-%%VERMAJORMINOR%%/vtkComputeHistogram2DOutliers.h +include/paraview-%%VERMAJORMINOR%%/vtkComputingResources.h include/paraview-%%VERMAJORMINOR%%/vtkConditionVariable.h include/paraview-%%VERMAJORMINOR%%/vtkCone.h include/paraview-%%VERMAJORMINOR%%/vtkConeLayoutStrategy.h @@ -1088,6 +1167,14 @@ include/paraview-%%VERMAJORMINOR%%/vtkConnectivityFilter.h include/paraview-%%VERMAJORMINOR%%/vtkConstrained2DLayoutStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkConstrainedPointHandleRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkContainer.h +include/paraview-%%VERMAJORMINOR%%/vtkContext2D.h +include/paraview-%%VERMAJORMINOR%%/vtkContextActor.h +include/paraview-%%VERMAJORMINOR%%/vtkContextBufferId.h +include/paraview-%%VERMAJORMINOR%%/vtkContextDevice2D.h +include/paraview-%%VERMAJORMINOR%%/vtkContextItem.h +include/paraview-%%VERMAJORMINOR%%/vtkContextMapper2D.h +include/paraview-%%VERMAJORMINOR%%/vtkContextScene.h +include/paraview-%%VERMAJORMINOR%%/vtkContextView.h include/paraview-%%VERMAJORMINOR%%/vtkContingencyStatistics.h include/paraview-%%VERMAJORMINOR%%/vtkContinuousValueWidget.h include/paraview-%%VERMAJORMINOR%%/vtkContinuousValueWidgetRepresentation.h @@ -1104,11 +1191,11 @@ include/paraview-%%VERMAJORMINOR%%/vtkCoordinate.h include/paraview-%%VERMAJORMINOR%%/vtkCornerAnnotation.h include/paraview-%%VERMAJORMINOR%%/vtkCorrelativeStatistics.h include/paraview-%%VERMAJORMINOR%%/vtkCosmicTreeLayoutStrategy.h -include/paraview-%%VERMAJORMINOR%%/vtkCosmoReader.h include/paraview-%%VERMAJORMINOR%%/vtkCriticalSection.h include/paraview-%%VERMAJORMINOR%%/vtkCubeAxesActor.h include/paraview-%%VERMAJORMINOR%%/vtkCubeAxesActor2D.h include/paraview-%%VERMAJORMINOR%%/vtkCubeSource.h +include/paraview-%%VERMAJORMINOR%%/vtkCubicLine.h include/paraview-%%VERMAJORMINOR%%/vtkCuller.h include/paraview-%%VERMAJORMINOR%%/vtkCullerCollection.h include/paraview-%%VERMAJORMINOR%%/vtkCursor2D.h @@ -1149,6 +1236,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkDataSetAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetAttributes.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetCollection.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetEdgeSubdivisionCriterion.h +include/paraview-%%VERMAJORMINOR%%/vtkDataSetGradient.h +include/paraview-%%VERMAJORMINOR%%/vtkDataSetGradientPrecompute.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetMapper.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetReader.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetSource.h @@ -1163,6 +1252,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkDataSetToStructuredPointsFilter.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetToUnstructuredGridFilter.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetTriangleFilter.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetWriter.h +include/paraview-%%VERMAJORMINOR%%/vtkDataTransferHelper.h include/paraview-%%VERMAJORMINOR%%/vtkDataWriter.h include/paraview-%%VERMAJORMINOR%%/vtkDebugLeaks.h include/paraview-%%VERMAJORMINOR%%/vtkDebugLeaksManager.h @@ -1173,12 +1263,15 @@ include/paraview-%%VERMAJORMINOR%%/vtkDefaultPass.h include/paraview-%%VERMAJORMINOR%%/vtkDelaunay2D.h include/paraview-%%VERMAJORMINOR%%/vtkDelaunay3D.h include/paraview-%%VERMAJORMINOR%%/vtkDelimitedTextReader.h +include/paraview-%%VERMAJORMINOR%%/vtkDelimitedTextWriter.h include/paraview-%%VERMAJORMINOR%%/vtkDemandDrivenPipeline.h +include/paraview-%%VERMAJORMINOR%%/vtkDensifyPolyData.h include/paraview-%%VERMAJORMINOR%%/vtkDepthPeelingPass.h include/paraview-%%VERMAJORMINOR%%/vtkDepthSortPolyData.h include/paraview-%%VERMAJORMINOR%%/vtkDescriptiveStatistics.h include/paraview-%%VERMAJORMINOR%%/vtkDesktopDeliveryClient.h include/paraview-%%VERMAJORMINOR%%/vtkDesktopDeliveryServer.h +include/paraview-%%VERMAJORMINOR%%/vtkDiagonalMatrixSource.h include/paraview-%%VERMAJORMINOR%%/vtkDicer.h include/paraview-%%VERMAJORMINOR%%/vtkDijkstraGraphGeodesicPath.h include/paraview-%%VERMAJORMINOR%%/vtkDijkstraImageContourLineInterpolator.h @@ -1189,6 +1282,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkDirectedGraphAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkDirectionEncoder.h include/paraview-%%VERMAJORMINOR%%/vtkDirectory.h include/paraview-%%VERMAJORMINOR%%/vtkDiscreteMarchingCubes.h +include/paraview-%%VERMAJORMINOR%%/vtkDiscretizableColorTransferFunction.h include/paraview-%%VERMAJORMINOR%%/vtkDiskSource.h include/paraview-%%VERMAJORMINOR%%/vtkDisplayListPainter.h include/paraview-%%VERMAJORMINOR%%/vtkDistanceRepresentation.h @@ -1198,9 +1292,11 @@ include/paraview-%%VERMAJORMINOR%%/vtkDistanceWidget.h include/paraview-%%VERMAJORMINOR%%/vtkDistributedDataFilter.h include/paraview-%%VERMAJORMINOR%%/vtkDistributedGraphHelper.h include/paraview-%%VERMAJORMINOR%%/vtkDistributedStreamTracer.h +include/paraview-%%VERMAJORMINOR%%/vtkDotProductSimilarity.h include/paraview-%%VERMAJORMINOR%%/vtkDoubleArray.h include/paraview-%%VERMAJORMINOR%%/vtkDummyCommunicator.h include/paraview-%%VERMAJORMINOR%%/vtkDummyController.h +include/paraview-%%VERMAJORMINOR%%/vtkDummyGPUInfoList.h include/paraview-%%VERMAJORMINOR%%/vtkDummyProcessModuleHelper.h include/paraview-%%VERMAJORMINOR%%/vtkDuplicatePolyData.h include/paraview-%%VERMAJORMINOR%%/vtkDynamic2DLabelMapper.h @@ -1217,24 +1313,35 @@ include/paraview-%%VERMAJORMINOR%%/vtkElevationFilter.h include/paraview-%%VERMAJORMINOR%%/vtkEllipsoidTensorProbeRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkEllipticalButtonSource.h include/paraview-%%VERMAJORMINOR%%/vtkEmptyCell.h +include/paraview-%%VERMAJORMINOR%%/vtkEmptyRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkEnSight6BinaryReader.h +include/paraview-%%VERMAJORMINOR%%/vtkEnSight6BinaryReader2.h include/paraview-%%VERMAJORMINOR%%/vtkEnSight6Reader.h +include/paraview-%%VERMAJORMINOR%%/vtkEnSight6Reader2.h include/paraview-%%VERMAJORMINOR%%/vtkEnSightGoldBinaryReader.h +include/paraview-%%VERMAJORMINOR%%/vtkEnSightGoldBinaryReader2.h include/paraview-%%VERMAJORMINOR%%/vtkEnSightGoldReader.h +include/paraview-%%VERMAJORMINOR%%/vtkEnSightGoldReader2.h include/paraview-%%VERMAJORMINOR%%/vtkEnSightMasterServerReader.h include/paraview-%%VERMAJORMINOR%%/vtkEnSightReader.h +include/paraview-%%VERMAJORMINOR%%/vtkEnSightReader2.h include/paraview-%%VERMAJORMINOR%%/vtkEnSightWriter.h include/paraview-%%VERMAJORMINOR%%/vtkEncodedGradientEstimator.h include/paraview-%%VERMAJORMINOR%%/vtkEncodedGradientShader.h +include/paraview-%%VERMAJORMINOR%%/vtkEnzoReader.h +include/paraview-%%VERMAJORMINOR%%/vtkEquivalenceSet.h include/paraview-%%VERMAJORMINOR%%/vtkErrorCode.h include/paraview-%%VERMAJORMINOR%%/vtkEvent.h include/paraview-%%VERMAJORMINOR%%/vtkEventForwarderCommand.h include/paraview-%%VERMAJORMINOR%%/vtkEventQtSlotConnect.h +include/paraview-%%VERMAJORMINOR%%/vtkExecutionScheduler.h include/paraview-%%VERMAJORMINOR%%/vtkExecutive.h +include/paraview-%%VERMAJORMINOR%%/vtkExecutiveCollection.h include/paraview-%%VERMAJORMINOR%%/vtkExodusFileSeriesReader.h include/paraview-%%VERMAJORMINOR%%/vtkExodusIICache.h include/paraview-%%VERMAJORMINOR%%/vtkExodusIIReader.h include/paraview-%%VERMAJORMINOR%%/vtkExodusIIReaderParser.h +include/paraview-%%VERMAJORMINOR%%/vtkExodusIIReaderVariableCheck.h include/paraview-%%VERMAJORMINOR%%/vtkExodusIIWriter.h include/paraview-%%VERMAJORMINOR%%/vtkExodusModel.h include/paraview-%%VERMAJORMINOR%%/vtkExodusReader.h @@ -1243,6 +1350,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkExplicitCell.h include/paraview-%%VERMAJORMINOR%%/vtkExporter.h include/paraview-%%VERMAJORMINOR%%/vtkExtentSplitter.h include/paraview-%%VERMAJORMINOR%%/vtkExtentTranslator.h +include/paraview-%%VERMAJORMINOR%%/vtkExtractArray.h include/paraview-%%VERMAJORMINOR%%/vtkExtractArraysOverTime.h include/paraview-%%VERMAJORMINOR%%/vtkExtractBlock.h include/paraview-%%VERMAJORMINOR%%/vtkExtractCTHPart.h @@ -1253,6 +1361,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkExtractEdges.h include/paraview-%%VERMAJORMINOR%%/vtkExtractGeometry.h include/paraview-%%VERMAJORMINOR%%/vtkExtractGrid.h include/paraview-%%VERMAJORMINOR%%/vtkExtractHistogram.h +include/paraview-%%VERMAJORMINOR%%/vtkExtractHistogram2D.h include/paraview-%%VERMAJORMINOR%%/vtkExtractLevel.h include/paraview-%%VERMAJORMINOR%%/vtkExtractPiece.h include/paraview-%%VERMAJORMINOR%%/vtkExtractPolyDataGeometry.h @@ -1265,6 +1374,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkExtractSelectedGraph.h include/paraview-%%VERMAJORMINOR%%/vtkExtractSelectedIds.h include/paraview-%%VERMAJORMINOR%%/vtkExtractSelectedLocations.h include/paraview-%%VERMAJORMINOR%%/vtkExtractSelectedPolyDataIds.h +include/paraview-%%VERMAJORMINOR%%/vtkExtractSelectedRows.h include/paraview-%%VERMAJORMINOR%%/vtkExtractSelectedThresholds.h include/paraview-%%VERMAJORMINOR%%/vtkExtractSelection.h include/paraview-%%VERMAJORMINOR%%/vtkExtractSelectionBase.h @@ -1276,6 +1386,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkExtractUserDefinedPiece.h include/paraview-%%VERMAJORMINOR%%/vtkExtractVOI.h include/paraview-%%VERMAJORMINOR%%/vtkExtractVectorComponents.h include/paraview-%%VERMAJORMINOR%%/vtkFLUENTReader.h +include/paraview-%%VERMAJORMINOR%%/vtkFaceHash.h include/paraview-%%VERMAJORMINOR%%/vtkFacetReader.h include/paraview-%%VERMAJORMINOR%%/vtkFacetWriter.h include/paraview-%%VERMAJORMINOR%%/vtkFast2DLayoutStrategy.h @@ -1286,6 +1397,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkFieldData.h include/paraview-%%VERMAJORMINOR%%/vtkFieldDataToAttributeDataFilter.h include/paraview-%%VERMAJORMINOR%%/vtkFileOutputWindow.h include/paraview-%%VERMAJORMINOR%%/vtkFileSeriesReader.h +include/paraview-%%VERMAJORMINOR%%/vtkFileSeriesWriter.h include/paraview-%%VERMAJORMINOR%%/vtkFillHolesFilter.h include/paraview-%%VERMAJORMINOR%%/vtkFilteringInformationKeyManager.h include/paraview-%%VERMAJORMINOR%%/vtkFilteringInstantiator.h @@ -1299,6 +1411,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkFixedPointVolumeRayCastHelper.h include/paraview-%%VERMAJORMINOR%%/vtkFixedPointVolumeRayCastMIPHelper.h include/paraview-%%VERMAJORMINOR%%/vtkFixedPointVolumeRayCastMapper.h include/paraview-%%VERMAJORMINOR%%/vtkFixedWidthTextReader.h +include/paraview-%%VERMAJORMINOR%%/vtkFlashContour.h +include/paraview-%%VERMAJORMINOR%%/vtkFlashReader.h include/paraview-%%VERMAJORMINOR%%/vtkFloatArray.h include/paraview-%%VERMAJORMINOR%%/vtkFloatingPointExceptions.h include/paraview-%%VERMAJORMINOR%%/vtkFocalPlaneContourRepresentation.h @@ -1306,6 +1420,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkFocalPlanePointPlacer.h include/paraview-%%VERMAJORMINOR%%/vtkFollower.h include/paraview-%%VERMAJORMINOR%%/vtkForceDirectedLayoutStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkFrameBufferObject.h +include/paraview-%%VERMAJORMINOR%%/vtkFreeTypeLabelRenderStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkFreeTypeUtilities.h include/paraview-%%VERMAJORMINOR%%/vtkFrustumCoverageCuller.h include/paraview-%%VERMAJORMINOR%%/vtkFrustumSource.h @@ -1317,10 +1432,14 @@ include/paraview-%%VERMAJORMINOR%%/vtkGLSLShader.h include/paraview-%%VERMAJORMINOR%%/vtkGLSLShaderDeviceAdapter.h include/paraview-%%VERMAJORMINOR%%/vtkGLSLShaderDeviceAdapter2.h include/paraview-%%VERMAJORMINOR%%/vtkGLSLShaderProgram.h +include/paraview-%%VERMAJORMINOR%%/vtkGPUInfo.h +include/paraview-%%VERMAJORMINOR%%/vtkGPUInfoList.h +include/paraview-%%VERMAJORMINOR%%/vtkGPUVolumeRayCastMapper.h include/paraview-%%VERMAJORMINOR%%/vtkGarbageCollector.h include/paraview-%%VERMAJORMINOR%%/vtkGarbageCollectorManager.h include/paraview-%%VERMAJORMINOR%%/vtkGaussianBlurPass.h include/paraview-%%VERMAJORMINOR%%/vtkGaussianCubeReader.h +include/paraview-%%VERMAJORMINOR%%/vtkGaussianRandomSequence.h include/paraview-%%VERMAJORMINOR%%/vtkGaussianSplatter.h include/paraview-%%VERMAJORMINOR%%/vtkGeneralTransform.h include/paraview-%%VERMAJORMINOR%%/vtkGenerateIndexArray.h @@ -1340,6 +1459,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkGenericDataSetAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkGenericDataSetTessellator.h include/paraview-%%VERMAJORMINOR%%/vtkGenericEdgeTable.h include/paraview-%%VERMAJORMINOR%%/vtkGenericEnSightReader.h +include/paraview-%%VERMAJORMINOR%%/vtkGenericEnSightReader2.h include/paraview-%%VERMAJORMINOR%%/vtkGenericFilteringInstantiator.h include/paraview-%%VERMAJORMINOR%%/vtkGenericGeometryFilter.h include/paraview-%%VERMAJORMINOR%%/vtkGenericGlyph3DFilter.h @@ -1365,7 +1485,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkGeoGlobeSource.h include/paraview-%%VERMAJORMINOR%%/vtkGeoGraticule.h include/paraview-%%VERMAJORMINOR%%/vtkGeoImageNode.h include/paraview-%%VERMAJORMINOR%%/vtkGeoInteractorStyle.h -include/paraview-%%VERMAJORMINOR%%/vtkGeoLineRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkGeoMath.h include/paraview-%%VERMAJORMINOR%%/vtkGeoProjection.h include/paraview-%%VERMAJORMINOR%%/vtkGeoProjectionSource.h @@ -1411,6 +1530,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkGraphWriter.h include/paraview-%%VERMAJORMINOR%%/vtkGraphicsFactory.h include/paraview-%%VERMAJORMINOR%%/vtkGraphicsInstantiator.h include/paraview-%%VERMAJORMINOR%%/vtkGreedyTerrainDecimation.h +include/paraview-%%VERMAJORMINOR%%/vtkGridConnectivity.h include/paraview-%%VERMAJORMINOR%%/vtkGridSynchronizedTemplates3D.h include/paraview-%%VERMAJORMINOR%%/vtkGridTransform.h include/paraview-%%VERMAJORMINOR%%/vtkGroupLeafVertices.h @@ -1510,6 +1630,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkImageCorrelation.h include/paraview-%%VERMAJORMINOR%%/vtkImageCursor3D.h include/paraview-%%VERMAJORMINOR%%/vtkImageData.h include/paraview-%%VERMAJORMINOR%%/vtkImageDataGeometryFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkImageDataLIC2D.h +include/paraview-%%VERMAJORMINOR%%/vtkImageDataLIC2DExtentTranslator.h include/paraview-%%VERMAJORMINOR%%/vtkImageDataStreamer.h include/paraview-%%VERMAJORMINOR%%/vtkImageDecomposeFilter.h include/paraview-%%VERMAJORMINOR%%/vtkImageDifference.h @@ -1539,6 +1661,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkImageImport.h include/paraview-%%VERMAJORMINOR%%/vtkImageImportExecutive.h include/paraview-%%VERMAJORMINOR%%/vtkImageInPlaceFilter.h include/paraview-%%VERMAJORMINOR%%/vtkImageIslandRemoval2D.h +include/paraview-%%VERMAJORMINOR%%/vtkImageItem.h include/paraview-%%VERMAJORMINOR%%/vtkImageIterateFilter.h include/paraview-%%VERMAJORMINOR%%/vtkImageIterator.h include/paraview-%%VERMAJORMINOR%%/vtkImageIterator.txx @@ -1569,6 +1692,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkImageOrthoPlanes.h include/paraview-%%VERMAJORMINOR%%/vtkImagePadFilter.h include/paraview-%%VERMAJORMINOR%%/vtkImagePermute.h include/paraview-%%VERMAJORMINOR%%/vtkImagePlaneWidget.h +include/paraview-%%VERMAJORMINOR%%/vtkImageProcessingPass.h include/paraview-%%VERMAJORMINOR%%/vtkImageProgressIterator.h include/paraview-%%VERMAJORMINOR%%/vtkImageProgressIterator.txx include/paraview-%%VERMAJORMINOR%%/vtkImageQuantizeRGBToIndex.h @@ -1581,6 +1705,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkImageReader2.h include/paraview-%%VERMAJORMINOR%%/vtkImageReader2Collection.h include/paraview-%%VERMAJORMINOR%%/vtkImageReader2Factory.h include/paraview-%%VERMAJORMINOR%%/vtkImageRectilinearWipe.h +include/paraview-%%VERMAJORMINOR%%/vtkImageRenderManager.h include/paraview-%%VERMAJORMINOR%%/vtkImageResample.h include/paraview-%%VERMAJORMINOR%%/vtkImageReslice.h include/paraview-%%VERMAJORMINOR%%/vtkImageSeedConnectivity.h @@ -1631,6 +1756,9 @@ include/paraview-%%VERMAJORMINOR%%/vtkImplicitVolume.h include/paraview-%%VERMAJORMINOR%%/vtkImplicitWindowFunction.h include/paraview-%%VERMAJORMINOR%%/vtkImporter.h include/paraview-%%VERMAJORMINOR%%/vtkInEdgeIterator.h +include/paraview-%%VERMAJORMINOR%%/vtkIncrementalOctreeNode.h +include/paraview-%%VERMAJORMINOR%%/vtkIncrementalOctreePointLocator.h +include/paraview-%%VERMAJORMINOR%%/vtkIncrementalPointLocator.h include/paraview-%%VERMAJORMINOR%%/vtkIndent.h include/paraview-%%VERMAJORMINOR%%/vtkInformation.h include/paraview-%%VERMAJORMINOR%%/vtkInformationDataObjectKey.h @@ -1690,6 +1818,10 @@ include/paraview-%%VERMAJORMINOR%%/vtkInterpolatingSubdivisionFilter.h include/paraview-%%VERMAJORMINOR%%/vtkIterativeClosestPointTransform.h include/paraview-%%VERMAJORMINOR%%/vtkJPEGReader.h include/paraview-%%VERMAJORMINOR%%/vtkJPEGWriter.h +include/paraview-%%VERMAJORMINOR%%/vtkJavaScriptDataWriter.h +include/paraview-%%VERMAJORMINOR%%/vtkKMeansDistanceFunctor.h +include/paraview-%%VERMAJORMINOR%%/vtkKMeansDistanceFunctorCalculator.h +include/paraview-%%VERMAJORMINOR%%/vtkKMeansStatistics.h include/paraview-%%VERMAJORMINOR%%/vtkKWProcessStatistics.h include/paraview-%%VERMAJORMINOR%%/vtkKWRemoteExecute.h include/paraview-%%VERMAJORMINOR%%/vtkKdNode.h @@ -1704,8 +1836,11 @@ include/paraview-%%VERMAJORMINOR%%/vtkLODProp3D.h include/paraview-%%VERMAJORMINOR%%/vtkLSDynaReader.h include/paraview-%%VERMAJORMINOR%%/vtkLabelHierarchy.h include/paraview-%%VERMAJORMINOR%%/vtkLabelHierarchyAlgorithm.h +include/paraview-%%VERMAJORMINOR%%/vtkLabelHierarchyCompositeIterator.h include/paraview-%%VERMAJORMINOR%%/vtkLabelHierarchyIterator.h +include/paraview-%%VERMAJORMINOR%%/vtkLabelPlacementMapper.h include/paraview-%%VERMAJORMINOR%%/vtkLabelPlacer.h +include/paraview-%%VERMAJORMINOR%%/vtkLabelRenderStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkLabelSizeCalculator.h include/paraview-%%VERMAJORMINOR%%/vtkLabeledDataMapper.h include/paraview-%%VERMAJORMINOR%%/vtkLabeledTreeMapDataMapper.h @@ -1719,13 +1854,16 @@ include/paraview-%%VERMAJORMINOR%%/vtkLight.h include/paraview-%%VERMAJORMINOR%%/vtkLightActor.h include/paraview-%%VERMAJORMINOR%%/vtkLightCollection.h include/paraview-%%VERMAJORMINOR%%/vtkLightKit.h +include/paraview-%%VERMAJORMINOR%%/vtkLightingHelper.h include/paraview-%%VERMAJORMINOR%%/vtkLightingPainter.h include/paraview-%%VERMAJORMINOR%%/vtkLightsPass.h include/paraview-%%VERMAJORMINOR%%/vtkLine.h +include/paraview-%%VERMAJORMINOR%%/vtkLineIntegralConvolution2D.h include/paraview-%%VERMAJORMINOR%%/vtkLineRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkLineSource.h include/paraview-%%VERMAJORMINOR%%/vtkLineWidget.h include/paraview-%%VERMAJORMINOR%%/vtkLineWidget2.h +include/paraview-%%VERMAJORMINOR%%/vtkLinearContourLineInterpolator.h include/paraview-%%VERMAJORMINOR%%/vtkLinearExtrusionFilter.h include/paraview-%%VERMAJORMINOR%%/vtkLinearSubdivisionFilter.h include/paraview-%%VERMAJORMINOR%%/vtkLinearTransform.h @@ -1752,10 +1890,12 @@ include/paraview-%%VERMAJORMINOR%%/vtkMINCImageAttributes.h include/paraview-%%VERMAJORMINOR%%/vtkMINCImageReader.h include/paraview-%%VERMAJORMINOR%%/vtkMINCImageWriter.h include/paraview-%%VERMAJORMINOR%%/vtkMPICompositeManager.h +include/paraview-%%VERMAJORMINOR%%/vtkMPIImageReader.h include/paraview-%%VERMAJORMINOR%%/vtkMPIMToNSocketConnection.h include/paraview-%%VERMAJORMINOR%%/vtkMPIMToNSocketConnectionPortInformation.h include/paraview-%%VERMAJORMINOR%%/vtkMPIMoveData.h include/paraview-%%VERMAJORMINOR%%/vtkMPISelfConnection.h +include/paraview-%%VERMAJORMINOR%%/vtkMapArrayValues.h include/paraview-%%VERMAJORMINOR%%/vtkMapper.h include/paraview-%%VERMAJORMINOR%%/vtkMapper2D.h include/paraview-%%VERMAJORMINOR%%/vtkMapperCollection.h @@ -1768,6 +1908,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkMaskPolyData.h include/paraview-%%VERMAJORMINOR%%/vtkMassProperties.h include/paraview-%%VERMAJORMINOR%%/vtkMaterialLibrary.h include/paraview-%%VERMAJORMINOR%%/vtkMath.h +include/paraview-%%VERMAJORMINOR%%/vtkMatricizeArray.h +include/paraview-%%VERMAJORMINOR%%/vtkMatrix3x3.h include/paraview-%%VERMAJORMINOR%%/vtkMatrix4x4.h include/paraview-%%VERMAJORMINOR%%/vtkMatrixToHomogeneousTransform.h include/paraview-%%VERMAJORMINOR%%/vtkMatrixToLinearTransform.h @@ -1778,16 +1920,20 @@ include/paraview-%%VERMAJORMINOR%%/vtkMemoryLimitImageDataStreamer.h include/paraview-%%VERMAJORMINOR%%/vtkMergeArrays.h include/paraview-%%VERMAJORMINOR%%/vtkMergeCells.h include/paraview-%%VERMAJORMINOR%%/vtkMergeColumns.h +include/paraview-%%VERMAJORMINOR%%/vtkMergeCompositeDataSet.h include/paraview-%%VERMAJORMINOR%%/vtkMergeDataObjectFilter.h include/paraview-%%VERMAJORMINOR%%/vtkMergeFields.h include/paraview-%%VERMAJORMINOR%%/vtkMergeFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkMergeGraphs.h include/paraview-%%VERMAJORMINOR%%/vtkMergePoints.h include/paraview-%%VERMAJORMINOR%%/vtkMergeTables.h include/paraview-%%VERMAJORMINOR%%/vtkMeshQuality.h include/paraview-%%VERMAJORMINOR%%/vtkMetaImageReader.h include/paraview-%%VERMAJORMINOR%%/vtkMetaImageWriter.h include/paraview-%%VERMAJORMINOR%%/vtkMinMax.h +include/paraview-%%VERMAJORMINOR%%/vtkMinimalStandardRandomSequence.h include/paraview-%%VERMAJORMINOR%%/vtkModelMetadata.h +include/paraview-%%VERMAJORMINOR%%/vtkModifiedBSPTree.h include/paraview-%%VERMAJORMINOR%%/vtkMoleculeReaderBase.h include/paraview-%%VERMAJORMINOR%%/vtkMultiBlockDataGroupFilter.h include/paraview-%%VERMAJORMINOR%%/vtkMultiBlockDataSet.h @@ -1795,9 +1941,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkMultiBlockDataSetAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkMultiBlockMergeFilter.h include/paraview-%%VERMAJORMINOR%%/vtkMultiBlockPLOT3DReader.h include/paraview-%%VERMAJORMINOR%%/vtkMultiCorrelativeStatistics.h -include/paraview-%%VERMAJORMINOR%%/vtkMultiGroupDataExtractDataSets.h -include/paraview-%%VERMAJORMINOR%%/vtkMultiGroupDataExtractGroup.h -include/paraview-%%VERMAJORMINOR%%/vtkMultiGroupDataGroupIdScalars.h include/paraview-%%VERMAJORMINOR%%/vtkMultiPieceDataSet.h include/paraview-%%VERMAJORMINOR%%/vtkMultiProcessController.h include/paraview-%%VERMAJORMINOR%%/vtkMultiProcessControllerHelper.h @@ -1809,11 +1952,14 @@ include/paraview-%%VERMAJORMINOR%%/vtkMutableDirectedGraph.h include/paraview-%%VERMAJORMINOR%%/vtkMutableGraphHelper.h include/paraview-%%VERMAJORMINOR%%/vtkMutableUndirectedGraph.h include/paraview-%%VERMAJORMINOR%%/vtkMutexLock.h -include/paraview-%%VERMAJORMINOR%%/vtkNetCDFCOARDSReader.h +include/paraview-%%VERMAJORMINOR%%/vtkNetCDFCFReader.h +include/paraview-%%VERMAJORMINOR%%/vtkNetCDFPOPReader.h include/paraview-%%VERMAJORMINOR%%/vtkNetCDFReader.h include/paraview-%%VERMAJORMINOR%%/vtkNetworkHierarchy.h include/paraview-%%VERMAJORMINOR%%/vtkNetworkImageSource.h include/paraview-%%VERMAJORMINOR%%/vtkNonLinearCell.h +include/paraview-%%VERMAJORMINOR%%/vtkNonMergingPointLocator.h +include/paraview-%%VERMAJORMINOR%%/vtkNormalizeMatrixVectors.h include/paraview-%%VERMAJORMINOR%%/vtkOBBDicer.h include/paraview-%%VERMAJORMINOR%%/vtkOBBTree.h include/paraview-%%VERMAJORMINOR%%/vtkOBJExporter.h @@ -1826,6 +1972,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkObjectBase.h include/paraview-%%VERMAJORMINOR%%/vtkObjectFactory.h include/paraview-%%VERMAJORMINOR%%/vtkObjectFactoryCollection.h include/paraview-%%VERMAJORMINOR%%/vtkObserverMediator.h +include/paraview-%%VERMAJORMINOR%%/vtkOctreePointLocator.h +include/paraview-%%VERMAJORMINOR%%/vtkOctreePointLocatorNode.h include/paraview-%%VERMAJORMINOR%%/vtkOldStyleCallbackCommand.h include/paraview-%%VERMAJORMINOR%%/vtkOnePieceExtentTranslator.h include/paraview-%%VERMAJORMINOR%%/vtkOpaquePass.h @@ -1835,9 +1983,11 @@ include/paraview-%%VERMAJORMINOR%%/vtkOpenGLActor.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLCamera.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLClipPlanesPainter.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLCoincidentTopologyResolutionPainter.h +include/paraview-%%VERMAJORMINOR%%/vtkOpenGLContextDevice2D.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLDisplayListPainter.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLExtensionManager.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLFreeTypeTextMapper.h +include/paraview-%%VERMAJORMINOR%%/vtkOpenGLGPUVolumeRayCastMapper.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLHAVSVolumeMapper.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLHardwareSupport.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLImageActor.h @@ -1854,6 +2004,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkOpenGLRenderWindow.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLRenderer.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLRepresentationPainter.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLScalarsToColorsPainter.h +include/paraview-%%VERMAJORMINOR%%/vtkOpenGLState.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLTexture.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLVolumeTextureMapper2D.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLVolumeTextureMapper3D.h @@ -1863,6 +2014,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkOrderedTriangulator.h include/paraview-%%VERMAJORMINOR%%/vtkOrientationMarkerWidget.h include/paraview-%%VERMAJORMINOR%%/vtkOrientedGlyphContourRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkOrientedGlyphFocalPlaneContourRepresentation.h +include/paraview-%%VERMAJORMINOR%%/vtkOrientedPolygonalHandleRepresentation3D.h include/paraview-%%VERMAJORMINOR%%/vtkOutEdgeIterator.h include/paraview-%%VERMAJORMINOR%%/vtkOutlineCornerFilter.h include/paraview-%%VERMAJORMINOR%%/vtkOutlineCornerSource.h @@ -1873,23 +2025,32 @@ include/paraview-%%VERMAJORMINOR%%/vtkOutputWindow.h include/paraview-%%VERMAJORMINOR%%/vtkOverlayPass.h include/paraview-%%VERMAJORMINOR%%/vtkOverrideInformation.h include/paraview-%%VERMAJORMINOR%%/vtkOverrideInformationCollection.h +include/paraview-%%VERMAJORMINOR%%/vtkPBivariateLinearTableThreshold.h include/paraview-%%VERMAJORMINOR%%/vtkPCAAnalysisFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPCAStatistics.h include/paraview-%%VERMAJORMINOR%%/vtkPCSVWriter.h include/paraview-%%VERMAJORMINOR%%/vtkPCellDataToPointData.h include/paraview-%%VERMAJORMINOR%%/vtkPChacoReader.h +include/paraview-%%VERMAJORMINOR%%/vtkPComputeHistogram2DOutliers.h include/paraview-%%VERMAJORMINOR%%/vtkPContingencyStatistics.h include/paraview-%%VERMAJORMINOR%%/vtkPConvertSelection.h include/paraview-%%VERMAJORMINOR%%/vtkPCorrelativeStatistics.h +include/paraview-%%VERMAJORMINOR%%/vtkPCosmoHaloFinder.h +include/paraview-%%VERMAJORMINOR%%/vtkPCosmoReader.h include/paraview-%%VERMAJORMINOR%%/vtkPDBReader.h include/paraview-%%VERMAJORMINOR%%/vtkPDataSetReader.h include/paraview-%%VERMAJORMINOR%%/vtkPDataSetWriter.h include/paraview-%%VERMAJORMINOR%%/vtkPDescriptiveStatistics.h +include/paraview-%%VERMAJORMINOR%%/vtkPEnSightGoldBinaryReader2.h +include/paraview-%%VERMAJORMINOR%%/vtkPEnSightGoldReader2.h +include/paraview-%%VERMAJORMINOR%%/vtkPEnSightReader2.h include/paraview-%%VERMAJORMINOR%%/vtkPExodusIIReader.h include/paraview-%%VERMAJORMINOR%%/vtkPExodusReader.h include/paraview-%%VERMAJORMINOR%%/vtkPExtractArraysOverTime.h include/paraview-%%VERMAJORMINOR%%/vtkPExtractHistogram.h +include/paraview-%%VERMAJORMINOR%%/vtkPExtractHistogram2D.h include/paraview-%%VERMAJORMINOR%%/vtkPImageWriter.h +include/paraview-%%VERMAJORMINOR%%/vtkPKMeansStatistics.h include/paraview-%%VERMAJORMINOR%%/vtkPKdTree.h include/paraview-%%VERMAJORMINOR%%/vtkPLOT3DReader.h include/paraview-%%VERMAJORMINOR%%/vtkPLY.h @@ -1901,21 +2062,30 @@ include/paraview-%%VERMAJORMINOR%%/vtkPNGReader.h include/paraview-%%VERMAJORMINOR%%/vtkPNGWriter.h include/paraview-%%VERMAJORMINOR%%/vtkPNMReader.h include/paraview-%%VERMAJORMINOR%%/vtkPNMWriter.h +include/paraview-%%VERMAJORMINOR%%/vtkPNrrdReader.h include/paraview-%%VERMAJORMINOR%%/vtkPOPReader.h include/paraview-%%VERMAJORMINOR%%/vtkPOVExporter.h +include/paraview-%%VERMAJORMINOR%%/vtkPOpenFOAMReader.h include/paraview-%%VERMAJORMINOR%%/vtkPOutlineCornerFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPOutlineFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPPCAStatistics.h +include/paraview-%%VERMAJORMINOR%%/vtkPPairwiseExtractHistogram2D.h include/paraview-%%VERMAJORMINOR%%/vtkPPhastaReader.h include/paraview-%%VERMAJORMINOR%%/vtkPPolyDataNormals.h include/paraview-%%VERMAJORMINOR%%/vtkPProbeFilter.h -include/paraview-%%VERMAJORMINOR%%/vtkPQConfig.h include/paraview-%%VERMAJORMINOR%%/vtkPReflectionFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkPSLACReader.h +include/paraview-%%VERMAJORMINOR%%/vtkPSciVizContingencyStats.h +include/paraview-%%VERMAJORMINOR%%/vtkPSciVizDescriptiveStats.h +include/paraview-%%VERMAJORMINOR%%/vtkPSciVizKMeans.h +include/paraview-%%VERMAJORMINOR%%/vtkPSciVizMultiCorrelativeStats.h +include/paraview-%%VERMAJORMINOR%%/vtkPSciVizPCAStats.h include/paraview-%%VERMAJORMINOR%%/vtkPSphereSource.h include/paraview-%%VERMAJORMINOR%%/vtkPStreamTracer.h include/paraview-%%VERMAJORMINOR%%/vtkPTableToStructuredGrid.h include/paraview-%%VERMAJORMINOR%%/vtkPVAlgorithmPortsInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVAnimationScene.h +include/paraview-%%VERMAJORMINOR%%/vtkPVArrayCalculator.h include/paraview-%%VERMAJORMINOR%%/vtkPVArrayInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVArrowSource.h include/paraview-%%VERMAJORMINOR%%/vtkPVAxesActor.h @@ -1930,6 +2100,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVClientServerRenderManager.h include/paraview-%%VERMAJORMINOR%%/vtkPVClipDataSet.h include/paraview-%%VERMAJORMINOR%%/vtkPVCompositeDataInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVCompositeDataInformationIterator.h +include/paraview-%%VERMAJORMINOR%%/vtkPVConfig.h include/paraview-%%VERMAJORMINOR%%/vtkPVConnectivityFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPVCreateProcessModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVDReader.h @@ -1940,6 +2111,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVDesktopDeliveryClient.h include/paraview-%%VERMAJORMINOR%%/vtkPVDesktopDeliveryServer.h include/paraview-%%VERMAJORMINOR%%/vtkPVDisplayInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVEnSightMasterServerReader.h +include/paraview-%%VERMAJORMINOR%%/vtkPVEnSightMasterServerReader2.h include/paraview-%%VERMAJORMINOR%%/vtkPVEnSightMasterServerTranslator.h include/paraview-%%VERMAJORMINOR%%/vtkPVEnvironmentInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVEnvironmentInformationHelper.h @@ -1949,6 +2121,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVExtractVOI.h include/paraview-%%VERMAJORMINOR%%/vtkPVFileInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVFileInformationHelper.h include/paraview-%%VERMAJORMINOR%%/vtkPVFiltersConfig.h +include/paraview-%%VERMAJORMINOR%%/vtkPVGUIPluginInterface.h include/paraview-%%VERMAJORMINOR%%/vtkPVGenericAttributeInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVGenericRenderWindowInteractor.h include/paraview-%%VERMAJORMINOR%%/vtkPVGeometryFilter.h @@ -1964,7 +2137,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVJoystickFlyOut.h include/paraview-%%VERMAJORMINOR%%/vtkPVLODActor.h include/paraview-%%VERMAJORMINOR%%/vtkPVLODVolume.h include/paraview-%%VERMAJORMINOR%%/vtkPVLinearExtrusionFilter.h -include/paraview-%%VERMAJORMINOR%%/vtkPVLookupTable.h include/paraview-%%VERMAJORMINOR%%/vtkPVMPICommunicator.h include/paraview-%%VERMAJORMINOR%%/vtkPVMain.h include/paraview-%%VERMAJORMINOR%%/vtkPVMergeTables.h @@ -1973,10 +2145,13 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVOpenGLExtensionsInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVOptions.h include/paraview-%%VERMAJORMINOR%%/vtkPVOptionsXMLParser.h include/paraview-%%VERMAJORMINOR%%/vtkPVPaths.h +include/paraview-%%VERMAJORMINOR%%/vtkPVPlugin.h +include/paraview-%%VERMAJORMINOR%%/vtkPVPluginInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVPluginLoader.h include/paraview-%%VERMAJORMINOR%%/vtkPVProcessModuleBatchHelper.h include/paraview-%%VERMAJORMINOR%%/vtkPVProgressHandler.h include/paraview-%%VERMAJORMINOR%%/vtkPVPythonModule.h +include/paraview-%%VERMAJORMINOR%%/vtkPVPythonPluginInterface.h include/paraview-%%VERMAJORMINOR%%/vtkPVRenderViewProxy.h include/paraview-%%VERMAJORMINOR%%/vtkPVSILInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVScalarBarActor.h @@ -1986,15 +2161,15 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVServerArrayHelper.h include/paraview-%%VERMAJORMINOR%%/vtkPVServerArraySelection.h include/paraview-%%VERMAJORMINOR%%/vtkPVServerFileListing.h include/paraview-%%VERMAJORMINOR%%/vtkPVServerInformation.h +include/paraview-%%VERMAJORMINOR%%/vtkPVServerManagerPluginInterface.h include/paraview-%%VERMAJORMINOR%%/vtkPVServerObject.h include/paraview-%%VERMAJORMINOR%%/vtkPVServerOptions.h include/paraview-%%VERMAJORMINOR%%/vtkPVServerOptionsInternals.h include/paraview-%%VERMAJORMINOR%%/vtkPVServerSelectTimeSet.h include/paraview-%%VERMAJORMINOR%%/vtkPVServerSocket.h include/paraview-%%VERMAJORMINOR%%/vtkPVServerTimeSteps.h -include/paraview-%%VERMAJORMINOR%%/vtkPVServerXDMFParameters.h include/paraview-%%VERMAJORMINOR%%/vtkPVStringArrayHelper.h -include/paraview-%%VERMAJORMINOR%%/vtkPVSummaryHelper.h +include/paraview-%%VERMAJORMINOR%%/vtkPVTemporalDataInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVTestUtilities.h include/paraview-%%VERMAJORMINOR%%/vtkPVTextSource.h include/paraview-%%VERMAJORMINOR%%/vtkPVTimerInformation.h @@ -2004,16 +2179,19 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVTrackballPan.h include/paraview-%%VERMAJORMINOR%%/vtkPVTrackballRoll.h include/paraview-%%VERMAJORMINOR%%/vtkPVTrackballRotate.h include/paraview-%%VERMAJORMINOR%%/vtkPVTrackballZoom.h -include/paraview-%%VERMAJORMINOR%%/vtkPVTrivialExtentTranslator.h -include/paraview-%%VERMAJORMINOR%%/vtkPVTrivialProducer.h include/paraview-%%VERMAJORMINOR%%/vtkPVUpdateSuppressor.h include/paraview-%%VERMAJORMINOR%%/vtkPVXMLElement.h include/paraview-%%VERMAJORMINOR%%/vtkPVXMLParser.h include/paraview-%%VERMAJORMINOR%%/vtkPainter.h include/paraview-%%VERMAJORMINOR%%/vtkPainterDeviceAdapter.h include/paraview-%%VERMAJORMINOR%%/vtkPainterPolyDataMapper.h +include/paraview-%%VERMAJORMINOR%%/vtkPairwiseExtractHistogram2D.h include/paraview-%%VERMAJORMINOR%%/vtkParaViewIncludeModulesToSMApplication.h include/paraview-%%VERMAJORMINOR%%/vtkParallelCoordinatesActor.h +include/paraview-%%VERMAJORMINOR%%/vtkParallelCoordinatesHistogramRepresentation.h +include/paraview-%%VERMAJORMINOR%%/vtkParallelCoordinatesInteractorStyle.h +include/paraview-%%VERMAJORMINOR%%/vtkParallelCoordinatesRepresentation.h +include/paraview-%%VERMAJORMINOR%%/vtkParallelCoordinatesView.h include/paraview-%%VERMAJORMINOR%%/vtkParallelFactory.h include/paraview-%%VERMAJORMINOR%%/vtkParallelInstantiator.h include/paraview-%%VERMAJORMINOR%%/vtkParallelRenderManager.h @@ -2037,12 +2215,15 @@ include/paraview-%%VERMAJORMINOR%%/vtkParametricSpline.h include/paraview-%%VERMAJORMINOR%%/vtkParametricSuperEllipsoid.h include/paraview-%%VERMAJORMINOR%%/vtkParametricSuperToroid.h include/paraview-%%VERMAJORMINOR%%/vtkParametricTorus.h +include/paraview-%%VERMAJORMINOR%%/vtkParse.h include/paraview-%%VERMAJORMINOR%%/vtkParticleReader.h +include/paraview-%%VERMAJORMINOR%%/vtkPassArrays.h include/paraview-%%VERMAJORMINOR%%/vtkPassInputTypeAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkPassThrough.h include/paraview-%%VERMAJORMINOR%%/vtkPassThroughEdgeStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkPassThroughFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPassThroughLayoutStrategy.h +include/paraview-%%VERMAJORMINOR%%/vtkPen.h include/paraview-%%VERMAJORMINOR%%/vtkPentagonalPrism.h include/paraview-%%VERMAJORMINOR%%/vtkPerlinNoise.h include/paraview-%%VERMAJORMINOR%%/vtkPerspectiveTransform.h @@ -2067,6 +2248,13 @@ include/paraview-%%VERMAJORMINOR%%/vtkPlanesIntersection.h include/paraview-%%VERMAJORMINOR%%/vtkPlatonicSolidSource.h include/paraview-%%VERMAJORMINOR%%/vtkPlaybackRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkPlaybackWidget.h +include/paraview-%%VERMAJORMINOR%%/vtkPlot.h +include/paraview-%%VERMAJORMINOR%%/vtkPlotBar.h +include/paraview-%%VERMAJORMINOR%%/vtkPlotEdges.h +include/paraview-%%VERMAJORMINOR%%/vtkPlotGrid.h +include/paraview-%%VERMAJORMINOR%%/vtkPlotLine.h +include/paraview-%%VERMAJORMINOR%%/vtkPlotParallelCoordinates.h +include/paraview-%%VERMAJORMINOR%%/vtkPlotPoints.h include/paraview-%%VERMAJORMINOR%%/vtkPointData.h include/paraview-%%VERMAJORMINOR%%/vtkPointDataToCellData.h include/paraview-%%VERMAJORMINOR%%/vtkPointHandleRepresentation2D.h @@ -2084,6 +2272,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPointSetToPointSetFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPointSource.h include/paraview-%%VERMAJORMINOR%%/vtkPointWidget.h include/paraview-%%VERMAJORMINOR%%/vtkPoints.h +include/paraview-%%VERMAJORMINOR%%/vtkPoints2D.h include/paraview-%%VERMAJORMINOR%%/vtkPointsPainter.h include/paraview-%%VERMAJORMINOR%%/vtkPointsProjectedHull.h include/paraview-%%VERMAJORMINOR%%/vtkPolyData.h @@ -2098,6 +2287,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPolyDataPainter.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataPointPlacer.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataPointSampler.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataReader.h +include/paraview-%%VERMAJORMINOR%%/vtkPolyDataSilhouette.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataSource.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataSourceWidget.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataStreamer.h @@ -2119,6 +2309,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPriorityHelper.h include/paraview-%%VERMAJORMINOR%%/vtkPriorityQueue.h include/paraview-%%VERMAJORMINOR%%/vtkProbeFilter.h include/paraview-%%VERMAJORMINOR%%/vtkProbeSelectedLocations.h +include/paraview-%%VERMAJORMINOR%%/vtkProcess.h include/paraview-%%VERMAJORMINOR%%/vtkProcessGroup.h include/paraview-%%VERMAJORMINOR%%/vtkProcessIdScalars.h include/paraview-%%VERMAJORMINOR%%/vtkProcessModule.h @@ -2149,33 +2340,61 @@ include/paraview-%%VERMAJORMINOR%%/vtkPyramid.h include/paraview-%%VERMAJORMINOR%%/vtkPythonCalculator.h include/paraview-%%VERMAJORMINOR%%/vtkPythonProgrammableFilter.h include/paraview-%%VERMAJORMINOR%%/vtkQImageToImageSource.h +include/paraview-%%VERMAJORMINOR%%/vtkQtAbstractModelAdapter.h +include/paraview-%%VERMAJORMINOR%%/vtkQtAnnotationLayersModelAdapter.h +include/paraview-%%VERMAJORMINOR%%/vtkQtAnnotationView.h include/paraview-%%VERMAJORMINOR%%/vtkQtBarChart.h include/paraview-%%VERMAJORMINOR%%/vtkQtBarChartOptions.h +include/paraview-%%VERMAJORMINOR%%/vtkQtBarChartView.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartArea.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartAxis.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartAxisCornerDomain.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartAxisDomain.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartAxisDomainPriority.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartAxisLayer.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartAxisModel.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartAxisOptions.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartBar.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartBarLocator.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartBasicSeriesOptionsModel.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartBasicStyleManager.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartBrushGenerator.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartColorGenerator.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartColorStyleGenerator.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartColors.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartContentsArea.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartContentsSpace.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartExport.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartGraphicsItemTypes.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartGridLayer.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartHelpFormatter.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartIndexRangeList.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartInteractor.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartInteractorSetup.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartKeyboardFunction.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartKeyboardHistory.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartKeyboardPan.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartKeyboardZoom.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartLayer.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartLayerDomain.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartLegend.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartLegendManager.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartLegendModel.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartMouseBox.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartMouseFunction.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartMousePan.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartMouseSelection.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartMouseSelectionHandler.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartMouseZoom.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartNamedSeriesOptionsModel.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartPenGenerator.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartQuad.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartRepresentation.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartScene.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesColors.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesDomain.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesDomainGroup.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesHueRange.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesLayer.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesModel.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesModelCollection.h @@ -2183,29 +2402,50 @@ include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesModelRange.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesOptions.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesOptionsModel.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesOptionsModelCollection.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesSelection.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesSelectionHandler.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesSelectionModel.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartShape.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartShapeLocator.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleAxesCorner.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleBoolean.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleBrush.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleManager.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleMarker.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartStylePen.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleRegistry.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleSeriesColors.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleSize.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartTableSeriesModel.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartTitle.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartView.h include/paraview-%%VERMAJORMINOR%%/vtkQtChartWidget.h -include/paraview-%%VERMAJORMINOR%%/vtkQtLabelMapper.h -include/paraview-%%VERMAJORMINOR%%/vtkQtLabelSizeCalculator.h -include/paraview-%%VERMAJORMINOR%%/vtkQtLabelSurface.h +include/paraview-%%VERMAJORMINOR%%/vtkQtChartZoomHistory.h +include/paraview-%%VERMAJORMINOR%%/vtkQtConnection.h +include/paraview-%%VERMAJORMINOR%%/vtkQtInitialization.h +include/paraview-%%VERMAJORMINOR%%/vtkQtLabelRenderStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkQtLineChart.h include/paraview-%%VERMAJORMINOR%%/vtkQtLineChartOptions.h +include/paraview-%%VERMAJORMINOR%%/vtkQtLineChartView.h +include/paraview-%%VERMAJORMINOR%%/vtkQtListView.h +include/paraview-%%VERMAJORMINOR%%/vtkQtPointMarker.h +include/paraview-%%VERMAJORMINOR%%/vtkQtPolylineItem.h +include/paraview-%%VERMAJORMINOR%%/vtkQtRecordView.h +include/paraview-%%VERMAJORMINOR%%/vtkQtRichTextView.h include/paraview-%%VERMAJORMINOR%%/vtkQtSeriesFilterLineEdit.h include/paraview-%%VERMAJORMINOR%%/vtkQtStackedChart.h include/paraview-%%VERMAJORMINOR%%/vtkQtStackedChartOptions.h +include/paraview-%%VERMAJORMINOR%%/vtkQtStackedChartView.h include/paraview-%%VERMAJORMINOR%%/vtkQtStatisticalBoxChart.h include/paraview-%%VERMAJORMINOR%%/vtkQtStatisticalBoxChartOptions.h +include/paraview-%%VERMAJORMINOR%%/vtkQtStatisticalBoxChartView.h +include/paraview-%%VERMAJORMINOR%%/vtkQtTableModelAdapter.h +include/paraview-%%VERMAJORMINOR%%/vtkQtTableRepresentation.h +include/paraview-%%VERMAJORMINOR%%/vtkQtTableView.h +include/paraview-%%VERMAJORMINOR%%/vtkQtTreeModelAdapter.h include/paraview-%%VERMAJORMINOR%%/vtkQtTreeRingLabelMapper.h +include/paraview-%%VERMAJORMINOR%%/vtkQtTreeView.h +include/paraview-%%VERMAJORMINOR%%/vtkQtView.h include/paraview-%%VERMAJORMINOR%%/vtkQuad.h include/paraview-%%VERMAJORMINOR%%/vtkQuadraticEdge.h include/paraview-%%VERMAJORMINOR%%/vtkQuadraticHexahedron.h @@ -2226,6 +2466,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkQuadricDecimation.h include/paraview-%%VERMAJORMINOR%%/vtkQuadricLODActor.h include/paraview-%%VERMAJORMINOR%%/vtkQuantizePolyDataPoints.h include/paraview-%%VERMAJORMINOR%%/vtkQuaternionInterpolator.h +include/paraview-%%VERMAJORMINOR%%/vtkQuerySelectionSource.h include/paraview-%%VERMAJORMINOR%%/vtkQueue.h include/paraview-%%VERMAJORMINOR%%/vtkQueue.txx include/paraview-%%VERMAJORMINOR%%/vtkQueueIterator.h @@ -2239,6 +2480,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkRTXMLPolyDataReader.h include/paraview-%%VERMAJORMINOR%%/vtkRandomAttributeGenerator.h include/paraview-%%VERMAJORMINOR%%/vtkRandomGraphSource.h include/paraview-%%VERMAJORMINOR%%/vtkRandomLayoutStrategy.h +include/paraview-%%VERMAJORMINOR%%/vtkRandomSequence.h include/paraview-%%VERMAJORMINOR%%/vtkRayCastImageDisplayHelper.h include/paraview-%%VERMAJORMINOR%%/vtkRealtimeAnimationPlayer.h include/paraview-%%VERMAJORMINOR%%/vtkRearrangeFields.h @@ -2246,6 +2488,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkRectangularButtonSource.h include/paraview-%%VERMAJORMINOR%%/vtkRectilinearGrid.h include/paraview-%%VERMAJORMINOR%%/vtkRectilinearGridAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkRectilinearGridClip.h +include/paraview-%%VERMAJORMINOR%%/vtkRectilinearGridConnectivity.h include/paraview-%%VERMAJORMINOR%%/vtkRectilinearGridGeometryFilter.h include/paraview-%%VERMAJORMINOR%%/vtkRectilinearGridOutlineFilter.h include/paraview-%%VERMAJORMINOR%%/vtkRectilinearGridReader.h @@ -2265,6 +2508,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkReflectionFilter.h include/paraview-%%VERMAJORMINOR%%/vtkRegressionTestImage.h include/paraview-%%VERMAJORMINOR%%/vtkRegularPolygonSource.h include/paraview-%%VERMAJORMINOR%%/vtkRemoteConnection.h +include/paraview-%%VERMAJORMINOR%%/vtkRemoveHiddenData.h include/paraview-%%VERMAJORMINOR%%/vtkRemoveIsolatedVertices.h include/paraview-%%VERMAJORMINOR%%/vtkRenderLargeImage.h include/paraview-%%VERMAJORMINOR%%/vtkRenderPass.h @@ -2296,7 +2540,10 @@ include/paraview-%%VERMAJORMINOR%%/vtkRuledSurfaceFilter.h include/paraview-%%VERMAJORMINOR%%/vtkRungeKutta2.h include/paraview-%%VERMAJORMINOR%%/vtkRungeKutta4.h include/paraview-%%VERMAJORMINOR%%/vtkRungeKutta45.h +include/paraview-%%VERMAJORMINOR%%/vtkSCurveSpline.h include/paraview-%%VERMAJORMINOR%%/vtkSESAMEReader.h +include/paraview-%%VERMAJORMINOR%%/vtkSLACParticleReader.h +include/paraview-%%VERMAJORMINOR%%/vtkSLACReader.h include/paraview-%%VERMAJORMINOR%%/vtkSLCReader.h include/paraview-%%VERMAJORMINOR%%/vtkSMAnimationCueManipulatorProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMAnimationCueProxy.h @@ -2321,11 +2568,15 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMBoundsDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMBoxProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMBoxRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMCSVExporterProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkSMCameraConfigurationFileInfo.h +include/paraview-%%VERMAJORMINOR%%/vtkSMCameraConfigurationReader.h +include/paraview-%%VERMAJORMINOR%%/vtkSMCameraConfigurationWriter.h include/paraview-%%VERMAJORMINOR%%/vtkSMCameraKeyFrameProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMCameraLink.h include/paraview-%%VERMAJORMINOR%%/vtkSMCameraManipulatorProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMCameraProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMCaveRenderModuleProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkSMCaveRenderViewProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMChartNamedOptionsModelProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMChartOptionsProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMChartRepresentationProxy.h @@ -2335,12 +2586,16 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMClientDeliveryRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMClientDeliveryStrategyProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMClientServerRenderSyncManagerHelper.h include/paraview-%%VERMAJORMINOR%%/vtkSMClientServerRenderViewProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkSMComparativeAnimationCueProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMComparativeViewProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMCompositeKeyFrameProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMCompositeTreeDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMCompoundProxyDefinitionLoader.h include/paraview-%%VERMAJORMINOR%%/vtkSMCompoundSourceProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMConnectionCleanerProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkSMContextArraysInformationHelper.h +include/paraview-%%VERMAJORMINOR%%/vtkSMContextNamedOptionsProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkSMContextViewProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMCubeAxesRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMDataLabelRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMDataRepresentationProxy.h @@ -2393,22 +2648,23 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMLookupTableProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMMaterialLoaderProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMMultiDisplayProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMMultiProcessRenderView.h +include/paraview-%%VERMAJORMINOR%%/vtkSMNamedPropertyIterator.h include/paraview-%%VERMAJORMINOR%%/vtkSMNetworkImageSourceProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMNewWidgetRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMNullProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMNumberOfComponentsDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMNumberOfGroupsDomain.h -include/paraview-%%VERMAJORMINOR%%/vtkSMNumberOfPartsDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMObject.h include/paraview-%%VERMAJORMINOR%%/vtkSMOrderedPropertyIterator.h include/paraview-%%VERMAJORMINOR%%/vtkSMOutlineRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMOutputPort.h include/paraview-%%VERMAJORMINOR%%/vtkSMPQStateLoader.h include/paraview-%%VERMAJORMINOR%%/vtkSMPSWriterProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMPVDWriterProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMPVLookupTableProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMPVRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMPWriterProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkSMPluginManager.h +include/paraview-%%VERMAJORMINOR%%/vtkSMPluginProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMPropRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMProperty.h include/paraview-%%VERMAJORMINOR%%/vtkSMPropertyAdaptor.h @@ -2417,8 +2673,10 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMPropertyInternals.h include/paraview-%%VERMAJORMINOR%%/vtkSMPropertyIterator.h include/paraview-%%VERMAJORMINOR%%/vtkSMPropertyLink.h include/paraview-%%VERMAJORMINOR%%/vtkSMPropertyModificationUndoElement.h -include/paraview-%%VERMAJORMINOR%%/vtkSMPropertyStatusManager.h include/paraview-%%VERMAJORMINOR%%/vtkSMProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkSMProxyConfigurationFileInfo.h +include/paraview-%%VERMAJORMINOR%%/vtkSMProxyConfigurationReader.h +include/paraview-%%VERMAJORMINOR%%/vtkSMProxyConfigurationWriter.h include/paraview-%%VERMAJORMINOR%%/vtkSMProxyDefinitionIterator.h include/paraview-%%VERMAJORMINOR%%/vtkSMProxyGroupDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMProxyInternals.h @@ -2427,14 +2685,16 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMProxyLink.h include/paraview-%%VERMAJORMINOR%%/vtkSMProxyListDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMProxyLocator.h include/paraview-%%VERMAJORMINOR%%/vtkSMProxyManager.h -include/paraview-%%VERMAJORMINOR%%/vtkSMProxyManagerExtension.h include/paraview-%%VERMAJORMINOR%%/vtkSMProxyManagerInternals.h include/paraview-%%VERMAJORMINOR%%/vtkSMProxyManagerReviver.h include/paraview-%%VERMAJORMINOR%%/vtkSMProxyProperty.h include/paraview-%%VERMAJORMINOR%%/vtkSMProxyRegisterUndoElement.h include/paraview-%%VERMAJORMINOR%%/vtkSMProxySelectionModel.h +include/paraview-%%VERMAJORMINOR%%/vtkSMProxyStateChangedUndoElement.h include/paraview-%%VERMAJORMINOR%%/vtkSMProxyUnRegisterUndoElement.h +include/paraview-%%VERMAJORMINOR%%/vtkSMPythonTraceObserver.h include/paraview-%%VERMAJORMINOR%%/vtkSMRampKeyFrameProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkSMReaderFactory.h include/paraview-%%VERMAJORMINOR%%/vtkSMRenderViewExporterProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMRenderViewHelper.h include/paraview-%%VERMAJORMINOR%%/vtkSMRenderViewProxy.h @@ -2447,10 +2707,11 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMSILInformationHelper.h include/paraview-%%VERMAJORMINOR%%/vtkSMSILModel.h include/paraview-%%VERMAJORMINOR%%/vtkSMScalarBarActorProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMScalarBarWidgetRepresentationProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkSMScatterPlotArraysInformationHelper.h +include/paraview-%%VERMAJORMINOR%%/vtkSMScatterPlotRepresentationProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkSMScatterPlotViewProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMSelectionDeliveryRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMSelectionHelper.h -include/paraview-%%VERMAJORMINOR%%/vtkSMSelectionLink.h -include/paraview-%%VERMAJORMINOR%%/vtkSMSelectionLinkProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMSelectionRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMServerFileListingProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMServerProxyManagerReviver.h @@ -2472,7 +2733,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMStringListDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMStringListRangeDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMStringVectorProperty.h include/paraview-%%VERMAJORMINOR%%/vtkSMSubPropertyIterator.h -include/paraview-%%VERMAJORMINOR%%/vtkSMSummaryHelperProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMSurfaceRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMTesting.h include/paraview-%%VERMAJORMINOR%%/vtkSMTextSourceRepresentationProxy.h @@ -2498,12 +2758,12 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMUtilities.h include/paraview-%%VERMAJORMINOR%%/vtkSMVectorProperty.h include/paraview-%%VERMAJORMINOR%%/vtkSMViewProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMWidgetRepresentationProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkSMWriterFactory.h include/paraview-%%VERMAJORMINOR%%/vtkSMWriterProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMXDMFInformationHelper.h -include/paraview-%%VERMAJORMINOR%%/vtkSMXDMFPropertyDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMXMLPVAnimationWriterProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMXMLParser.h -include/paraview-%%VERMAJORMINOR%%/vtkSMXYPlotRepresentationProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkSMXYChartRepresentationProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkSMXYChartViewProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSQLDatabase.h include/paraview-%%VERMAJORMINOR%%/vtkSQLDatabaseGraphSource.h include/paraview-%%VERMAJORMINOR%%/vtkSQLDatabaseSchema.h @@ -2522,7 +2782,11 @@ include/paraview-%%VERMAJORMINOR%%/vtkScalarTree.h include/paraview-%%VERMAJORMINOR%%/vtkScalarsToColors.h include/paraview-%%VERMAJORMINOR%%/vtkScalarsToColorsPainter.h include/paraview-%%VERMAJORMINOR%%/vtkScaledTextActor.h +include/paraview-%%VERMAJORMINOR%%/vtkScatterPlotMapper.h +include/paraview-%%VERMAJORMINOR%%/vtkScatterPlotPainter.h include/paraview-%%VERMAJORMINOR%%/vtkScenePicker.h +include/paraview-%%VERMAJORMINOR%%/vtkSciVizStatistics.h +include/paraview-%%VERMAJORMINOR%%/vtkSciVizStatisticsPrivate.h include/paraview-%%VERMAJORMINOR%%/vtkSectorSource.h include/paraview-%%VERMAJORMINOR%%/vtkSeedRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkSeedWidget.h @@ -2532,7 +2796,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkSelectVisiblePoints.h include/paraview-%%VERMAJORMINOR%%/vtkSelection.h include/paraview-%%VERMAJORMINOR%%/vtkSelectionAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkSelectionConverter.h -include/paraview-%%VERMAJORMINOR%%/vtkSelectionLink.h include/paraview-%%VERMAJORMINOR%%/vtkSelectionNode.h include/paraview-%%VERMAJORMINOR%%/vtkSelectionSerializer.h include/paraview-%%VERMAJORMINOR%%/vtkSelectionSource.h @@ -2558,6 +2821,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkShrinkPolyData.h include/paraview-%%VERMAJORMINOR%%/vtkSignedCharArray.h include/paraview-%%VERMAJORMINOR%%/vtkSiloReader.h include/paraview-%%VERMAJORMINOR%%/vtkSimple2DLayoutStrategy.h +include/paraview-%%VERMAJORMINOR%%/vtkSimple3DCirclesStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkSimpleCellTessellator.h include/paraview-%%VERMAJORMINOR%%/vtkSimpleElevationFilter.h include/paraview-%%VERMAJORMINOR%%/vtkSimpleImageFilterExample.h @@ -2583,6 +2847,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkSortDataArray.h include/paraview-%%VERMAJORMINOR%%/vtkSortFileNames.h include/paraview-%%VERMAJORMINOR%%/vtkSource.h include/paraview-%%VERMAJORMINOR%%/vtkSpanTreeLayoutStrategy.h +include/paraview-%%VERMAJORMINOR%%/vtkSparseArrayToTable.h include/paraview-%%VERMAJORMINOR%%/vtkSpatialRepresentationFilter.h include/paraview-%%VERMAJORMINOR%%/vtkSphere.h include/paraview-%%VERMAJORMINOR%%/vtkSphereHandleRepresentation.h @@ -2601,6 +2866,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkSplineGraphEdges.h include/paraview-%%VERMAJORMINOR%%/vtkSplineRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkSplineWidget.h include/paraview-%%VERMAJORMINOR%%/vtkSplineWidget2.h +include/paraview-%%VERMAJORMINOR%%/vtkSplitColumnComponents.h include/paraview-%%VERMAJORMINOR%%/vtkSplitField.h include/paraview-%%VERMAJORMINOR%%/vtkSpyPlotBlock.h include/paraview-%%VERMAJORMINOR%%/vtkSpyPlotBlockIterator.h @@ -2615,6 +2881,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkStandardPolyDataPainter.h include/paraview-%%VERMAJORMINOR%%/vtkStatisticsAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkStdString.h include/paraview-%%VERMAJORMINOR%%/vtkStrahlerMetric.h +include/paraview-%%VERMAJORMINOR%%/vtkStreamGraph.h include/paraview-%%VERMAJORMINOR%%/vtkStreamLine.h include/paraview-%%VERMAJORMINOR%%/vtkStreamPoints.h include/paraview-%%VERMAJORMINOR%%/vtkStreamTracer.h @@ -2628,10 +2895,12 @@ include/paraview-%%VERMAJORMINOR%%/vtkStringToNumeric.h include/paraview-%%VERMAJORMINOR%%/vtkStringToTimePoint.h include/paraview-%%VERMAJORMINOR%%/vtkStripper.h include/paraview-%%VERMAJORMINOR%%/vtkStructuredData.h +include/paraview-%%VERMAJORMINOR%%/vtkStructuredExtent.h include/paraview-%%VERMAJORMINOR%%/vtkStructuredGrid.h include/paraview-%%VERMAJORMINOR%%/vtkStructuredGridAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkStructuredGridClip.h include/paraview-%%VERMAJORMINOR%%/vtkStructuredGridGeometryFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkStructuredGridLIC2D.h include/paraview-%%VERMAJORMINOR%%/vtkStructuredGridOutlineFilter.h include/paraview-%%VERMAJORMINOR%%/vtkStructuredGridReader.h include/paraview-%%VERMAJORMINOR%%/vtkStructuredGridSource.h @@ -2654,28 +2923,39 @@ include/paraview-%%VERMAJORMINOR%%/vtkSubPixelPositionEdgels.h include/paraview-%%VERMAJORMINOR%%/vtkSubdivideTetra.h include/paraview-%%VERMAJORMINOR%%/vtkSuperquadric.h include/paraview-%%VERMAJORMINOR%%/vtkSuperquadricSource.h +include/paraview-%%VERMAJORMINOR%%/vtkSurfaceLICDefaultPainter.h +include/paraview-%%VERMAJORMINOR%%/vtkSurfaceLICPainter.h include/paraview-%%VERMAJORMINOR%%/vtkSurfaceReconstructionFilter.h -include/paraview-%%VERMAJORMINOR%%/vtkSurfaceRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkSurfaceVectors.h include/paraview-%%VERMAJORMINOR%%/vtkSynchronizedTemplates2D.h include/paraview-%%VERMAJORMINOR%%/vtkSynchronizedTemplates3D.h include/paraview-%%VERMAJORMINOR%%/vtkSynchronizedTemplatesCutter3D.h include/paraview-%%VERMAJORMINOR%%/vtkSynchronousMPISelfConnection.h include/paraview-%%VERMAJORMINOR%%/vtkSystemIncludes.h +include/paraview-%%VERMAJORMINOR%%/vtkTDxConfigure.h +include/paraview-%%VERMAJORMINOR%%/vtkTDxInteractorStyle.h +include/paraview-%%VERMAJORMINOR%%/vtkTDxInteractorStyleCamera.h +include/paraview-%%VERMAJORMINOR%%/vtkTDxInteractorStyleSettings.h +include/paraview-%%VERMAJORMINOR%%/vtkTDxMotionEventInfo.h include/paraview-%%VERMAJORMINOR%%/vtkTIFFReader.h include/paraview-%%VERMAJORMINOR%%/vtkTIFFWriter.h include/paraview-%%VERMAJORMINOR%%/vtkTStripsPainter.h include/paraview-%%VERMAJORMINOR%%/vtkTable.h include/paraview-%%VERMAJORMINOR%%/vtkTableAlgorithm.h +include/paraview-%%VERMAJORMINOR%%/vtkTableBasedClipDataSet.h include/paraview-%%VERMAJORMINOR%%/vtkTableExtentTranslator.h include/paraview-%%VERMAJORMINOR%%/vtkTableFFT.h include/paraview-%%VERMAJORMINOR%%/vtkTableReader.h include/paraview-%%VERMAJORMINOR%%/vtkTableStreamer.h +include/paraview-%%VERMAJORMINOR%%/vtkTableToArray.h include/paraview-%%VERMAJORMINOR%%/vtkTableToGraph.h include/paraview-%%VERMAJORMINOR%%/vtkTableToPolyData.h +include/paraview-%%VERMAJORMINOR%%/vtkTableToSparseArray.h include/paraview-%%VERMAJORMINOR%%/vtkTableToStructuredGrid.h include/paraview-%%VERMAJORMINOR%%/vtkTableToTreeFilter.h include/paraview-%%VERMAJORMINOR%%/vtkTableWriter.h +include/paraview-%%VERMAJORMINOR%%/vtkTecplotReader.h +include/paraview-%%VERMAJORMINOR%%/vtkTemplateAliasMacro.h include/paraview-%%VERMAJORMINOR%%/vtkTemporalDataSet.h include/paraview-%%VERMAJORMINOR%%/vtkTemporalDataSetAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkTemporalDataSetCache.h @@ -2693,10 +2973,13 @@ include/paraview-%%VERMAJORMINOR%%/vtkTensorProbeRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkTensorProbeWidget.h include/paraview-%%VERMAJORMINOR%%/vtkTerrainContourLineInterpolator.h include/paraview-%%VERMAJORMINOR%%/vtkTerrainDataPointPlacer.h +include/paraview-%%VERMAJORMINOR%%/vtkTessellatedBoxSource.h include/paraview-%%VERMAJORMINOR%%/vtkTessellatorFilter.h include/paraview-%%VERMAJORMINOR%%/vtkTestDriver.h include/paraview-%%VERMAJORMINOR%%/vtkTestUtilities.h include/paraview-%%VERMAJORMINOR%%/vtkTesting.h +include/paraview-%%VERMAJORMINOR%%/vtkTestingInteractor.h +include/paraview-%%VERMAJORMINOR%%/vtkTestingObjectFactory.h include/paraview-%%VERMAJORMINOR%%/vtkTetra.h include/paraview-%%VERMAJORMINOR%%/vtkTextActor.h include/paraview-%%VERMAJORMINOR%%/vtkTextActor3D.h @@ -2717,6 +3000,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkTexturedSphereSource.h include/paraview-%%VERMAJORMINOR%%/vtkThinPlateSplineTransform.h include/paraview-%%VERMAJORMINOR%%/vtkThreadMessager.h include/paraview-%%VERMAJORMINOR%%/vtkThreadedImageAlgorithm.h +include/paraview-%%VERMAJORMINOR%%/vtkThreadedStreamingPipeline.h include/paraview-%%VERMAJORMINOR%%/vtkThreshold.h include/paraview-%%VERMAJORMINOR%%/vtkThresholdPoints.h include/paraview-%%VERMAJORMINOR%%/vtkThresholdTable.h @@ -2729,6 +3013,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkTimeToTextConvertor.h include/paraview-%%VERMAJORMINOR%%/vtkTimerLog.h include/paraview-%%VERMAJORMINOR%%/vtkTimestepsAnimationPlayer.h include/paraview-%%VERMAJORMINOR%%/vtkToolkits.h +include/paraview-%%VERMAJORMINOR%%/vtkTooltipItem.h include/paraview-%%VERMAJORMINOR%%/vtkTrackballPan.h include/paraview-%%VERMAJORMINOR%%/vtkTransferAttributes.h include/paraview-%%VERMAJORMINOR%%/vtkTransferFunctionEditorRepresentation.h @@ -2743,6 +3028,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkTransferFunctionEditorWidgetShapes2D.h include/paraview-%%VERMAJORMINOR%%/vtkTransferFunctionEditorWidgetSimple1D.h include/paraview-%%VERMAJORMINOR%%/vtkTransferFunctionViewer.h include/paraview-%%VERMAJORMINOR%%/vtkTransform.h +include/paraview-%%VERMAJORMINOR%%/vtkTransform2D.h include/paraview-%%VERMAJORMINOR%%/vtkTransformCollection.h include/paraview-%%VERMAJORMINOR%%/vtkTransformCoordinateSystems.h include/paraview-%%VERMAJORMINOR%%/vtkTransformFilter.h @@ -2756,6 +3042,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkTransmitPolyDataPiece.h include/paraview-%%VERMAJORMINOR%%/vtkTransmitRectilinearGridPiece.h include/paraview-%%VERMAJORMINOR%%/vtkTransmitStructuredGridPiece.h include/paraview-%%VERMAJORMINOR%%/vtkTransmitUnstructuredGridPiece.h +include/paraview-%%VERMAJORMINOR%%/vtkTransposeMatrix.h include/paraview-%%VERMAJORMINOR%%/vtkTree.h include/paraview-%%VERMAJORMINOR%%/vtkTreeAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkTreeAreaView.h @@ -2763,13 +3050,11 @@ include/paraview-%%VERMAJORMINOR%%/vtkTreeCompositer.h include/paraview-%%VERMAJORMINOR%%/vtkTreeDFSIterator.h include/paraview-%%VERMAJORMINOR%%/vtkTreeFieldAggregator.h include/paraview-%%VERMAJORMINOR%%/vtkTreeLayoutStrategy.h -include/paraview-%%VERMAJORMINOR%%/vtkTreeLayoutView.h include/paraview-%%VERMAJORMINOR%%/vtkTreeLevelsFilter.h include/paraview-%%VERMAJORMINOR%%/vtkTreeMapLayout.h include/paraview-%%VERMAJORMINOR%%/vtkTreeMapLayoutStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkTreeMapToPolyData.h include/paraview-%%VERMAJORMINOR%%/vtkTreeMapView.h -include/paraview-%%VERMAJORMINOR%%/vtkTreeMapViewer.h include/paraview-%%VERMAJORMINOR%%/vtkTreeOrbitLayoutStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkTreeReader.h include/paraview-%%VERMAJORMINOR%%/vtkTreeRingToPolyData.h @@ -2835,6 +3120,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridVolumeRayIntegrator.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridVolumeZSweepMapper.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridWriter.h include/paraview-%%VERMAJORMINOR%%/vtkUpdateSuppressorPipeline.h +include/paraview-%%VERMAJORMINOR%%/vtkVPICReader.h include/paraview-%%VERMAJORMINOR%%/vtkVRMLExporter.h include/paraview-%%VERMAJORMINOR%%/vtkVRMLImporter.h include/paraview-%%VERMAJORMINOR%%/vtkVRMLSource.h @@ -2867,6 +3153,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkVolume.h include/paraview-%%VERMAJORMINOR%%/vtkVolume16Reader.h include/paraview-%%VERMAJORMINOR%%/vtkVolumeCollection.h include/paraview-%%VERMAJORMINOR%%/vtkVolumeMapper.h +include/paraview-%%VERMAJORMINOR%%/vtkVolumeOutlineSource.h +include/paraview-%%VERMAJORMINOR%%/vtkVolumePicker.h include/paraview-%%VERMAJORMINOR%%/vtkVolumeProMapper.h include/paraview-%%VERMAJORMINOR%%/vtkVolumeProperty.h include/paraview-%%VERMAJORMINOR%%/vtkVolumeRayCastCompositeFunction.h @@ -2909,6 +3197,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkWidgetRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkWidgetSet.h include/paraview-%%VERMAJORMINOR%%/vtkWidgetsInstantiator.h include/paraview-%%VERMAJORMINOR%%/vtkWin32Header.h +include/paraview-%%VERMAJORMINOR%%/vtkWindBladeReader.h include/paraview-%%VERMAJORMINOR%%/vtkWindow.h include/paraview-%%VERMAJORMINOR%%/vtkWindowLevelLookupTable.h include/paraview-%%VERMAJORMINOR%%/vtkWindowToImageFilter.h @@ -2922,6 +3211,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkX3DExporterFIWriter.h include/paraview-%%VERMAJORMINOR%%/vtkX3DExporterWriter.h include/paraview-%%VERMAJORMINOR%%/vtkX3DExporterXMLWriter.h include/paraview-%%VERMAJORMINOR%%/vtkXGMLReader.h +include/paraview-%%VERMAJORMINOR%%/vtkXGPUInfoList.h include/paraview-%%VERMAJORMINOR%%/vtkXMLCollectionReader.h include/paraview-%%VERMAJORMINOR%%/vtkXMLCompositeDataReader.h include/paraview-%%VERMAJORMINOR%%/vtkXMLCompositeDataWriter.h @@ -2989,29 +3279,19 @@ include/paraview-%%VERMAJORMINOR%%/vtkXRenderWindowInteractor.h include/paraview-%%VERMAJORMINOR%%/vtkXYPlotActor.h include/paraview-%%VERMAJORMINOR%%/vtkXYPlotWidget.h include/paraview-%%VERMAJORMINOR%%/vtkXYZMolReader.h +include/paraview-%%VERMAJORMINOR%%/vtkYoungsMaterialInterface.h include/paraview-%%VERMAJORMINOR%%/vtkZLibDataCompressor.h +include/paraview-%%VERMAJORMINOR%%/vtkZlibImageCompressor.h include/paraview-%%VERMAJORMINOR%%/vtk_expat.h include/paraview-%%VERMAJORMINOR%%/vtk_freetype.h +include/paraview-%%VERMAJORMINOR%%/vtk_gl2ps.h include/paraview-%%VERMAJORMINOR%%/vtk_jpeg.h include/paraview-%%VERMAJORMINOR%%/vtk_libxml2.h +include/paraview-%%VERMAJORMINOR%%/vtk_oggtheora.h include/paraview-%%VERMAJORMINOR%%/vtk_png.h include/paraview-%%VERMAJORMINOR%%/vtk_tiff.h include/paraview-%%VERMAJORMINOR%%/vtk_zlib.h include/paraview-%%VERMAJORMINOR%%/vtkgl.h -include/paraview-%%VERMAJORMINOR%%/vtkSLACParticleReader.h -include/paraview-%%VERMAJORMINOR%%/vtkSLACReader.h -include/paraview-%%VERMAJORMINOR%%/vtkPSLACReader.h -include/paraview-%%VERMAJORMINOR%%/vtkKMeansStatistics.h -include/paraview-%%VERMAJORMINOR%%/vtkKMeansDistanceFunctor.h -include/paraview-%%VERMAJORMINOR%%/vtkPKMeansStatistics.h -include/paraview-%%VERMAJORMINOR%%/vtkPSciVizMultiCorrelativeStats.h -include/paraview-%%VERMAJORMINOR%%/vtkSciVizStatisticsPrivate.h -include/paraview-%%VERMAJORMINOR%%/vtkPSciVizDescriptiveStats.h -include/paraview-%%VERMAJORMINOR%%/vtkPSciVizContingencyStats.h -include/paraview-%%VERMAJORMINOR%%/vtkPSciVizKMeans.h -include/paraview-%%VERMAJORMINOR%%/vtkSciVizStatistics.h -include/paraview-%%VERMAJORMINOR%%/vtkPSciVizPCAStats.h -include/paraview-%%VERMAJORMINOR%%/vtkSMPythonTraceObserver.h include/paraview-%%VERMAJORMINOR%%/vtklibproj4/lib_proj.h include/paraview-%%VERMAJORMINOR%%/vtklibproj4/proj_config.h include/paraview-%%VERMAJORMINOR%%/vtklibxml2/libxml/DOCBparser.h @@ -3101,6 +3381,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkstd/deque include/paraview-%%VERMAJORMINOR%%/vtkstd/exception include/paraview-%%VERMAJORMINOR%%/vtkstd/functional include/paraview-%%VERMAJORMINOR%%/vtkstd/iterator +include/paraview-%%VERMAJORMINOR%%/vtkstd/limits include/paraview-%%VERMAJORMINOR%%/vtkstd/list include/paraview-%%VERMAJORMINOR%%/vtkstd/map include/paraview-%%VERMAJORMINOR%%/vtkstd/memory @@ -3122,6 +3403,7 @@ include/paraview-%%VERMAJORMINOR%%/vtksys/Directory.hxx include/paraview-%%VERMAJORMINOR%%/vtksys/DynamicLoader.hxx include/paraview-%%VERMAJORMINOR%%/vtksys/FundamentalType.h include/paraview-%%VERMAJORMINOR%%/vtksys/Glob.hxx +include/paraview-%%VERMAJORMINOR%%/vtksys/MD5.h include/paraview-%%VERMAJORMINOR%%/vtksys/Process.h include/paraview-%%VERMAJORMINOR%%/vtksys/RegularExpression.hxx include/paraview-%%VERMAJORMINOR%%/vtksys/SharedForward.h @@ -3157,167 +3439,73 @@ include/paraview-%%VERMAJORMINOR%%/vtksys/stl/string include/paraview-%%VERMAJORMINOR%%/vtksys/stl/string.hxx include/paraview-%%VERMAJORMINOR%%/vtksys/stl/utility include/paraview-%%VERMAJORMINOR%%/vtksys/stl/vector +lib/paraview-%%VERMAJORMINOR%%/.plugins lib/paraview-%%VERMAJORMINOR%%/CMake/FindMySQL.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/FindPackageHandleStandardArgs.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/FindPackageHandleStandardArgs2.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/FindPythonLibs.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/FindTCL.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewBranding.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewBrandingCPack.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewCPackOptions.cmake.in +lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewLibraryDepends.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewMacros.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewPlugins.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewUse.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/VTKVersionMacros.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/branded_paraview_initializer.cxx.in +lib/paraview-%%VERMAJORMINOR%%/CMake/branded_paraview_initializer.h.in +lib/paraview-%%VERMAJORMINOR%%/CMake/branded_paraview_main.cxx.in +lib/paraview-%%VERMAJORMINOR%%/CMake/branded_splash.png +lib/paraview-%%VERMAJORMINOR%%/CMake/pq3DWidgetImplementation.cxx.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pq3DWidgetImplementation.h.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqActionGroupImplementation.cxx.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqActionGroupImplementation.h.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqAutoStartImplementation.cxx.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqAutoStartImplementation.h.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqDisplayPanelDecoratorImplementation.cxx.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqDisplayPanelDecoratorImplementation.h.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqDisplayPanelImplementation.cxx.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqDisplayPanelImplementation.h.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqDockWindowImplementation.cxx.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqDockWindowImplementation.h.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqGraphLayoutStrategyImplementation.cxx.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqGraphLayoutStrategyImplementation.h.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqObjectPanelImplementation.cxx.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqObjectPanelImplementation.h.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqParaViewPlugin.cxx.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqParaViewPlugin.h.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqTreeLayoutStrategyImplementation.cxx.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqTreeLayoutStrategyImplementation.h.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqViewFrameActionGroupImplementation.cxx.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqViewFrameActionGroupImplementation.h.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqViewModuleImplementation.cxx.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqViewModuleImplementation.h.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqViewOptionsImplementation.cxx.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pqViewOptionsImplementation.h.in +lib/paraview-%%VERMAJORMINOR%%/CMake/pv-forward.c.in +lib/paraview-%%VERMAJORMINOR%%/CMake/vtkClientServer.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/vtkExportKit.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/vtkKit.cmake.in lib/paraview-%%VERMAJORMINOR%%/CMake/vtkMakeInstantiator.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/vtkMakeInstantiator.cxx.in lib/paraview-%%VERMAJORMINOR%%/CMake/vtkMakeInstantiator.h.in lib/paraview-%%VERMAJORMINOR%%/CMake/vtkTclTkMacros.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/vtkWrapClientServer.cmake +lib/paraview-%%VERMAJORMINOR%%/CMake/vtkWrapClientServer.cxx.in lib/paraview-%%VERMAJORMINOR%%/CMake/vtkWrapJava.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/vtkWrapPython.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/vtkWrapTcl.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/vtkWrapperInit.data.in -lib/paraview-%%VERMAJORMINOR%%/Documentation/3DView.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/3DViewTitleBarButtons.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/AboutDialog.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ActiveVariableControlsToolbar.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ActiveVariableSelection.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/AddPropertyLinkDialog.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/AfterSwapViews.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/Animation.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/AnimationInspector.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/AnimationToolbar.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/BeforeSwapViews.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/CMakeFiles/CMakeDirectoryInformation.cmake -lib/paraview-%%VERMAJORMINOR%%/Documentation/CMakeFiles/progress.marks -lib/paraview-%%VERMAJORMINOR%%/Documentation/CTestTestfile.cmake -lib/paraview-%%VERMAJORMINOR%%/Documentation/CalculatorButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/CameraControlsToolbar.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/CellData.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ChangeInput.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ChooseServerDialog.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ClipButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/CloseViewButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ColorEditor.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ColorLegend.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ColorLegendToolbarButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ColorOpacityEditor.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ColorScalePresets.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/CommonFiltersToolbar.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ComparativeView.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ConfigureNewServerDialog.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ConfigureServerCommandDialog.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ConfigureServerManualDialog.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ConnectButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ContourButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/CreateLookmarkDialog.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/CreateViewButtons.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/CurrentTimeControlsToolbar.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/CutButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/DisconnectButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/DisconnectDialog.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/DisconnectReconnectDialog.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/Display.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/DisplayColorByArray.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/DisplayColorSolid.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/DisplayStyle.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/DisplayTransformation.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/DisplayView.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/EditMenu.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/Exponential.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ExtendedHelp.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/ExtractGridButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/FileMenu.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/GUIOverview.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/GlyphButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/GroupDataSetsButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/HelpButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/HelpMenu.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/HistogramDisplayTab.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/HistogramView.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/Information.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/InformationTab.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/InteractButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/LabeledSelection.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/LinkManagerDialog.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/LookmarkBrowser.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/LookmarkButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/LookmarkInspector.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/Lookmarks.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/MainControlsToolbar.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/Makefile -lib/paraview-%%VERMAJORMINOR%%/Documentation/MaximizeViewButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ObjectInspector.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/OpenDataFileButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ParaViewBook_FrontCover_smaller.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ParaViewDoc.css -lib/paraview-%%VERMAJORMINOR%%/Documentation/ParaViewGUIOverview.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ParaViewLogo.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/PickCenterButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/PipelineBrowser.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/PipelineBrowser.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/PointData.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/Properties.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/PropertiesButtons.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/Ramp.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ReaderSelectionDialog.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/RedoButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/RedoCameraButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/RepresentationToolbar.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ResetCameraButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ResetCenterButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/RestoreViewButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/RightClickFilter.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/SaveDataFileButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/SelectCellsFrustumButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/SelectCellsSurfaceButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/SelectPointsFrustumButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/SelectPointsSurfaceButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/SelectionInspector.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/SelectionInspector.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/SelectionToolbar.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/SettingsGeneral.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ShowCenterButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/Sinusoidal.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/SplitViewHorizontalButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/SplitViewVerticalButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/SpreadsheetView.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/Step.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/StreamlinesButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ThresholdButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/TimeStepSpinBox.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/TimeValueEntry.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/TimerLog.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ToolsMenu.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/UndoButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/UndoCameraButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/UndoRedoToolbar.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/UngroupDataSetsButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/VCRBack.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/VCRFirst.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/VCRForward.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/VCRLast.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/VCRLoop.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/VCRPause.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/VCRPlay.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/View+XButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/View+YButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/View+ZButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/View-XButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/View-YButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/View-ZButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/ViewMenu.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/ViewTitleBarButtons.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/Views.html -lib/paraview-%%VERMAJORMINOR%%/Documentation/WarpVectorButton.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/XYPlotDisplayTab.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/XYPlotView.png -lib/paraview-%%VERMAJORMINOR%%/Documentation/cmake_install.cmake -lib/paraview-%%VERMAJORMINOR%%/Documentation/index.html lib/paraview-%%VERMAJORMINOR%%/KWCommonBuildSettings.cmake lib/paraview-%%VERMAJORMINOR%%/KWCommonConfig.cmake lib/paraview-%%VERMAJORMINOR%%/KWCommonLibraryDepends.cmake lib/paraview-%%VERMAJORMINOR%%/ParaViewConfig.cmake +lib/paraview-%%VERMAJORMINOR%%/ParaViewConfigVersion.cmake lib/paraview-%%VERMAJORMINOR%%/ParaViewLibraryDepends.cmake -lib/paraview-%%VERMAJORMINOR%%/ParaViewPlugins.cmake lib/paraview-%%VERMAJORMINOR%%/ParaViewUse.cmake lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/filters.xml +lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/internal_writers.xml lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/readers.xml lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/rendering.xml lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/sources.xml @@ -3328,8 +3516,8 @@ lib/paraview-%%VERMAJORMINOR%%/UseVTK.cmake lib/paraview-%%VERMAJORMINOR%%/VTKBuildSettings.cmake lib/paraview-%%VERMAJORMINOR%%/VTKConfig.cmake lib/paraview-%%VERMAJORMINOR%%/VTKConfigQt.cmake +lib/paraview-%%VERMAJORMINOR%%/VTKConfigVersion.cmake lib/paraview-%%VERMAJORMINOR%%/VTKLibraryDepends.cmake -lib/paraview-%%VERMAJORMINOR%%/assistant-real lib/paraview-%%VERMAJORMINOR%%/cmake_install.cmake lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/README lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/Verdict.doc @@ -3337,17 +3525,37 @@ lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/Verdict.htm lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/verdict_test.cpp lib/paraview-%%VERMAJORMINOR%%/hints lib/paraview-%%VERMAJORMINOR%%/kwProcessXML-real -lib/paraview-%%VERMAJORMINOR%%/libCSCS_PointSprite_Graphics.so -lib/paraview-%%VERMAJORMINOR%%/libCSCS_PointSprite_Rendering.so +lib/paraview-%%VERMAJORMINOR%%/libAnalyzeReader.so +lib/paraview-%%VERMAJORMINOR%%/libAnalyzeWriter.so +lib/paraview-%%VERMAJORMINOR%%/libCosmo.so +lib/paraview-%%VERMAJORMINOR%%/libH5PartReader.so lib/paraview-%%VERMAJORMINOR%%/libKWCommon.so +lib/paraview-%%VERMAJORMINOR%%/libMapReduceMPI.so +lib/paraview-%%VERMAJORMINOR%%/libMapReduceMPI.so.pv%%VERMAJORMINOR%% +lib/paraview-%%VERMAJORMINOR%%/libMoments.so +lib/paraview-%%VERMAJORMINOR%%/libNIfTIReader.so +lib/paraview-%%VERMAJORMINOR%%/libNIfTIWriter.so +lib/paraview-%%VERMAJORMINOR%%/libPointSprite_Graphics.so +lib/paraview-%%VERMAJORMINOR%%/libPointSprite_Plugin.so +lib/paraview-%%VERMAJORMINOR%%/libPointSprite_Rendering.so +lib/paraview-%%VERMAJORMINOR%%/libPrismClientPlugin.so +lib/paraview-%%VERMAJORMINOR%%/libPrismServerPlugin.so lib/paraview-%%VERMAJORMINOR%%/libQVTK.so lib/paraview-%%VERMAJORMINOR%%/libQVTK.so.pv%%VERMAJORMINOR%% -lib/paraview-%%VERMAJORMINOR%%/libQtChart.so lib/paraview-%%VERMAJORMINOR%%/libQtTesting.so +lib/paraview-%%VERMAJORMINOR%%/libSLACTools.so +lib/paraview-%%VERMAJORMINOR%%/libSierraPlotTools.so +lib/paraview-%%VERMAJORMINOR%%/libSurfaceLIC.so +lib/paraview-%%VERMAJORMINOR%%/libVPIC.so lib/paraview-%%VERMAJORMINOR%%/libXdmf.so +lib/paraview-%%VERMAJORMINOR%%/libmpistubs.so +lib/paraview-%%VERMAJORMINOR%%/libmpistubs.so.pv%%VERMAJORMINOR%% +lib/paraview-%%VERMAJORMINOR%%/libpqApplicationComponents.so lib/paraview-%%VERMAJORMINOR%%/libpqComponents.so lib/paraview-%%VERMAJORMINOR%%/libpqCore.so lib/paraview-%%VERMAJORMINOR%%/libpqWidgets.so +lib/paraview-%%VERMAJORMINOR%%/libvtkCharts.so +lib/paraview-%%VERMAJORMINOR%%/libvtkCharts.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkClientServer.so lib/paraview-%%VERMAJORMINOR%%/libvtkCommon.so lib/paraview-%%VERMAJORMINOR%%/libvtkCommon.so.pv%%VERMAJORMINOR%% @@ -3421,13 +3629,12 @@ lib/paraview-%%VERMAJORMINOR%%/libvtksqlite.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtksys.so lib/paraview-%%VERMAJORMINOR%%/libvtksys.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkverdict.so -lib/paraview-%%VERMAJORMINOR%%/libvtkverdict.so.vtk5.5.0 +lib/paraview-%%VERMAJORMINOR%%/libvtkverdict.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/paraview-real -lib/paraview-%%VERMAJORMINOR%%/pqClient.adp -lib/paraview-%%VERMAJORMINOR%%/pvTestDriver-real lib/paraview-%%VERMAJORMINOR%%/pvdataserver-real lib/paraview-%%VERMAJORMINOR%%/pvrenderserver-real lib/paraview-%%VERMAJORMINOR%%/pvserver-real +lib/paraview-%%VERMAJORMINOR%%/smTestDriver-real lib/paraview-%%VERMAJORMINOR%%/testing/FindString.tcl lib/paraview-%%VERMAJORMINOR%%/testing/HeaderTesting.py lib/paraview-%%VERMAJORMINOR%%/testing/PrintSelfCheck.tcl @@ -3435,9 +3642,7 @@ lib/paraview-%%VERMAJORMINOR%%/testing/TestSetGet.tcl lib/paraview-%%VERMAJORMINOR%%/testing/WindowsMangleList.py lib/paraview-%%VERMAJORMINOR%%/testing/prtImageTest.tcl lib/paraview-%%VERMAJORMINOR%%/testing/rtImageTest.tcl -lib/paraview-%%VERMAJORMINOR%%/vtkCSCS_PointSprite_GraphicsKit.cmake -lib/paraview-%%VERMAJORMINOR%%/vtkCSCS_PointSprite_RenderingKit.cmake -lib/paraview-%%VERMAJORMINOR%%/vtkClientServer.cmake +lib/paraview-%%VERMAJORMINOR%%/vtkChartsKit.cmake lib/paraview-%%VERMAJORMINOR%%/vtkCommonKit.cmake lib/paraview-%%VERMAJORMINOR%%/vtkFilteringKit.cmake lib/paraview-%%VERMAJORMINOR%%/vtkGenericFilteringKit.cmake @@ -3451,62 +3656,51 @@ lib/paraview-%%VERMAJORMINOR%%/vtkPVFiltersKit.cmake lib/paraview-%%VERMAJORMINOR%%/vtkPVServerCommonKit.cmake lib/paraview-%%VERMAJORMINOR%%/vtkPVServerManagerKit.cmake lib/paraview-%%VERMAJORMINOR%%/vtkParallelKit.cmake +lib/paraview-%%VERMAJORMINOR%%/vtkPointSprite_GraphicsKit.cmake +lib/paraview-%%VERMAJORMINOR%%/vtkPointSprite_RenderingKit.cmake lib/paraview-%%VERMAJORMINOR%%/vtkRenderingKit.cmake lib/paraview-%%VERMAJORMINOR%%/vtkViewsKit.cmake lib/paraview-%%VERMAJORMINOR%%/vtkVolumeRenderingKit.cmake lib/paraview-%%VERMAJORMINOR%%/vtkWidgetsKit.cmake -lib/paraview-%%VERMAJORMINOR%%/vtkWrapClientServer.cmake -lib/paraview-%%VERMAJORMINOR%%/vtkWrapClientServer.cxx.in lib/paraview-%%VERMAJORMINOR%%/vtkXdmfKit.cmake %%QT_PLUGINDIR_REL%%/designer/libQVTKWidgetPlugin.so +@dirrm lib/paraview-%%VERMAJORMINOR%%/testing @dirrm lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0 @dirrm lib/paraview-%%VERMAJORMINOR%%/doc/verdict @dirrm lib/paraview-%%VERMAJORMINOR%%/doc @dirrm lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources @dirrm lib/paraview-%%VERMAJORMINOR%%/ServerManager -@dirrm lib/paraview-%%VERMAJORMINOR%%/Documentation/CMakeFiles -@dirrm lib/paraview-%%VERMAJORMINOR%%/Documentation @dirrm lib/paraview-%%VERMAJORMINOR%%/CMake -@dirrm lib/paraview-%%VERMAJORMINOR%%/testing @dirrm lib/paraview-%%VERMAJORMINOR%% @dirrm include/paraview-%%VERMAJORMINOR%%/vtksys/stl @dirrm include/paraview-%%VERMAJORMINOR%%/vtksys/ios @dirrm include/paraview-%%VERMAJORMINOR%%/vtksys -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Chart/Resources -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Chart -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/XML -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Components -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Core/Resources/Icons -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Core/Resources/UI -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Core/Resources -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Core -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Widgets/Resources/Icons -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Widgets/Resources/UI -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Widgets/Resources -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Widgets -@dirrm include/paraview-%%VERMAJORMINOR%%/Qt -@dirrm include/paraview-%%VERMAJORMINOR%%/Servers/Common/vtkPVPluginInit.cxx.in -@dirrm include/paraview-%%VERMAJORMINOR%%/Servers/Common -@dirrm include/paraview-%%VERMAJORMINOR%%/Servers -@dirrm include/paraview-%%VERMAJORMINOR%%/Xdmf -@dirrm include/paraview-%%VERMAJORMINOR%%/alglib -@dirrm include/paraview-%%VERMAJORMINOR%%/internal @dirrm include/paraview-%%VERMAJORMINOR%%/vtkstd +@dirrm include/paraview-%%VERMAJORMINOR%%/vtksqlite +@dirrm include/paraview-%%VERMAJORMINOR%%/vtknetcdf @dirrm include/paraview-%%VERMAJORMINOR%%/vtkmetaio @dirrm include/paraview-%%VERMAJORMINOR%%/vtklibxml2/libxml @dirrm include/paraview-%%VERMAJORMINOR%%/vtklibxml2 -@dirrm include/paraview-%%VERMAJORMINOR%%/vtknetcdf -@dirrm include/paraview-%%VERMAJORMINOR%%/vtksqlite @dirrm include/paraview-%%VERMAJORMINOR%%/vtklibproj4 +@dirrm include/paraview-%%VERMAJORMINOR%%/mrmpi +@dirrm include/paraview-%%VERMAJORMINOR%%/internal +@dirrm include/paraview-%%VERMAJORMINOR%%/alglib +@dirrm include/paraview-%%VERMAJORMINOR%%/Xdmf +@dirrm include/paraview-%%VERMAJORMINOR%%/VPIC +@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Widgets/Resources/UI +@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Widgets/Resources/Icons +@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Widgets/Resources +@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Widgets +@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Core/Resources/UI +@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Core/Resources/Icons +@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Core/Resources +@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Core +@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/XML +@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI +@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons +@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources +@dirrm include/paraview-%%VERMAJORMINOR%%/Qt/Components +@dirrm include/paraview-%%VERMAJORMINOR%%/Qt +@dirrm include/paraview-%%VERMAJORMINOR%%/Cosmo @dirrm include/paraview-%%VERMAJORMINOR%% -@dirrm bin/plugins/PrismServerPlugin -@dirrm bin/plugins/PrismClientPlugin -@dirrm bin/plugins/SLACTools -@dirrm bin/plugins/CSCS_PointSprite_Plugin -@dirrm bin/plugins/H5PartReader -@dirrm bin/plugins/CosmoFiltersPlugin -@dirrm bin/plugins/Moments -@dirrm bin/plugins +@dirrmtry %%DOCSDIR%%