Removed ParaView-5.0.1, use ParaView-5.4.0 instead
25
ParaView-5.0.1/.gitattributes
vendored
@ -1,25 +0,0 @@
|
||||
.git* export-ignore
|
||||
.hooks* export-ignore
|
||||
|
||||
*.sh crlf=input
|
||||
*.sh.in crlf=input
|
||||
newalpha crlf=input
|
||||
newversion crlf=input
|
||||
pvblot.in crlf=input
|
||||
pre-commit crlf=input
|
||||
|
||||
*.bat whitespace=-tab-in-indent,-blank-at-eol
|
||||
*.sln whitespace=-tab-in-indent,-blank-at-eol
|
||||
*.vcproj whitespace=-tab-in-indent,-blank-at-eol
|
||||
|
||||
*.c whitespace=tab-in-indent,-blank-at-eol
|
||||
*.h whitespace=tab-in-indent,-blank-at-eol
|
||||
*.cxx whitespace=tab-in-indent,-blank-at-eol
|
||||
*.hxx whitespace=tab-in-indent,-blank-at-eol
|
||||
*.txx whitespace=tab-in-indent,-blank-at-eol
|
||||
*.txt whitespace=tab-in-indent,-blank-at-eol
|
||||
*.cmake whitespace=tab-in-indent,-blank-at-eol
|
||||
|
||||
*.c hooks.MaxObjectKiB=0
|
||||
|
||||
*.md whitespace=tab-in-indent conflict-marker-size=30
|
||||
5
ParaView-5.0.1/.gitignore
vendored
@ -1,5 +0,0 @@
|
||||
# Ignore compiled python files. These are created when Python interprets a
|
||||
# script in the source directory. There is no way to suppress their
|
||||
# creation short of copying the file somewhere.
|
||||
*.pyc
|
||||
.ExternalData*
|
||||
15
ParaView-5.0.1/.gitmodules
vendored
@ -1,15 +0,0 @@
|
||||
[submodule "VTK"]
|
||||
path = VTK
|
||||
url = https://gitlab.kitware.com/vtk/vtk.git
|
||||
[submodule "Utilities/VisItBridge"]
|
||||
path = Utilities/VisItBridge
|
||||
url = https://gitlab.kitware.com/paraview/visitbridge.git
|
||||
[submodule "ThirdParty/IceT/vtkicet"]
|
||||
path = ThirdParty/IceT/vtkicet
|
||||
url = https://gitlab.kitware.com/icet/icet.git
|
||||
[submodule "ThirdParty/protobuf/vtkprotobuf"]
|
||||
path = ThirdParty/protobuf/vtkprotobuf
|
||||
url = https://gitlab.kitware.com/paraview/protobuf.git
|
||||
[submodule "ThirdParty/QtTesting/vtkqttesting"]
|
||||
path = ThirdParty/QtTesting/vtkqttesting
|
||||
url = https://github.com/Kitware/QtTesting.git
|
||||
@ -1,6 +0,0 @@
|
||||
# Loaded by .git/hooks/(pre-commit|commit-msg|prepare-commit-msg)
|
||||
# during git commit after local hooks have been installed.
|
||||
|
||||
hooks_chain_pre_commit="Utilities/Scripts/pre-commit"
|
||||
hooks_chain_commit_msg="Utilities/Scripts/commit-msg"
|
||||
hooks_chain_prepare_commit_msg="Utilities/Scripts/prepare-commit-msg"
|
||||
@ -1,18 +0,0 @@
|
||||
#########################################################################
|
||||
# Everything under Application uses VTK/ParaView ServerManager.
|
||||
if (PARAVIEW_BUILD_QT_GUI)
|
||||
# Since the full module list can be really large, we only bring in a few
|
||||
# modules.
|
||||
vtk_module_config(__PV_VTK
|
||||
vtkCommonCore
|
||||
vtkPVServerManagerCore
|
||||
vtkPVServerManagerApplication
|
||||
pqCore
|
||||
pqComponents
|
||||
pqApplicationComponents)
|
||||
include_directories(${__PV_VTK_INCLUDE_DIRS})
|
||||
link_directories(${__PV_VTK_LIBRARY_DIRS})
|
||||
|
||||
include(ParaViewBranding)
|
||||
add_subdirectory(ParaView)
|
||||
endif()
|
||||
@ -1,188 +0,0 @@
|
||||
#------------------------------------------------------------------------------
|
||||
# Add extra library containing custom code for the client.
|
||||
if (PARAVIEW_QT_VERSION VERSION_GREATER "4")
|
||||
QT5_WRAP_CPP(MOC_BUILT_SOURCES
|
||||
ParaViewMainWindow.h)
|
||||
QT5_WRAP_UI(UI_BUILT_SOURCES
|
||||
ParaViewMainWindow.ui)
|
||||
list( APPEND Qt5_FIND_COMPONENTS Network )
|
||||
if (APPLE)
|
||||
# XXX: The Qt5 plugin for Cocoa (Plugins/platforms/libqcocoa.dylib in the
|
||||
# dmg file) links to QtPrintSupport.framework, but is not brought into the
|
||||
# package by fixup_bundle. Link to it from ParaView so that it gets brought
|
||||
# in properly.
|
||||
list( APPEND Qt5_FIND_COMPONENTS PrintSupport )
|
||||
endif ()
|
||||
include( ParaViewQt5 )
|
||||
else ()
|
||||
QT4_WRAP_CPP(MOC_BUILT_SOURCES
|
||||
ParaViewMainWindow.h)
|
||||
QT4_WRAP_UI(UI_BUILT_SOURCES
|
||||
ParaViewMainWindow.ui)
|
||||
set (QT_USE_QTNETWORK TRUE)
|
||||
include (${QT_USE_FILE})
|
||||
endif ()
|
||||
|
||||
include_directories(
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
${CMAKE_CURRENT_BINARY_DIR}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Documentation)
|
||||
|
||||
set(ParaView_SOURCE_FILES
|
||||
ParaViewMainWindow.cxx
|
||||
ParaViewMainWindow.h
|
||||
${MOC_BUILT_SOURCES}
|
||||
${UI_BUILT_SOURCES})
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# ParaView applications provides a mechanism to add gui xmls from modules.
|
||||
# This is done by defining variables named ${vtk-module}_PARAVIEW_GUI_XMLS in
|
||||
# the module.cmake file for the modules pointing to the paths for the
|
||||
# GUI-xmls. We process those here.
|
||||
set (application_gui_xmls
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/ParaViewSources.xml"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/ParaViewFilters.xml")
|
||||
foreach (module IN LISTS VTK_MODULES_ENABLED)
|
||||
get_property(gui_xml GLOBAL PROPERTY ${module}_PARAVIEW_GUI_XMLS)
|
||||
if (gui_xml)
|
||||
foreach(xml IN LISTS gui_xml)
|
||||
list(APPEND application_gui_xmls ${xml})
|
||||
endforeach()
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# Build Online-Help (aka Embedded Help) for the ParaView application.
|
||||
# This is done after the above piece of code that sets the application_gui_xmls
|
||||
# variable. Documentation/CMakeLists.txt depends on it.
|
||||
add_subdirectory(Documentation)
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# FIXME: This is necessary because the vtkPVStaticPluginsInit library cannot be
|
||||
# exported (because exporting plugins had other issues). We can't put the
|
||||
# paraview_static_plugins_init function call anywhere ParaView-specific because
|
||||
# anything we do would be too late to have any effect (it must be before
|
||||
# `.plugins` is loaded from the pq@BPC_NAME@Initializer.Initialize ->
|
||||
# pqApplicationCore::pqApplicationCore -> vtkPVPluginTracker::GetInstance call
|
||||
# chain occurs).
|
||||
#
|
||||
# Basically, what needs to happen to avoid this hack is for, in static builds,
|
||||
# branded clients to build their own vtkPVStaticPluginsInit library with any
|
||||
# plugins available at that time and link to it. We cannot do this in
|
||||
# build_paraview_client right now because the command line executables in
|
||||
# ParaView itself needs vtkPVStaticPluginsInit as well.
|
||||
set(SUPPORT_STATIC_PLUGINS TRUE)
|
||||
|
||||
set(title "ParaView ${PARAVIEW_VERSION_FULL} ${PARAVIEW_BUILD_ARCHITECTURE}-bit")
|
||||
if("${VTK_RENDERING_BACKEND}" STREQUAL "OpenGL")
|
||||
set(title "${title} (Legacy Rendering Backend)")
|
||||
endif()
|
||||
#------------------------------------------------------------------------------
|
||||
# Build the client
|
||||
build_paraview_client(paraview
|
||||
APPLICATION_NAME "ParaView"
|
||||
TITLE ${title}
|
||||
ORGANIZATION "ParaView"
|
||||
VERSION_MAJOR ${PARAVIEW_VERSION_MAJOR}
|
||||
VERSION_MINOR ${PARAVIEW_VERSION_MINOR}
|
||||
VERSION_PATCH ${PARAVIEW_VERSION_PATCH}
|
||||
SPLASH_IMAGE "${CMAKE_CURRENT_SOURCE_DIR}/PVSplashScreen.png"
|
||||
PVMAIN_WINDOW ParaViewMainWindow
|
||||
PVMAIN_WINDOW_INCLUDE ParaViewMainWindow.h
|
||||
BUNDLE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/pvIcon.icns"
|
||||
APPLICATION_ICON "${CMAKE_CURRENT_SOURCE_DIR}/pvIcon.ico"
|
||||
GUI_CONFIGURATION_XMLS
|
||||
${application_gui_xmls} # Add any compiled in GUI configuration xmls
|
||||
SOURCES ${ParaView_SOURCE_FILES}
|
||||
INSTALL_RUNTIME_DIR "${VTK_INSTALL_RUNTIME_DIR}"
|
||||
INSTALL_LIBRARY_DIR "${VTK_INSTALL_LIBRARY_DIR}"
|
||||
INSTALL_ARCHIVE_DIR "${VTK_INSTALL_ARCHIVE_DIR}"
|
||||
)
|
||||
|
||||
# Set appropriate compile flags.
|
||||
if( PARAVIEW_QT_VERSION VERSION_GREATER "4" )
|
||||
set_target_properties(paraview PROPERTIES
|
||||
COMPILE_FLAGS "${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}")
|
||||
target_link_libraries(paraview
|
||||
LINK_PRIVATE ${QT_LIBRARIES})
|
||||
endif()
|
||||
|
||||
# Link against the documentation module.
|
||||
target_link_libraries(paraview
|
||||
LINK_PRIVATE vtkParaViewDocumentation)
|
||||
|
||||
# link enabled plugins if not building in shared library mode and
|
||||
# add dependecies to linked python modules These are non-empty only when
|
||||
# building statically.
|
||||
if (PARAVIEW_ENABLE_PYTHON)
|
||||
target_link_libraries(paraview
|
||||
LINK_PRIVATE vtkUtilitiesPythonInitializer)
|
||||
endif()
|
||||
|
||||
if(NOT BUILD_SHARED_LIBS)
|
||||
target_link_libraries(paraview
|
||||
LINK_PRIVATE vtkPVStaticPluginsInit)
|
||||
endif()
|
||||
|
||||
|
||||
if (BUILD_TESTING)
|
||||
add_subdirectory(Testing)
|
||||
endif ()
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
if (APPLE AND NOT PARAVIEW_DO_UNIX_STYLE_INSTALLS)
|
||||
# For Macs, we add install rule to package everything that's built into a single
|
||||
# App. Look at the explanation of MACOSX_APP_INSTALL_PREFIX in the top-level
|
||||
# CMakeLists.txt file for details.
|
||||
|
||||
# add install rules to generate the App bundle.
|
||||
install(CODE "
|
||||
include(\"${ParaView_CMAKE_DIR}/ParaViewBrandingInstallApp.cmake\")
|
||||
|
||||
#fillup bundle with all the libraries and plugins.
|
||||
cleanup_bundle(
|
||||
\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${VTK_INSTALL_RUNTIME_DIR}/paraview.app/Contents/MacOS/paraview
|
||||
\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${VTK_INSTALL_RUNTIME_DIR}/paraview.app
|
||||
\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${VTK_INSTALL_LIBRARY_DIR}
|
||||
\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_PLUGIN_DIR}
|
||||
\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${VTK_INSTALL_DATA_DIR})
|
||||
|
||||
# Place the App at the requested location.
|
||||
file(INSTALL DESTINATION \"${MACOSX_APP_INSTALL_PREFIX}\"
|
||||
TYPE DIRECTORY FILES
|
||||
\"\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${VTK_INSTALL_RUNTIME_DIR}/paraview.app\"
|
||||
USE_SOURCE_PERMISSIONS)
|
||||
"
|
||||
COMPONENT Runtime)
|
||||
elseif (APPLE AND PARAVIEW_DO_UNIX_STYLE_INSTALLS)
|
||||
# This is a unix style install on OsX. Purge the bundle.
|
||||
install(CODE
|
||||
"
|
||||
include(\"${ParaView_CMAKE_DIR}/ParaViewBrandingInstallApp.cmake\")
|
||||
convert_bundle_to_executable(
|
||||
\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${VTK_INSTALL_RUNTIME_DIR}/paraview.app/Contents/MacOS/paraview
|
||||
\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${VTK_INSTALL_RUNTIME_DIR}/paraview.app
|
||||
\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${VTK_INSTALL_RUNTIME_DIR})
|
||||
"
|
||||
COMPONENT Runtime)
|
||||
elseif (UNIX)
|
||||
configure_file(
|
||||
paraview.desktop.in
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/paraview.desktop"
|
||||
@ONLY)
|
||||
install(
|
||||
FILES "${CMAKE_CURRENT_BINARY_DIR}/paraview.desktop"
|
||||
DESTINATION share/applications
|
||||
COMPONENT runtime)
|
||||
foreach (iconsize 22x22 32x32 96x96)
|
||||
install(
|
||||
FILES "pvIcon-${iconsize}.png"
|
||||
DESTINATION "share/icons/hicolor/${iconsize}/apps"
|
||||
RENAME paraview.png
|
||||
COMPONENT runtime)
|
||||
endforeach ()
|
||||
install(
|
||||
FILES paraview.appdata.xml
|
||||
DESTINATION share/appdata
|
||||
COMPONENT runtime)
|
||||
endif()
|
||||
@ -1,74 +0,0 @@
|
||||
configure_file(
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/index.html.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/index.html"
|
||||
@ONLY)
|
||||
|
||||
configure_file(
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/about.html.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/about.html"
|
||||
@ONLY)
|
||||
|
||||
# sanity check
|
||||
if (NOT application_gui_xmls)
|
||||
message(AUTHOR_WARNING "application_gui_xmls is empty."
|
||||
"It must generally point to all the gui xmls in your application")
|
||||
endif()
|
||||
|
||||
# generate htmls from the server manager xmls.
|
||||
generate_htmls_from_xmls(proxy_html_outputs
|
||||
"${PARAVIEW_SERVERMANAGER_XMLS}"
|
||||
"${application_gui_xmls}"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}")
|
||||
|
||||
# this function produces a ${CMAKE_CURRENT_BINARY_DIR}/paraview.qch file.
|
||||
build_help_project(paraview
|
||||
DESTINATION_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
|
||||
DOCUMENTATION_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}"
|
||||
TABLE_OF_CONTENTS
|
||||
"<toc>
|
||||
<section title=\"ParaView User Manual\" ref=\"index.html\">
|
||||
<section title=\"Sources\" ref=\"Sources.html\"/>
|
||||
<section title=\"Filters\" ref=\"Filters.html\"/>
|
||||
<section title=\"Readers\" ref=\"Readers.html\"/>
|
||||
<section title=\"Writers\" ref=\"Writers.html\"/>
|
||||
</section>
|
||||
</toc>"
|
||||
FILEPATTERNS "*.html;*.css;*.png;*.jpg;images/*.jpg"
|
||||
DEPENDS "${proxy_html_outputs}"
|
||||
)
|
||||
|
||||
generate_qt_resource_from_files(
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/paraview_documentation.qrc"
|
||||
"/ParaView/Documentation"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/paraview.qch")
|
||||
set_source_files_properties(
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/paraview_documentation.qrc"
|
||||
PROPERTIES OBJECT_DEPENDS
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/paraview.qch")
|
||||
|
||||
if(PARAVIEW_QT_VERSION VERSION_GREATER "4")
|
||||
QT5_ADD_RESOURCES(rcs_sources
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/paraview_documentation.qrc")
|
||||
else()
|
||||
QT4_ADD_RESOURCES(rcs_sources
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/paraview_documentation.qrc")
|
||||
endif()
|
||||
|
||||
add_library(vtkParaViewDocumentation STATIC
|
||||
ParaViewDocumentationInitializer.cxx
|
||||
${rcs_sources})
|
||||
target_link_libraries(vtkParaViewDocumentation ${QT_LIBRARIES})
|
||||
if(PARAVIEW_QT_VERSION VERSION_GREATER "4")
|
||||
set_target_properties(vtkParaViewDocumentation PROPERTIES
|
||||
COMPILE_FLAGS "${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}")
|
||||
endif()
|
||||
|
||||
IF (NOT VTK_INSTALL_NO_DEVELOPMENT)
|
||||
# We install the qch file only when installing development files since the
|
||||
# file in compiled into a library for run-time and hence need not be installed
|
||||
# otherwise.
|
||||
INSTALL(
|
||||
FILES ${CMAKE_CURRENT_BINARY_DIR}/paraview.qch
|
||||
DESTINATION ${VTK_INSTALL_DOC_DIR}
|
||||
COMPONENT Development)
|
||||
ENDIF ()
|
||||
@ -1,39 +0,0 @@
|
||||
body {
|
||||
border: 1px solid #000000;
|
||||
background: #EEF3F5;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
div.ProxyHeading {
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
padding-left: 5px;
|
||||
background: #adc4d2;
|
||||
font-weight: bold;
|
||||
font-size: 24pt;
|
||||
border-bottom: 1px solid #000000;
|
||||
}
|
||||
span.ProxyHeadingSmallText {
|
||||
font-weight: bold;
|
||||
font-size: 12pt;
|
||||
}
|
||||
div.ProxyLongHelp {
|
||||
margin: 20px;
|
||||
font-style: italic;
|
||||
}
|
||||
div.ProxyDescription {
|
||||
border-top: 1px solid;
|
||||
}
|
||||
table.PropertiesTable {
|
||||
}
|
||||
tr.PropertiesTableHeading {
|
||||
background: #85a8bc;
|
||||
}
|
||||
|
||||
div.toc {
|
||||
background: #DDDDDD;
|
||||
border: 1px solid #000000;
|
||||
margin: 2em 2em;
|
||||
padding: 1em;
|
||||
width: 30em;
|
||||
}
|
||||
@ -1,10 +0,0 @@
|
||||
#include "ParaViewDocumentationInitializer.h"
|
||||
|
||||
#include "vtkPVConfig.h"
|
||||
#include <QObject>
|
||||
#include <QtPlugin>
|
||||
|
||||
void PARAVIEW_DOCUMENTATION_INIT()
|
||||
{
|
||||
Q_INIT_RESOURCE(paraview_documentation);
|
||||
}
|
||||
@ -1,6 +0,0 @@
|
||||
#ifndef ParaViewDocumentationInitializer_h
|
||||
#define ParaViewDocumentationInitializer_h
|
||||
|
||||
void PARAVIEW_DOCUMENTATION_INIT();
|
||||
|
||||
#endif
|
||||
|
Before Width: | Height: | Size: 175 KiB |
@ -1,19 +0,0 @@
|
||||
ParaView @PARAVIEW_VERSION_FULL@
|
||||
<p>
|
||||
ParaView is an open-source, multi-platform data analysis and visualization application. ParaView users can quickly build visualizations to analyze their data using qualitative and quantitative techniques. The data exploration can be done interactively in 3D or programmatically using ParaView's batch processing capabilities.
|
||||
<p>
|
||||
ParaView was developed to analyze extremely large datasets using distributed memory computing resources. It can be run on supercomputers to analyze datasets of terascale as well as on laptops for smaller data.
|
||||
<br>
|
||||
<a:href="http://www.paraview.org">ParaView Web Site</a>
|
||||
<br><br>
|
||||
<a:href="http://www.paraview.org/doc/nightly/html/classes.html">ParaView Doxygen</a>
|
||||
<p>
|
||||
<pre>
|
||||
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
||||
All rights reserved.
|
||||
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
||||
|
||||
This software is distributed WITHOUT ANY WARRANTY; without even
|
||||
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
PURPOSE. See the above copyright notice for more information.
|
||||
</pre>
|
||||
|
Before Width: | Height: | Size: 537 B |
|
Before Width: | Height: | Size: 718 B |
|
Before Width: | Height: | Size: 788 B |
|
Before Width: | Height: | Size: 421 B |
|
Before Width: | Height: | Size: 305 B |
@ -1,68 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<!--
|
||||
Design by Free CSS Templates
|
||||
http://www.freecsstemplates.org
|
||||
Released for free under a Creative Commons Attribution 2.5 License
|
||||
|
||||
Name : Paperlike
|
||||
Description: A two-column, fixed-width design with dark color scheme.
|
||||
Version : 1.0
|
||||
Released : 20111010
|
||||
|
||||
-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="description" content="" />
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||
<title>ParaView Users Manual</title>
|
||||
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
<div id="header-wrapper">
|
||||
<div id="header">
|
||||
<div id="logo">
|
||||
<h1><a href="http://www.paraview.org">ParaView </a></h1>
|
||||
<p></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- end #header -->
|
||||
<div id="page">
|
||||
<div id="content">
|
||||
<div class="post">
|
||||
<div class="entry">
|
||||
<p>
|
||||
ParaView is an open-source, multi-platform data analysis and
|
||||
visualization application. ParaView users can quickly build
|
||||
visualizations to analyze their data using qualitative and
|
||||
quantitative techniques. The data exploration can be done
|
||||
interactively in 3D or programmatically using ParaView's batch
|
||||
processing capabilities.
|
||||
</p>
|
||||
<p>
|
||||
ParaView was developed to analyze extremely large datasets using
|
||||
distributed memory computing resources. It can be run on
|
||||
supercomputers to analyze datasets of terascale as well as on laptops
|
||||
for smaller data.
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
For the user's manual, refer to the ParaView User's Manual, a pdf for which is
|
||||
included in your binary distribution or can be obtained from
|
||||
<a href="http://www.paraview.org/download/">http://www.paraview.org/download/</a>.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div style="clear: both;"> </div>
|
||||
</div>
|
||||
<!-- end #page -->
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>Design by <a href="http://www.freecsstemplates.org/"> CSS Templates</a>
|
||||
under Creative Commons Attribution 2.5 License.</p>
|
||||
</div>
|
||||
<!-- end #footer -->
|
||||
</body>
|
||||
</html>
|
||||
@ -1,63 +0,0 @@
|
||||
Creative Commons Attribution 3.0 Unported
|
||||
=========================================
|
||||
|
||||
License
|
||||
|
||||
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
|
||||
|
||||
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
|
||||
|
||||
1. Definitions
|
||||
|
||||
1. "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License.
|
||||
2. "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined above) for the purposes of this License.
|
||||
3. "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership.
|
||||
4. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License.
|
||||
5. "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast.
|
||||
6. "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work.
|
||||
7. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.
|
||||
8. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images.
|
||||
9. "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium.
|
||||
|
||||
2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws.
|
||||
|
||||
3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:
|
||||
|
||||
1. to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections;
|
||||
2. to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified.";
|
||||
3. to Distribute and Publicly Perform the Work including as incorporated in Collections; and,
|
||||
4. to Distribute and Publicly Perform Adaptations.
|
||||
5.
|
||||
|
||||
For the avoidance of doubt:
|
||||
1. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License;
|
||||
2. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and,
|
||||
3. Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License.
|
||||
|
||||
The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved.
|
||||
|
||||
4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:
|
||||
|
||||
1. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(b), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(b), as requested.
|
||||
2. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4 (b) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties.
|
||||
3. Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise.
|
||||
|
||||
5. Representations, Warranties and Disclaimer
|
||||
|
||||
UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
|
||||
|
||||
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
7. Termination
|
||||
|
||||
1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.
|
||||
2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.
|
||||
|
||||
8. Miscellaneous
|
||||
|
||||
1. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.
|
||||
2. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.
|
||||
3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
|
||||
4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.
|
||||
5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.
|
||||
6. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law.
|
||||
@ -1,412 +0,0 @@
|
||||
|
||||
/*
|
||||
Design by Free CSS Templates
|
||||
http://www.freecsstemplates.org
|
||||
Released for free under a Creative Commons Attribution 2.5 License
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 14px;
|
||||
color: #3C3D3F;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-weight: normal;
|
||||
color: #FF3000;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2.8em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.6em;
|
||||
}
|
||||
|
||||
p, ul, ol {
|
||||
margin-top: 0;
|
||||
line-height: 180%;
|
||||
}
|
||||
|
||||
ul, ol {
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: underline;
|
||||
color: #1CB543;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
|
||||
#header-wrapper {
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
#header {
|
||||
overflow: hidden;
|
||||
width: 650px;
|
||||
margin: 0 auto;
|
||||
padding: 30px 0px 0px 0px;
|
||||
}
|
||||
|
||||
/* Logo */
|
||||
|
||||
#logo {
|
||||
float: left;
|
||||
width: 350px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
#logo h1, #logo p {
|
||||
}
|
||||
|
||||
#logo h1 {
|
||||
margin-left: 30px;
|
||||
padding: 20px 0px 0px 0px;
|
||||
letter-spacing: -1px;
|
||||
font-size: 3.8em;
|
||||
color: #FF3000;
|
||||
}
|
||||
|
||||
#logo p {
|
||||
margin: -5px 0px 0px 0px;
|
||||
padding: 0px 0 0 32px;
|
||||
font: normal 14px Georgia, "Times New Roman", Times, serif;
|
||||
font-style: italic;
|
||||
color: #45302C;
|
||||
}
|
||||
|
||||
#logo a {
|
||||
border: none;
|
||||
background: none;
|
||||
text-decoration: none;
|
||||
color: #202020;
|
||||
}
|
||||
|
||||
/* Search */
|
||||
|
||||
#search {
|
||||
float: right;
|
||||
width: 280px;
|
||||
height: 40px;
|
||||
padding: 0px 0px 0px 0px;
|
||||
}
|
||||
|
||||
#search form {
|
||||
margin: 0;
|
||||
padding: 10px 0 0 10px;
|
||||
}
|
||||
|
||||
#search fieldset {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#search-text {
|
||||
width: 220px;
|
||||
height: 20px;
|
||||
margin-right: 10px;
|
||||
padding: 6px 5px 6px 5px;
|
||||
border: none;
|
||||
background: #FFFFFF;
|
||||
text-transform: lowercase;
|
||||
font: normal 12px Arial, Helvetica, sans-serif;
|
||||
color: #B9ADAA;
|
||||
}
|
||||
|
||||
#search-submit {
|
||||
width: 45px;
|
||||
height: 26px;
|
||||
border: none;
|
||||
background: none;
|
||||
text-indent: -9999px;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
/* Menu */
|
||||
|
||||
#menu {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#menu ul {
|
||||
margin: 0px;
|
||||
padding: 50px 0px 0px 0px;
|
||||
list-style: none;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
#menu li {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#menu a {
|
||||
display: block;
|
||||
float: left;
|
||||
height: 38px;
|
||||
margin: 0px;
|
||||
padding: 0px 0px 0px 0px;
|
||||
text-decoration: none;
|
||||
text-transform: uppercase;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
color: #202020;
|
||||
}
|
||||
|
||||
#menu a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#menu span {
|
||||
display: inline-block;
|
||||
height: 28px;
|
||||
padding: 10px 30px 0px 30px;
|
||||
}
|
||||
|
||||
#menu li.active {
|
||||
background: #1CB543;
|
||||
}
|
||||
|
||||
#menu li.active a {
|
||||
background: url(images/img02.jpg) no-repeat left top;
|
||||
}
|
||||
|
||||
#menu li.active span {
|
||||
background: url(images/img03.jpg) no-repeat right top;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
/* Page */
|
||||
|
||||
#page {
|
||||
width: 650px;
|
||||
margin: 0 auto;
|
||||
padding: 0px 0px 0px 0px;
|
||||
}
|
||||
|
||||
#page-bgtop {
|
||||
}
|
||||
/* Content */
|
||||
|
||||
#content {
|
||||
float: left;
|
||||
width: 600px;
|
||||
padding: 40px 0px 0px 0px;
|
||||
background: #FFFFFF;
|
||||
}
|
||||
|
||||
.post {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.post .title {
|
||||
height: 41px;
|
||||
padding: 0px 0px 0px 0px;
|
||||
}
|
||||
|
||||
.post .title a {
|
||||
letter-spacing: -2px;
|
||||
text-decoration: none;
|
||||
color: #202020;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.post .entry {
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.post .meta {
|
||||
overflow: hidden;
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.post .links {
|
||||
}
|
||||
|
||||
.links a {
|
||||
padding: 4px 10px;
|
||||
background: #87A0E5;
|
||||
text-decoration: none;
|
||||
text-transform: uppercase;
|
||||
font-size: 11px;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.author {
|
||||
padding: 4px 10px;
|
||||
background: #DF8088;
|
||||
text-transform: uppercase;
|
||||
font-size: 11px;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.author a {
|
||||
text-decoration: none;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.date {
|
||||
padding: 4px 10px;
|
||||
background: #91D9AA;
|
||||
text-transform: uppercase;
|
||||
font-size: 11px;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
/* Sidebar */
|
||||
|
||||
#sidebar {
|
||||
float: right;
|
||||
width: 300px;
|
||||
margin: 0px;
|
||||
padding: 0px 0px 0px 0px;
|
||||
background: #EBEBEB;
|
||||
border-bottom: 4px solid #1CB543;
|
||||
}
|
||||
|
||||
#sidebar ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
#sidebar li {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#sidebar li ul {
|
||||
margin: 0px;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
#sidebar li li {
|
||||
margin: 0px 30px 0px 30px;
|
||||
line-height: 35px;
|
||||
border-bottom: 1px solid #CFCFCF;
|
||||
border-left: none;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#sidebar li li span {
|
||||
display: block;
|
||||
margin-top: -20px;
|
||||
padding: 0;
|
||||
font-size: 11px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
#sidebar li li a {
|
||||
padding: 0px 0px 0px 20px;
|
||||
background: url(images/img05.jpg) no-repeat left 5px;
|
||||
}
|
||||
|
||||
#sidebar h2 {
|
||||
height: 30px;
|
||||
margin: 0px 0px 20px 0px;
|
||||
padding: 2px 0px 0px 30px;
|
||||
background: url(images/img04.jpg) no-repeat left top;
|
||||
text-align: left;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: -.5px;
|
||||
font-size: 1em;
|
||||
font-weight: bold;
|
||||
color: #202020;
|
||||
}
|
||||
|
||||
#sidebar p {
|
||||
margin: 0 0px;
|
||||
padding: 0px 20px 20px 20px;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
#sidebar a {
|
||||
border: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#sidebar a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Calendar */
|
||||
|
||||
#calendar {
|
||||
}
|
||||
|
||||
#calendar_wrap {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
#calendar table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#calendar tbody td {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#calendar #next {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
|
||||
#footer {
|
||||
width: 650px;
|
||||
height: 50px;
|
||||
margin: 0 auto;
|
||||
padding: 0px 0 15px 0;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
#footer p {
|
||||
margin: 0;
|
||||
padding: 20px 0px 0px 30px;
|
||||
line-height: normal;
|
||||
font-size: 10px;
|
||||
text-transform: uppercase;
|
||||
text-align: left;
|
||||
color: #45302C;
|
||||
}
|
||||
|
||||
#footer a {
|
||||
}
|
||||
|
||||
#about {
|
||||
width: 540px;
|
||||
padding: 30px;
|
||||
background: #EBEBEB;
|
||||
border-bottom: 4px solid #1CB543;
|
||||
color: #3C3D3F;
|
||||
}
|
||||
|
||||
#about h2 {
|
||||
padding-bottom: 10px;
|
||||
color: #202020;
|
||||
}
|
||||
|
||||
#about a {
|
||||
color: #1CB543;
|
||||
}
|
||||
|
Before Width: | Height: | Size: 158 KiB |
@ -1,248 +0,0 @@
|
||||
<ParaViewFilters>
|
||||
<Category name="Common" menu_label="&Common" preserve_order="1"
|
||||
show_in_toolbar="1">
|
||||
<Proxy group="filters" name="Calculator" icon=":/pqWidgets/Icons/pqCalculator24.png"/>
|
||||
<Proxy group="filters" name="Contour" icon=":/pqWidgets/Icons/pqIsosurface24.png"/>
|
||||
<Proxy group="filters" name="Clip" icon=":/pqWidgets/Icons/pqClip24.png"/>
|
||||
<Proxy group="filters" name="Cut" icon=":/pqWidgets/Icons/pqSlice24.png"/>
|
||||
<Proxy group="filters" name="Threshold" icon=":/pqWidgets/Icons/pqThreshold24.png"/>
|
||||
<Proxy group="filters" name="ExtractGrid" icon=":/pqWidgets/Icons/pqExtractGrid24.png"/>
|
||||
<Proxy group="filters" name="Glyph" icon=":/pqWidgets/Icons/pqGlyph24.png"/>
|
||||
<Proxy group="filters" name="StreamTracer" icon=":/pqWidgets/Icons/pqStreamTracer24.png"/>
|
||||
<Proxy group="filters" name="WarpVector" icon=":/pqWidgets/Icons/pqWarp24.png"/>
|
||||
<Proxy group="filters" name="GroupDataSets" icon=":/pqWidgets/Icons/pqGroup24.png"/>
|
||||
<Proxy group="filters" name="ExtractHierarchicalLevel" icon=":/pqWidgets/Icons/pqGroupExtract24.png"/>
|
||||
</Category>
|
||||
|
||||
<Category name="CosmoTools" menu_label="&CosmoTools" show_in_toolbar="0">
|
||||
<Proxy group="filters" name="ANLHaloFinder" />
|
||||
<Proxy group="filters" name="ANLSubhaloFinder" />
|
||||
<Proxy group="filters" name="LANLHaloFinder" />
|
||||
<Proxy group="filters" name="MinkowskiFilter" />
|
||||
<Proxy group="filters" name="PMergeConnected" />
|
||||
</Category>
|
||||
|
||||
<Category name="DataAnalysis" menu_label="&Data Analysis" show_in_toolbar="1" hide_for_tests="1">
|
||||
<Proxy group="filters" name="Calculator"
|
||||
icon=":/pqWidgets/Icons/pqCalculator24.png" omit_from_toolbar="1"/>
|
||||
<Proxy group="filters" name="ExtractSelection"
|
||||
icon=":/pqWidgets/Icons/pqExtractSelection24.png" />
|
||||
<Proxy group="filters" name="ExtractSelectionOverTime"
|
||||
icon=":/pqWidgets/Icons/pqPlotSelectionOverTime24.png" />
|
||||
<Proxy group="filters" name="ExtractHistogram"
|
||||
icon=":/pqWidgets/Icons/pqHistogram24.png" omit_from_toolbar="1"/>
|
||||
<Proxy group="filters" name="IntegrateAttributes" omit_from_toolbar="1"/>
|
||||
<Proxy group="filters" name="ExtractFieldDataOverTime"
|
||||
icon=":/pqWidgets/Icons/pqPlotGlobalOverTime24.png" />
|
||||
<Proxy group="filters" name="ProbeLine"
|
||||
icon=":/pqWidgets/Icons/pqPlotOverLine24.png" />
|
||||
<Proxy group="filters" name="ProbePoint"
|
||||
icon=":/pqWidgets/Icons/pqProbeLocation24.png" />
|
||||
<Proxy group="filters" name="PlotAttributes" omit_from_toolbar="1"/>
|
||||
<Proxy group="filters" name="PlotOnSortedLines" omit_from_toolbar="1"/>
|
||||
<Proxy group="filters" name="PlotOnIntersectionCurves" omit_from_toolbar="1"/>
|
||||
<Proxy group="filters" name="ProgrammableFilter"
|
||||
icon=":/pqWidgets/Icons/pqProgrammableFilter24.png" omit_from_toolbar="1"/>
|
||||
<Proxy group="filters" name="TransposeTable" omit_from_toolbar="1"/>
|
||||
<Proxy group="filters" name="ComputeQuartiles"
|
||||
icon=":/pqWidgets/Icons/pqBoxChart16.png" omit_from_toolbar="1"/>
|
||||
<Proxy group="filters" name="ExtractBagPlots"
|
||||
icon=":/pqWidgets/Icons/pqFunctionalBagChart16.png" omit_from_toolbar="1"/>
|
||||
<Proxy group="filters" name="ExtractLocation" omit_from_toolbar="1" />
|
||||
</Category>
|
||||
|
||||
<Category name="Statistics" menu_label="&Statistics">
|
||||
<Proxy group="filters" name="ContingencyStatistics"/>
|
||||
<Proxy group="filters" name="DescriptiveStatistics"/>
|
||||
<Proxy group="filters" name="KMeans"/>
|
||||
<Proxy group="filters" name="MulticorrelativeStatistics"/>
|
||||
<Proxy group="filters" name="PCAStatistics"/>
|
||||
</Category>
|
||||
|
||||
<Category name="Temporal" menu_label="&Temporal">
|
||||
<Proxy group="filters" name="ParticleTracer" />
|
||||
<Proxy group="filters" name="ParticlePath" />
|
||||
<Proxy group="filters" name="StreakLine" />
|
||||
<Proxy group="filters" name="TemporalCache" />
|
||||
<Proxy group="filters" name="TemporalInterpolator" />
|
||||
<Proxy group="filters" name="TemporalSnapToTimeStep" />
|
||||
<Proxy group="filters" name="TemporalShiftScale" />
|
||||
<Proxy group="filters" name="TemporalStatistics" />
|
||||
<Proxy group="filters" name="TimeToTextConvertor" />
|
||||
</Category>
|
||||
|
||||
<Category name="Material Analysis" menu_label="&Material Analysis">
|
||||
<Proxy group="filters" name="MaterialInterfaceFilter" />
|
||||
<Proxy group="filters" name="IntersectFragments" />
|
||||
</Category>
|
||||
|
||||
<Category name="CTH" menu_label="&CTH">
|
||||
<Proxy group="filters" name="CTHFragmentConnect"/>
|
||||
<Proxy group="filters" name="CTHFragmentIntersect"/>
|
||||
<Proxy group="filters" name="CTHPart" />
|
||||
<Proxy group="filters" name="NonOverlappingLevelIdScalars" />
|
||||
<Proxy group="filters" name="MaterialInterfaceFilter" />
|
||||
<Proxy group="filters" name="AMRDualClip" />
|
||||
<Proxy group="filters" name="AMRDualContour" />
|
||||
<Proxy group="filters" name="AMRConnectivity" />
|
||||
<Proxy group="filters" name="AMRFragmentIntegration" />
|
||||
<Proxy group="filters" name="AMRFragmentsFilter"/>
|
||||
<Proxy group="filters" name="ExtractHierarchicalLevel" />
|
||||
<Proxy group="filters" name="ExtractHierarchicalDataSets" />
|
||||
</Category>
|
||||
|
||||
<Category name="AMR" menu_label="&AMR">
|
||||
<Proxy group="filters" name="AMRDualMeshExtractor" />
|
||||
<Proxy group="filters" name="AMRResampleFilter" />
|
||||
<Proxy group="filters" name="AMRSlice" />
|
||||
<Proxy group="filters" name="AMRToMultiBlock" />
|
||||
<Proxy group="filters" name="AMRCutPlane" />
|
||||
<Proxy group="filters" name="OverlappingLevelIdScalars" />
|
||||
<Proxy group="filters" name="ExtractHierarchicalLevel" />
|
||||
<Proxy group="filters" name="ExtractHierarchicalDataSets" />
|
||||
</Category>
|
||||
|
||||
<Category name="Quadrature Points" menu_label="&Quadrature Points">
|
||||
<Proxy group="filters" name="QuadraturePointInterpolator" />
|
||||
<Proxy group="filters" name="QuadraturePointsGenerator" />
|
||||
<Proxy group="filters" name="QuadraturePointStatistics" />
|
||||
<Proxy group="filters" name="QuadratureSchemeDictionaryGenerator" />
|
||||
</Category>
|
||||
|
||||
<Category name="Annotation" menu_label="Annotation">
|
||||
<Proxy group="filters" name="AnnotateGlobalData" />
|
||||
<Proxy group="filters" name="AnnotateAttributeData" />
|
||||
<Proxy group="filters" name="PythonAnnotation" />
|
||||
<Proxy group="filters" name="TimeToTextConvertor" />
|
||||
<Proxy group="filters" name="DataSetRegionSurfaceFilter" />
|
||||
<Proxy group="filters" name="EnvironmentAnnotation" />
|
||||
</Category>
|
||||
|
||||
<Proxy group="filters" name="AddFieldArrays" />
|
||||
<Proxy group="filters" name="ImageDataToAMR" />
|
||||
<Proxy group="filters" name="UniformGridPartitioner" />
|
||||
<Proxy group="filters" name="Append" />
|
||||
<Proxy group="filters" name="AppendAttributes" />
|
||||
<Proxy group="filters" name="AppendPolyData" />
|
||||
<Proxy group="filters" name="AngularPeriodicFilter" />
|
||||
<Proxy group="filters" name="ArbitrarySourceStreamTracer" />
|
||||
<Proxy group="filters" name="BlockIdScalars" />
|
||||
<Proxy group="filters" name="RandomAttributeGenerator" />
|
||||
<Proxy group="filters" name="BrownianPoints" />
|
||||
<Proxy group="filters" name="Calculator" />
|
||||
<Proxy group="filters" name="CellCenters" />
|
||||
<Proxy group="filters" name="CellDataToPointData" />
|
||||
<Proxy group="filters" name="CellDerivatives"/>
|
||||
<Proxy group="filters" name="CleanPolyData" />
|
||||
<Proxy group="filters" name="CleanUnstructuredGrid" />
|
||||
<Proxy group="filters" name="CleanUnstructuredGridCells" />
|
||||
<Proxy group="filters" name="Clip" />
|
||||
<Proxy group="filters" name="ClipClosedSurface" />
|
||||
<Proxy group="filters" name="Contour" />
|
||||
<Proxy group="filters" name="Curvatures" />
|
||||
<Proxy group="filters" name="Cut" />
|
||||
<Proxy group="filters" name="CutEverything" />
|
||||
<Proxy group="filters" name="D3" />
|
||||
<Proxy group="filters" name="DataSetSurfaceFilter" />
|
||||
<Proxy group="filters" name="DataSetRegionSurfaceFilter" />
|
||||
<Proxy group="filters" name="DataSetTriangleFilter" />
|
||||
<Proxy group="filters" name="DecimatePro" />
|
||||
<Proxy group="filters" name="Delaunay2D" />
|
||||
<Proxy group="filters" name="Delaunay3D" />
|
||||
<Proxy group="filters" name="ElevationFilter" />
|
||||
<Proxy group="filters" name="ExtractBlock" />
|
||||
<Proxy group="filters" name="ExtractComponent" />
|
||||
<Proxy group="filters" name="ExtractEdges" />
|
||||
<Proxy group="filters" name="ExtractGeometry" />
|
||||
<Proxy group="filters" name="ExtractGrid" />
|
||||
<Proxy group="filters" name="ExtractHistogram" />
|
||||
<Proxy group="filters" name="ExtractSelection" />
|
||||
<Proxy group="filters" name="ExtractSelectionOverTime" />
|
||||
<Proxy group="filters" name="FeatureEdges" />
|
||||
<Proxy group="filters" name="FFTSelectionOverTime" />
|
||||
<Proxy group="filters" name="GaussianSplatter"/>
|
||||
<Proxy group="filters" name="GenerateIdScalars"/>
|
||||
<Proxy group="filters" name="GhostCellsGenerator" />
|
||||
<Proxy group="filters" name="Glyph" />
|
||||
<Proxy group="filters" name="GlyphWithCustomSource" />
|
||||
<Proxy group="filters" name="Gradient" />
|
||||
<Proxy group="filters" name="GridConnectivity" />
|
||||
<Proxy group="filters" name="GroupDataSets" />
|
||||
<Proxy group="filters" name="ImageDataToAMR" />
|
||||
<Proxy group="filters" name="ImageDataToPointSet" />
|
||||
<Proxy group="filters" name="IntegrateAttributes" />
|
||||
<Proxy group="filters" name="IntegrateFlowThroughSurface" />
|
||||
<Proxy group="filters" name="LegacyGlyph" />
|
||||
<!-- <Proxy group="filters" name="LevelIdScalars" /> -->
|
||||
<Proxy group="filters" name="LinearExtrusionFilter" />
|
||||
<Proxy group="filters" name="LoopSubdivisionFilter" />
|
||||
<Proxy group="filters" name="MaskPoints" />
|
||||
<Proxy group="filters" name="Median" />
|
||||
<Proxy group="filters" name="MergeBlocks" />
|
||||
<Proxy group="filters" name="MeshQuality" />
|
||||
<Proxy group="filters" name="OctreeDepthLimit" />
|
||||
<Proxy group="filters" name="OctreeDepthScalars" />
|
||||
<Proxy group="filters" name="OutlineCornerFilter" />
|
||||
<Proxy group="filters" name="OutlineFilter" />
|
||||
<Proxy group="filters" name="ParticlePathLines" />
|
||||
<Proxy group="filters" name="ParticleTracer" />
|
||||
<Proxy group="filters" name="PassArrays" />
|
||||
<Proxy group="filters" name="PlotAttributes" />
|
||||
<Proxy group="filters" name="PlotOnIntersectionCurves" />
|
||||
<Proxy group="filters" name="PlotOnSortedLines" />
|
||||
<Proxy group="filters" name="PointDataToCellData" />
|
||||
<Proxy group="filters" name="PolyDataNormals" />
|
||||
<Proxy group="filters" name="Probe" />
|
||||
<Proxy group="filters" name="ImageResampling" />
|
||||
<Proxy group="filters" name="ProbeLine" />
|
||||
<Proxy group="filters" name="ProbePoint" />
|
||||
<Proxy group="filters" name="ProcessIdScalars" />
|
||||
<Proxy group="filters" name="ProgrammableFilter" />
|
||||
<Proxy group="filters" name="PVConnectivityFilter" />
|
||||
<Proxy group="filters" name="PythonCalculator" />
|
||||
<Proxy group="filters" name="PythonExtractSelection" />
|
||||
|
||||
<Proxy group="filters" name="QuadricClustering" />
|
||||
<Proxy group="filters" name="RectilinearGridConnectivity" />
|
||||
<Proxy group="filters" name="RectilinearGridToPointSet" />
|
||||
<Proxy group="filters" name="ReflectionFilter" />
|
||||
<Proxy group="filters" name="RibbonFilter" />
|
||||
<Proxy group="filters" name="RotationalExtrusionFilter" />
|
||||
<Proxy group="filters" name="ScatterPlot"/>
|
||||
<Proxy group="filters" name="ShrinkFilter" />
|
||||
<Proxy group="filters" name="SmoothPolyDataFilter" />
|
||||
<Proxy group="filters" name="StreamTracer" />
|
||||
<Proxy group="filters" name="Stripper" />
|
||||
<Proxy group="filters" name="StructuredGridOutlineFilter" />
|
||||
<Proxy group="filters" name="Subdivide" />
|
||||
<Proxy group="filters" name="SurfaceVectors" />
|
||||
<Proxy group="filters" name="TemporalCache" />
|
||||
<Proxy group="filters" name="TemporalInterpolator" />
|
||||
<Proxy group="filters" name="TemporalSnapToTimeStep" />
|
||||
<Proxy group="filters" name="TemporalShiftScale" />
|
||||
<Proxy group="filters" name="TemporalStatistics" />
|
||||
<Proxy group="filters" name="TensorGlyph" />
|
||||
<Proxy group="filters" name="TessellatorFilter" />
|
||||
<Proxy group="filters" name="TextureMapToCylinder" />
|
||||
<Proxy group="filters" name="TextureMapToPlane" />
|
||||
<Proxy group="filters" name="TextureMapToSphere" />
|
||||
<Proxy group="filters" name="Threshold" />
|
||||
<Proxy group="filters" name="TransformFilter" />
|
||||
<Proxy group="filters" name="TriangleFilter" />
|
||||
<Proxy group="filters" name="TubeFilter" />
|
||||
<Proxy group="filters" name="UnstructuredGradient" />
|
||||
<Proxy group="filters" name="WarpScalar" />
|
||||
<Proxy group="filters" name="WarpVector" />
|
||||
<Proxy group="filters" name="YoungsMaterialInterface"/>
|
||||
<Proxy group="filters" name="NormalGlyphs" />
|
||||
<Proxy group="filters" name="TableToPolyData" />
|
||||
<Proxy group="filters" name="TableToStructuredGrid" />
|
||||
<Proxy group="filters" name="IsoVolume" />
|
||||
|
||||
<Proxy group="filters" name="GenericClip" />
|
||||
<Proxy group="filters" name="GenericContour" />
|
||||
<Proxy group="filters" name="GenericCut" />
|
||||
<Proxy group="filters" name="GenericStreamTracer" />
|
||||
<Proxy group="filters" name="GenericGeometryFilter" />
|
||||
<Proxy group="filters" name="SliceAlongPolyLine" />
|
||||
</ParaViewFilters>
|
||||
@ -1,291 +0,0 @@
|
||||
/*=========================================================================
|
||||
|
||||
Program: ParaView
|
||||
Module: ParaViewMainWindow.cxx
|
||||
|
||||
Copyright (c) 2005,2006 Sandia Corporation, Kitware Inc.
|
||||
All rights reserved.
|
||||
|
||||
ParaView is a free software; you can redistribute it and/or modify it
|
||||
under the terms of the ParaView license version 1.2.
|
||||
|
||||
See License_v1.2.txt for the full ParaView license.
|
||||
A copy of this license can be obtained by contacting
|
||||
Kitware Inc.
|
||||
28 Corporate Drive
|
||||
Clifton Park, NY 12065
|
||||
USA
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
|
||||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
========================================================================*/
|
||||
#include "vtkPVConfig.h"
|
||||
#ifdef PARAVIEW_ENABLE_PYTHON
|
||||
extern "C" {
|
||||
void vtkPVInitializePythonModules();
|
||||
}
|
||||
#endif
|
||||
|
||||
#include "ParaViewMainWindow.h"
|
||||
#include "ui_ParaViewMainWindow.h"
|
||||
|
||||
#include "pqActiveObjects.h"
|
||||
#include "pqApplicationCore.h"
|
||||
#include "pqDeleteReaction.h"
|
||||
#include "pqHelpReaction.h"
|
||||
#include "pqLoadDataReaction.h"
|
||||
#include "pqOptions.h"
|
||||
#include "pqParaViewBehaviors.h"
|
||||
#include "pqParaViewMenuBuilders.h"
|
||||
#include "vtkProcessModule.h"
|
||||
#include "vtkPVGeneralSettings.h"
|
||||
#include "vtkPVPlugin.h"
|
||||
#include "vtkSMSettings.h"
|
||||
|
||||
#ifndef BUILD_SHARED_LIBS
|
||||
# include "pvStaticPluginsInit.h"
|
||||
#endif
|
||||
|
||||
#include <QDragEnterEvent>
|
||||
#include <QDropEvent>
|
||||
#include <QUrl>
|
||||
#include <QMimeData>
|
||||
|
||||
#include "ParaViewDocumentationInitializer.h"
|
||||
|
||||
|
||||
#ifdef PARAVIEW_ENABLE_PYTHON
|
||||
# include "pqPythonDebugLeaksView.h"
|
||||
typedef pqPythonDebugLeaksView DebugLeaksViewType;
|
||||
#else
|
||||
# include "vtkQtDebugLeaksView.h"
|
||||
typedef vtkQtDebugLeaksView DebugLeaksViewType;
|
||||
#endif
|
||||
|
||||
class ParaViewMainWindow::pqInternals : public Ui::pqClientMainWindow
|
||||
{
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
ParaViewMainWindow::ParaViewMainWindow()
|
||||
{
|
||||
// the debug leaks view should be constructed as early as possible
|
||||
// so that it can monitor vtk objects created at application startup.
|
||||
if (getenv("PV_DEBUG_LEAKS_VIEW"))
|
||||
{
|
||||
vtkQtDebugLeaksView* leaksView = new DebugLeaksViewType(this);
|
||||
leaksView->setWindowFlags(Qt::Window);
|
||||
leaksView->show();
|
||||
}
|
||||
|
||||
#ifdef PARAVIEW_ENABLE_PYTHON
|
||||
vtkPVInitializePythonModules();
|
||||
#endif
|
||||
|
||||
// init the ParaView embedded documentation.
|
||||
PARAVIEW_DOCUMENTATION_INIT();
|
||||
|
||||
this->Internals = new pqInternals();
|
||||
this->Internals->setupUi(this);
|
||||
|
||||
// Setup default GUI layout.
|
||||
this->setTabPosition(Qt::LeftDockWidgetArea, QTabWidget::North);
|
||||
|
||||
// Set up the dock window corners to give the vertical docks more room.
|
||||
this->setCorner(Qt::BottomLeftCorner, Qt::LeftDockWidgetArea);
|
||||
this->setCorner(Qt::BottomRightCorner, Qt::RightDockWidgetArea);
|
||||
|
||||
|
||||
this->tabifyDockWidget(
|
||||
this->Internals->colorMapEditorDock,
|
||||
this->Internals->memoryInspectorDock);
|
||||
this->tabifyDockWidget(
|
||||
this->Internals->colorMapEditorDock,
|
||||
this->Internals->timeInspectorDock);
|
||||
this->tabifyDockWidget(
|
||||
this->Internals->colorMapEditorDock,
|
||||
this->Internals->comparativePanelDock);
|
||||
this->tabifyDockWidget(
|
||||
this->Internals->colorMapEditorDock,
|
||||
this->Internals->collaborationPanelDock);
|
||||
|
||||
this->Internals->selectionDisplayDock->hide();
|
||||
this->Internals->animationViewDock->hide();
|
||||
this->Internals->statisticsDock->hide();
|
||||
this->Internals->comparativePanelDock->hide();
|
||||
this->Internals->collaborationPanelDock->hide();
|
||||
this->Internals->memoryInspectorDock->hide();
|
||||
this->Internals->multiBlockInspectorDock->hide();
|
||||
this->Internals->colorMapEditorDock->hide();
|
||||
this->Internals->timeInspectorDock->hide();
|
||||
|
||||
this->tabifyDockWidget(this->Internals->animationViewDock,
|
||||
this->Internals->statisticsDock);
|
||||
|
||||
// setup properties dock
|
||||
this->tabifyDockWidget(
|
||||
this->Internals->propertiesDock,
|
||||
this->Internals->viewPropertiesDock);
|
||||
this->tabifyDockWidget(
|
||||
this->Internals->propertiesDock,
|
||||
this->Internals->displayPropertiesDock);
|
||||
this->tabifyDockWidget(this->Internals->propertiesDock,
|
||||
this->Internals->informationDock);
|
||||
|
||||
vtkSMSettings* settings = vtkSMSettings::GetInstance();
|
||||
|
||||
int propertiesPanelMode = settings->GetSettingAsInt(
|
||||
".settings.GeneralSettings.PropertiesPanelMode", vtkPVGeneralSettings::ALL_IN_ONE);
|
||||
switch (propertiesPanelMode)
|
||||
{
|
||||
case vtkPVGeneralSettings::SEPARATE_DISPLAY_PROPERTIES:
|
||||
delete this->Internals->viewPropertiesPanel;
|
||||
delete this->Internals->viewPropertiesDock;
|
||||
this->Internals->viewPropertiesPanel = NULL;
|
||||
this->Internals->viewPropertiesDock = NULL;
|
||||
|
||||
this->Internals->propertiesPanel->setPanelMode(
|
||||
pqPropertiesPanel::SOURCE_PROPERTIES|pqPropertiesPanel::VIEW_PROPERTIES);
|
||||
break;
|
||||
|
||||
case vtkPVGeneralSettings::SEPARATE_VIEW_PROPERTIES:
|
||||
delete this->Internals->displayPropertiesPanel;
|
||||
delete this->Internals->displayPropertiesDock;
|
||||
this->Internals->displayPropertiesPanel = NULL;
|
||||
this->Internals->displayPropertiesDock = NULL;
|
||||
|
||||
this->Internals->propertiesPanel->setPanelMode(
|
||||
pqPropertiesPanel::SOURCE_PROPERTIES|pqPropertiesPanel::DISPLAY_PROPERTIES);
|
||||
break;
|
||||
|
||||
case vtkPVGeneralSettings::ALL_SEPARATE:
|
||||
this->Internals->propertiesPanel->setPanelMode(
|
||||
pqPropertiesPanel::SOURCE_PROPERTIES);
|
||||
break;
|
||||
|
||||
case vtkPVGeneralSettings::ALL_IN_ONE:
|
||||
default:
|
||||
delete this->Internals->viewPropertiesPanel;
|
||||
delete this->Internals->viewPropertiesDock;
|
||||
this->Internals->viewPropertiesPanel = NULL;
|
||||
this->Internals->viewPropertiesDock = NULL;
|
||||
|
||||
delete this->Internals->displayPropertiesPanel;
|
||||
delete this->Internals->displayPropertiesDock;
|
||||
this->Internals->displayPropertiesPanel = NULL;
|
||||
this->Internals->displayPropertiesDock = NULL;
|
||||
break;
|
||||
}
|
||||
|
||||
this->Internals->propertiesDock->show();
|
||||
this->Internals->propertiesDock->raise();
|
||||
|
||||
// Enable help from the properties panel.
|
||||
QObject::connect(this->Internals->propertiesPanel,
|
||||
SIGNAL(helpRequested(const QString&, const QString&)),
|
||||
this, SLOT(showHelpForProxy(const QString&, const QString&)));
|
||||
|
||||
/// hook delete to pqDeleteReaction.
|
||||
QAction* tempDeleteAction = new QAction(this);
|
||||
pqDeleteReaction* handler = new pqDeleteReaction(tempDeleteAction);
|
||||
handler->connect(this->Internals->propertiesPanel,
|
||||
SIGNAL(deleteRequested(pqPipelineSource*)),
|
||||
SLOT(deleteSource(pqPipelineSource*)));
|
||||
|
||||
// setup color editor
|
||||
/// Provide access to the color-editor panel for the application.
|
||||
pqApplicationCore::instance()->registerManager(
|
||||
"COLOR_EDITOR_PANEL", this->Internals->colorMapEditorDock);
|
||||
|
||||
// Populate application menus with actions.
|
||||
pqParaViewMenuBuilders::buildFileMenu(*this->Internals->menu_File);
|
||||
pqParaViewMenuBuilders::buildEditMenu(*this->Internals->menu_Edit);
|
||||
|
||||
// Populate sources menu.
|
||||
pqParaViewMenuBuilders::buildSourcesMenu(*this->Internals->menuSources, this);
|
||||
|
||||
// Populate filters menu.
|
||||
pqParaViewMenuBuilders::buildFiltersMenu(*this->Internals->menuFilters, this);
|
||||
|
||||
// Populate Tools menu.
|
||||
pqParaViewMenuBuilders::buildToolsMenu(*this->Internals->menuTools);
|
||||
|
||||
// Populate Catalyst menu.
|
||||
pqParaViewMenuBuilders::buildCatalystMenu(*this->Internals->menu_Catalyst);
|
||||
|
||||
// setup the context menu for the pipeline browser.
|
||||
pqParaViewMenuBuilders::buildPipelineBrowserContextMenu(
|
||||
*this->Internals->pipelineBrowser);
|
||||
|
||||
pqParaViewMenuBuilders::buildToolbars(*this);
|
||||
|
||||
// Setup the View menu. This must be setup after all toolbars and dockwidgets
|
||||
// have been created.
|
||||
pqParaViewMenuBuilders::buildViewMenu(*this->Internals->menu_View, *this);
|
||||
|
||||
// Setup the menu to show macros.
|
||||
pqParaViewMenuBuilders::buildMacrosMenu(*this->Internals->menu_Macros);
|
||||
|
||||
// Setup the help menu.
|
||||
pqParaViewMenuBuilders::buildHelpMenu(*this->Internals->menu_Help);
|
||||
|
||||
// Final step, define application behaviors. Since we want all ParaView
|
||||
// behaviors, we use this convenience method.
|
||||
new pqParaViewBehaviors(this, this);
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
ParaViewMainWindow::~ParaViewMainWindow()
|
||||
{
|
||||
delete this->Internals;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void ParaViewMainWindow::showHelpForProxy(const QString& groupname, const
|
||||
QString& proxyname)
|
||||
{
|
||||
pqHelpReaction::showProxyHelp(groupname, proxyname);
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void ParaViewMainWindow::dragEnterEvent(QDragEnterEvent *evt)
|
||||
{
|
||||
evt->acceptProposedAction();
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void ParaViewMainWindow::dropEvent(QDropEvent *evt)
|
||||
{
|
||||
QList<QUrl> urls = evt->mimeData()->urls();
|
||||
if (urls.isEmpty())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
QList<QString> files;
|
||||
|
||||
foreach(QUrl url,urls)
|
||||
{
|
||||
if(!url.toLocalFile().isEmpty())
|
||||
{
|
||||
files.append(url.toLocalFile());
|
||||
}
|
||||
}
|
||||
|
||||
// If we have no file we return
|
||||
if(files.empty() || files.first().isEmpty())
|
||||
{
|
||||
return;
|
||||
}
|
||||
pqLoadDataReaction::loadData(files);
|
||||
}
|
||||
@ -1,63 +0,0 @@
|
||||
/*=========================================================================
|
||||
|
||||
Program: ParaView
|
||||
Module: ParaViewMainWindow.h
|
||||
|
||||
Copyright (c) 2005,2006 Sandia Corporation, Kitware Inc.
|
||||
All rights reserved.
|
||||
|
||||
ParaView is a free software; you can redistribute it and/or modify it
|
||||
under the terms of the ParaView license version 1.2.
|
||||
|
||||
See License_v1.2.txt for the full ParaView license.
|
||||
A copy of this license can be obtained by contacting
|
||||
Kitware Inc.
|
||||
28 Corporate Drive
|
||||
Clifton Park, NY 12065
|
||||
USA
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
|
||||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
========================================================================*/
|
||||
#ifndef ParaViewMainWindow_h
|
||||
#define ParaViewMainWindow_h
|
||||
|
||||
#include <QMainWindow>
|
||||
|
||||
/// MainWindow for the default ParaView application.
|
||||
class ParaViewMainWindow : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
typedef QMainWindow Superclass;
|
||||
public:
|
||||
ParaViewMainWindow();
|
||||
~ParaViewMainWindow();
|
||||
|
||||
protected:
|
||||
void dragEnterEvent(QDragEnterEvent *evt);
|
||||
void dropEvent(QDropEvent *evt);
|
||||
|
||||
protected slots:
|
||||
void showHelpForProxy(const QString& proxyname, const QString& groupname);
|
||||
|
||||
private:
|
||||
ParaViewMainWindow(const ParaViewMainWindow&); // Not implemented.
|
||||
void operator=(const ParaViewMainWindow&); // Not implemented.
|
||||
|
||||
class pqInternals;
|
||||
pqInternals* Internals;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@ -1,407 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>pqClientMainWindow</class>
|
||||
<widget class="QMainWindow" name="pqClientMainWindow">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>1152</width>
|
||||
<height>768</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="acceptDrops">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>MainWindow</string>
|
||||
</property>
|
||||
<property name="windowIcon">
|
||||
<iconset resource="../../Qt/Components/Resources/pqComponents.qrc">
|
||||
<normaloff>:/pqWidgets/Icons/pvIcon512.png</normaloff>:/pqWidgets/Icons/pvIcon512.png</iconset>
|
||||
</property>
|
||||
<widget class="QWidget" name="centralwidget">
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<property name="margin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="pqTabbedMultiViewWidget" name="MultiViewWidget" native="true"/>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QMenuBar" name="menubar">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>1152</width>
|
||||
<height>25</height>
|
||||
</rect>
|
||||
</property>
|
||||
<widget class="QMenu" name="menu_File">
|
||||
<property name="title">
|
||||
<string>&File</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QMenu" name="menuSources">
|
||||
<property name="title">
|
||||
<string>&Sources</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QMenu" name="menuFilters">
|
||||
<property name="title">
|
||||
<string>&Filters</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QMenu" name="menu_Edit">
|
||||
<property name="title">
|
||||
<string>&Edit</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QMenu" name="menu_View">
|
||||
<property name="title">
|
||||
<string>&View</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QMenu" name="menuTools">
|
||||
<property name="title">
|
||||
<string>&Tools</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QMenu" name="menu_Help">
|
||||
<property name="title">
|
||||
<string>&Help</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QMenu" name="menu_Macros">
|
||||
<property name="title">
|
||||
<string>&Macros</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QMenu" name="menu_Catalyst">
|
||||
<property name="title">
|
||||
<string>&Catalyst</string>
|
||||
</property>
|
||||
</widget>
|
||||
<addaction name="menu_File"/>
|
||||
<addaction name="menu_Edit"/>
|
||||
<addaction name="menu_View"/>
|
||||
<addaction name="menuSources"/>
|
||||
<addaction name="menuFilters"/>
|
||||
<addaction name="menuTools"/>
|
||||
<addaction name="menu_Catalyst"/>
|
||||
<addaction name="menu_Macros"/>
|
||||
<addaction name="menu_Help"/>
|
||||
</widget>
|
||||
<widget class="pqStatusBar" name="statusbar"/>
|
||||
<widget class="QDockWidget" name="pipelineBrowserDock">
|
||||
<property name="allowedAreas">
|
||||
<set>Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea</set>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Pipeline Browser</string>
|
||||
</property>
|
||||
<attribute name="dockWidgetArea">
|
||||
<number>1</number>
|
||||
</attribute>
|
||||
<widget class="pqPipelineBrowserWidget" name="pipelineBrowser">
|
||||
<property name="contextMenuPolicy">
|
||||
<enum>Qt::ActionsContextMenu</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</widget>
|
||||
<widget class="QDockWidget" name="statisticsDock">
|
||||
<property name="allowedAreas">
|
||||
<set>Qt::BottomDockWidgetArea|Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea</set>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Statistics Inspector</string>
|
||||
</property>
|
||||
<attribute name="dockWidgetArea">
|
||||
<number>8</number>
|
||||
</attribute>
|
||||
<widget class="pqDataInformationWidget" name="statisticsView"/>
|
||||
</widget>
|
||||
<widget class="QDockWidget" name="animationViewDock">
|
||||
<property name="windowTitle">
|
||||
<string>Animation View</string>
|
||||
</property>
|
||||
<attribute name="dockWidgetArea">
|
||||
<number>8</number>
|
||||
</attribute>
|
||||
<widget class="pqPVAnimationWidget" name="animationView"/>
|
||||
</widget>
|
||||
<widget class="QDockWidget" name="comparativePanelDock">
|
||||
<property name="allowedAreas">
|
||||
<set>Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea</set>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Comparative View Inspector</string>
|
||||
</property>
|
||||
<attribute name="dockWidgetArea">
|
||||
<number>2</number>
|
||||
</attribute>
|
||||
<widget class="pqComparativeVisPanel" name="comparativeVisPanel"/>
|
||||
</widget>
|
||||
<widget class="QDockWidget" name="collaborationPanelDock">
|
||||
<property name="allowedAreas">
|
||||
<set>Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea</set>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Collaboration Panel</string>
|
||||
</property>
|
||||
<attribute name="dockWidgetArea">
|
||||
<number>2</number>
|
||||
</attribute>
|
||||
<widget class="pqCollaborationPanel" name="collaborationPanel"/>
|
||||
</widget>
|
||||
<widget class="QDockWidget" name="informationDock">
|
||||
<property name="allowedAreas">
|
||||
<set>Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea</set>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Information</string>
|
||||
</property>
|
||||
<attribute name="dockWidgetArea">
|
||||
<number>1</number>
|
||||
</attribute>
|
||||
<widget class="QWidget" name="informationWidgetFrame">
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="margin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QScrollArea" name="informationScrollArea">
|
||||
<property name="widgetResizable">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<widget class="pqProxyInformationWidget" name="informationWidget">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>78</width>
|
||||
<height>188</height>
|
||||
</rect>
|
||||
</property>
|
||||
</widget>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</widget>
|
||||
<widget class="QDockWidget" name="memoryInspectorDock">
|
||||
<property name="allowedAreas">
|
||||
<set>Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea</set>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Memory Inspector</string>
|
||||
</property>
|
||||
<attribute name="dockWidgetArea">
|
||||
<number>2</number>
|
||||
</attribute>
|
||||
<widget class="pqMemoryInspectorPanel" name="dockWidgetContents"/>
|
||||
</widget>
|
||||
<widget class="QDockWidget" name="propertiesDock">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>80</width>
|
||||
<height>41</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="allowedAreas">
|
||||
<set>Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea</set>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Properties</string>
|
||||
</property>
|
||||
<attribute name="dockWidgetArea">
|
||||
<number>1</number>
|
||||
</attribute>
|
||||
<widget class="pqPropertiesPanel" name="propertiesPanel"/>
|
||||
</widget>
|
||||
<widget class="QDockWidget" name="multiBlockInspectorDock">
|
||||
<property name="allowedAreas">
|
||||
<set>Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea</set>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Multi-block Inspector</string>
|
||||
</property>
|
||||
<attribute name="dockWidgetArea">
|
||||
<number>1</number>
|
||||
</attribute>
|
||||
<widget class="pqMultiBlockInspectorPanel" name="multiBlockInspectorPanel"/>
|
||||
</widget>
|
||||
<widget class="QDockWidget" name="colorMapEditorDock">
|
||||
<property name="allowedAreas">
|
||||
<set>Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea</set>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Color Map Editor</string>
|
||||
</property>
|
||||
<attribute name="dockWidgetArea">
|
||||
<number>2</number>
|
||||
</attribute>
|
||||
<widget class="pqColorMapEditor" name="colorMapEditorPanel"/>
|
||||
</widget>
|
||||
<widget class="QDockWidget" name="selectionDisplayDock">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="allowedAreas">
|
||||
<set>Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea</set>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Selection Display Inspector</string>
|
||||
</property>
|
||||
<attribute name="dockWidgetArea">
|
||||
<number>2</number>
|
||||
</attribute>
|
||||
<widget class="pqFindDataSelectionDisplayFrame" name="selectionDisplayWidget">
|
||||
<property name="useVerticalLayout" stdset="0">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</widget>
|
||||
<widget class="QDockWidget" name="displayPropertiesDock">
|
||||
<property name="allowedAreas">
|
||||
<set>Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea</set>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Display</string>
|
||||
</property>
|
||||
<attribute name="dockWidgetArea">
|
||||
<number>1</number>
|
||||
</attribute>
|
||||
<widget class="pqPropertiesPanel" name="displayPropertiesPanel">
|
||||
<property name="panelMode" stdset="0">
|
||||
<number>2</number>
|
||||
</property>
|
||||
</widget>
|
||||
</widget>
|
||||
<widget class="QDockWidget" name="viewPropertiesDock">
|
||||
<property name="allowedAreas">
|
||||
<set>Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea</set>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>View</string>
|
||||
</property>
|
||||
<attribute name="dockWidgetArea">
|
||||
<number>1</number>
|
||||
</attribute>
|
||||
<widget class="pqPropertiesPanel" name="viewPropertiesPanel">
|
||||
<property name="panelMode" stdset="0">
|
||||
<number>4</number>
|
||||
</property>
|
||||
</widget>
|
||||
</widget>
|
||||
<widget class="QDockWidget" name="timeInspectorDock">
|
||||
<property name="allowedAreas">
|
||||
<set>Qt::AllDockWidgetAreas</set>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Time Inspector</string>
|
||||
</property>
|
||||
<attribute name="dockWidgetArea">
|
||||
<number>2</number>
|
||||
</attribute>
|
||||
<widget class="pqTimeInspectorWidget" name="timeInspectorPanel"/>
|
||||
</widget>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
<class>pqPipelineBrowserWidget</class>
|
||||
<extends>QWidget</extends>
|
||||
<header>pqPipelineBrowserWidget.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>pqTabbedMultiViewWidget</class>
|
||||
<extends>QWidget</extends>
|
||||
<header>pqTabbedMultiViewWidget.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>pqPVAnimationWidget</class>
|
||||
<extends>QWidget</extends>
|
||||
<header>pqPVAnimationWidget.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>pqDataInformationWidget</class>
|
||||
<extends>QWidget</extends>
|
||||
<header>pqDataInformationWidget.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>pqStatusBar</class>
|
||||
<extends>QStatusBar</extends>
|
||||
<header>pqStatusBar.h</header>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>pqComparativeVisPanel</class>
|
||||
<extends>QWidget</extends>
|
||||
<header>pqComparativeVisPanel.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>pqCollaborationPanel</class>
|
||||
<extends>QWidget</extends>
|
||||
<header>pqCollaborationPanel.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>pqProxyInformationWidget</class>
|
||||
<extends>QWidget</extends>
|
||||
<header>pqProxyInformationWidget.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>pqMemoryInspectorPanel</class>
|
||||
<extends>QWidget</extends>
|
||||
<header>pqMemoryInspectorPanel.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>pqPropertiesPanel</class>
|
||||
<extends>QWidget</extends>
|
||||
<header>pqPropertiesPanel.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>pqMultiBlockInspectorPanel</class>
|
||||
<extends>QWidget</extends>
|
||||
<header>pqMultiBlockInspectorPanel.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>pqColorMapEditor</class>
|
||||
<extends>QWidget</extends>
|
||||
<header>pqColorMapEditor.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>pqFindDataSelectionDisplayFrame</class>
|
||||
<extends>QWidget</extends>
|
||||
<header>pqFindDataSelectionDisplayFrame.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>pqTimeInspectorWidget</class>
|
||||
<extends>QWidget</extends>
|
||||
<header>pqTimeInspectorWidget.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
<resources>
|
||||
<include location="../../Qt/Components/Resources/pqComponents.qrc"/>
|
||||
</resources>
|
||||
<connections/>
|
||||
</ui>
|
||||
@ -1,30 +0,0 @@
|
||||
<ParaViewSources>
|
||||
<Proxy group="sources" name="GlyphSource2D" />
|
||||
<Proxy group="sources" name="VectorText" />
|
||||
<Proxy group="sources" name="TimeToTextConvertorSource" />
|
||||
<Proxy group="sources" name="ArrowSource" />
|
||||
<Proxy group="sources" name="Axes" />
|
||||
<Proxy group="sources" name="CubeSource" />
|
||||
<Proxy group="sources" name="ConeSource" />
|
||||
<Proxy group="sources" name="CylinderSource" />
|
||||
<Proxy group="sources" name="DataObjectGenerator" />
|
||||
<Proxy group="sources" name="DiskSource" />
|
||||
<Proxy group="sources" name="HierarchicalFractal" />
|
||||
<Proxy group="sources" name="HyperTreeGridSource" />
|
||||
<Proxy group="sources" name="LineSource" />
|
||||
<Proxy group="sources" name="ImageMandelbrotSource" />
|
||||
<Proxy group="sources" name="OctreeFractal" />
|
||||
<Proxy group="sources" name="OutlineSource" />
|
||||
<Proxy group="sources" name="PlaneSource" />
|
||||
<Proxy group="sources" name="PointSource" />
|
||||
<Proxy group="sources" name="PolyLineSource" />
|
||||
<Proxy group="sources" name="ProgrammableSource" />
|
||||
<Proxy group="sources" name="SphereSource" />
|
||||
<Proxy group="sources" name="SplineSource" />
|
||||
<Proxy group="sources" name="SuperquadricSource" />
|
||||
<Proxy group="sources" name="TextSource" />
|
||||
<Proxy group="sources" name="TimeSource" />
|
||||
<Proxy group="sources" name="Ruler" />
|
||||
<Proxy group="sources" name="RTAnalyticSource" />
|
||||
<Proxy group="sources" name="AMRGaussianPulseSource" />
|
||||
</ParaViewSources>
|
||||
@ -1,362 +0,0 @@
|
||||
/*=========================================================================
|
||||
|
||||
Program: ParaView
|
||||
Module: ParaViewVRUI.cxx
|
||||
|
||||
Copyright (c) 2005,2006 Sandia Corporation, Kitware Inc.
|
||||
All rights reserved.
|
||||
|
||||
ParaView is a free software; you can redistribute it and/or modify it
|
||||
under the terms of the ParaView license version 1.2.
|
||||
|
||||
See License_v1.2.txt for the full ParaView license.
|
||||
A copy of this license can be obtained by contacting
|
||||
Kitware Inc.
|
||||
28 Corporate Drive
|
||||
Clifton Park, NY 12065
|
||||
USA
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
|
||||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
========================================================================*/
|
||||
#include "ParaViewVRUI.h"
|
||||
|
||||
#include "vruiPipe.h"
|
||||
#include "vruiServerState.h"
|
||||
#include "vruiThread.h"
|
||||
#include <vector>
|
||||
#include <iostream>
|
||||
#include <QTcpSocket>
|
||||
#include <QWaitCondition>
|
||||
#include <QMutex>
|
||||
#include "vtkMath.h"
|
||||
#include "vtkSMCaveRenderViewProxy.h"
|
||||
#include "pqActiveObjects.h"
|
||||
#include "pqView.h"
|
||||
|
||||
|
||||
class ParaViewVRUI::pqInternals
|
||||
{
|
||||
public:
|
||||
pqInternals()
|
||||
{
|
||||
this->Pipe=0;
|
||||
this->State=0;
|
||||
this->Active=false;
|
||||
this->Streaming=false;
|
||||
this->Thread=0;
|
||||
this->StateMutex=0;
|
||||
this->PacketSignalCond=0;
|
||||
this->PacketSignalCondMutex=0;
|
||||
}
|
||||
~pqInternals()
|
||||
{
|
||||
if(this->Pipe!=0)
|
||||
{
|
||||
delete this->Pipe;
|
||||
}
|
||||
if(this->State!=0)
|
||||
{
|
||||
delete this->State;
|
||||
}
|
||||
if(this->Thread!=0)
|
||||
{
|
||||
delete this->Thread;
|
||||
}
|
||||
}
|
||||
vruiPipe *Pipe;
|
||||
vruiServerState *State;
|
||||
bool Active;
|
||||
bool Streaming;
|
||||
vruiThread *Thread;
|
||||
|
||||
QMutex *StateMutex;
|
||||
|
||||
QWaitCondition *PacketSignalCond;
|
||||
QMutex *PacketSignalCondMutex;
|
||||
};
|
||||
|
||||
#if 0
|
||||
void VRUI_CALLBACK handleTrackerPosQuat(void *userdata,
|
||||
const vrpn_TRACKERCB t)
|
||||
{
|
||||
t_user_callback *tData=static_cast<t_user_callback *>(userdata);
|
||||
|
||||
// Make sure we have a count value for this sensor
|
||||
while(tData->t_counts.size() <= static_cast<unsigned>(t.sensor))
|
||||
{
|
||||
tData->t_counts.push_back(0);
|
||||
}
|
||||
|
||||
// See if we have gotten enough reports from this sensor that we should
|
||||
// print this one. If so, print and reset the count.
|
||||
const unsigned tracker_stride = 1; // Every nth report will be printed
|
||||
|
||||
if ( ++tData->t_counts[t.sensor] >= tracker_stride )
|
||||
{
|
||||
tData->t_counts[t.sensor] = 0;
|
||||
printf("Tracker %s, sensor %d:\n pos (%5.2f, %5.2f, %5.2f); quat (%5.2f, %5.2f, %5.2f, %5.2f)\n",
|
||||
tData->t_name,
|
||||
t.sensor,
|
||||
t.pos[0], t.pos[1], t.pos[2],
|
||||
t.quat[0], t.quat[1], t.quat[2], t.quat[3]);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
ParaViewVRUI::ParaViewVRUI()
|
||||
{
|
||||
this->Internals=new pqInternals();
|
||||
this->Name=0;
|
||||
this->Port=8555;
|
||||
this->Initialized=false;
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
void ParaViewVRUI::SetName(const char *name)
|
||||
{
|
||||
if(this->Name!=name)
|
||||
{
|
||||
int size=strlen(name)+1;
|
||||
if(name && size > 1)
|
||||
{
|
||||
if(this->Name!=0)
|
||||
{
|
||||
delete[] this->Name;
|
||||
}
|
||||
this->Name=new char[size];
|
||||
}
|
||||
strncpy(this->Name,name,size);
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
const char *ParaViewVRUI::GetName() const
|
||||
{
|
||||
return this->Name;
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
int ParaViewVRUI::GetPort() const
|
||||
{
|
||||
return this->Port;
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
void ParaViewVRUI::SetPort(int port)
|
||||
{
|
||||
this->Port=port;
|
||||
}
|
||||
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
bool ParaViewVRUI::GetInitialized() const
|
||||
{
|
||||
return this->Initialized;
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
void ParaViewVRUI::Init()
|
||||
{
|
||||
QTcpSocket *socket=new QTcpSocket;
|
||||
socket->connectToHost(QString(this->Name),this->Port); // ReadWrite?
|
||||
this->Internals->Pipe=new vruiPipe(socket);
|
||||
this->Internals->Pipe->Send(vruiPipe::CONNECT_REQUEST);
|
||||
if(!this->Internals->Pipe->WaitForServerReply(30000)) // 30s
|
||||
{
|
||||
cerr << "Timeout while waiting for CONNECT_REPLY" << endl;
|
||||
delete this->Internals->Pipe;
|
||||
this->Internals->Pipe=0;
|
||||
return;
|
||||
}
|
||||
if(this->Internals->Pipe->Receive()!=vruiPipe::CONNECT_REPLY)
|
||||
{
|
||||
cerr << "Mismatching message while waiting for CONNECT_REPLY" << endl;
|
||||
delete this->Internals->Pipe;
|
||||
this->Internals->Pipe=0;
|
||||
return;
|
||||
}
|
||||
|
||||
this->Internals->State=new vruiServerState;
|
||||
this->Internals->StateMutex=new QMutex;
|
||||
|
||||
this->Internals->Pipe->ReadLayout(this->Internals->State);
|
||||
|
||||
this->Activate();
|
||||
|
||||
// this->StartStream();
|
||||
|
||||
this->Initialized=true;
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
void ParaViewVRUI::Activate()
|
||||
{
|
||||
if(!this->Internals->Active)
|
||||
{
|
||||
this->Internals->Pipe->Send(vruiPipe::ACTIVATE_REQUEST);
|
||||
this->Internals->Active=true;
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
void ParaViewVRUI::Deactivate()
|
||||
{
|
||||
if(this->Internals->Active)
|
||||
{
|
||||
this->Internals->Active=false;
|
||||
this->Internals->Pipe->Send(vruiPipe::DEACTIVATE_REQUEST);
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
void ParaViewVRUI::StartStream()
|
||||
{
|
||||
if(this->Internals->Active)
|
||||
{
|
||||
this->Internals->Thread=new vruiThread;
|
||||
this->Internals->Streaming=true;
|
||||
this->Internals->Thread->SetPipe(this->Internals->Pipe);
|
||||
this->Internals->Thread->SetServerState(this->Internals->State);
|
||||
this->Internals->Thread->SetStateMutex(this->Internals->StateMutex);
|
||||
this->Internals->Thread->start();
|
||||
|
||||
this->Internals->PacketSignalCond=new QWaitCondition;
|
||||
QMutex m;
|
||||
m.lock();
|
||||
|
||||
this->Internals->Pipe->Send(vruiPipe::STARTSTREAM_REQUEST);
|
||||
this->Internals->PacketSignalCond->wait(&m);
|
||||
m.unlock();
|
||||
|
||||
this->Internals->Streaming=true;
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
void ParaViewVRUI::StopStream()
|
||||
{
|
||||
if(this->Internals->Streaming)
|
||||
{
|
||||
this->Internals->Streaming=false;
|
||||
this->Internals->Pipe->Send(vruiPipe::STOPSTREAM_REQUEST);
|
||||
this->Internals->Thread->wait();
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
ParaViewVRUI::~ParaViewVRUI()
|
||||
{
|
||||
this->StopStream();
|
||||
|
||||
this->Deactivate();
|
||||
|
||||
delete this->Internals;
|
||||
if(this->Name!=0)
|
||||
{
|
||||
delete[] this->Name;
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
void ParaViewVRUI::callback()
|
||||
{
|
||||
if(this->Initialized)
|
||||
{
|
||||
// std::cout << "callback()" << std::endl;
|
||||
|
||||
this->Internals->StateMutex->lock();
|
||||
|
||||
// Print position and orientation of tracker 0. (real callback)
|
||||
this->PrintPositionOrientation();
|
||||
|
||||
this->Internals->StateMutex->unlock();
|
||||
this->GetNextPacket(); // for the next step
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
void ParaViewVRUI::GetNextPacket()
|
||||
{
|
||||
if(this->Internals->Active)
|
||||
{
|
||||
if(this->Internals->Streaming)
|
||||
{
|
||||
// With a thread
|
||||
this->Internals->PacketSignalCondMutex->lock();
|
||||
this->Internals->PacketSignalCond->wait(this->Internals->PacketSignalCondMutex);
|
||||
this->Internals->PacketSignalCondMutex->unlock();
|
||||
}
|
||||
else
|
||||
{
|
||||
// With a loop
|
||||
this->Internals->Pipe->Send(vruiPipe::PACKET_REQUEST);
|
||||
if(this->Internals->Pipe->WaitForServerReply(10000))
|
||||
{
|
||||
if(this->Internals->Pipe->Receive()!=vruiPipe::PACKET_REPLY)
|
||||
{
|
||||
cout << "PVRUI Mismatching message while waiting for PACKET_REPLY" << endl;
|
||||
}
|
||||
else
|
||||
{
|
||||
this->Internals->StateMutex->lock();
|
||||
this->Internals->Pipe->ReadState(this->Internals->State);
|
||||
this->Internals->StateMutex->unlock();
|
||||
|
||||
// this->PacketNotificationMutex->lock();
|
||||
// this->PacketNotificationMutex->unlock();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
cout << "timeout for PACKET_REPLY" << endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
void ParaViewVRUI::PrintPositionOrientation()
|
||||
{
|
||||
std::vector<vtkSmartPointer<vruiTrackerState> > *trackers=
|
||||
this->Internals->State->GetTrackerStates();
|
||||
|
||||
float pos[3];
|
||||
float q[4];
|
||||
(*trackers)[0]->GetPosition(pos);
|
||||
(*trackers)[0]->GetUnitQuaternion(q);
|
||||
|
||||
// cout << "pos=("<< pos[0] << "," << pos[1] << "," << pos[2] << ")" << endl;
|
||||
// cout << "q=("<< q[0] << "," << q[1] << "," << q[2] << "," << q[3] << ")"
|
||||
// << endl;
|
||||
|
||||
std::vector<bool> *buttons=this->Internals->State->GetButtonStates();
|
||||
// cout << "button0=" << (*buttons)[0] << endl;
|
||||
pqView *view = 0;
|
||||
view = pqActiveObjects::instance().activeView();
|
||||
if ( view )
|
||||
{
|
||||
vtkSMCaveRenderViewProxy *proxy = 0;
|
||||
proxy = vtkSMCaveRenderViewProxy::SafeDownCast( view->getViewProxy() );
|
||||
if ( proxy )
|
||||
{
|
||||
double rotMat[3][3];
|
||||
vtkMath::QuaternionToMatrix3x3((double*)q,rotMat);
|
||||
proxy->SetHeadPose( rotMat[0][0], rotMat[0][1],rotMat[0][2], pos[0]*1,
|
||||
rotMat[1][0], rotMat[1][1],rotMat[1][2], pos[1]*1,
|
||||
rotMat[2][0], rotMat[2][1],rotMat[2][2], pos[2]*1,
|
||||
0.0, 0.0, 0.0, 1.0 );
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,10 +0,0 @@
|
||||
option(PARAVIEW_CLIENT_RENDER_SERVER_TESTS
|
||||
"Turn on/off client tests that involve separate data and render servers."
|
||||
ON)
|
||||
mark_as_advanced(PARAVIEW_CLIENT_RENDER_SERVER_TESTS)
|
||||
|
||||
include(ParaViewTestingMacros)
|
||||
add_subdirectory(XML)
|
||||
if (PARAVIEW_ENABLE_PYTHON)
|
||||
add_subdirectory(Python)
|
||||
endif()
|
||||
@ -1,121 +0,0 @@
|
||||
include(ParaViewTestingMacros)
|
||||
|
||||
# Check that matplotlib is available
|
||||
include(FindPythonModules)
|
||||
find_python_module(matplotlib matplotlib_found)
|
||||
|
||||
# Set variables to make the testing functions.
|
||||
set(vtk-module pvpython)
|
||||
set(${vtk-module}_TEST_LABELS PARAVIEW)
|
||||
|
||||
paraview_test_load_data(""
|
||||
can.ex2
|
||||
multicomb_0.vts
|
||||
)
|
||||
|
||||
# only enable TestPythonAnnotationFilter test if numpy is available
|
||||
find_python_module(numpy numpy_found)
|
||||
if (numpy_found)
|
||||
set(PARAVIEW_PYTHON_ARGS
|
||||
--data=${PARAVIEW_TEST_OUTPUT_DATA_DIR}/can.ex2)
|
||||
# Add pvpython tests
|
||||
paraview_add_test_python(
|
||||
NO_DATA NO_VALID NO_OUTPUT NO_RT
|
||||
TestPythonAnnotationFilter.py
|
||||
TestPythonAnnotationFilterNoMerge.py
|
||||
TestAnnotateAttributeData.py
|
||||
)
|
||||
set(PARAVIEW_PYTHON_ARGS)
|
||||
|
||||
if (PARAVIEW_ENABLE_MATPLOTLIB AND matplotlib_found)
|
||||
# add Matplotlib tests only if matplotlib was found at configure time.
|
||||
paraview_add_test_python(
|
||||
NO_DATA NO_RT
|
||||
TestPythonViewMatplotlibScript.py
|
||||
)
|
||||
endif()
|
||||
|
||||
paraview_add_test_python(
|
||||
NO_DATA NO_RT
|
||||
TestPythonViewNumpyScript.py
|
||||
)
|
||||
endif()
|
||||
|
||||
paraview_add_test_python(
|
||||
NO_DATA NO_RT
|
||||
TestPythonViewScript.py
|
||||
TestColorHistogram.py
|
||||
TestClipCylinder.py
|
||||
)
|
||||
|
||||
paraview_add_test_pvbatch(
|
||||
NO_DATA NO_RT
|
||||
CinemaTest.py
|
||||
)
|
||||
|
||||
# these tests could run safely in serial and
|
||||
# in parallel.
|
||||
set(PVBATCH_TESTS
|
||||
StructuredGridVolumeRendering.py
|
||||
)
|
||||
foreach (tfile IN LISTS PVBATCH_TESTS)
|
||||
get_filename_component(test ${tfile} NAME_WE)
|
||||
set(${test}_ARGS
|
||||
--state ${CMAKE_CURRENT_SOURCE_DIR}/${test}.pvsm)
|
||||
endforeach ()
|
||||
if (PARAVIEW_USE_MPI AND VTK_MPIRUN_EXE)
|
||||
# run the tests in parallel
|
||||
set(${vtk-module}_NUMPROCS 3)
|
||||
paraview_add_test_pvbatch_mpi(
|
||||
JUST_VALID
|
||||
${PVBATCH_TESTS}
|
||||
)
|
||||
|
||||
if (numpy_found)
|
||||
paraview_add_test_pvbatch_mpi(
|
||||
NO_DATA NO_VALID NO_OUTPUT NO_RT
|
||||
TestAnnotateAttributeData.py
|
||||
)
|
||||
endif()
|
||||
else()
|
||||
# run the test serially
|
||||
paraview_add_test_pvbatch(
|
||||
JUST_VALID
|
||||
${PVBATCH_TESTS}
|
||||
)
|
||||
if (numpy_found)
|
||||
paraview_add_test_pvbatch(
|
||||
NO_DATA NO_VALID NO_OUTPUT NO_RT
|
||||
TestAnnotateAttributeData.py
|
||||
)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
||||
paraview_add_test_driven(
|
||||
JUST_VALID
|
||||
TestCompositedGeometryCulling.py
|
||||
)
|
||||
|
||||
# Python Multi-servers test
|
||||
# => Only for shared build as we dynamically load plugins
|
||||
if(BUILD_SHARED_LIBS)
|
||||
set(vtk-module multi-servers)
|
||||
set(TestMultiServersConfig_ARGS
|
||||
--test-multi-servers 2
|
||||
)
|
||||
set(TestMultiServersRemoteProxy_ARGS
|
||||
--test-multi-servers 3
|
||||
)
|
||||
set(${vtk-module}_TEST_LABELS PARAVIEW)
|
||||
|
||||
paraview_add_test_driven(
|
||||
NO_DATA NO_VALID NO_OUTPUT NO_RT
|
||||
TestMultiServersConfig.py
|
||||
TestMultiServersRemoteProxy.py
|
||||
TestRemoteProgrammableFilter.py
|
||||
)
|
||||
endif()
|
||||
|
||||
# Extend timeout for CinemaTest
|
||||
set_tests_properties(pvpythonPython-Batch-CinemaTest PROPERTIES TIMEOUT 500)
|
||||
@ -1,25 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
import QtTesting
|
||||
import QtTestingImage
|
||||
|
||||
object1 = 'pqClientMainWindow/MainControlsToolbar/actionOpenData'
|
||||
QtTesting.playCommand(object1, 'activate', '')
|
||||
object2 = 'pqClientMainWindow/FileOpenDialog'
|
||||
QtTesting.playCommand(object2, 'filesSelected', '$PARAVIEW_DATA_ROOT/SPCTH/Dave_Karelitz_Small/spcth_a')
|
||||
object3 = 'pqClientMainWindow/proxyTabDock/proxyTabWidget/qt_tabwidget_stackedwidget/objectInspector/ScrollArea/qt_scrollarea_viewport/PanelArea/Editor/CellArrayStatus/1QHeaderView0'
|
||||
QtTesting.playCommand(object3, 'mousePress', '1,1,0,0,0,0')
|
||||
QtTesting.playCommand(object3, 'mouseRelease', '1,0,0,0,0,0')
|
||||
object4 = 'pqClientMainWindow/proxyTabDock/proxyTabWidget/qt_tabwidget_stackedwidget/objectInspector/Accept'
|
||||
QtTesting.playCommand(object4, 'activate', '')
|
||||
object5 = 'pqClientMainWindow/representationToolbar/displayRepresentation/comboBox'
|
||||
QtTesting.playCommand(object5, 'set_string', 'Surface')
|
||||
object6 = 'pqClientMainWindow/cameraToolbar/actionNegativeY'
|
||||
QtTesting.playCommand(object6, 'activate', '')
|
||||
object7 = 'pqClientMainWindow/variableToolbar/displayColor/Variables'
|
||||
QtTesting.playCommand(object7, 'set_string', 'Pressure (dynes/cm^2^)')
|
||||
# DO_IMAGE_COMPARE
|
||||
snapshotWidget = 'pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/Viewport'
|
||||
QtTestingImage.compareImage(snapshotWidget, 'CTHAMRBaseline.png', 300, 300)
|
||||
|
||||
|
||||
@ -1,28 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
import QtTesting
|
||||
import QtTestingImage
|
||||
|
||||
object1 = 'pqClientMainWindow/MainControlsToolbar/actionOpenData'
|
||||
QtTesting.playCommand(object1, 'activate', '')
|
||||
object2 = 'pqClientMainWindow/FileOpenDialog'
|
||||
QtTesting.playCommand(object2, 'filesSelected', '$PARAVIEW_DATA_ROOT/SPCTH/Dave_Karelitz_Small/spcth_a')
|
||||
object3 = 'pqClientMainWindow/proxyTabDock/proxyTabWidget/qt_tabwidget_stackedwidget/objectInspector/ScrollArea/qt_scrollarea_viewport/PanelArea/Editor/CellArrayStatus/1QHeaderView0'
|
||||
QtTesting.playCommand(object3, 'mousePress', '1,1,0,0,0,0')
|
||||
QtTesting.playCommand(object3, 'mouseRelease', '1,0,0,0,0,0')
|
||||
object4 = 'pqClientMainWindow/proxyTabDock/proxyTabWidget/qt_tabwidget_stackedwidget/objectInspector/Accept'
|
||||
QtTesting.playCommand(object4, 'activate', '')
|
||||
object5 = 'pqClientMainWindow/representationToolbar/displayRepresentation/comboBox'
|
||||
QtTesting.playCommand(object5, 'set_string', 'Surface')
|
||||
object6 = 'pqClientMainWindow/variableToolbar/displayColor/Variables'
|
||||
QtTesting.playCommand(object6, 'set_string', 'Pressure (dynes/cm^2^)')
|
||||
object7 = 'pqClientMainWindow/cameraToolbar/actionPositiveX'
|
||||
QtTesting.playCommand(object7, 'activate', '')
|
||||
object8 = 'pqClientMainWindow/menubar/menuFilters/pqProxyGroupMenuManager0/Cut'
|
||||
QtTesting.playCommand(object8, 'activate', '')
|
||||
QtTesting.playCommand(object4, 'activate', '')
|
||||
object9 = 'pqClientMainWindow/proxyTabDock/proxyTabWidget/qt_tabwidget_stackedwidget/objectInspector/ScrollArea/qt_scrollarea_viewport/PanelArea/Editor/CutFunction/pqImplicitPlaneWidget/show3DWidget'
|
||||
QtTesting.playCommand(object9, 'set_boolean', 'false')
|
||||
# DO_IMAGE_COMPARE
|
||||
snapshotWidget = 'pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/Viewport'
|
||||
QtTestingImage.compareImage(snapshotWidget, 'CTHAMRClip.png', 300, 300)
|
||||
@ -1,33 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
import QtTesting
|
||||
import QtTestingImage
|
||||
|
||||
object1 = 'pqClientMainWindow/MainControlsToolbar/actionOpenData'
|
||||
QtTesting.playCommand(object1, 'activate', '')
|
||||
object2 = 'pqClientMainWindow/FileOpenDialog'
|
||||
QtTesting.playCommand(object2, 'filesSelected', '$PARAVIEW_DATA_ROOT/SPCTH/Dave_Karelitz_Small/spcth_a')
|
||||
object3 = 'pqClientMainWindow/proxyTabDock/proxyTabWidget/qt_tabwidget_stackedwidget/objectInspector/ScrollArea/qt_scrollarea_viewport/PanelArea/Editor/CellArrayStatus/1QHeaderView0'
|
||||
QtTesting.playCommand(object3, 'mousePress', '1,1,0,0,0,0')
|
||||
QtTesting.playCommand(object3, 'mouseRelease', '1,0,0,0,0,0')
|
||||
object4 = 'pqClientMainWindow/proxyTabDock/proxyTabWidget/qt_tabwidget_stackedwidget/objectInspector/Accept'
|
||||
QtTesting.playCommand(object4, 'activate', '')
|
||||
object5 = 'pqClientMainWindow/representationToolbar/displayRepresentation/comboBox'
|
||||
QtTesting.playCommand(object5, 'set_string', 'Surface')
|
||||
object6 = 'pqClientMainWindow/cameraToolbar/actionNegativeY'
|
||||
QtTesting.playCommand(object6, 'activate', '')
|
||||
object7 = 'pqClientMainWindow/variableToolbar/displayColor/Variables'
|
||||
QtTesting.playCommand(object7, 'set_string', 'Pressure (dynes/cm^2^)')
|
||||
object8 = 'pqClientMainWindow/menubar'
|
||||
QtTesting.playCommand(object8, 'activate', 'menuFilters')
|
||||
object9 = 'pqClientMainWindow/menubar/menuFilters/Alphabetical'
|
||||
QtTesting.playCommand(object9, 'activate', 'AMRDualContour')
|
||||
object10 = 'pqClientMainWindow/proxyTabDock/proxyTabWidget/qt_tabwidget_stackedwidget/objectInspector/ScrollArea/qt_scrollarea_viewport/PanelArea/Editor/SelectMaterialArrays/1QHeaderView0'
|
||||
QtTesting.playCommand(object10, 'mousePress', '1,1,0,0,0,0')
|
||||
QtTesting.playCommand(object10, 'mouseRelease', '1,0,0,0,0,0')
|
||||
QtTesting.playCommand(object4, 'activate', '')
|
||||
QtTesting.playCommand(object7, 'set_string', 'Pressure (dynes/cm^2^) (partial)')
|
||||
# DO_IMAGE_COMPARE
|
||||
snapshotWidget = 'pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/Viewport'
|
||||
QtTestingImage.compareImage(snapshotWidget, 'CTHAMRContour.png', 300, 300)
|
||||
|
||||
@ -1,22 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
import QtTesting
|
||||
import QtTestingImage
|
||||
|
||||
QtTesting.playCommand(object1, 'activate', '')
|
||||
QtTesting.playCommand(object2, 'filesSelected', '$PARAVIEW_DATA_ROOT/SPCTH/Dave_Karelitz_Small/spcth_a')
|
||||
QtTesting.playCommand(object3, 'mousePress', '1,1,0,0,0,0')
|
||||
QtTesting.playCommand(object3, 'mouseRelease', '1,0,0,0,0,0')
|
||||
QtTesting.playCommand(object4, 'activate', '')
|
||||
QtTesting.playCommand(object5, 'set_string', 'Surface')
|
||||
QtTesting.playCommand(object6, 'activate', '')
|
||||
QtTesting.playCommand(object7, 'set_string', 'Pressure (dynes/cm^2^)')
|
||||
QtTesting.playCommand(object8, 'activate', 'menuFilters')
|
||||
QtTesting.playCommand(object9, 'activate', 'AMRDualClip')
|
||||
QtTesting.playCommand(object10, 'mousePress', '1,1,0,0,0,0')
|
||||
QtTesting.playCommand(object10, 'mouseRelease', '1,0,0,0,0,0')
|
||||
QtTesting.playCommand(object4, 'activate', '')
|
||||
QtTesting.playCommand(object7, 'set_string', 'Pressure (dynes/cm^2^) (partial)')
|
||||
# DO_IMAGE_COMPARE
|
||||
snapshotWidget = 'pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/Viewport'
|
||||
QtTestingImage.compareImage(snapshotWidget, 'CTHAMRDualClip.png', 300, 300)
|
||||
@ -1,20 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
import QtTesting
|
||||
import QtTestingImage
|
||||
|
||||
QtTesting.playCommand(object1, 'activate', '')
|
||||
QtTesting.playCommand(object2, 'filesSelected', '$PARAVIEW_DATA_ROOT/SPCTH/Dave_Karelitz_Small/spcth_a')
|
||||
QtTesting.playCommand(object3, 'mousePress', '1,1,0,0,0,0')
|
||||
QtTesting.playCommand(object3, 'mouseMove', '1,0,0,0,0,0')
|
||||
QtTesting.playCommand(object3, 'mouseRelease', '1,0,0,0,0,0')
|
||||
QtTesting.playCommand(object4, 'activate', '')
|
||||
QtTesting.playCommand(object10, 'activate', 'menuFilters')
|
||||
QtTesting.playCommand(object11, 'activate', 'MaterialInterfaceFilter')
|
||||
object23 = 'pqClientMainWindow/proxyTabDock/proxyTabWidget/qt_tabwidget_stackedwidget/objectInspector/ScrollArea/qt_scrollarea_viewport/PanelArea/Editor/SelectMassArray/1QHeaderView0'
|
||||
QtTesting.playCommand(object23, 'mousePress', '1,1,0,0,0,0')
|
||||
QtTesting.playCommand(object23, 'mouseRelease', '1,0,0,0,0,0')
|
||||
QtTesting.playCommand(object4, 'activate', '')
|
||||
# DO_IMAGE_COMPARE
|
||||
snapshotWidget = 'pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/Viewport'
|
||||
QtTestingImage.compareImage(snapshotWidget, 'CTHAMRMaterialInterfaceFilter.png', 300, 300)
|
||||
@ -1,144 +0,0 @@
|
||||
import os, json
|
||||
|
||||
from paraview import simple
|
||||
from paraview import smtesting
|
||||
from paraview import data_exploration as cinema
|
||||
|
||||
smtesting.ProcessCommandLineArguments()
|
||||
work_directory = os.path.join(smtesting.TempDir, 'cinema')
|
||||
has_rgbz_view = True
|
||||
|
||||
try:
|
||||
simple.LoadDistributedPlugin('RGBZView', ns=globals())
|
||||
except:
|
||||
has_rgbz_view = False
|
||||
|
||||
# === Data to explore and configuration =======================================
|
||||
|
||||
data_to_explore = simple.Wavelet()
|
||||
min = 63.96153259277344
|
||||
max = 250.22056579589844
|
||||
center_of_rotation = [0.0, 0.0, 0.0]
|
||||
rotation_axis = [0.0, 0.0, 1.0]
|
||||
angle_steps = (72, 60)
|
||||
distance = 60
|
||||
lut = simple.GetLookupTableForArray(
|
||||
"RTData", 1,
|
||||
RGBPoints=[min, 0.23, 0.299, 0.754, (min+max)*0.5, 0.865, 0.865, 0.865, max, 0.706, 0.016, 0.15],
|
||||
ColorSpace='Diverging',
|
||||
ScalarRangeInitialized=1.0 )
|
||||
iso_values = [ ((float(x) * (max-min) * 0.1) + min) for x in range(10)]
|
||||
|
||||
# === Create analysis =========================================================
|
||||
|
||||
analysis = cinema.AnalysisManager( work_directory, "Cinema Test", "Test various cinema explorers.")
|
||||
analysis.begin()
|
||||
|
||||
# === SliceExplorer ===========================================================
|
||||
|
||||
analysis.register_analysis(
|
||||
"slice", # id
|
||||
"Slice exploration", # title
|
||||
"Perform 10 slice along X", # description
|
||||
"{sliceColor}_{slicePosition}.jpg", # data structure
|
||||
cinema.SliceExplorer.get_data_type())
|
||||
nb_slices = 5
|
||||
colorByArray = { "RTData": { "lut": lut , "type": 'POINT_DATA'} }
|
||||
view = simple.CreateRenderView()
|
||||
|
||||
fng = analysis.get_file_name_generator("slice")
|
||||
exporter = cinema.SliceExplorer(fng, view, data_to_explore, colorByArray, nb_slices)
|
||||
exporter.set_analysis(analysis)
|
||||
|
||||
# Explore
|
||||
exporter.UpdatePipeline()
|
||||
|
||||
# === ContourExplorer + ThreeSixtyImageStackExporter ==========================
|
||||
|
||||
analysis.register_analysis(
|
||||
"contour-360", # id
|
||||
"Contour", # title
|
||||
"Perform 15 contour", # description
|
||||
"{contourBy}/{contourValue}/{theta}_{phi}.jpg", # data structure
|
||||
cinema.ThreeSixtyImageStackExporter.get_data_type())
|
||||
fng = analysis.get_file_name_generator("contour-360")
|
||||
arrayName = ('POINT_DATA', 'RTData')
|
||||
view2 = simple.CreateRenderView()
|
||||
|
||||
cExplorer = cinema.ContourExplorer(fng, data_to_explore, arrayName, [min,max], 15)
|
||||
proxy = cExplorer.getContour()
|
||||
rep = simple.Show(proxy, view2)
|
||||
rep.LookupTable = lut
|
||||
rep.ColorArrayName = arrayName
|
||||
|
||||
exp = cinema.ThreeSixtyImageStackExporter(fng, view2, center_of_rotation, distance, rotation_axis, angle_steps)
|
||||
for progress in cExplorer:
|
||||
exp.UpdatePipeline()
|
||||
|
||||
# === ImageResampler ==========================================================
|
||||
|
||||
analysis.register_analysis(
|
||||
"interactive-prober", # id
|
||||
"Interactive prober", # title
|
||||
"Sample data in image stack for line probing", # description
|
||||
"{field}/{slice}.{format}", # data structure
|
||||
cinema.ImageResampler.get_data_type())
|
||||
fng = analysis.get_file_name_generator("interactive-prober")
|
||||
arrays = { "RTData" : lut }
|
||||
exp = cinema.ImageResampler(fng, data_to_explore, [21,21,21], arrays)
|
||||
exp.UpdatePipeline()
|
||||
|
||||
|
||||
|
||||
# === CompositeImageExporter ==================================================
|
||||
# CompositeImageExporter(file_name_generator, data_list, colorBy_list, luts, camera_handler, view_size, data_list_pipeline, axisVisibility=1, orientationVisibility=1, format='jpg')
|
||||
if has_rgbz_view:
|
||||
analysis.register_analysis(
|
||||
"composite",
|
||||
"Composite rendering",
|
||||
"Performing composite on contour",
|
||||
'{theta}/{phi}/{filename}', cinema.CompositeImageExporter.get_data_type())
|
||||
fng = analysis.get_file_name_generator("composite")
|
||||
|
||||
# Create pipeline to compose
|
||||
contour_values = [ 64.0, 90.6, 117.2, 143.8, 170.4, 197.0, 223.6, 250.2]
|
||||
color_type = [('POINT_DATA', "RTData")]
|
||||
luts = { "RTData": lut }
|
||||
filters = [ data_to_explore ]
|
||||
filters_description = [ {'name': 'Wavelet'} ]
|
||||
color_by = [ color_type ]
|
||||
|
||||
for iso_value in contour_values:
|
||||
filters.append( simple.Contour( Input=data_to_explore, PointMergeMethod="Uniform Binning", ContourBy = ['POINTS', 'RTData'], Isosurfaces = [iso_value], ComputeScalars = 1 ) )
|
||||
color_by.append( color_type )
|
||||
filters_description.append({'name': 'iso=%s' % str(iso_value)})
|
||||
|
||||
|
||||
# Data exploration ------------------------------------------------------------
|
||||
camera_handler = cinema.ThreeSixtyCameraHandler(fng, None, [ float(r) for r in range(0, 360, 72)], [ float(r) for r in range(-60, 61, 45)], center_of_rotation, rotation_axis, distance)
|
||||
exporter = cinema.CompositeImageExporter(fng, filters, color_by, luts, camera_handler, [400,400], filters_description, 0, 0)
|
||||
exporter.set_analysis(analysis)
|
||||
exporter.UpdatePipeline()
|
||||
|
||||
# === TODO ====================================================================
|
||||
# ThreeSixtyImageStackExporter(file_name_generator, view_proxy, focal_point=[0.0,0.0,0.0], distance=100.0, rotation_axis=[0,0,1], angular_steps=[10,15])
|
||||
# LineProber(file_name_generator, data_to_probe, points_series, number_of_points)
|
||||
# DataProber(file_name_generator, data_to_probe, points_series, fields)
|
||||
# TimeSerieDataProber(file_name_generator, data_to_probe, point_series, fields, time_to_write)
|
||||
# === TODO ====================================================================
|
||||
|
||||
analysis.end()
|
||||
|
||||
# Print analysis info.json
|
||||
analysisInfo = None
|
||||
with open(os.path.join(work_directory, 'info.json'), 'r') as json_file:
|
||||
analysisInfo = json.load(json_file)
|
||||
|
||||
print json.dumps(analysisInfo, sort_keys=True, indent=4, separators=(',', ': '))
|
||||
|
||||
# === Execute embedded test functions =========================================
|
||||
|
||||
test_dir = os.path.join(smtesting.TempDir, 'cinema-test')
|
||||
cinema.test(test_dir)
|
||||
cinema.test2(test_dir)
|
||||
cinema.test3(test_dir)
|
||||
@ -1,65 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
#Tests manta server side rendering for CS mode
|
||||
#MantaTest.py tests client side rendering in builtin and CS mode
|
||||
|
||||
import QtTesting
|
||||
import QtTestingImage
|
||||
|
||||
#TODO fix test recording so that it actually records these events
|
||||
#most of which I had to hack in by hand
|
||||
|
||||
#force server side rendering by setting threshold to 0
|
||||
object2 = 'pqClientMainWindow/menubar/menu_Edit'
|
||||
QtTesting.playCommand(object2, 'activate', 'actionEditSettings')
|
||||
objectb2 = 'pqClientMainWindow/ApplicationSettings/PageNames'
|
||||
QtTesting.playCommand(objectb2, 'setCurrent', '4.0')
|
||||
QtTesting.playCommand(objectb2, 'expand', '4.0')
|
||||
QtTesting.playCommand(objectb2, 'setCurrent', '4.0.2.0')
|
||||
objectb3 = 'pqClientMainWindow/ApplicationSettings/Stack/pqGlobalRenderViewOptions/stackedWidget/Server/compositingParameters/compositeThreshold'
|
||||
QtTesting.playCommand(objectb3, 'set_int', '0')
|
||||
objectb4 = 'pqClientMainWindow/ApplicationSettings/CloseButton'
|
||||
QtTesting.playCommand(objectb4, 'activate', '')
|
||||
|
||||
#load manta plugin on client and server sides
|
||||
hack1='pqClientMainWindow/menubar'
|
||||
QtTesting.playCommand(hack1, 'activate', 'menuTools')
|
||||
hack2='pqClientMainWindow/menubar/menuTools'
|
||||
QtTesting.playCommand(hack2, 'activate', 'actionManage_Plugins')
|
||||
object1 = 'pqClientMainWindow/PluginManagerDialog/localGroup/localPlugins'
|
||||
QtTesting.playCommand(object1, 'setCurrent', 'MantaView')
|
||||
object2 = 'pqClientMainWindow/PluginManagerDialog/localGroup/loadSelected_Local'
|
||||
QtTesting.playCommand(object2, 'activate', '')
|
||||
objecta1 = 'pqClientMainWindow/PluginManagerDialog/remoteGroup/remotePlugins'
|
||||
QtTesting.playCommand(objecta1, 'setCurrent', 'MantaView')
|
||||
objecta2 = 'pqClientMainWindow/PluginManagerDialog/remoteGroup/loadSelected_Remote'
|
||||
QtTesting.playCommand(objecta2, 'activate', '')
|
||||
object3 = 'pqClientMainWindow/PluginManagerDialog/buttonBox/1QPushButton0'
|
||||
QtTesting.playCommand(object3, 'activate', '')
|
||||
|
||||
#close the 3D view and make a manta view
|
||||
object4 = 'pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/Close'
|
||||
QtTesting.playCommand(object4, 'activate', '')
|
||||
object5 = 'pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/EmptyView/scrollArea/qt_scrollarea_viewport/widgetFoo/ConvertActionsFrame/MantaView'
|
||||
QtTesting.playCommand(object5, 'activate', '')
|
||||
|
||||
#show something
|
||||
hack3 = 'pqClientMainWindow/menubar'
|
||||
QtTesting.playCommand(hack3, 'activate', 'menuSources')
|
||||
hack4 = 'pqClientMainWindow/menubar/menuSources'
|
||||
QtTesting.playCommand(hack4, 'activate', 'SphereSource')
|
||||
object6 = 'pqClientMainWindow/objectInspectorDock/objectInspector/Accept'
|
||||
QtTesting.playCommand(object6, 'activate', '')
|
||||
|
||||
#test sphere 'glyphs' while we are at it
|
||||
objectfoo = 'pqClientMainWindow/representationToolbar/displayRepresentation/comboBox'
|
||||
QtTesting.playCommand(objectfoo, 'set_string', 'Points')
|
||||
|
||||
object7 = 'pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/Viewport'
|
||||
QtTesting.playCommand(object7, 'mousePress', '(0.719373,0.369784,1,1,0)')
|
||||
QtTesting.playCommand(object7, 'mouseMove', '(0.605413,0.271942,1,0,0)')
|
||||
QtTesting.playCommand(object7, 'mouseRelease', '(0.605413,0.271942,1,0,0)')
|
||||
|
||||
# Image comparison
|
||||
snapshotWidget = 'pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/Viewport'
|
||||
QtTestingImage.compareImage(snapshotWidget, 'MantaSSImage.png', 300, 300);
|
||||
@ -1,136 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
#Tests manta client side rendering for both builtin and CS mode
|
||||
#MantaServerSideTest.py tests server side rendering in CS mode
|
||||
|
||||
import QtTesting
|
||||
import QtTestingImage
|
||||
|
||||
#load manta plugin on client and server sides
|
||||
object1='pqClientMainWindow/menubar'
|
||||
QtTesting.playCommand(object1, 'activate', 'menuTools')
|
||||
hack2='pqClientMainWindow/menubar/menuTools'
|
||||
QtTesting.playCommand(hack2, 'activate', 'actionManage_Plugins')
|
||||
objectA = 'pqClientMainWindow/PluginManagerDialog/localGroup/localPlugins'
|
||||
QtTesting.playCommand(objectA, 'setCurrent', 'MantaView')
|
||||
object2 = 'pqClientMainWindow/PluginManagerDialog/localGroup/loadSelected_Local'
|
||||
QtTesting.playCommand(object2, 'activate', '')
|
||||
objecta1 = 'pqClientMainWindow/PluginManagerDialog/remoteGroup/remotePlugins'
|
||||
QtTesting.playCommand(objecta1, 'setCurrent', 'MantaView')
|
||||
objecta2 = 'pqClientMainWindow/PluginManagerDialog/remoteGroup/loadSelected_Remote'
|
||||
QtTesting.playCommand(objecta2, 'activate', '')
|
||||
object3 = 'pqClientMainWindow/PluginManagerDialog/buttonBox/1QPushButton0'
|
||||
QtTesting.playCommand(object3, 'activate', '')
|
||||
|
||||
#create two manta and one gl window
|
||||
object6 = 'pqClientMainWindow/centralwidget/MultiViewManager/SplitterFrame/MultiViewSplitter/0/MultiViewFrameMenu/CloseAction'
|
||||
QtTesting.playCommand(object6, 'activate', '')
|
||||
object7 = 'pqClientMainWindow/centralwidget/MultiViewManager/SplitterFrame/MultiViewSplitter/0/1QWidget0/1QScrollArea0/qt_scrollarea_viewport/CentralWidgetFrame/EmptyView/ConvertActionsFrame/Manta'
|
||||
QtTesting.playCommand(object7, 'activate', '')
|
||||
object8 = 'pqClientMainWindow/centralwidget/MultiViewManager/SplitterFrame/MultiViewSplitter/0/MultiViewFrameMenu/SplitHorizontalAction'
|
||||
QtTesting.playCommand(object8, 'activate', '')
|
||||
object9 = 'pqClientMainWindow/centralwidget/MultiViewManager/SplitterFrame/MultiViewSplitter/1/MultiViewFrameMenu/SplitHorizontalAction'
|
||||
QtTesting.playCommand(object9, 'activate', '')
|
||||
QtTesting.playCommand(object8, 'activate', '')
|
||||
object10 = 'pqClientMainWindow/centralwidget/MultiViewManager/SplitterFrame/MultiViewSplitter/1/MultiViewFrameMenu/CloseAction'
|
||||
QtTesting.playCommand(object10, 'activate', '')
|
||||
object11 = 'pqClientMainWindow/centralwidget/MultiViewManager/SplitterFrame/MultiViewSplitter/1/1QWidget0/1QScrollArea0/qt_scrollarea_viewport/CentralWidgetFrame/EmptyView/ConvertActionsFrame/Manta'
|
||||
QtTesting.playCommand(object11, 'activate', '')
|
||||
object12 = 'pqClientMainWindow/centralwidget/MultiViewManager/SplitterFrame/MultiViewSplitter/2/1QWidget0/1QScrollArea0/qt_scrollarea_viewport/CentralWidgetFrame/EmptyView/ConvertActionsFrame/3D View'
|
||||
QtTesting.playCommand(object12, 'activate', '')
|
||||
|
||||
#create some geometry to show
|
||||
QtTesting.playCommand(object1, 'activate', 'menuSources')
|
||||
object13 = 'pqClientMainWindow/menubar/menuSources'
|
||||
QtTesting.playCommand(object13, 'activate', 'SphereSource')
|
||||
object14 = 'pqClientMainWindow/objectInspectorDock/objectInspector/ScrollArea/qt_scrollarea_viewport/PanelArea/Editor/ThetaResolution'
|
||||
QtTesting.playCommand(object14, 'key', '16777219')
|
||||
QtTesting.playCommand(object14, 'set_string', '20')
|
||||
QtTesting.playCommand(object14, 'set_string', '20')
|
||||
object15 = 'pqClientMainWindow/objectInspectorDock/objectInspector/ScrollArea/qt_scrollarea_viewport/PanelArea/Editor/StartTheta/LineEdit'
|
||||
QtTesting.playCommand(object15, 'key', '16777217')
|
||||
object16 = 'pqClientMainWindow/objectInspectorDock/objectInspector/ScrollArea/qt_scrollarea_viewport/PanelArea/Editor/EndTheta/LineEdit'
|
||||
QtTesting.playCommand(object16, 'key', '16777217')
|
||||
object17 = 'pqClientMainWindow/objectInspectorDock/objectInspector/ScrollArea/qt_scrollarea_viewport/PanelArea/Editor/PhiResolution'
|
||||
QtTesting.playCommand(object17, 'key', '16777217')
|
||||
QtTesting.playCommand(object17, 'set_string', '20')
|
||||
QtTesting.playCommand(object17, 'set_string', '20')
|
||||
object18 = 'pqClientMainWindow/objectInspectorDock/objectInspector/Accept'
|
||||
QtTesting.playCommand(object18, 'activate', '')
|
||||
|
||||
#ascribe some data values to test color mapping
|
||||
object19 = 'pqClientMainWindow/menubar/menuFilters/pqProxyGroupMenuManager0/Calculator'
|
||||
QtTesting.playCommand(object19, 'activate', '')
|
||||
object20 = 'pqClientMainWindow/objectInspectorDock/objectInspector/ScrollArea/qt_scrollarea_viewport/PanelArea/Editor/Function'
|
||||
QtTesting.playCommand(object20, 'set_string', 'coordsX')
|
||||
QtTesting.playCommand(object18, 'activate', '')
|
||||
|
||||
#make it visible in all three views
|
||||
object21 = 'pqClientMainWindow/centralwidget/MultiViewManager/SplitterFrame/MultiViewSplitter/1/Viewport'
|
||||
QtTesting.playCommand(object21, 'mousePress', '(0.474654,0.393281,1,1,0)')
|
||||
QtTesting.playCommand(object21, 'mouseMove', '(0.474654,0.393281,1,0,0)')
|
||||
QtTesting.playCommand(object21, 'mouseRelease', '(0.474654,0.393281,1,0,0)')
|
||||
object22 = 'pqClientMainWindow/pipelineBrowserDock/pipelineBrowser'
|
||||
QtTesting.playCommand(object22, 'mousePress', '1,1,0,15,11,/0:0/0:0/0:1')
|
||||
QtTesting.playCommand(object22, 'mouseRelease', '1,0,0,15,11,/0:0/0:0/0:1')
|
||||
object27 = 'pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/Viewport'
|
||||
QtTesting.playCommand(object27, 'mousePress', '(0.456221,0.411067,1,1,0)')
|
||||
QtTesting.playCommand(object27, 'mouseMove', '(0.456221,0.411067,1,0,0)')
|
||||
QtTesting.playCommand(object27, 'mouseRelease', '(0.456221,0.411067,1,0,0)')
|
||||
QtTesting.playCommand(object22, 'mousePress', '1,1,0,11,10,/0:0/0:0/0:1')
|
||||
QtTesting.playCommand(object22, 'mouseRelease', '1,0,0,11,10,/0:0/0:0/0:1')
|
||||
QtTesting.playCommand(object27, 'mousePress', '(0.806452,0.290514,1,1,67108864)')
|
||||
QtTesting.playCommand(object27, 'mouseMove', '(0.806452,0.290514,1,0,67108864)')
|
||||
QtTesting.playCommand(object27, 'mouseRelease', '(0.806452,0.290514,1,0,67108864)')
|
||||
QtTesting.playCommand(object27, 'mousePress', '(0.806452,0.290514,1,1,67108864)')
|
||||
QtTesting.playCommand(object27, 'mouseMove', '(0.806452,0.290514,1,0,67108864)')
|
||||
QtTesting.playCommand(object27, 'mouseRelease', '(0.806452,0.290514,1,0,67108864)')
|
||||
QtTesting.playCommand(object27, 'mousePress', '(0.806452,0.290514,1,1,33554432)')
|
||||
QtTesting.playCommand(object27, 'mouseMove', '(0.806452,0.290514,1,0,33554432)')
|
||||
QtTesting.playCommand(object27, 'mouseRelease', '(0.806452,0.290514,1,0,33554432)')
|
||||
QtTesting.playCommand(object21, 'mousePress', '(0.419355,0.304348,1,1,0)')
|
||||
QtTesting.playCommand(object21, 'mouseMove', '(0.419355,0.304348,1,0,0)')
|
||||
QtTesting.playCommand(object21, 'mouseRelease', '(0.419355,0.304348,1,0,0)')
|
||||
|
||||
#test manta material in the middle view
|
||||
object37 = 'pqClientMainWindow/variableToolbar/displayColor/Variables'
|
||||
QtTesting.playCommand(object37, 'set_string', 'Solid Color')
|
||||
object38 = 'pqClientMainWindow/1QTabBar1'
|
||||
QtTesting.playCommand(object38, 'set_tab_with_text', 'Display')
|
||||
object39 = 'pqClientMainWindow/displayDock/displayWidgetFrame/displayScrollArea/qt_scrollarea_vcontainer/1QScrollBar0'
|
||||
QtTesting.playCommand(object39, 'mousePress', '1,1,0,8,40')
|
||||
QtTesting.playCommand(object39, 'mouseMove', '1,0,0,10,241')
|
||||
QtTesting.playCommand(object39, 'mouseRelease', '1,0,0,10,241')
|
||||
object40 = 'pqClientMainWindow/displayDock/displayWidgetFrame/displayScrollArea/qt_scrollarea_viewport/displayWidget/pqDisplayProxyEditor/MantaDisplay/material'
|
||||
QtTesting.playCommand(object40, 'set_string', 'phong')
|
||||
object41 = 'pqClientMainWindow/displayDock/displayWidgetFrame/displayScrollArea/qt_scrollarea_viewport/displayWidget/pqDisplayProxyEditor/MantaDisplay/reflectance'
|
||||
QtTesting.playCommand(object41, 'set_double', '0.5')
|
||||
object42 = 'pqClientMainWindow/displayDock/displayWidgetFrame/displayScrollArea/qt_scrollarea_viewport/displayWidget/pqDisplayProxyEditor/MantaDisplay/eta'
|
||||
|
||||
#make refresh all three views
|
||||
object1 = 'pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/Viewport'
|
||||
QtTesting.playCommand(object1, 'mousePress', '(0.691244,0.23913,1,1,0)')
|
||||
QtTesting.playCommand(object1, 'mouseMove', '(0.691244,0.23913,1,0,0)')
|
||||
QtTesting.playCommand(object1, 'mouseRelease', '(0.691244,0.23913,1,0,0)')
|
||||
QtTesting.playCommand(object1, 'mousePress', '(0.37788,0.181818,1,1,0)')
|
||||
QtTesting.playCommand(object1, 'mouseMove', '(0.37788,0.181818,1,0,0)')
|
||||
QtTesting.playCommand(object1, 'mouseRelease', '(0.37788,0.181818,1,0,0)')
|
||||
object2 = 'pqClientMainWindow/centralwidget/MultiViewManager/SplitterFrame/MultiViewSplitter/1/Viewport'
|
||||
QtTesting.playCommand(object2, 'mousePress', '(0.391705,0.199605,1,1,0)')
|
||||
QtTesting.playCommand(object2, 'mouseMove', '(0.391705,0.199605,1,0,0)')
|
||||
QtTesting.playCommand(object2, 'mouseRelease', '(0.391705,0.199605,1,0,0)')
|
||||
object3 = 'pqClientMainWindow/centralwidget/MultiViewManager/SplitterFrame/MultiViewSplitter/2/Viewport'
|
||||
QtTesting.playCommand(object3, 'mousePress', '(0.686636,0.215415,1,1,0)')
|
||||
QtTesting.playCommand(object3, 'mouseMove', '(0.686636,0.215415,1,0,0)')
|
||||
QtTesting.playCommand(object3, 'mouseRelease', '(0.686636,0.215415,1,0,0)')
|
||||
QtTesting.playCommand(object2, 'mousePress', '(0.502304,0.22332,1,1,0)')
|
||||
QtTesting.playCommand(object2, 'mouseMove', '(0.502304,0.22332,1,0,0)')
|
||||
QtTesting.playCommand(object2, 'mouseRelease', '(0.502304,0.22332,1,0,0)')
|
||||
QtTesting.playCommand(object1, 'mousePress', '(0.465438,0.270751,1,1,0)')
|
||||
QtTesting.playCommand(object1, 'mouseMove', '(0.465438,0.270751,1,0,0)')
|
||||
QtTesting.playCommand(object1, 'mouseRelease', '(0.465438,0.270751,1,0,0)')
|
||||
|
||||
|
||||
# Image comparison
|
||||
snapshotWidget = 'pqClientMainWindow/centralwidget/MultiViewManager'
|
||||
QtTestingImage.compareImage(snapshotWidget, 'MantaImage.png', 300, 300);
|
||||
@ -1,30 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
import QtTesting
|
||||
import sys
|
||||
|
||||
libname = 'libGUIConePanel.so'
|
||||
if sys.platform == 'win32':
|
||||
libname = 'GUIConePanel.dll'
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
libname = 'libGUIConePanel.dylib'
|
||||
|
||||
object1 = 'pqClientMainWindow/menubar/menuTools'
|
||||
QtTesting.playCommand(object1, 'activate', 'actionManage_Plugins')
|
||||
object2 = 'pqClientMainWindow/pqPluginDialog/localGroup/loadLocal'
|
||||
QtTesting.playCommand(object2, 'activate', '')
|
||||
object3 = 'pqClientMainWindow/pqPluginDialog/pqFileDialog'
|
||||
QtTesting.playCommand(object3, 'filesSelected', libname)
|
||||
object4 = 'pqClientMainWindow/pqPluginDialog/buttonBox/1QPushButton0'
|
||||
QtTesting.playCommand(object4, 'activate', '')
|
||||
object5 = 'pqClientMainWindow/menubar/menuSources'
|
||||
QtTesting.playCommand(object5, 'activate', 'Cone')
|
||||
object7 = 'pqClientMainWindow/objectInspectorDock/objectInspector/Accept'
|
||||
QtTesting.playCommand(object7, 'activate', '')
|
||||
|
||||
object8 = 'pqClientMainWindow/objectInspectorDock/objectInspector/ScrollArea/qt_scrollarea_viewport/PanelArea/Editor/1QLabel0'
|
||||
|
||||
text = QtTesting.getProperty(object8, 'text')
|
||||
print text
|
||||
|
||||
@ -1,73 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
|
||||
blotScriptBody = \
|
||||
"""
|
||||
diskwrite off
|
||||
|
||||
detour
|
||||
solid
|
||||
rotate x 100
|
||||
tmin 0.001
|
||||
tmax 0.003
|
||||
nintv 20
|
||||
plot
|
||||
|
||||
tplot
|
||||
VELX 1 to 1000 by 200
|
||||
overlay
|
||||
plot
|
||||
reset
|
||||
|
||||
xyplot
|
||||
displx 200 to 300 by 20
|
||||
velx 200 to 300 by 20
|
||||
plot
|
||||
|
||||
"""
|
||||
|
||||
|
||||
import QtTesting
|
||||
import sys
|
||||
|
||||
pluginFile = 'libpvblot.so'
|
||||
if sys.platform == 'win32':
|
||||
pluginFile = 'pvblot.dll'
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
pluginFile = 'libpvblot.dylib'
|
||||
|
||||
dataFile = '$PARAVIEW_DATA_ROOT/can.ex2'
|
||||
|
||||
object1 = 'pqClientMainWindow/menubar/menuTools'
|
||||
object2 = 'pqClientMainWindow/pqPluginDialog/localGroup/loadLocal'
|
||||
object3 = 'pqClientMainWindow/pqPluginDialog/pqFileDialog'
|
||||
object4 = 'pqClientMainWindow/pqPluginDialog/buttonBox/1QPushButton0'
|
||||
object5 = 'pqClientMainWindow/pqFileDialog'
|
||||
object6 = 'pqClientMainWindow/pqBlotDialog/buttons/runScript'
|
||||
object7 = 'pqClientMainWindow/pqBlotDialog/BLOTShellRunScriptDialog'
|
||||
object8 = 'pqClientMainWindow/pqBlotDialog/buttons/close'
|
||||
|
||||
|
||||
testDir = QtTesting.getProperty('pqClientMainWindow', 'TestDirectory')
|
||||
|
||||
|
||||
blotTestFile = "%s/PVBlotTest1.bl" % testDir
|
||||
|
||||
blotFile = open(blotTestFile, 'w')
|
||||
blotFile.write(blotScriptBody)
|
||||
blotFile.close()
|
||||
|
||||
QtTesting.playCommand(object1, 'activate', 'actionManage_Plugins')
|
||||
QtTesting.playCommand(object2, 'activate', '')
|
||||
QtTesting.playCommand(object3, 'filesSelected', pluginFile)
|
||||
QtTesting.playCommand(object4, 'activate', '')
|
||||
QtTesting.playCommand(object1, 'activate', 'PVBlot')
|
||||
QtTesting.playCommand(object5, 'filesSelected', dataFile)
|
||||
QtTesting.playCommand(object6, 'activate', '')
|
||||
QtTesting.playCommand(object7, 'filesSelected', blotTestFile)
|
||||
QtTesting.playCommand(object8, 'activate', '')
|
||||
|
||||
import time
|
||||
time.sleep(10)
|
||||
|
||||
@ -1,91 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
import QtTesting
|
||||
import QtTestingImage
|
||||
import time
|
||||
|
||||
object1 = 'pqClientMainWindow/menubar/menuSources'
|
||||
QtTesting.playCommand(object1, 'activate', 'Wavelet')
|
||||
object2 = 'pqClientMainWindow/objectInspectorDock/objectInspector/Accept'
|
||||
QtTesting.playCommand(object2, 'activate', '')
|
||||
object6 = 'pqClientMainWindow/1QTabBar1'
|
||||
QtTesting.playCommand(object6, 'set_tab_with_text', 'Display')
|
||||
object24 = 'pqClientMainWindow/displayDock/displayWidgetFrame/displayScrollArea/qt_scrollarea_viewport/displayWidget/pqDisplayProxyEditor/StyleGroup/StyleRepresentation/comboBox'
|
||||
QtTesting.playCommand(object24, 'set_string', 'Surface')
|
||||
object25 = 'pqClientMainWindow/displayDock/displayWidgetFrame/displayScrollArea/qt_scrollarea_viewport/displayWidget/pqDisplayProxyEditor/ColorGroup/ColorBy/Variables'
|
||||
QtTesting.playCommand(object25, 'set_string', 'RTData')
|
||||
QtTesting.playCommand(object6, 'set_tab_with_text', 'Properties')
|
||||
object3 = 'pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/SplitHorizontal'
|
||||
QtTesting.playCommand(object3, 'activate', '')
|
||||
|
||||
QtTesting.playCommand(object1, 'activate', 'Arrow')
|
||||
QtTesting.playCommand(object2, 'activate', '')
|
||||
object4 = 'pqClientMainWindow/objectInspectorDock/objectInspector/Delete'
|
||||
QtTesting.playCommand(object4, 'activate', '')
|
||||
|
||||
object4 = 'pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.2/SplitVertical'
|
||||
QtTesting.playCommand(object4, 'activate', '')
|
||||
QtTesting.playCommand(object1, 'activate', 'Sphere')
|
||||
QtTesting.playCommand(object2, 'activate', '')
|
||||
QtTesting.playCommand(object6, 'set_tab_with_text', 'Display')
|
||||
object8 = 'pqClientMainWindow/displayDock/displayWidgetFrame/displayScrollArea/qt_scrollarea_viewport/displayWidget/Form/ViewGroup/ViewData'
|
||||
QtTesting.playCommand(object8, 'set_boolean', 'false')
|
||||
QtTesting.playCommand(object8, 'set_boolean', 'false')
|
||||
QtTesting.playCommand(object8, 'set_boolean', 'false')
|
||||
QtTesting.playCommand(object8, 'set_boolean', 'false')
|
||||
object9 = 'pqClientMainWindow/menubar/menu_File'
|
||||
QtTesting.playCommand(object9, 'activate', 'actionFileOpen')
|
||||
QtTesting.playCommand(object6, 'set_tab_with_text', 'Properties')
|
||||
object10 = 'pqClientMainWindow/FileOpenDialog'
|
||||
QtTesting.playCommand(object10, 'filesSelected', '$PARAVIEW_DATA_ROOT/dualSphereAnimation.pvd')
|
||||
QtTesting.playCommand(object2, 'activate', '')
|
||||
object11 = 'pqClientMainWindow/menubar/menuView'
|
||||
QtTesting.playCommand(object11, 'activate', 'Animation View')
|
||||
|
||||
|
||||
object15 = 'pqClientMainWindow/pipelineBrowserDock/pipelineBrowser'
|
||||
QtTesting.playCommand(object15, 'currentChanged', '/0/1|0')
|
||||
|
||||
#object12 = 'pqClientMainWindow/animationPanelDock/1pqAnimationPanel0/scrollArea/qt_scrollarea_viewport/AnimationPanel/tracksGroup/propertyName'
|
||||
#object14 = 'pqClientMainWindow/animationPanelDock/1pqAnimationPanel0/scrollArea/qt_scrollarea_viewport/AnimationPanel/keyFramePropertiesGroup/addKeyFrame'
|
||||
#QtTesting.playCommand(object12, 'set_string', 'End Theta')
|
||||
#QtTesting.playCommand(object14, 'activate', '')
|
||||
|
||||
object12 = 'pqClientMainWindow/animationViewDock/animationView/pqAnimationWidget/CreateDeleteWidget/PropertyCombo'
|
||||
QtTesting.playCommand(object12, 'set_string', 'End Theta')
|
||||
object10 = "pqClientMainWindow/animationViewDock/animationView/1pqAnimationWidget0/1QHeaderView0"
|
||||
QtTesting.playCommand(object10, "mousePress", "1,1,0,0,0,2")
|
||||
QtTesting.playCommand(object10, "mouseRelease", "1,1,0,0,0,2")
|
||||
|
||||
QtTesting.playCommand(object15, 'currentChanged', '/0/0|0')
|
||||
QtTesting.playCommand(object10, "mousePress", "1,1,0,0,0,3")
|
||||
QtTesting.playCommand(object10, "mouseRelease", "1,1,0,0,0,3")
|
||||
|
||||
object17 = 'pqClientMainWindow/VCRToolbar/1QToolButton0'
|
||||
QtTesting.playCommand(object17, 'activate', '')
|
||||
object18 = 'pqClientMainWindow/VCRToolbar/1QToolButton3'
|
||||
|
||||
#object19 = 'pqClientMainWindow/animationPanelDock/1pqAnimationPanel0/scrollArea/qt_scrollarea_viewport/AnimationPanel/keyFramePropertiesGroup/editorFrame/SignalAdaptorKeyFrameValue/lineEdit'
|
||||
#QtTesting.playCommand(object19, 'set_string', '10')
|
||||
#QtTesting.playCommand(object19, 'set_string', '10')
|
||||
object20 = 'pqClientMainWindow/VCRToolbar/1QToolButton1'
|
||||
QtTesting.playCommand(object11, 'activate', 'Animation View')
|
||||
QtTesting.playCommand(object11, 'activate', 'Object Inspector')
|
||||
QtTesting.playCommand(object11, 'activate', 'Pipeline Browser')
|
||||
QtTesting.playCommand(object9, 'activate', 'actionFileSaveAnimation')
|
||||
object21 = 'Dialog/spinBoxWidth'
|
||||
QtTesting.playCommand(object21, 'set_int', '800')
|
||||
object22 = 'Dialog/spinBoxHeight'
|
||||
QtTesting.playCommand(object22, 'set_int', '800')
|
||||
object22 = 'Dialog/okButton'
|
||||
QtTesting.playCommand(object22, 'activate', '')
|
||||
objectSaveAnimationDialog = 'FileSaveAnimationDialog'
|
||||
QtTesting.playCommand(objectSaveAnimationDialog, 'filesSelected', '$PARAVIEW_TEST_ROOT/movie_test.png')
|
||||
|
||||
time.sleep(3);
|
||||
objectPlayButton = 'pqClientMainWindow/VCRToolbar/1QToolButton2'
|
||||
while QtTesting.getProperty(objectPlayButton, "text") != 'Play' :
|
||||
time.sleep(1);
|
||||
|
||||
QtTestingImage.compareImage('$PARAVIEW_TEST_ROOT/movie_test.0005.png', 'SaveAnimationMultiView.png');
|
||||
|
||||
@ -1,46 +0,0 @@
|
||||
from paraview.simple import *
|
||||
from paraview import smtesting
|
||||
import vtk
|
||||
import vtk.vtkRenderingVolume
|
||||
import os
|
||||
|
||||
paraview.simple._DisableFirstRenderCameraReset()
|
||||
|
||||
# need a baseline?
|
||||
saveImage = False
|
||||
|
||||
# check for driver support first
|
||||
rw = vtk.vtkRenderWindow()
|
||||
rw.SetSize(1,1)
|
||||
rw.Render()
|
||||
ptm = vtk.vtkProjectedTetrahedraMapper()
|
||||
ok = ptm.IsSupported(rw)
|
||||
print
|
||||
print 'ProjectedTetrahedraMapper %s supported '%(
|
||||
'is' if(ok) else 'is not')
|
||||
del ptm
|
||||
del rw
|
||||
|
||||
if ok:
|
||||
smtesting.ProcessCommandLineArguments()
|
||||
smtesting.LoadServerManagerState(smtesting.StateXMLFileName)
|
||||
|
||||
view = GetRenderView()
|
||||
view.RemoteRenderThreshold = 0;
|
||||
|
||||
if saveImage:
|
||||
SetActiveView(view)
|
||||
Render()
|
||||
imageFile = os.path.splitext(os.path.basename(smtesting.StateXMLFileName))[0]
|
||||
WriteImage('%s/../../%s.png'%(smtesting.TempDir, imageFile))
|
||||
|
||||
if not smtesting.DoRegressionTesting(view.SMProxy):
|
||||
raise smtesting.TestError, 'Test failed.'
|
||||
|
||||
print
|
||||
print 'Test passes'
|
||||
|
||||
else:
|
||||
print 'Skipped untested.'
|
||||
|
||||
print
|
||||
@ -1,15 +0,0 @@
|
||||
from paraview.simple import *
|
||||
|
||||
s = Sphere()
|
||||
e = Elevation(LowPoint=[-0.5,-0.5,-0.5],
|
||||
HighPoint=[0.5, 0.5, 0.5])
|
||||
UpdatePipeline()
|
||||
a = AnnotateAttributeData(
|
||||
Prefix="Hello: ",
|
||||
ArrayName= "Elevation",
|
||||
ArrayAssociation="Point Data",
|
||||
ElementId=0,
|
||||
ProcessId=0
|
||||
)
|
||||
UpdatePipeline()
|
||||
assert a.GetClientSideObject().GetComputedAnnotationValue() == "Hello: 0.666667"
|
||||
@ -1,34 +0,0 @@
|
||||
#### import the simple module from the paraview
|
||||
from paraview.simple import *
|
||||
|
||||
# Create a wavelet and clip it with a Cylinder.
|
||||
wavelet = Wavelet()
|
||||
Show()
|
||||
|
||||
clip = Clip()
|
||||
clip.ClipType = "Cylinder"
|
||||
clip.InsideOut = True
|
||||
Show()
|
||||
|
||||
cylinder = clip.ClipType
|
||||
cylinder.Axis = [-1, 1, -1]
|
||||
cylinder.Center = [8, 4, -3]
|
||||
cylinder.Radius = 3
|
||||
|
||||
Render()
|
||||
|
||||
# compare with baseline image
|
||||
import os
|
||||
import sys
|
||||
try:
|
||||
baselineIndex = sys.argv.index('-B')+1
|
||||
baselinePath = sys.argv[baselineIndex]
|
||||
except:
|
||||
print "Could not get baseline directory. Test failed."
|
||||
exit(1)
|
||||
baseline_file = os.path.join(baselinePath, "TestClipCylinder.png")
|
||||
import vtk.test.Testing
|
||||
vtk.test.Testing.VTK_TEMP_DIR = vtk.util.misc.vtkGetTempDir()
|
||||
vtk.test.Testing.compareImage(GetActiveView().GetRenderWindow(), baseline_file,
|
||||
threshold=25)
|
||||
vtk.test.Testing.interact()
|
||||
@ -1,84 +0,0 @@
|
||||
#### import the simple module from the paraview
|
||||
from paraview.simple import *
|
||||
#### disable automatic camera reset on 'Show'
|
||||
paraview.simple._DisableFirstRenderCameraReset()
|
||||
|
||||
# create a new 'Wavelet'
|
||||
wavelet1 = Wavelet()
|
||||
|
||||
# get active view
|
||||
renderView1 = GetActiveViewOrCreate('RenderView')
|
||||
# uncomment following to set a specific view size
|
||||
# renderView1.ViewSize = [1013, 781]
|
||||
|
||||
# show data in view
|
||||
wavelet1Display = Show(wavelet1, renderView1)
|
||||
# trace defaults for the display properties.
|
||||
wavelet1Display.Representation = 'Outline'
|
||||
wavelet1Display.ColorArrayName = ['POINTS', '']
|
||||
wavelet1Display.ScalarOpacityUnitDistance = 1.7320508075688779
|
||||
wavelet1Display.Slice = 10
|
||||
|
||||
# reset view to fit data
|
||||
renderView1.ResetCamera()
|
||||
|
||||
# change representation type
|
||||
wavelet1Display.SetRepresentationType('Surface')
|
||||
|
||||
# set scalar coloring
|
||||
ColorBy(wavelet1Display, ('POINTS', 'RTData'))
|
||||
|
||||
# rescale color and/or opacity maps used to include current data range
|
||||
wavelet1Display.RescaleTransferFunctionToDataRange(True)
|
||||
|
||||
# show color bar/color legend
|
||||
wavelet1Display.SetScalarBarVisibility(renderView1, True)
|
||||
|
||||
# get color transfer function/color map for 'RTData'
|
||||
rTDataLUT = GetColorTransferFunction('RTData')
|
||||
|
||||
# get opacity transfer function/opacity map for 'RTData'
|
||||
rTDataPWF = GetOpacityTransferFunction('RTData')
|
||||
|
||||
# get layout
|
||||
viewLayout1 = GetLayout()
|
||||
|
||||
# split cell
|
||||
viewLayout1.SplitHorizontal(0, 0.5)
|
||||
|
||||
# set active view
|
||||
SetActiveView(None)
|
||||
|
||||
# Create a new 'Histogram View'
|
||||
histogramView1 = CreateView('XYHistogramChartView')
|
||||
histogramView1.ViewSize = [503, 781]
|
||||
|
||||
# place view in the layout
|
||||
viewLayout1.AssignView(2, histogramView1)
|
||||
|
||||
# set active source
|
||||
SetActiveSource(wavelet1)
|
||||
|
||||
# show data in view
|
||||
histogram = Show(wavelet1, histogramView1)
|
||||
# trace defaults for the display properties.
|
||||
histogram.SelectInputArray = ['POINTS', 'RTData']
|
||||
histogram.CustomBinRanges = [37.35310363769531, 276.8288269042969]
|
||||
histogram.UseColorMapping = True
|
||||
histogram.LookupTable = rTDataLUT
|
||||
|
||||
Render(histogramView1)
|
||||
|
||||
# compare histogramView with baseline image
|
||||
import os
|
||||
import sys
|
||||
try:
|
||||
baselineIndex = sys.argv.index('-B')+1
|
||||
baselinePath = sys.argv[baselineIndex]
|
||||
except:
|
||||
print "Could not get baseline directory. Test failed."
|
||||
baseline_file = os.path.join(baselinePath, "TestColorHistogram.png")
|
||||
import vtk.test.Testing
|
||||
vtk.test.Testing.VTK_TEMP_DIR = vtk.util.misc.vtkGetTempDir()
|
||||
vtk.test.Testing.compareImage(histogramView1.GetRenderWindow(), baseline_file, threshold=40)
|
||||
vtk.test.Testing.interact()
|
||||
@ -1,38 +0,0 @@
|
||||
from paraview import servermanager
|
||||
from paraview import simple as smp
|
||||
from paraview import smtesting
|
||||
|
||||
# Make sure the test driver know that process has properly started
|
||||
print "Process started"
|
||||
|
||||
def getHost(url):
|
||||
return url.split(':')[1][2:]
|
||||
def getPort(url):
|
||||
return int(url.split(':')[2])
|
||||
|
||||
|
||||
def runTest():
|
||||
options = servermanager.vtkProcessModule.GetProcessModule().GetOptions()
|
||||
url = options.GetServerURL()
|
||||
smp.Connect(getHost(url), getPort(url))
|
||||
|
||||
r = smp.CreateRenderView()
|
||||
r.RemoteRenderThreshold = 20
|
||||
s = smp.Sphere()
|
||||
s.PhiResolution = 80
|
||||
s.ThetaResolution = 80
|
||||
|
||||
d = smp.Show()
|
||||
d.Representation = "Wireframe"
|
||||
smp.Render()
|
||||
r.RemoteRenderThreshold = 0
|
||||
smp.Render()
|
||||
s.PhiResolution = 8
|
||||
s.ThetaResolution = 8
|
||||
smp.Render()
|
||||
|
||||
smtesting.ProcessCommandLineArguments()
|
||||
if not smtesting.DoRegressionTesting(r.SMProxy):
|
||||
raise smtesting.TestError, "Test failed!!!"
|
||||
print "Test Passed"
|
||||
runTest()
|
||||
@ -1,28 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
import QtTesting
|
||||
|
||||
object1 = 'pqClientMainWindow/menubar/menuSources'
|
||||
QtTesting.playCommand(object1, 'activate', 'RTAnalyticSource')
|
||||
object2 = 'pqClientMainWindow/propertiesDock/propertiesPanel/Accept'
|
||||
QtTesting.playCommand(object2, 'activate', '')
|
||||
object3 = 'pqClientMainWindow/menubar/menuFilters/Common'
|
||||
QtTesting.playCommand(object3, 'activate', 'Contour')
|
||||
QtTesting.playCommand(object2, 'activate', '')
|
||||
object5 = 'pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ContourValues/ScalarValueList'
|
||||
QtTesting.setProperty(object5, 'scalars', '120')
|
||||
QtTesting.playCommand(object2, 'activate', '')
|
||||
QtTesting.setProperty(object5, 'scalars', '120;130;140;150')
|
||||
QtTesting.playCommand(object2, 'activate', '')
|
||||
object1 = 'pqClientMainWindow/menubar/menu_Edit'
|
||||
QtTesting.playCommand(object1, 'activate', 'actionEditUndo')
|
||||
# Need to wait a moment to allow the GUI to update.
|
||||
import time
|
||||
time.sleep(1)
|
||||
val = QtTesting.getProperty(object5, 'scalars')
|
||||
|
||||
if val != "120":
|
||||
import exceptions
|
||||
raise exceptions.RuntimeError, "Expecting 120, received: " + val
|
||||
else:
|
||||
print "Value comparison successful -- Test passed."
|
||||
@ -1,152 +0,0 @@
|
||||
from paraview.simple import *
|
||||
from paraview import servermanager
|
||||
|
||||
import time
|
||||
|
||||
# Make sure the test driver know that process has properly started
|
||||
print "Process started"
|
||||
errors = 0
|
||||
|
||||
#-------------------- Helpers methods ----------------
|
||||
def getHost(url):
|
||||
return url.split(':')[1][2:]
|
||||
|
||||
def getScheme(url):
|
||||
return url.split(':')[0]
|
||||
|
||||
def getPort(url):
|
||||
return int(url.split(':')[2])
|
||||
#--------------------
|
||||
import os
|
||||
|
||||
def findInSubdirectory(filename, subdirectory=''):
|
||||
if subdirectory:
|
||||
path = subdirectory
|
||||
else:
|
||||
path = os.getcwd()
|
||||
for root, dirs, names in os.walk(path):
|
||||
for name in names:
|
||||
if (name.find(filename) > -1) and ( (name.find('.dll') > -1) or (name.find('.so') > -1) or (name.find('.dylib') > -1)):
|
||||
return os.path.join(root, name)
|
||||
raise 'File not found'
|
||||
#--------------------
|
||||
|
||||
print "Start multi-server testing"
|
||||
|
||||
options = servermanager.vtkProcessModule.GetProcessModule().GetOptions()
|
||||
available_server_urls = options.GetServerURL().split('|')
|
||||
built_in_connection = servermanager.ActiveConnection
|
||||
|
||||
# Test if the built-in connection is here
|
||||
if (len(servermanager.Connections) != 1):
|
||||
errors += 1
|
||||
print "Error pvpython should be connected to a built-in session. Currently connected to ", servermanager.Connections
|
||||
|
||||
url = available_server_urls[0]
|
||||
print "Connect to first server ", url
|
||||
server1_connection = Connect(getHost(url), getPort(url))
|
||||
|
||||
# Test that we have one more connection
|
||||
if (len(servermanager.Connections) != 2):
|
||||
errors += 1
|
||||
print "Error pvpython should be connected to a built-in session + one remote one. Currently connected to ", servermanager.Connections
|
||||
|
||||
url = available_server_urls[1]
|
||||
print "Connect to second server ", url
|
||||
server2_connection = Connect(getHost(url), getPort(url))
|
||||
|
||||
# Test that we have one more connection
|
||||
if (len(servermanager.Connections) != 3):
|
||||
errors += 1
|
||||
print "Error pvpython should be connected to a built-in session + two remote one. Currently connected to ", servermanager.Connections
|
||||
|
||||
print "Available connections: ", servermanager.Connections
|
||||
|
||||
# Test that last created connection is the active one
|
||||
if ( servermanager.ActiveConnection != server2_connection):
|
||||
errors += 1
|
||||
print "Error Invalid active connection. Expected ", server2_connection, " and got ", servermanager.ActiveConnection
|
||||
|
||||
# Test that SetActiveConnection is working as expected
|
||||
SetActiveConnection(server1_connection, globals())
|
||||
if ( servermanager.ActiveConnection != server1_connection):
|
||||
errors += 1
|
||||
print "Error Invalid active connection. Expected ", server1_connection, " and got ", servermanager.ActiveConnection
|
||||
|
||||
# Test that SetActiveConnection is working as expected
|
||||
SetActiveConnection(built_in_connection, globals())
|
||||
if ( servermanager.ActiveConnection != built_in_connection):
|
||||
errors += 1
|
||||
print "Error Invalid active connection. Expected ", built_in_connection, " and got ", servermanager.ActiveConnection
|
||||
|
||||
# Test that SetActiveConnection is working as expected
|
||||
SetActiveConnection(server2_connection, globals())
|
||||
if ( servermanager.ActiveConnection != server2_connection):
|
||||
errors += 1
|
||||
print "Error Invalid active connection. Expected ", server2_connection, " and got ", servermanager.ActiveConnection
|
||||
|
||||
|
||||
# Load plugin on server2
|
||||
SetActiveConnection(server2_connection, globals())
|
||||
LoadDistributedPlugin("PacMan", True, globals())
|
||||
|
||||
# Create PacMan on server2
|
||||
pacMan_s2 = PacMan()
|
||||
|
||||
# Swtich to server1 and Create PacMan ==> This should fail
|
||||
SetActiveConnection(server1_connection, globals())
|
||||
try:
|
||||
pacMan_s1 = PacMan()
|
||||
errors += 1
|
||||
print "Error: PacMan should not be available on Server1"
|
||||
except NameError:
|
||||
print "OK: PacMan is not available on server1"
|
||||
|
||||
# Swtich to server2 with globals and switch back to server1 with not updating the globals
|
||||
SetActiveConnection(server2_connection, globals())
|
||||
SetActiveConnection(server1_connection)
|
||||
|
||||
# Create PacMan ==> This should fail
|
||||
try:
|
||||
pacMan_s1 = PacMan()
|
||||
errors += 1
|
||||
print "Error: PacMan should not be available on Server1"
|
||||
except RuntimeError:
|
||||
print "OK: PacMan is not available on server1"
|
||||
|
||||
# Make sure built-in as not the pacMan
|
||||
SetActiveConnection(server2_connection, globals())
|
||||
SetActiveConnection(built_in_connection, globals())
|
||||
try:
|
||||
pacMan_builtin = PacMan()
|
||||
errors += 1
|
||||
print "Error: PacMan should not be available on built-in"
|
||||
except NameError:
|
||||
print "OK: PacMan is not available on built-in"
|
||||
|
||||
# Load plugin localy for built-in
|
||||
# Create PacMan ==> This should be OK on built-in
|
||||
SetActiveConnection(built_in_connection, globals())
|
||||
LoadDistributedPlugin("PacMan", False, globals())
|
||||
pacMan_builtin = PacMan()
|
||||
print "After loading the plugin locally in built-in, the PacMan definition is available"
|
||||
|
||||
# Swtich to server1 and Create PacMan ==> This should fail
|
||||
SetActiveConnection(server1_connection, globals())
|
||||
try:
|
||||
pacMan_s1 = PacMan()
|
||||
errors += 1
|
||||
print "Error: PacMan should not be available on Server1"
|
||||
except NameError:
|
||||
print "OK: PacMan is still not available on server1"
|
||||
|
||||
# Disconnect and quit application...
|
||||
Disconnect()
|
||||
print "Available connections after disconnect: ", servermanager.Connections
|
||||
Disconnect()
|
||||
print "Available connections after disconnect: ", servermanager.Connections
|
||||
Disconnect()
|
||||
print "Available connections after disconnect: ", servermanager.Connections
|
||||
|
||||
if errors > 0:
|
||||
raise RuntimeError, "An error occured during the execution"
|
||||
@ -1,150 +0,0 @@
|
||||
from paraview.simple import *
|
||||
from paraview import servermanager
|
||||
|
||||
import time
|
||||
|
||||
# Make sure the test driver know that process has properly started
|
||||
print "Process started"
|
||||
errors = 0
|
||||
|
||||
#-------------------- Helpers methods ----------------
|
||||
def getHost(url):
|
||||
return url.split(':')[1][2:]
|
||||
|
||||
def getScheme(url):
|
||||
return url.split(':')[0]
|
||||
|
||||
def getPort(url):
|
||||
return int(url.split(':')[2])
|
||||
#--------------------
|
||||
|
||||
print "Start multi-server testing"
|
||||
|
||||
options = servermanager.vtkProcessModule.GetProcessModule().GetOptions()
|
||||
available_server_urls = options.GetServerURL().split('|')
|
||||
built_in_connection = servermanager.ActiveConnection
|
||||
|
||||
# Test if the built-in connection is here
|
||||
if (len(servermanager.Connections) != 1):
|
||||
errors += 1
|
||||
print "Error pvpython should be connected to a built-in session. Currently connected to ", servermanager.Connections
|
||||
|
||||
url = available_server_urls[0]
|
||||
print "Connect to first server ", url
|
||||
server1_connection = Connect(getHost(url), getPort(url))
|
||||
|
||||
# Test that we have one more connection
|
||||
if (len(servermanager.Connections) != 2):
|
||||
errors += 1
|
||||
print "Error pvpython should be connected to a built-in session + one remote one. Currently connected to ", servermanager.Connections
|
||||
|
||||
url = available_server_urls[1]
|
||||
print "Connect to second server ", url
|
||||
server2_connection = Connect(getHost(url), getPort(url))
|
||||
|
||||
# Test that we have one more connection
|
||||
if (len(servermanager.Connections) != 3):
|
||||
errors += 1
|
||||
print "Error pvpython should be connected to a built-in session + two remote one. Currently connected to ", servermanager.Connections
|
||||
|
||||
url = available_server_urls[2]
|
||||
print "Connect to third server ", url
|
||||
server3_connection = Connect(getHost(url), getPort(url))
|
||||
|
||||
# Test that we have one more connection
|
||||
if (len(servermanager.Connections) != 4):
|
||||
errors += 1
|
||||
print "Error pvpython should be connected to a built-in session + three remote one. Currently connected to ", servermanager.Connections
|
||||
|
||||
print "Available connections: ", servermanager.Connections
|
||||
|
||||
# Test that last created connection is the active one
|
||||
if ( servermanager.ActiveConnection != server3_connection):
|
||||
errors += 1
|
||||
print "Error Invalid active connection. Expected ", server3_connection, " and got ", servermanager.ActiveConnection
|
||||
|
||||
# ------- Do the proper RemoteSourceProxy testing --------------
|
||||
|
||||
# Create a set of sphere across the remote sessions
|
||||
SetActiveConnection(server1_connection, globals())
|
||||
rSphere1 = Sphere(ThetaResolution=10, PhiResolution=10)
|
||||
rSphere1.UpdatePipeline()
|
||||
size1 = rSphere1.GetDataInformation().GetNumberOfPoints()
|
||||
|
||||
SetActiveConnection(server2_connection, globals())
|
||||
rSphere2 = Sphere(ThetaResolution=11, PhiResolution=11)
|
||||
rSphere2.UpdatePipeline()
|
||||
size2 = rSphere2.GetDataInformation().GetNumberOfPoints()
|
||||
|
||||
SetActiveConnection(server3_connection, globals())
|
||||
rSphere3 = Sphere(ThetaResolution=12, PhiResolution=12)
|
||||
rSphere3.UpdatePipeline()
|
||||
size3 = rSphere3.GetDataInformation().GetNumberOfPoints()
|
||||
|
||||
# Create remote source on the built-in session
|
||||
SetActiveConnection(built_in_connection, globals())
|
||||
remoteProxy = RemoteSourceProxy()
|
||||
remoteProxy.SetExternalProxy(rSphere1, 0)
|
||||
remoteProxy.UpdatePipeline()
|
||||
|
||||
# Test that the data in built-in is the same size as the remote one
|
||||
remoteProxy.UpdatePipeline()
|
||||
size = remoteProxy.GetDataInformation().GetNumberOfPoints()
|
||||
if ( size1 != size ):
|
||||
errors += 1
|
||||
print "Error Invalid data size. Expected ", size1, " and got ", size
|
||||
else:
|
||||
print "Found size ", size, " for server 1"
|
||||
|
||||
# Switch to proxy on server 2 and test size
|
||||
remoteProxy.SetExternalProxy(rSphere2, 0)
|
||||
remoteProxy.UpdatePipeline()
|
||||
size = remoteProxy.GetDataInformation().GetNumberOfPoints()
|
||||
if ( size2 != size ):
|
||||
errors += 1
|
||||
print "Error Invalid data size. Expected ", size2, " and got ", size
|
||||
else:
|
||||
print "Found size ", size, " for server 2"
|
||||
|
||||
# Switch to proxy on server 3 and test size
|
||||
remoteProxy.SetExternalProxy(rSphere3, 0)
|
||||
remoteProxy.UpdatePipeline()
|
||||
size = remoteProxy.GetDataInformation().GetNumberOfPoints()
|
||||
if ( size3 != size ):
|
||||
errors += 1
|
||||
print "Error Invalid data size. Expected ", size3, " and got ", size
|
||||
else:
|
||||
print "Found size ", size, " for server 3"
|
||||
|
||||
# Change data size on server 3 and make sure the change get propagated to the built-in
|
||||
rSphere3.ThetaResolution = 13
|
||||
rSphere3.PhiResolution = 13
|
||||
rSphere3.UpdatePipeline()
|
||||
size3 = rSphere3.GetDataInformation().GetNumberOfPoints()
|
||||
|
||||
remoteProxy.UpdatePipeline()
|
||||
size = remoteProxy.GetDataInformation().GetNumberOfPoints()
|
||||
if ( size3 != size ):
|
||||
errors += 1
|
||||
print "Error Invalid data size. Expected ", size3, " and got ", size
|
||||
else:
|
||||
print "Found size ", size, " for server 3 after update"
|
||||
|
||||
# Make sure the size is not 0
|
||||
if ( size == 0 or size1 == 0 or size1 == 0 or size1 == 0):
|
||||
errors += 1
|
||||
print "Error Invalid data size. None of them should be 0"
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Disconnect and quit application...
|
||||
Disconnect()
|
||||
print "Available connections after disconnect: ", servermanager.Connections
|
||||
Disconnect()
|
||||
print "Available connections after disconnect: ", servermanager.Connections
|
||||
Disconnect()
|
||||
print "Available connections after disconnect: ", servermanager.Connections
|
||||
Disconnect()
|
||||
print "Available connections after disconnect: ", servermanager.Connections
|
||||
|
||||
if errors > 0:
|
||||
raise RuntimeError, "An error occured during the execution"
|
||||
@ -1,121 +0,0 @@
|
||||
from paraview.simple import *
|
||||
from paraview import servermanager
|
||||
|
||||
import time
|
||||
|
||||
# Make sure the test driver know that process has properly started
|
||||
print "Process started"
|
||||
errors = 0
|
||||
|
||||
#-------------------- Comparison helper ----------------------
|
||||
|
||||
def equal(a, b):
|
||||
if a == b:
|
||||
return True
|
||||
aList = a.replace(","," ").replace("["," ").replace("]", " ").split(" ")
|
||||
bList = b.replace(","," ").replace("["," ").replace("]", " ").split(" ")
|
||||
size = len(aList)
|
||||
if size != len(bList):
|
||||
return False
|
||||
for i in xrange(size):
|
||||
if len(aList[i]) > 0:
|
||||
af = float(aList[i])
|
||||
bf = float(bList[i])
|
||||
if ((af-bf)*(af-bf)) > 0.000001:
|
||||
return False
|
||||
return True
|
||||
|
||||
#-------------------- Start testing --------------------------
|
||||
|
||||
print "Start PythonAnnotationFilter testing"
|
||||
|
||||
options = servermanager.vtkProcessModule.GetProcessModule().GetOptions()
|
||||
dataToLoad = options.GetParaViewDataName()
|
||||
|
||||
|
||||
# Load data file
|
||||
reader = OpenDataFile(dataToLoad)
|
||||
reader.GlobalVariables = ['KE', 'XMOM', 'YMOM', 'ZMOM', 'NSTEPS', 'TMSTEP']
|
||||
reader.UpdatePipeline()
|
||||
|
||||
# Time management
|
||||
controller = servermanager.ParaViewPipelineController()
|
||||
timekeeper = controller.FindTimeKeeper(servermanager.ActiveConnection.Session)
|
||||
timesteps = timekeeper.TimestepValues
|
||||
time = timesteps[5]
|
||||
|
||||
# Merge blocks
|
||||
merge = MergeBlocks()
|
||||
|
||||
# Annotation filter
|
||||
annotation = PythonAnnotation()
|
||||
annotation.Expression = '"%f %f %f" % (XMOM[t_index], YMOM[t_index], ZMOM[t_index])'
|
||||
|
||||
# Update time and trigger pipeline execution
|
||||
time = timesteps[5]
|
||||
annotation.UpdatePipeline(time)
|
||||
|
||||
annotation.SMProxy.UpdatePropertyInformation()
|
||||
value = annotation.SMProxy.GetProperty('AnnotationValue').GetElement(0)
|
||||
expected = "0.012132 0.001378 -1158.252808"
|
||||
|
||||
if not equal(value, expected):
|
||||
errors += 1
|
||||
print "Error: Expected ", expected, " and got ", value
|
||||
|
||||
# Update time and trigger pipeline execution
|
||||
time = timesteps[7]
|
||||
annotation.UpdatePipeline(time)
|
||||
|
||||
annotation.SMProxy.UpdatePropertyInformation()
|
||||
value = annotation.SMProxy.GetProperty('AnnotationValue').GetElement(0)
|
||||
expected = "0.013970 0.001319 -1141.020020"
|
||||
|
||||
if not equal(value, expected):
|
||||
errors += 1
|
||||
print "Error: Expected ", expected, " and got ", value
|
||||
|
||||
# Check time infos
|
||||
annotation.Expression = '"%i %f %s" % (t_index, t_value, str(t_range))'
|
||||
|
||||
# Update time and trigger pipeline execution
|
||||
time = timesteps[7]
|
||||
annotation.UpdatePipeline(time)
|
||||
|
||||
annotation.SMProxy.UpdatePropertyInformation()
|
||||
value = annotation.SMProxy.GetProperty('AnnotationValue').GetElement(0)
|
||||
expected = "7 0.000700 (0.0, 0.004299988504499197)"
|
||||
|
||||
if not equal(value, expected):
|
||||
errors += 1
|
||||
print "Error: Expected ", expected, " and got ", value
|
||||
|
||||
# Update time and trigger pipeline execution
|
||||
time = timesteps[27]
|
||||
annotation.UpdatePipeline(time)
|
||||
|
||||
annotation.SMProxy.UpdatePropertyInformation()
|
||||
value = annotation.SMProxy.GetProperty('AnnotationValue').GetElement(0)
|
||||
expected = "27 0.002700 (0.0, 0.004299988504499197)"
|
||||
|
||||
if not equal(value, expected):
|
||||
errors += 1
|
||||
print "Error: Expected ", expected, " and got ", value
|
||||
|
||||
# Update time and trigger pipeline execution
|
||||
time = timesteps[len(timesteps)-1]
|
||||
annotation.UpdatePipeline(time)
|
||||
|
||||
annotation.SMProxy.UpdatePropertyInformation()
|
||||
value = annotation.SMProxy.GetProperty('AnnotationValue').GetElement(0)
|
||||
expected = "43 0.004300 (0.0, 0.004299988504499197)"
|
||||
|
||||
if not equal(value, expected):
|
||||
errors += 1
|
||||
print "Error: Expected ", expected, " and got ", value
|
||||
|
||||
# Disconnect and quit application...
|
||||
Disconnect()
|
||||
|
||||
if errors > 0:
|
||||
raise RuntimeError, "An error occured during the execution"
|
||||
@ -1,121 +0,0 @@
|
||||
from paraview.simple import *
|
||||
from paraview import servermanager
|
||||
|
||||
import time
|
||||
|
||||
# Make sure the test driver know that process has properly started
|
||||
print "Process started"
|
||||
errors = 0
|
||||
|
||||
#-------------------- Comparison helper ----------------------
|
||||
|
||||
def equal(a, b):
|
||||
if a == b:
|
||||
return True
|
||||
aList = a.replace(","," ").replace("["," ").replace("]", " ").split(" ")
|
||||
bList = b.replace(","," ").replace("["," ").replace("]", " ").split(" ")
|
||||
size = len(aList)
|
||||
if size != len(bList):
|
||||
return False
|
||||
for i in xrange(size):
|
||||
if len(aList[i]) > 0:
|
||||
af = float(aList[i])
|
||||
bf = float(bList[i])
|
||||
if ((af-bf)*(af-bf)) > 0.000001:
|
||||
return False
|
||||
return True
|
||||
|
||||
#-------------------- Start testing --------------------------
|
||||
|
||||
print "Start PythonAnnotationFilter testing"
|
||||
|
||||
options = servermanager.vtkProcessModule.GetProcessModule().GetOptions()
|
||||
dataToLoad = options.GetParaViewDataName()
|
||||
|
||||
|
||||
# Load data file
|
||||
reader = OpenDataFile(dataToLoad)
|
||||
reader.GlobalVariables = ['KE', 'XMOM', 'YMOM', 'ZMOM', 'NSTEPS', 'TMSTEP']
|
||||
reader.UpdatePipeline()
|
||||
|
||||
# Time management
|
||||
controller = servermanager.ParaViewPipelineController()
|
||||
timekeeper = controller.FindTimeKeeper(servermanager.ActiveConnection.Session)
|
||||
timesteps = timekeeper.TimestepValues
|
||||
time = timesteps[5]
|
||||
|
||||
# Merge blocks
|
||||
### Just skip the merge = MergeBlocks()
|
||||
|
||||
# Annotation filter
|
||||
annotation = PythonAnnotation()
|
||||
annotation.Expression = '"%f %f %f" % (XMOM[t_index], YMOM[t_index], ZMOM[t_index])'
|
||||
|
||||
# Update time and trigger pipeline execution
|
||||
time = timesteps[5]
|
||||
annotation.UpdatePipeline(time)
|
||||
|
||||
annotation.SMProxy.UpdatePropertyInformation()
|
||||
value = annotation.SMProxy.GetProperty('AnnotationValue').GetElement(0)
|
||||
expected = "0.012132 0.001378 -1158.252808"
|
||||
|
||||
if not equal(value, expected):
|
||||
errors += 1
|
||||
print "Error: Expected ", expected, " and got ", value
|
||||
|
||||
# Update time and trigger pipeline execution
|
||||
time = timesteps[7]
|
||||
annotation.UpdatePipeline(time)
|
||||
|
||||
annotation.SMProxy.UpdatePropertyInformation()
|
||||
value = annotation.SMProxy.GetProperty('AnnotationValue').GetElement(0)
|
||||
expected = "0.013970 0.001319 -1141.020020"
|
||||
|
||||
if not equal(value, expected):
|
||||
errors += 1
|
||||
print "Error: Expected ", expected, " and got ", value
|
||||
|
||||
# Check time infos
|
||||
annotation.Expression = '"%i %f %s" % (t_index, t_value, str(t_range))'
|
||||
|
||||
# Update time and trigger pipeline execution
|
||||
time = timesteps[7]
|
||||
annotation.UpdatePipeline(time)
|
||||
|
||||
annotation.SMProxy.UpdatePropertyInformation()
|
||||
value = annotation.SMProxy.GetProperty('AnnotationValue').GetElement(0)
|
||||
expected = "7 0.000700 (0.0, 0.004299988504499197)"
|
||||
|
||||
if not equal(value, expected):
|
||||
errors += 1
|
||||
print "Error: Expected ", expected, " and got ", value
|
||||
|
||||
# Update time and trigger pipeline execution
|
||||
time = timesteps[27]
|
||||
annotation.UpdatePipeline(time)
|
||||
|
||||
annotation.SMProxy.UpdatePropertyInformation()
|
||||
value = annotation.SMProxy.GetProperty('AnnotationValue').GetElement(0)
|
||||
expected = "27 0.002700 (0.0, 0.004299988504499197)"
|
||||
|
||||
if not equal(value, expected):
|
||||
errors += 1
|
||||
print "Error: Expected ", expected, " and got ", value
|
||||
|
||||
# Update time and trigger pipeline execution
|
||||
time = timesteps[len(timesteps)-1]
|
||||
annotation.UpdatePipeline(time)
|
||||
|
||||
annotation.SMProxy.UpdatePropertyInformation()
|
||||
value = annotation.SMProxy.GetProperty('AnnotationValue').GetElement(0)
|
||||
expected = "43 0.004300 (0.0, 0.004299988504499197)"
|
||||
|
||||
if not equal(value, expected):
|
||||
errors += 1
|
||||
print "Error: Expected ", expected, " and got ", value
|
||||
|
||||
# Disconnect and quit application...
|
||||
Disconnect()
|
||||
|
||||
if errors > 0:
|
||||
raise RuntimeError, "An error occured during the execution"
|
||||
@ -1,70 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
# Global python import
|
||||
import exceptions, logging, random, sys, threading, time, os
|
||||
|
||||
# Update python path to have ParaView libs
|
||||
build_path='/Volumes/SebKitSSD/Kitware/code/ParaView/build-ninja'
|
||||
sys.path.append('%s/lib'%build_path)
|
||||
sys.path.append('%s/lib/site-packages'%build_path)
|
||||
|
||||
# iPython import
|
||||
#from IPython.display import HTML
|
||||
#from IPython.parallel import Client
|
||||
import paraview
|
||||
from paraview.web import ipython as pv_ipython
|
||||
from vtk import *
|
||||
|
||||
iPythonClient = None
|
||||
paraviewHelper = pv_ipython.ParaViewIPython()
|
||||
webArguments = pv_ipython.WebArguments('/.../path-to-web-directory')
|
||||
|
||||
def _start_paraview():
|
||||
paraviewHelper.Initialize()
|
||||
|
||||
paraviewHelper.SetWebProtocol(IPythonProtocol, webArguments)
|
||||
return paraviewHelper.Start()
|
||||
|
||||
|
||||
def _stop_paraview():
|
||||
paraviewHelper.Finalize()
|
||||
|
||||
|
||||
def _pv_activate_dataset():
|
||||
IPythonProtocol.ActivateDataSet('iPython-demo')
|
||||
|
||||
|
||||
def _push_new_timestep():
|
||||
# processing code generating new vtkDataSet
|
||||
# newDataset = ...
|
||||
IPythonProtocol.RegisterDataSet('iPython-demo', newDataset)
|
||||
|
||||
|
||||
def StartParaView(height=600, path='/apps/WebVisualizer/'):
|
||||
global iPythonClient, paraviewHelper
|
||||
if not iPythonClient:
|
||||
iPythonClient = Client()
|
||||
urls = iPythonClient[:].apply_sync(lambda:_start_paraview())
|
||||
url = ""
|
||||
for i in urls:
|
||||
if len(i) > 0:
|
||||
url = i
|
||||
return HTML("<iframe src='%s/%s' width='100%%' height='%i'></iframe>"%(url, path, height))
|
||||
|
||||
|
||||
def StopParaView():
|
||||
global iPythonClient, paraviewHelper
|
||||
iPythonClient[:].apply_sync(lambda:_stop_paraview())
|
||||
|
||||
|
||||
def ActivateDataSet():
|
||||
iPythonClient[:].apply_sync(lambda:_pv_activate_dataset())
|
||||
|
||||
|
||||
def ComputeNextTimeStep(ds):
|
||||
iPythonClient[:].apply_sync(lambda:_push_new_timestep())
|
||||
|
||||
|
||||
print "Start waiting"
|
||||
time.sleep(10)
|
||||
print "Done"
|
||||
@ -1,107 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
# Global python import
|
||||
import exceptions, traceback, logging, random, sys, threading, time, os
|
||||
|
||||
# Update python path to have ParaView libs
|
||||
build_path='/Volumes/SebKitSSD/Kitware/code/ParaView/build-ninja'
|
||||
sys.path.append('%s/lib'%build_path)
|
||||
sys.path.append('%s/lib/site-packages'%build_path)
|
||||
|
||||
# ParaView import
|
||||
from vtk.web import server
|
||||
from paraview.vtk import *
|
||||
from paraview.web import wamp as pv_wamp
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# InLine protocol
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
class TestProtocol(pv_wamp.PVServerProtocol):
|
||||
dataDir = None
|
||||
authKey = "vtkweb-secret"
|
||||
fileToLoad = None
|
||||
groupRegex = "[0-9]+\\."
|
||||
excludeRegex = "^\\.|~$|^\\$"
|
||||
|
||||
@staticmethod
|
||||
def updateArguments(options):
|
||||
TestProtocol.dataDir = options.dataDir
|
||||
TestProtocol.authKey = options.authKey
|
||||
TestProtocol.fileToLoad = options.fileToLoad
|
||||
TestProtocol.authKey = options.authKey
|
||||
TestProtocol.groupRegex = options.groupRegex
|
||||
TestProtocol.excludeRegex = options.excludeRegex
|
||||
|
||||
def initialize(self):
|
||||
from paraview import simple
|
||||
from paraview.web import protocols as pv_protocols
|
||||
|
||||
# Bring used components
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebFileListing(TestProtocol.dataDir, "Home", TestProtocol.excludeRegex, TestProtocol.groupRegex))
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebPipelineManager(TestProtocol.dataDir, TestProtocol.fileToLoad))
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebMouseHandler())
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebViewPort())
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebViewPortImageDelivery())
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebViewPortGeometryDelivery())
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebTimeHandler())
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebRemoteConnection())
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebFileManager(TestProtocol.dataDir))
|
||||
|
||||
# Update authentication key to use
|
||||
self.updateSecret(TestProtocol.authKey)
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# ParaView Test default arguments
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
class WebArguments(object):
|
||||
|
||||
def __init__(self, webDir = None):
|
||||
self.content = webDir
|
||||
self.port = 8080
|
||||
self.host = 'localhost'
|
||||
self.debug = 0
|
||||
self.timeout = 120
|
||||
self.nosignalhandlers = True
|
||||
self.authKey = 'vtkweb-secret'
|
||||
self.uploadDir = ""
|
||||
self.testScriptPath = ""
|
||||
self.baselineImgDir = ""
|
||||
self.useBrowser = ""
|
||||
self.tmpDirectory = ""
|
||||
self.testImgFile = ""
|
||||
self.forceFlush = False
|
||||
self.dataDir = '.'
|
||||
self.groupRegex = "[0-9]+\\."
|
||||
self.excludeRegex = "^\\.|~$|^\\$"
|
||||
self.fileToLoad = None
|
||||
|
||||
|
||||
def __str__(self):
|
||||
return "http://%s:%d/%s" % (self.host, self.port, self.content)
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# Start server
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
def start():
|
||||
args = WebArguments('%s/www' % build_path)
|
||||
TestProtocol.updateArguments(args)
|
||||
server.start_webserver(options=args, protocol=TestProtocol)
|
||||
|
||||
def start_thread():
|
||||
thread = threading.Thread(target=start)
|
||||
print "Starting thread"
|
||||
thread.start()
|
||||
for i in range(20):
|
||||
print "Working... %ds" % (i*5)
|
||||
time.sleep(5)
|
||||
thread.join()
|
||||
print "Done"
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# Main
|
||||
#------------------------------------------------------------------------------
|
||||
if __name__ == "__main__":
|
||||
start_thread()
|
||||
@ -1,93 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
# Global python import
|
||||
import exceptions, traceback, logging, random, sys, threading, time, os
|
||||
|
||||
# Update python path to have ParaView libs
|
||||
build_path='/Volumes/SebKitSSD/Kitware/code/ParaView/build-ninja'
|
||||
sys.path.append('%s/lib'%build_path)
|
||||
sys.path.append('%s/lib/site-packages'%build_path)
|
||||
|
||||
# ParaView import
|
||||
from vtk.web import server
|
||||
from paraview.vtk import *
|
||||
from paraview.web import wamp as pv_wamp
|
||||
from paraview.web import ipython as pv_ipython
|
||||
|
||||
from vtkCommonCorePython import *
|
||||
from vtkCommonDataModelPython import *
|
||||
from vtkCommonExecutionModelPython import *
|
||||
from vtkFiltersSourcesPython import *
|
||||
from vtkParallelCorePython import *
|
||||
from vtkParaViewWebCorePython import *
|
||||
from vtkPVClientServerCoreCorePython import *
|
||||
from vtkPVServerManagerApplicationPython import *
|
||||
from vtkPVServerManagerCorePython import *
|
||||
from vtkPVVTKExtensionsCorePython import *
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# InLine protocol
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
class TestProtocol(pv_wamp.PVServerProtocol):
|
||||
dataDir = None
|
||||
authKey = "vtkweb-secret"
|
||||
fileToLoad = None
|
||||
groupRegex = "[0-9]+\\."
|
||||
excludeRegex = "^\\.|~$|^\\$"
|
||||
|
||||
@staticmethod
|
||||
def updateArguments(options):
|
||||
TestProtocol.dataDir = options.dataDir
|
||||
TestProtocol.authKey = options.authKey
|
||||
TestProtocol.fileToLoad = options.fileToLoad
|
||||
TestProtocol.authKey = options.authKey
|
||||
TestProtocol.groupRegex = options.groupRegex
|
||||
TestProtocol.excludeRegex = options.excludeRegex
|
||||
|
||||
def initialize(self):
|
||||
from paraview import simple
|
||||
from paraview.web import protocols as pv_protocols
|
||||
|
||||
# Bring used components
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebFileListing(TestProtocol.dataDir, "Home", TestProtocol.excludeRegex, TestProtocol.groupRegex))
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebPipelineManager(TestProtocol.dataDir, TestProtocol.fileToLoad))
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebMouseHandler())
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebViewPort())
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebViewPortImageDelivery())
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebViewPortGeometryDelivery())
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebTimeHandler())
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebRemoteConnection())
|
||||
self.registerVtkWebProtocol(pv_protocols.ParaViewWebFileManager(TestProtocol.dataDir))
|
||||
|
||||
# Update authentication key to use
|
||||
self.updateSecret(TestProtocol.authKey)
|
||||
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# Start server
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
paraviewHelper = pv_ipython.ParaViewIPython()
|
||||
webArguments = pv_ipython.WebArguments('%s/www' % build_path)
|
||||
|
||||
def start():
|
||||
paraviewHelper.Initialize(os.path.join(os.getcwd(), 'Testing', 'Temporary', 'mpi-python'))
|
||||
paraviewHelper.SetWebProtocol(TestProtocol, webArguments)
|
||||
return paraviewHelper.Start()
|
||||
|
||||
def start_thread():
|
||||
thread = threading.Thread(target=start)
|
||||
print "Starting thread"
|
||||
thread.start()
|
||||
for i in range(20):
|
||||
print "Working... %ds" % (i*5)
|
||||
time.sleep(5)
|
||||
thread.join()
|
||||
print "Done"
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# Main
|
||||
#------------------------------------------------------------------------------
|
||||
if __name__ == "__main__":
|
||||
start_thread()
|
||||
@ -1,72 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
# Global python import
|
||||
import exceptions, traceback, logging, random, sys, threading, time, os
|
||||
|
||||
# Update python path to have ParaView libs
|
||||
build_path='/Volumes/SebKitSSD/Kitware/code/ParaView/build-ninja'
|
||||
sys.path.append('%s/lib'%build_path)
|
||||
sys.path.append('%s/lib/site-packages'%build_path)
|
||||
|
||||
# ParaView import
|
||||
from vtk.web import server
|
||||
from paraview.vtk import *
|
||||
from paraview.web import wamp as pv_wamp
|
||||
from paraview.web import ipython as pv_ipython
|
||||
|
||||
from vtkCommonCorePython import *
|
||||
from vtkCommonDataModelPython import *
|
||||
from vtkCommonExecutionModelPython import *
|
||||
from vtkFiltersSourcesPython import *
|
||||
from vtkParallelCorePython import *
|
||||
from vtkParaViewWebCorePython import *
|
||||
from vtkPVClientServerCoreCorePython import *
|
||||
from vtkPVServerManagerApplicationPython import *
|
||||
from vtkPVServerManagerCorePython import *
|
||||
from vtkPVVTKExtensionsCorePython import *
|
||||
from vtk import *
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# Start server
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
paraviewHelper = pv_ipython.ParaViewIPython()
|
||||
webArguments = pv_ipython.WebArguments('%s/www' % build_path)
|
||||
sphere = None
|
||||
|
||||
def start():
|
||||
paraviewHelper.Initialize(os.path.join(os.getcwd(), 'Testing', 'Temporary', 'mpi-python'))
|
||||
pv_ipython.IPythonProtocol.updateArguments(webArguments)
|
||||
paraviewHelper.SetWebProtocol(pv_ipython.IPythonProtocol, webArguments)
|
||||
return paraviewHelper.Start()
|
||||
|
||||
def start_thread():
|
||||
# Register some data at startup
|
||||
global sphere
|
||||
position = [random.random() * 2, random.random() * 2, random.random() * 2]
|
||||
sphere = vtkSphereSource()
|
||||
sphere.SetCenter(position)
|
||||
sphere.Update()
|
||||
pv_ipython.IPythonProtocol.RegisterDataSet('iPython-demo', sphere.GetOutput())
|
||||
|
||||
# Start root+satelites
|
||||
thread = threading.Thread(target=start)
|
||||
print "Starting thread"
|
||||
thread.start()
|
||||
for i in range(20):
|
||||
print "Working... %ds" % (i*5)
|
||||
position = [random.random() * 2, random.random() * 2, random.random() * 2]
|
||||
print position
|
||||
sphere.SetCenter(position)
|
||||
sphere.Update()
|
||||
pv_ipython.IPythonProtocol.RegisterDataSet('iPython-demo', sphere.GetOutput())
|
||||
time.sleep(5)
|
||||
pv_ipython.IPythonProtocol.ActivateDataSet('iPython-demo')
|
||||
thread.join()
|
||||
print "Done"
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# Main
|
||||
#------------------------------------------------------------------------------
|
||||
if __name__ == "__main__":
|
||||
start_thread()
|
||||
@ -1,24 +0,0 @@
|
||||
import unittest
|
||||
|
||||
from paraview import simple
|
||||
from paraview import servermanager
|
||||
|
||||
|
||||
class TestSimpleModule(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.pxm = servermanager.ProxyManager()
|
||||
|
||||
def test_RenameSource(self):
|
||||
source = simple.Sphere(guiName='oldName')
|
||||
simple.SetActiveSource(source)
|
||||
simple.RenameSource('newName')
|
||||
# changing the source name should unregister the old name
|
||||
self.assertEqual(None, self.pxm.GetProxy('sources', 'oldName'))
|
||||
self.assertEqual(source, self.pxm.GetProxy('sources', 'newName'))
|
||||
# renaming as the current name should not unregister the source
|
||||
simple.RenameSource('newName')
|
||||
self.assertEqual(source, self.pxm.GetProxy('sources', 'newName'))
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
@ -1,70 +0,0 @@
|
||||
# Set up a basic scene for rendering.
|
||||
from paraview.simple import *
|
||||
import os
|
||||
import sys
|
||||
|
||||
script = """
|
||||
import paraview.numpy_support
|
||||
|
||||
# Utility to get next color
|
||||
def getNextColor():
|
||||
colors = 'bgrcmykw'
|
||||
for c in colors:
|
||||
yield c
|
||||
|
||||
# This function must be defined. It is where specific data arrays are requested.
|
||||
def setup_data(view):
|
||||
print "Setting up data"
|
||||
|
||||
# This function must be defined. It is where the actual rendering commands for matplotlib go.
|
||||
def render(view,width,height):
|
||||
from paraview import python_view
|
||||
figure = python_view.matplotlib_figure(width,height)
|
||||
|
||||
ax = figure.add_subplot(111)
|
||||
ax.hold = True
|
||||
numObjects = view.GetNumberOfVisibleDataObjects()
|
||||
print "num visible objects: ", numObjects
|
||||
for i, color in zip(xrange(0,numObjects), getNextColor()):
|
||||
dataObject = view.GetVisibleDataObjectForRendering(i)
|
||||
if dataObject:
|
||||
vtk_points = dataObject.GetPoints()
|
||||
if vtk_points:
|
||||
vtk_points_data = vtk_points.GetData()
|
||||
pts = paraview.numpy_support.vtk_to_numpy(vtk_points_data)
|
||||
x, y = pts[:,0], pts[:,1]
|
||||
ax.scatter(x, y, color=color)
|
||||
|
||||
ax.hold = False
|
||||
|
||||
return python_view.figure_to_image(figure)
|
||||
"""
|
||||
|
||||
view = CreateView("PythonView")
|
||||
view.Script = script
|
||||
|
||||
cone = Cone()
|
||||
Show(cone, view)
|
||||
|
||||
sphere = Sphere()
|
||||
Show(sphere, view)
|
||||
|
||||
Render()
|
||||
|
||||
try:
|
||||
baselineIndex = sys.argv.index('-B')+1
|
||||
baselinePath = sys.argv[baselineIndex]
|
||||
except:
|
||||
print "Could not get baseline directory. Test failed."
|
||||
|
||||
baseline_file = os.path.join(baselinePath, "TestPythonViewMatplotlibScript.png")
|
||||
import vtk.test.Testing
|
||||
vtk.test.Testing.VTK_TEMP_DIR = vtk.util.misc.vtkGetTempDir()
|
||||
vtk.test.Testing.compareImage(view.GetRenderWindow(), baseline_file, threshold=25)
|
||||
vtk.test.Testing.interact()
|
||||
|
||||
Delete(cone)
|
||||
del cone
|
||||
|
||||
Delete(sphere)
|
||||
del sphere
|
||||
@ -1,42 +0,0 @@
|
||||
# Set up a basic scene for rendering.
|
||||
from paraview.simple import *
|
||||
import sys
|
||||
|
||||
script = """
|
||||
import numpy
|
||||
import paraview.numpy_support
|
||||
|
||||
def setup_data(view):
|
||||
# Don't actually need any data
|
||||
pass
|
||||
|
||||
def render(view, width, height):
|
||||
cb = numpy.zeros((height, width, 4), dtype=numpy.uint8)
|
||||
for i in xrange(width):
|
||||
cb[:,i,0] = i%255
|
||||
|
||||
for i in xrange(height):
|
||||
cb[i,:,1] = i%255
|
||||
|
||||
from paraview.python_view import numpy_to_image
|
||||
|
||||
return numpy_to_image(cb)
|
||||
"""
|
||||
|
||||
view = CreateView("PythonView")
|
||||
view.Script = script
|
||||
|
||||
Render()
|
||||
|
||||
try:
|
||||
baselineIndex = sys.argv.index('-B')+1
|
||||
baselinePath = sys.argv[baselineIndex]
|
||||
except:
|
||||
print "Could not get baseline directory. Test failed."
|
||||
|
||||
import os
|
||||
baseline_file = os.path.join(baselinePath, "TestPythonViewNumpyScript.png")
|
||||
import vtk.test.Testing
|
||||
vtk.test.Testing.VTK_TEMP_DIR = vtk.util.misc.vtkGetTempDir()
|
||||
vtk.test.Testing.compareImage(view.GetRenderWindow(), baseline_file, threshold=25)
|
||||
vtk.test.Testing.interact()
|
||||
@ -1,53 +0,0 @@
|
||||
# Set up a basic scene for rendering.
|
||||
from paraview.simple import *
|
||||
import sys
|
||||
|
||||
script = """
|
||||
import vtk
|
||||
|
||||
def setup_data(view):
|
||||
# Don't actually need any data
|
||||
pass
|
||||
|
||||
def render(view, width, height):
|
||||
canvas = vtk.vtkImageCanvasSource2D()
|
||||
canvas.SetExtent(0, width-1, 0, height-1, 0, 0)
|
||||
canvas.SetNumberOfScalarComponents(3)
|
||||
canvas.SetScalarTypeToUnsignedChar()
|
||||
canvas.SetDrawColor(0, 0, 0)
|
||||
canvas.FillBox(0,width-1,0,height-1)
|
||||
canvas.SetDrawColor(255, 255, 0)
|
||||
canvas.DrawCircle(int(width/2), int(height/2), 10)
|
||||
canvas.SetDrawColor(255, 0, 0)
|
||||
canvas.FillTube(10, 10, 30, 200, 7)
|
||||
canvas.SetDrawColor(0, 0, 255)
|
||||
canvas.FillTriangle(width-20, height-20,
|
||||
int(width/2)+10, int(height/2)-10,
|
||||
width - 100, height - 150)
|
||||
canvas.Update()
|
||||
|
||||
image = vtk.vtkImageData()
|
||||
image.DeepCopy(canvas.GetOutput())
|
||||
|
||||
print image
|
||||
|
||||
return image
|
||||
"""
|
||||
|
||||
view = CreateView("PythonView")
|
||||
view.Script = script
|
||||
|
||||
Render()
|
||||
|
||||
try:
|
||||
baselineIndex = sys.argv.index('-B')+1
|
||||
baselinePath = sys.argv[baselineIndex]
|
||||
except:
|
||||
print "Could not get baseline directory. Test failed."
|
||||
|
||||
import os
|
||||
baseline_file = os.path.join(baselinePath, "TestPythonViewScript.png")
|
||||
import vtk.test.Testing
|
||||
vtk.test.Testing.VTK_TEMP_DIR = vtk.util.misc.vtkGetTempDir()
|
||||
vtk.test.Testing.compareImage(view.GetRenderWindow(), baseline_file, threshold=25)
|
||||
vtk.test.Testing.interact()
|
||||
@ -1,56 +0,0 @@
|
||||
import os
|
||||
import random
|
||||
import textwrap
|
||||
|
||||
from paraview import servermanager
|
||||
import paraview.simple as smp
|
||||
|
||||
|
||||
# Make sure the test driver know that process has properly started
|
||||
print "Process started"
|
||||
|
||||
|
||||
def getHost(url):
|
||||
return url.split(':')[1][2:]
|
||||
|
||||
|
||||
def getPort(url):
|
||||
return int(url.split(':')[2])
|
||||
|
||||
|
||||
def testScript(programmableFilter, script):
|
||||
|
||||
arrayName = str(random.random())
|
||||
programmableFilter.Script = script + textwrap.dedent('''
|
||||
passedArray = vtk.vtkIntArray()
|
||||
passedArray.SetName('%s')
|
||||
self.GetOutput().GetFieldData().AddArray(passedArray)''' % arrayName)
|
||||
|
||||
programmableFilter.UpdatePipeline()
|
||||
return programmableFilter.FieldData.GetArray(arrayName) is not None
|
||||
|
||||
|
||||
def runTest():
|
||||
|
||||
options = servermanager.vtkProcessModule.GetProcessModule().GetOptions()
|
||||
url = options.GetServerURL()
|
||||
|
||||
smp.Connect(getHost(url), getPort(url))
|
||||
|
||||
sphere = smp.Sphere()
|
||||
|
||||
f = smp.ProgrammableFilter(sphere)
|
||||
|
||||
# test that vtk is imported automatically and contains the name vtkPolyData
|
||||
script = 'assert vtk.vtkPolyData'
|
||||
assert testScript(f, script)
|
||||
|
||||
# test that variables can be passed using the Parameters property
|
||||
script = 'assert foo == "bar"'
|
||||
f.SetPropertyWithName('Parameters', ['foo', '"bar"'])
|
||||
assert testScript(f, script)
|
||||
|
||||
smp.Disconnect()
|
||||
|
||||
|
||||
runTest()
|
||||
@ -1,25 +0,0 @@
|
||||
#/usr/bin/env python
|
||||
|
||||
import QtTesting
|
||||
import sys
|
||||
|
||||
libname = 'libGUIMyToolBar.so'
|
||||
if sys.platform == 'win32':
|
||||
libname = 'GUIMyToolBar.dll'
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
libname = 'libGUIMyToolBar.dylib'
|
||||
|
||||
object1 = 'pqClientMainWindow/menubar/menuTools'
|
||||
QtTesting.playCommand(object1, 'activate', 'actionManage_Plugins')
|
||||
object2 = "pqClientMainWindow/pqPluginDialog/localGroup/loadLocal"
|
||||
QtTesting.playCommand(object2, 'activate', '')
|
||||
object3 = 'pqClientMainWindow/pqPluginDialog/pqFileDialog'
|
||||
QtTesting.playCommand(object3, 'filesSelected', libname)
|
||||
object4 = 'pqClientMainWindow/pqPluginDialog/buttonBox/1QPushButton0'
|
||||
QtTesting.playCommand(object4, 'activate', '')
|
||||
object5 = 'pqClientMainWindow/MyActions/1QToolButton0'
|
||||
QtTesting.playCommand(object5, 'activate', '')
|
||||
object6 = '1QMessageBox0/qt_msgbox_buttonbox/1QPushButton0'
|
||||
QtTesting.playCommand(object6, 'activate', '')
|
||||
|
||||
@ -1,29 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar/menuSources" command="activate" arguments="Sphere" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/Alphabetical" command="activate" arguments="Clip" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuTools" command="activate" arguments="actionToolsCreateCustomFilter" />
|
||||
<pqevent object="pqClientMainWindow/pqCustomFilterDefinitionWizard/InputFrame/PageStack/NamePage/CustomFilterName" command="set_string" arguments="CustomFilterClip" />
|
||||
<pqevent object="pqClientMainWindow/pqCustomFilterDefinitionWizard/InputFrame/NextButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCustomFilterDefinitionWizard/InputFrame/NextButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCustomFilterDefinitionWizard/InputFrame/NextButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCustomFilterDefinitionWizard/InputFrame/PageStack/PropertyPage/PropertyPipeline" command="currentChanged" arguments="/0|0" />
|
||||
<pqevent object="pqClientMainWindow/pqCustomFilterDefinitionWizard/InputFrame/PageStack/PropertyPage/PropertyName" command="set_string" arguments="Clip Type" />
|
||||
<pqevent object="pqClientMainWindow/pqCustomFilterDefinitionWizard/InputFrame/PageStack/PropertyPage/frame_3/AddPropertyButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCustomFilterDefinitionWizard/InputFrame/FinishButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Delete" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="currentChanged" arguments="/0/0|0" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/Alphabetical" command="activate" arguments="CustomFilterClip" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuTools" command="activate" arguments="actionToolsManageCustomFilters" />
|
||||
<pqevent object="pqClientMainWindow/pqCustomFilterManager/CustomFilterList" command="mousePress" arguments="1,1,0,86,6,/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pqCustomFilterManager/CustomFilterList" command="mouseRelease" arguments="1,0,0,86,6,/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pqCustomFilterManager/RemoveButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCustomFilterManager/CloseButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="Surface With Edges" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/SearchBox/AdvancedButton" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/LineWidth/LineEdit0" command="set_string" arguments="5" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/LineWidth/LineEdit0" command="key" arguments="16777221" />
|
||||
</pqevents>
|
||||
@ -1,44 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionOpenData" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="@smooth_flash@" />
|
||||
<pqevent object="pqClientMainWindow/pqSelectReaderDialog/listWidget" command="mousePress" arguments="1,1,0,81,5,/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pqSelectReaderDialog/listWidget" command="mouseRelease" arguments="1,0,0,81,5,/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pqSelectReaderDialog/okButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ArrayStatus/SelectionWidget" command="setCheckState" arguments="6.0,2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
|
||||
<!-- stop automatic streaming -->
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="stop_streaming" />
|
||||
|
||||
<!-- switch to a representation that supports streaming -->
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="AMR Blocks" />
|
||||
|
||||
<!-- step down the streaming updates a few times -->
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
<pqevent object="pqClientMainWindow" command="pqViewStreamingBehavior" arguments="next" />
|
||||
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionPositiveY" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,30 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionOpenData" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="@smooth_flash@" />
|
||||
<pqevent object="pqClientMainWindow/pqSelectReaderDialog/listWidget" command="mousePress" arguments="1,1,0,68,7,/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pqSelectReaderDialog/listWidget" command="mouseRelease" arguments="1,0,0,68,7,/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pqSelectReaderDialog/okButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ArrayStatus/SelectionWidget" command="setCheckState" arguments="7.0,2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Level/IntRangeWidget/LineEdit" command="set_string" arguments="2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="jet " />
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="Volume" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/Shade/CheckBox" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/NumberOfSamples/LineEdit0" command="set_string" arguments="64" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/NumberOfSamples/LineEdit1" command="set_string" arguments="64" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/NumberOfSamples/LineEdit2" command="set_string" arguments="64" />
|
||||
<pqevent object="pqClientMainWindow/axesToolbar/actionShowCenterAxes" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionNegativeX" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuTools" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuTools" command="activate" arguments="actionTesting_Window_Size" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionResetCamera" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mousePress" arguments="(0.466667,0.273333,2,2,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseMove" arguments="(0.43,0.67,2,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseRelease" arguments="(0.43,0.67,2,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mousePress" arguments="(0.436667,0.673333,2,2,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseMove" arguments="(0.416667,0.1,2,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseRelease" arguments="(0.416667,0.1,2,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/BackgroundEditor/BackgroundType" command="set_string" arguments="Gradient" />
|
||||
</pqevents>
|
||||
@ -1,5 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_Help" command="activate" arguments="actionAbout" />
|
||||
<pqevent object="pqClientMainWindow/pqAboutDialog/buttonBox/1QPushButton0" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,55 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionOpenData" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/can.ex2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/Common/1QToolButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ResultArrayName/ResultArrayName" command="set_string" arguments="ObjectId" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/Function" command="set_string" arguments="ObjectId + 2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/AttributeMode/ComboBox" command="set_string" arguments="Cell Data" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,55,6,/0:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,55,6,/0:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="ObjectId" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/IndexedLookup/CheckBox" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AddActiveFromVisible" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,11,11,/0:0/0:1" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,11,11,/0:0/0:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AddActiveFromVisible" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,55,7,/0:0/0:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,55,7,/0:0/0:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/Position/LineEdit0" command="set_string" arguments="20" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/1QToolButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mousePress" arguments="(0.42125,0.175872,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseMove" arguments="(0.4425,0.431686,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseRelease" arguments="(0.4425,0.431686,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/ChoosePreset" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/searchBox/SearchLineEdit" command="set_string" arguments="purple-orange (4" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/gradients" command="mousePress" arguments="1,1,0,181,13,/0:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/gradients" command="mouseRelease" arguments="1,0,0,181,13,/0:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/apply" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/close" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/Common/1QToolButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ResultArrayName/ResultArrayName" command="set_string" arguments="ObjectId" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/Function" command="set_string" arguments="ObjectId + 8" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/AttributeMode/ComboBox" command="set_string" arguments="Cell Data" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/Position/LineEdit0" command="set_string" arguments="-20" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AddActiveFromVisible" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/1QToolButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/DeleteAll" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AddActiveFromVisible" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/ChoosePreset" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/gradients" command="mousePress" arguments="1,1,0,167,16,/13:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/gradients" command="mouseMove" arguments="1,0,0,167,17,/13:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/gradients" command="mouseRelease" arguments="1,0,0,167,17,/13:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/apply" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/close" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/RescaleOnVisibilityChange/CheckBox" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,10,9,/0:0/0:0/0:0/0:1" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,10,9,/0:0/0:0/0:0/0:1" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,10,9,/0:0/0:0/0:0/0:1" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseMove" arguments="1,0,0,10,8,/0:0/0:0/0:0/0:1" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,10,8,/0:0/0:0/0:0/0:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/RescaleOnVisibilityChange/CheckBox" command="set_boolean" arguments="false" />
|
||||
</pqevents>
|
||||
@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar/menuTools" command="activate" arguments="actionTesting_Window_Size" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuSources" command="activate" arguments="SphereSource" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/EndTheta/DoubleRangeWidget/LineEdit" command="set_string" arguments="90" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/Alphabetical" command="activate" arguments="GroupDataSets" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/Alphabetical" command="activate" arguments="AngularPeriodicFilter" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/BlockIndices/TreeWidget" command="setCheckState" arguments="0.0,2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/IterationMode/ComboBox" command="set_string" arguments="Manual" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/NumberOfPeriods/LineEdit0" command="set_string" arguments="4" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/RotationAngle/LineEdit0" command="set_string" arguments="90" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Axis/ComboBox" command="set_string" arguments="Axis Z" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="Surface" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/1QToolButton0" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,32 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_File" command="activate" arguments="actionFileOpen" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/can.ex2" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRFirstFrame" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ArrayStatus/SelectionWidget/1QHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ArrayStatus/SelectionWidget/1QHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mousePress" arguments="(0.524738,0.608,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseMove" arguments="(0.526237,0.36,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseRelease" arguments="(0.526237,0.36,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menu_View" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_View" command="activate" arguments="Animation View" />
|
||||
<pqevent object="pqClientMainWindow/animationViewDock/animationView/1pqAnimationWidget0/TrackHeader" command="mousePress" arguments="1,1,0,0,0,1" />
|
||||
<pqevent object="pqClientMainWindow/animationViewDock/animationView/1pqAnimationWidget0/TrackHeader" command="mouseRelease" arguments="1,0,0,0,0,1" />
|
||||
<pqevent object="pqClientMainWindow/animationViewDock/animationView/1pqAnimationWidget0/TrackHeader" command="mouseDblClick" arguments="1,1,0,0,0,1" />
|
||||
<pqevent object="pqClientMainWindow/animationViewDock/animationView/1pqAnimationWidget0/TrackHeader" command="mouseRelease" arguments="1,0,0,0,0,1" />
|
||||
<pqevent object="pqPipelineTimeKeyFrameEditor/variableRadio" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqPipelineTimeKeyFrameEditor/container/pqKeyFrameEditor/pbNew" command="activate" arguments="" />
|
||||
<pqevent object="pqPipelineTimeKeyFrameEditor/container/pqKeyFrameEditor/tableView" command="mousePress" arguments="1,1,0,52,19,/1:2" />
|
||||
<pqevent object="pqPipelineTimeKeyFrameEditor/container/pqKeyFrameEditor/tableView" command="mouseRelease" arguments="1,0,0,52,19,/1:2" />
|
||||
<pqevent object="pqPipelineTimeKeyFrameEditor/container/pqKeyFrameEditor/tableView" command="keyEvent" arguments="6,48,536870912,0,0,1" />
|
||||
<pqevent object="pqPipelineTimeKeyFrameEditor/container/pqKeyFrameEditor/tableView/qt_scrollarea_viewport/1QLineEdit0" command="set_string" arguments="0.002" />
|
||||
<pqevent object="pqPipelineTimeKeyFrameEditor/container/pqKeyFrameEditor/tableView" command="keyEvent" arguments="7,50,0,2,0,1" />
|
||||
<pqevent object="pqPipelineTimeKeyFrameEditor/container/pqKeyFrameEditor/tableView" command="keyEvent" arguments="7,50,0,2,0,1" />
|
||||
<pqevent object="pqPipelineTimeKeyFrameEditor/container/pqKeyFrameEditor/tableView" command="mousePress" arguments="1,1,0,64,23,/0:2" />
|
||||
<pqevent object="pqPipelineTimeKeyFrameEditor/container/pqKeyFrameEditor/tableView" command="mouseRelease" arguments="1,0,0,64,23,/0:2" />
|
||||
<pqevent object="pqPipelineTimeKeyFrameEditor/1QDialogButtonBox0/1QPushButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="VEL" />
|
||||
<pqevent object="pqClientMainWindow/animationViewDock/qt_dockwidget_closebutton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRPlay" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,41 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuSources" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuSources" command="activate" arguments="SphereSource" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="Normals" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Components" command="set_string" arguments="X" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/1QToolButton1" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/SearchBox/AdvancedButton" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/Add" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mousePress" arguments="1,1,0,34,16,/0:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mouseRelease" arguments="1,0,0,34,16,/0:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mouseDblClick" arguments="1,1,0,34,16,/0:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mouseRelease" arguments="1,0,0,34,16,/0:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,48,0,0,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,48,0,0,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="key" arguments="46" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,46,0,.,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,46,0,.,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="0.1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,49,0,1,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,49,0,1,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="key" arguments="16777217" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,16777217,0, ,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,16777217,0, ,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="6,16777248,33554432,,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="6,16777248,33554432,,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="key" arguments="16777248" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,78,0,n,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,78,0,n,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="Zero Point One" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mousePress" arguments="(0.247924,0.390826,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseRelease" arguments="(0.247924,0.390826,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/EditScalarBar" command="activate" arguments="" />
|
||||
<pqevent object="ColorLegendEditor/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/DrawAnnotations/CheckBox" command="set_boolean" arguments="false" />
|
||||
<pqevent object="ColorLegendEditor/widget/ApplyButton" command="activate" arguments="" />
|
||||
<pqevent object="ColorLegendEditor/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/DrawAnnotations/CheckBox" command="set_boolean" arguments="true" />
|
||||
<pqevent object="ColorLegendEditor/widget/ApplyButton" command="activate" arguments="" />
|
||||
<pqevent object="ColorLegendEditor/widget/OKButton" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,155 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuTools" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuTools" command="activate" arguments="actionTesting_Window_Size_Custom" />
|
||||
<pqevent object="pqClientMainWindow/pqLockViewSizeCustomDialog/Width" command="set_string" arguments="400" />
|
||||
<pqevent object="pqClientMainWindow/pqLockViewSizeCustomDialog/Height" command="set_string" arguments="400" />
|
||||
<pqevent object="pqClientMainWindow/pqLockViewSizeCustomDialog/ButtonBox/1QPushButton0" command="activate" arguments="" />
|
||||
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuSources" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuSources" command="activate" arguments="SuperquadricSource" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesButtons/PropertiesButton/label" command="mousePress" arguments="1,1,0,46,4" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesButtons/PropertiesButton/label" command="mouseRelease" arguments="1,0,0,46,4" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayButtons/DisplayButton/label" command="mousePress" arguments="1,1,0,47,3" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayButtons/DisplayButton/label" command="mouseRelease" arguments="1,0,0,47,3" />
|
||||
|
||||
<!-- Show default axes grid -->
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/PushButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/Visibility/CheckBox" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/widget/ApplyButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/widget/OKButton" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/AxesGrid1.png" width="400" height="400" />
|
||||
|
||||
<!-- move the camera a little and let's look at the grid -->
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/TitleBar/1QToolBar0/1QToolButton3" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/azimuthAngle" command="set_double" arguments="45" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/azimuthButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/elevationAngle" command="set_double" arguments="15" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/elevationButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/closeButton" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/AxesGrid2.png" width="400" height="400" />
|
||||
|
||||
<!-- Change the axes titles and show grid -->
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/PushButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/ShowGrid/CheckBox" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy" command="key" arguments="16777248" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/XTitle/XTitle" command="set_string" arguments="U" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/XTitle/XTitle" command="key" arguments="16777248" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/YTitle/YTitle" command="key" arguments="16777217" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy" command="key" arguments="16777248" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/YTitle/YTitle" command="key" arguments="16777248" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/YTitle/YTitle" command="set_string" arguments="V" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/ZTitle/ZTitle" command="key" arguments="16777217" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy" command="key" arguments="16777248" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/ZTitle/ZTitle" command="set_string" arguments="W" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/ZTitle/ZTitle" command="key" arguments="16777248" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/GridColor/ColorButton" command="setChosenColor" arguments="137,137,137" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="set_string" arguments="f" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="set_string" arguments="fa" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="set_string" arguments="fac" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/FacesToRender/Button" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/FacesToRender/Menu" command="activate" arguments="Min-YZ" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/widget/OKButton" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/AxesGrid3.png" width="400" height="400" />
|
||||
|
||||
|
||||
<!-- SWicth which faces are rendered and labels are shown -->
|
||||
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/PushButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="key" arguments="16777219" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="key" arguments="16777219" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="key" arguments="16777219" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="set_string" arguments="f" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="set_string" arguments="fa" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="set_string" arguments="fac" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/FacesToRender/Button" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/FacesToRender/Menu" command="activate" arguments="Min-YZ" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/FacesToRender/Button" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/FacesToRender/Menu" command="activate" arguments="Min-ZX" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/FacesToRender/Button" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/FacesToRender/Menu" command="activate" arguments="Max-ZX" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/FacesToRender/Button" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/FacesToRender/Menu" command="activate" arguments="Max-XY" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/AxesToLabel/Button" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/AxesToLabel/Menu" command="activate" arguments="Min-X" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/AxesToLabel/Button" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/AxesToLabel/Menu" command="activate" arguments="Min-Y" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/AxesToLabel/Button" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/AxesToLabel/Menu" command="activate" arguments="Min-Z" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/AxesToLabel/Button" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/AxesToLabel/Menu" command="activate" arguments="Max-X" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/AxesToLabel/Button" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/AxesToLabel/Menu" command="activate" arguments="Max-Y" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/CullFrontface/CheckBox" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/widget/ApplyButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/widget/OKButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesButtons/PropertiesButton/label" command="mousePress" arguments="1,1,0,106,3" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesButtons/PropertiesButton/label" command="mouseRelease" arguments="1,0,0,106,3" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Toroidal/CheckBox" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/AxesGrid4.png" width="400" height="400" />
|
||||
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/PushButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="key" arguments="16777219" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="key" arguments="16777219" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="key" arguments="16777219" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/FontEditor/FontColor" command="setChosenColor" arguments="170,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/FontEditor/FontColor" command="setChosenColor" arguments="0,85,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/widget/OKButton" command="activate" arguments="" />
|
||||
<!--
|
||||
Font color's arent' getting played back correctly, skip it for now
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/AxesGrid5.png" width="400" height="400" />
|
||||
-->
|
||||
|
||||
|
||||
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/PushButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/ShowGrid/CheckBox" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="set_string" arguments="ed" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/ShowEdges/CheckBox" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/widget/OKButton" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/AxesGrid6.png" width="400" height="400" />
|
||||
|
||||
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/PushButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/widget/RestoreDefaultsButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="key" arguments="16777219" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="set_string" arguments="v" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="key" arguments="16777219" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/Visibility/CheckBox" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/widget/OKButton" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/AxesGrid7.png" width="400" height="400" />
|
||||
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Center/LineEdit0" command="set_string" arguments="100" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Center/LineEdit1" command="key" arguments="16777217" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Center/LineEdit1" command="set_string" arguments="100" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Center/LineEdit2" command="key" arguments="16777217" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Center/LineEdit2" command="set_string" arguments="100" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ThetaRoundness/LineEdit0" command="key" arguments="16777217" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/1QToolButton0" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/AxesGrid8.png" width="400" height="400" />
|
||||
|
||||
|
||||
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/SearchBox/SearchLineEdit" command="set_string" arguments="sca" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Scale/LineEdit1" command="set_string" arguments="2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayButtons/DisplayButton/label" command="mousePress" arguments="1,1,0,83,10" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayButtons/DisplayButton/label" command="mouseRelease" arguments="1,0,0,83,10" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Scale/LineEdit1" command="set_string" arguments="1" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/Scale/LineEdit1" command="set_string" arguments="2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/1QToolButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/SearchBox/SearchLineEdit" command="key" arguments="16777219" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesButtons/PropertiesButton/label" command="mousePress" arguments="1,1,0,101,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesButtons/PropertiesButton/label" command="mouseRelease" arguments="1,0,0,101,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayButtons/DisplayButton/label" command="mousePress" arguments="1,1,0,87,6" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayButtons/DisplayButton/label" command="mouseRelease" arguments="1,0,0,87,6" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/PushButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="set_string" arguments="s" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/SearchBox/SearchLineEdit" command="set_string" arguments="sc" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/DataScale/LineEdit1" command="set_string" arguments="2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/AxesGrid/EditProxy/widget/OKButton" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/AxesGrid9.png" width="400" height="400" />
|
||||
</pqevents>
|
||||
@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/BackgroundEditor/BackgroundType" command="set_string" arguments="Gradient" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuTools" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuSources" command="activate" arguments="Sphere" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="Point Gaussian" />
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="Surface" />
|
||||
</pqevents>
|
||||
@ -1,39 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuSources" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuSources" command="activate" arguments="SphereSource" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesButtons/PropertiesButton/icon" command="mousePress" arguments="1,1,0,10,9" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesButtons/PropertiesButton/icon" command="mouseRelease" arguments="1,0,0,10,9" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayButtons/DisplayButton/icon" command="mousePress" arguments="1,1,0,9,5" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayButtons/DisplayButton/icon" command="mouseMove" arguments="1,0,0,8,5" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayButtons/DisplayButton/icon" command="mouseRelease" arguments="1,0,0,8,5" />
|
||||
<!-- set color1 to yellow -->
|
||||
<!-- added manually -->
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/BackgroundEditor/stackedWidget/page_1/Color" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/BackgroundEditor/stackedWidget/page_1/Color/1QColorDialog0" command="setChosenColor" arguments="255,255,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/BackgroundEditor/stackedWidget/page_1/Color/1QColorDialog0" command="done" arguments="1" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/BackgroundEditor/stackedWidget/page_1/RestoreDefaultColor" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menu_Edit" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_Edit" command="activate" arguments="actionEditUndo" />
|
||||
|
||||
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/BackgroundEditor/BackgroundType" command="set_string" arguments="Gradient" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/BackgroundEditor/stackedWidget/page_1/Color2/ColorPaletteMenu" command="activate" arguments="EdgeColor" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/BackgroundEditor/stackedWidget/page_1/RestoreDefaultColor2" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/SearchBox/AdvancedButton" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LightsEditor/1QPushButton0" command="activate" arguments="" />
|
||||
<pqevent object="LightsEditor/Reset" command="activate" arguments="" />
|
||||
<pqevent object="LightsEditor/LightKit/KeyLightWarmth" command="spin" arguments="up" />
|
||||
<pqevent object="LightsEditor/LightKit/KeyLightWarmth" command="spin" arguments="up" />
|
||||
<pqevent object="LightsEditor/LightKit/FillLightWarmth" command="spin" arguments="up" />
|
||||
<pqevent object="LightsEditor/LightKit/FillLightWarmth" command="spin" arguments="up" />
|
||||
<pqevent object="LightsEditor/LightKit/FillLightWarmth" command="spin" arguments="up" />
|
||||
<pqevent object="LightsEditor/LightKit/FillLightWarmth" command="spin" arguments="up" />
|
||||
<pqevent object="LightsEditor/LightKit/FillLightWarmth" command="spin" arguments="up" />
|
||||
<pqevent object="LightsEditor/LightKit/FillLightWarmth" command="spin" arguments="up" />
|
||||
<pqevent object="LightsEditor/LightKit/BackLightWarmth" command="spin" arguments="up" />
|
||||
<pqevent object="LightsEditor/LightKit/BackLightWarmth" command="spin" arguments="up" />
|
||||
<pqevent object="LightsEditor/LightKit/BackLightWarmth" command="spin" arguments="up" />
|
||||
<pqevent object="LightsEditor/Close" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,25 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<!-- Load the data -->
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menu_File" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_File" command="activate" arguments="actionFileOpen" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/VisItBridge/5blocks.cgns" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="Surface" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="cellNormals" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor" command="mousePress" arguments="1,1,0,93,28" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor" command="mouseMove" arguments="1,0,0,94,29" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor" command="mouseRelease" arguments="1,0,0,94,29" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="vtkCompositeIndex" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_vcontainer/1QScrollBar0" command="mousePress" arguments="1,1,0,11,51" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_vcontainer/1QScrollBar0" command="mouseMove" arguments="1,0,0,2,13" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_vcontainer/1QScrollBar0" command="mouseRelease" arguments="1,0,0,2,13" />
|
||||
<!-- disable orientation axes actor -->
|
||||
<pqevent object="pqClientMainWindow/axesToolbar/actionShowOrientationAxes" command="set_boolean" arguments="false" />
|
||||
<!-- disable center axes actor -->
|
||||
<pqevent object="pqClientMainWindow/axesToolbar/actionShowCenterAxes" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionPositiveX" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionNegativeX" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionPositiveY" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionNegativeY" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,901 +0,0 @@
|
||||
# TODO: Split these up and put them in the conditional which actually requires
|
||||
# the data.
|
||||
paraview_test_load_data_dirs(""
|
||||
"Iron Xdmf"
|
||||
ANALYZE
|
||||
dualSphereAnimation
|
||||
EnSight
|
||||
ExRestarts
|
||||
FieldDataBlocks
|
||||
FieldDataBlocks/FieldDataBlocks
|
||||
FileSeries
|
||||
GMV
|
||||
GMV/invalid
|
||||
GMV/partial-pyramid
|
||||
GMV/quadratic_cells
|
||||
RodPlate
|
||||
SLAC/pic-example
|
||||
SPCTH
|
||||
SPCTH/Dave_Karelitz_Small
|
||||
SPCTH/DerivedDensity
|
||||
VisItBridge
|
||||
amr
|
||||
ensemble-wavelet
|
||||
singleSphereAnimation
|
||||
)
|
||||
paraview_test_load_data(""
|
||||
,REGEX:tensors_.*\\.vti
|
||||
artifact.dta
|
||||
"blow data.myvtk"
|
||||
bluntfin.vts
|
||||
can.ex2
|
||||
comb.q
|
||||
combxyz.bin
|
||||
CubeStringArray.vtk
|
||||
disk_out_ref.ex2
|
||||
dualSphereAnimation4.pvd
|
||||
dualSphereAnimation.clone.pvd
|
||||
dualSphereAnimation.pvd
|
||||
"iron protein.vtk"
|
||||
LoadStateMultiView.pvsm
|
||||
LoadState.pvsm
|
||||
minimal.nii
|
||||
MultiBlockWithPieces_0_0.vtp
|
||||
MultiBlockWithPieces_1_0.vtp
|
||||
MultiBlockWithPieces.vtm
|
||||
multicomb_0.vts
|
||||
multicomb_1.vts
|
||||
multicomb_2.vts
|
||||
NE2_ps_bath.png
|
||||
non_convex_polygon.vtu
|
||||
office.binary.vtk
|
||||
PropertyLink.pvsm
|
||||
quadraticTetra01.vtu
|
||||
RectGrid2.vtk
|
||||
sample.h5part
|
||||
Scenario1_p1.h5
|
||||
Scenario1_p1.xmf
|
||||
servers-wiki.pvsc
|
||||
sineWaves.csv
|
||||
singleSphereAnimation.pvd
|
||||
tensors.pvti
|
||||
Test1.h5
|
||||
Test1.xmf
|
||||
tube.exo
|
||||
vehicle_data.csv
|
||||
)
|
||||
|
||||
SET (TESTS_WITHOUT_BASELINES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/AboutDialog.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/FindWidget.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/OpenHelp.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ServerConnectDialog.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SearchBox.xml
|
||||
)
|
||||
|
||||
if (PARAVIEW_ENABLE_PYTHON)
|
||||
list(APPEND TESTS_WITHOUT_BASELINES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TestPythonConsole.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TestPopOutWidget.xml) # needs programmable filter
|
||||
endif()
|
||||
|
||||
SET (TESTS_WITH_INLINE_COMPARES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/AxesGrid.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CameraLink.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Contour.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/DisconnectAndSaveAnimation.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Ensemble.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/FileSeries.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/HistogramSelection.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/LineChartSelection.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/LoadStateMultiView.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/LogColorMap.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/MemoryInspectorPanel.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/NonlinearSubdivisionDisplay.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/QuartilePlot.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/RemoteRendering.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/RenderNan.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ResetToVisibleRange.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SaveLargeScreenshot.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TestIsoVolume.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TransferFunctionResetOnVisibilityChange.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/UpdateTransferFunctionRanges.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/XYChart.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/XYHistogram.xml
|
||||
)
|
||||
|
||||
SET (TESTS_WITH_BASELINES)
|
||||
if(PARAVIEW_USE_VISITBRIDGE)
|
||||
list(APPEND TESTS_WITH_BASELINES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/VisItBridgeChombo.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/VisItBridgeEnzo.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/VisItBridgeLAMMPSDump.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/VisItBridgeLAMMPSDump2.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/VisItBridgeNas.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/VisItBridgeNek.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/VisItBridgePdb.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/VisItBridgePFLOTRAN.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/VisItBridgePixie.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/VisItBridgeSamrai.xml)
|
||||
endif()
|
||||
|
||||
# Catalyst-Live tests
|
||||
# ----------------------------------------------------------------------
|
||||
if(PARAVIEW_ENABLE_CATALYST AND PARAVIEW_ENABLE_PYTHON)
|
||||
set (catalyst_live_tests
|
||||
CatalystLiveSetBreakpoint
|
||||
CatalystLivePause)
|
||||
set (CATALYST_SIMULATION CatalystWaveletDriver.py)
|
||||
set (INSITU_SCRIPT CatalystWaveletCoprocessing)
|
||||
# Test-specific parameters
|
||||
set (CatalystLiveSetBreakpoint_DURATION 222)
|
||||
set (CatalystLivePause_DURATION 80)
|
||||
|
||||
foreach (tname ${catalyst_live_tests})
|
||||
# These tests are too complex to run in parallel.
|
||||
set ("${tname}_FORCE_SERIAL" TRUE)
|
||||
add_pv_test("pv" "_DISABLE_C"
|
||||
COMMAND
|
||||
--script-ignore-output-errors --script $<TARGET_FILE:pvbatch> -sym
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/${CATALYST_SIMULATION}
|
||||
${INSITU_SCRIPT} "${${tname}_DURATION}"
|
||||
|
||||
--client ${CLIENT_EXECUTABLE}
|
||||
--enable-bt
|
||||
-dr
|
||||
--test-directory=${PARAVIEW_TEST_DIR}
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/${tname}.xml
|
||||
EXTRA_LABELS "CATALYST")
|
||||
|
||||
add_pv_test(pvcs "_DISABLE_CS"
|
||||
COMMAND
|
||||
--script-np 5 --script-ignore-output-errors
|
||||
--script $<TARGET_FILE:pvbatch> -sym
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/${CATALYST_SIMULATION}
|
||||
${INSITU_SCRIPT} "${${tname}_DURATION}"
|
||||
|
||||
--server $<TARGET_FILE:pvserver>
|
||||
--enable-bt
|
||||
|
||||
--client ${CLIENT_EXECUTABLE}
|
||||
--enable-bt
|
||||
-dr
|
||||
--test-directory=${PARAVIEW_TEST_DIR}
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/${tname}.xml
|
||||
EXTRA_LABELS "CATALYST")
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
if (NOT PARAVIEW_ENABLE_XDMF3)
|
||||
# Presently, all these tests only work with Xdmf2 and when Xdmf3 is enabled,
|
||||
# the SelectReader dialog confuses these tests. So, we'll disable them for now.
|
||||
# We need a better mechanism to handle such cases in the testing framework.
|
||||
list(APPEND TESTS_WITH_BASELINES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ExtractBlock.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/XdmfRead.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadImageData.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadImageDataCollection.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadRectilinearGrid.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadRectilinearGridCollection.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadStructuredGrid.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/XdmfReadStructuredGridCollection.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/XdmfGridAttributes.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ZLibXDMF.xml
|
||||
)
|
||||
endif()
|
||||
|
||||
list(APPEND TESTS_WITH_BASELINES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Annotations.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CopyPasteProperties.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CTHAMRBaseline.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CTHAMRClip.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CTHAMRContour.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CTHAMRDualClip.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CTHAMRMaterialInterfaceFilter.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CTHDerivedDensity2DClyinder.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/AddActiveValuesFromVisibleObjects.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/AnimatePipelineTime.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/AngularPeriodicFilter.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/3DWidgetInCustomFilter.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CalcParens.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Calculator.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ChangingTimestepsInStateFiles.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ChartAxisRangeAndLabels.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CheckableHeader.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Clip.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ColorEditorControls.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ColorEditorVolumeControls.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ColorLegendMinMaxLabels.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ColorOpacityTableEditing.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CategoricalColors.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ColorByCellDataStringArray.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ComparativeVisPanel.xml
|
||||
# disabling overlay test for now. It has issues with Time 0.
|
||||
# ${CMAKE_CURRENT_SOURCE_DIR}/ComparativeOverlay.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CompositeSurfaceSelection.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CreateDelete.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CustomFilter.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CustomSourceProbe.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/DataOutlines.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/DualSphereAnimation.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/EnSight.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/EnSightTensorInversion.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/EnSightTensorInversionBin.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ExodusXML.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ExportLinePlotToCSV.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ExportX3dPOVVRML.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ExTimeseries.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ExTimeseries2.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ExtractComponentFilter.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ExtractLevel.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/FFTOverTime.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/FieldDataBlocks.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Flow.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Flow2.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Fractal2D.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/FunctionalBagPlots.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/GlyphUseCellCenters.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ImageVolumeRendering.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/InteractiveSelection.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/LoadPartiallyUpdatedStateFiles.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/LoadSaveStateAnimation.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/LoadState.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/MultiBlockAttributes1.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/MultiSliceMultiBlock.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/MultiSliceWavelet.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/NormalGlyphs.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/NiftiReaderWriterPlugin.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/NonConvexPolygon.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/OpenSaveData.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/OrthographicView.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/OutOfRangeColors.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Plot3DReader.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/PlotEdges2.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/PlotEdges.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/PlotOverTimeAutoApply.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/PolygonCellSelection.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/PolygonPointSelection.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ProbePicking.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/PropertyConversion.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/PropertyConversion1.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/PropertyConversion2.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/PropertyConversion3.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/PropertyLink.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ReadXMLPolyDataFileSeries.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/RectilinearFractal.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/RepresentationSelector.xml
|
||||
# ${CMAKE_CURRENT_SOURCE_DIR}/SaveAnimationGeometry.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SaveColorMap.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SaveCSV.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SelectionModifiersCells.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SelectionModifiersPoints.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SelectionModifiersBlocks.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SelectReader.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SimpleInteraction.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Slice.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SliceAlongPolyline.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SliceAlongSpline.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SolidColorSource.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SpreadSheet1.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SpreadSheet2.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SPTimeseries.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SpyPlotHistoryReader.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SelectionLinkBasic.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SelectionLinkInitial.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SelectionLinkMultiple.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SelectionLinkRemove.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SelectionLinkReaction.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/StreamTracerSurface.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/StockColors.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/StreamTracerUpdates.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TabbedViews.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TensorGlyph.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TemporalInterpolator.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TemporalShiftScale.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TestSelectionOnMultipiece.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TimeInspector.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Tessellate.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Threshold.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/UndoRedo.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/UndoRedo1.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/UndoRedo2.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/UndoRedo3.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/UndoRedo5.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/UndoRedo6.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/UndoRedo7.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/UndoRedo8.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/UnstructuredOutline.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/VolumeRenderingWithContour.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/VariableSelector.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/VariableSelector1.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ViewSettingsDialog.xml
|
||||
# ${CMAKE_CURRENT_SOURCE_DIR}/XYBarChart.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/RandomAttributes.xml
|
||||
)
|
||||
|
||||
if(VTK_USE_LARGE_DATA)
|
||||
paraview_test_load_data_dirs(""
|
||||
bake
|
||||
)
|
||||
list(APPEND TESTS_WITH_BASELINES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CheckSelectedBlocks.xml
|
||||
)
|
||||
endif()
|
||||
|
||||
# The color dialog is different on MacOS X which makes this test fail.
|
||||
if(NOT APPLE)
|
||||
list(APPEND TESTS_WITH_BASELINES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/BackgroundLights.xml
|
||||
)
|
||||
endif()
|
||||
|
||||
# This test makes use of "Point Gaussian" representation, only available with OpenGL2
|
||||
if("${VTK_RENDERING_BACKEND}" STREQUAL "OpenGL2")
|
||||
list(APPEND TESTS_WITH_BASELINES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/BackgroundColorCheck.xml
|
||||
)
|
||||
endif()
|
||||
|
||||
|
||||
if (PARAVIEW_USE_MPI)
|
||||
list(APPEND TESTS_WITH_BASELINES
|
||||
# Test uses D3 which is available in MPI only builds.
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/D3SmallCells.xml
|
||||
|
||||
# Test uses D3 which is available in MPI only builds.
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/GridConnectivity.xml
|
||||
)
|
||||
|
||||
# Test uses GhostCellsGenerator which is available in MPI only builds.
|
||||
# As the test use pvtu writer/reader it does not work in built-in mode.
|
||||
add_client_server_tests("pvcs"
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/GhostCellsGenerator.xml
|
||||
)
|
||||
add_client_render_server_tests("pvcrs"
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/GhostCellsGenerator.xml
|
||||
)
|
||||
|
||||
if (PARAVIEW_ENABLE_COSMOTOOLS)
|
||||
# Test the Generic IO file writer in VTKExtensions/CosmoTools
|
||||
add_client_tests("pv"
|
||||
--mpi
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/GenericIOReadWrite.xml
|
||||
)
|
||||
add_client_server_tests("pvcs"
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/GenericIOReadWrite.xml
|
||||
)
|
||||
add_client_render_server_tests("pvcrs"
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/GenericIOReadWrite.xml
|
||||
)
|
||||
|
||||
endif()
|
||||
if (PARAVIEW_ENABLE_CGNS)
|
||||
list(APPEND TESTS_WITH_BASELINES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CGNSReader-5blocks_cgns.xml
|
||||
)
|
||||
set(CGNSReader-5blocks_cgns_DISABLE_CRS TRUE)
|
||||
endif()
|
||||
endif()
|
||||
if(PARAVIEW_ENABLE_PYTHON)
|
||||
list(APPEND TESTS_WITH_BASELINES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/SelectionLabels.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TraceExodus.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TraceExportAndSaveData.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TraceSaveGeometry.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TraceSupplementalProxiesFully.xml
|
||||
)
|
||||
list(APPEND TESTS_WITH_INLINE_COMPARES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TraceMultiViews.xml)
|
||||
list(APPEND TESTS_WITHOUT_BASELINES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TraceIntegrateVariables.xml)
|
||||
|
||||
# Check that matplotlib is available
|
||||
include(FindPythonModules)
|
||||
find_python_module(matplotlib matplotlib_found)
|
||||
if (PARAVIEW_ENABLE_MATPLOTLIB AND matplotlib_found)
|
||||
list(APPEND TESTS_WITH_BASELINES ${CMAKE_CURRENT_SOURCE_DIR}/TestPythonView.xml)
|
||||
endif()
|
||||
|
||||
find_python_module(numpy numpy_found)
|
||||
if (numpy_found)
|
||||
list(APPEND TESTS_WITH_BASELINES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ExodusModeShapes.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/StructuredGridCellBlanking.xml
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TestFindDataMax.xml)
|
||||
list(APPEND TESTS_WITH_INLINE_COMPARES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/FindDataDialog.xml)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# Add streaming tests.
|
||||
# We need to locate smooth.flash since it's not included in the default testing
|
||||
# datasets.
|
||||
find_file(smooth_flash NAMES smooth.flash
|
||||
DOC "Path to smooth.flash data file."
|
||||
NO_DEFAULT_PATH)
|
||||
mark_as_advanced(smooth_flash)
|
||||
if (EXISTS "${smooth_flash}")
|
||||
# we configure the file since we need to point to smooth_flash.
|
||||
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/AMRStreaming.xml.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/AMRStreaming.xml" @ONLY)
|
||||
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/AMRVolumeRendering.xml.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/AMRVolumeRendering.xml" @ONLY)
|
||||
|
||||
set (streaming_tests
|
||||
${CMAKE_CURRENT_BINARY_DIR}/AMRStreaming.xml)
|
||||
|
||||
# AMRVolumeRendering is a non-streaming test.
|
||||
list(APPEND TESTS_WITH_BASELINES
|
||||
${CMAKE_CURRENT_BINARY_DIR}/AMRVolumeRendering.xml)
|
||||
set(AMRVolumeRendering_BREAK TRUE)
|
||||
|
||||
foreach (tname ${streaming_tests})
|
||||
add_pv_test("pv" "_DISABLE_C"
|
||||
COMMAND --client ${CLIENT_EXECUTABLE}
|
||||
--enable-bt
|
||||
-dr
|
||||
--enable-streaming
|
||||
--test-directory=${PARAVIEW_TEST_DIR}
|
||||
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${tname})
|
||||
|
||||
add_pv_test(pvcs "_DISABLE_CS"
|
||||
COMMAND
|
||||
--server $<TARGET_FILE:pvserver>
|
||||
--enable-bt
|
||||
--enable-streaming
|
||||
--client ${CLIENT_EXECUTABLE}
|
||||
--enable-bt
|
||||
-dr
|
||||
--enable-streaming
|
||||
--test-directory=${PARAVIEW_TEST_DIR}
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${tname})
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
# Probe picking does not work in render server mode
|
||||
set(ProbePicking_DISABLE_CRS TRUE)
|
||||
set(ProbePicking_THRESHOLD 120)
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
set (TestPythonConsole_BREAK TRUE)
|
||||
|
||||
# Selection is not available in CRS mode
|
||||
set(MultiSliceWavelet_DISABLE_CRS TRUE)
|
||||
set(MultiSliceMultiBlock_DISABLE_CRS TRUE)
|
||||
set(PolygonCellSelection_DISABLE_CRS TRUE)
|
||||
set(PolygonPointSelection_DISABLE_CRS TRUE)
|
||||
set(NonlinearSubdivisionDisplay_DISABLE_CRS TRUE)
|
||||
set(InteractiveSelection_DISABLE_CRS TRUE)
|
||||
set(NonConvexPolygon_DISABLE_CRS TRUE)
|
||||
set(QuartilePlot_DISABLE_CRS TRUE)
|
||||
set(TestSelectionOnMultipiece_DISABLE_CRS TRUE)
|
||||
set(CheckSelectedBlocks_DISABLE_CRS TRUE)
|
||||
set(SelectionModifiersCells_DISABLE_CRS TRUE)
|
||||
set(SelectionModifiersBlocks_DISABLE_CRS TRUE)
|
||||
set(SelectionModifiersPoints_DISABLE_CRS TRUE)
|
||||
set(SelectionLinkBasic_DISABLE_CRS TRUE)
|
||||
set(SelectionLinkInitial_DISABLE_CRS TRUE)
|
||||
set(SelectionLinkMultiple_DISABLE_CRS TRUE)
|
||||
set(SelectionLinkRemove_DISABLE_CRS TRUE)
|
||||
set(SelectionLinkReaction_DISABLE_CRS TRUE)
|
||||
|
||||
# These tests cannot be run using ctest -j since they are affected by focus
|
||||
# changed events.
|
||||
set (AnimatePipelineTime_FORCE_SERIAL TRUE)
|
||||
set (ProbePicking_FORCE_SERIAL TRUE)
|
||||
set (PolygonCellSelection_FORCE_SERIAL TRUE)
|
||||
set (PolygonPointSelection_FORCE_SERIAL TRUE)
|
||||
set (Contour_FORCE_SERIAL TRUE) # since this uses popup-menu
|
||||
set (Calculator_FORCE_SERIAL TRUE) # since this uses popup-menu
|
||||
set (LogColorMap_FORCE_SERIAL TRUE) # since this uses popup-menu
|
||||
set (ColorOpacityTableEditing_FORCE_SERIAL TRUE) # since this uses popup-menu
|
||||
set (FindWidget_FORCE_SERIAL TRUE) # Uses inline edit popups
|
||||
set (PropertyLink_FORCE_SERIAL TRUE)
|
||||
set (TestPythonView_FORCE_SERIAL TRUE) # Seems to work better in serial.
|
||||
set (Contour_FORCE_SERIAL TRUE) # Uses inline edit popups
|
||||
set (SaveColorMap_FORCE_SERIAL TRUE) # Uses inline edit popups
|
||||
set (CategoricalColors_FORCE_SERIAL TRUE) # Uses inline edit popups
|
||||
set (ChartAxisRangeAndLabels_FORCE_SERIAL TRUE) # Uses inline edit popups
|
||||
|
||||
# Set properties for CTH tests
|
||||
set(CTHAMRContour_DISABLE_CS TRUE)
|
||||
set(CTHAMRContour_DISABLE_CRS TRUE)
|
||||
set(CTHAMRDualClip_DISABLE_CS TRUE)
|
||||
set(CTHAMRDualClip_DISABLE_CRS TRUE)
|
||||
set(CTHAMRClip_DISABLE_CS TRUE)
|
||||
set(CTHAMRClip_DISABLE_CRS TRUE)
|
||||
set(CTHAMRMaterialInterfaceFilter_DISABLE_CS TRUE)
|
||||
set(CTHAMRMaterialInterfaceFilter_DISABLE_CRS TRUE)
|
||||
|
||||
# Since this test needs selection, disable in CRS mode.
|
||||
set (SelectionLabels_DISABLE_CRS TRUE)
|
||||
|
||||
# Mark tests that change change state considerably requires a restart of the
|
||||
# test suite when grouping tests together for faster playback.
|
||||
SET (UndoRedo1_BREAK TRUE)
|
||||
SET (UndoRedo2_BREAK TRUE)
|
||||
SET (UndoRedo7_BREAK TRUE)
|
||||
# <-- since these are just long tests, they result in timeouts.
|
||||
|
||||
# Add image threshold overrides for tests.
|
||||
# Generally all tests with wireframes need higher thresholds.
|
||||
SET (Flow2_THRESHOLD 15)
|
||||
SET (UndoRedo1_THRESHOLD 15)
|
||||
SET (UndoRedo4_THRESHOLD 15)
|
||||
|
||||
# Since often there are issues with fonts etc.
|
||||
SET (XYChart_THRESHOLD 150)
|
||||
SET (CheckableHeader_THRESHOLD 150)
|
||||
# Since the test uses surface-selection, it cannot work in render-server mode.
|
||||
set(XYChart_DISABLE_CRS TRUE)
|
||||
|
||||
SET (XYHistogram_THRESHOLD 150)
|
||||
set (ChartAxisRangeAndLabels_THRESHOLD 60)
|
||||
|
||||
# The color and opacity are often different on different machines.
|
||||
SET (ColorEditorControls_THRESHOLD 60)
|
||||
SET (ColorEditorVolumeControls_THRESHOLD 300)
|
||||
|
||||
# Plot image leeway.
|
||||
set (SpreadSheet2_THRESHOLD 50)
|
||||
set (PlotOverTimeAutoApply_THRESHOLD 50)
|
||||
set (ExportLinePlotToCSV_THRESHOLD 30)
|
||||
set (PlotOverTimeAutoApply_DISABLE_CRS TRUE) # since this uses surface selection.
|
||||
|
||||
|
||||
# DisconnectAndSaveAnimation is only support in Client-Server mode.
|
||||
set (DisconnectAndSaveAnimation_DISABLE_C TRUE)
|
||||
set (DisconnectAndSaveAnimation_DISABLE_CRS TRUE)
|
||||
set (DisconnectAndSaveAnimation_BREAK TRUE)
|
||||
|
||||
# Cannot support CRS since we do volume rendering of image data
|
||||
# in this test.
|
||||
set (RemoteRendering_DISABLE_CRS TRUE)
|
||||
set (RemoteRendering_THRESHOLD 50)
|
||||
set (VolumeRenderingWithContour_DISABLE_CRS 50)
|
||||
set (VolumeRenderingWithContour_THRESHOLD 50)
|
||||
|
||||
# Histogram filter produces different results when running in parallel, so
|
||||
# disable it.
|
||||
IF (PARAVIEW_USE_MPI)
|
||||
SET (SpreadSheet1_DISABLE_CS TRUE)
|
||||
SET (SpreadSheet1_DISABLE_CRS TRUE)
|
||||
|
||||
# The hierchical fractal source is a temporary testing source and it does not
|
||||
# create the dataset correctly in parallel. Since it's a testing source, I am
|
||||
# just going to disable the test in parallel. We can fix the source when
|
||||
# needed.
|
||||
SET (RectilinearFractal_DISABLE_CS TRUE)
|
||||
SET (RectilinearFractal_DISABLE_CRS TRUE)
|
||||
|
||||
# Selections end up highlighting different set of ID based points in parallel.
|
||||
# Hence disable them.
|
||||
set (LineChartSelection_DISABLE_CS TRUE)
|
||||
set (LineChartSelection_DISABLE_CRS TRUE)
|
||||
|
||||
# Selections end up highlighting different set of ID based points in parallel.
|
||||
# Hence disable them.
|
||||
set (FunctionalBagPlots_DISABLE_CS TRUE)
|
||||
set (FunctionalBagPlots_DISABLE_CRS TRUE)
|
||||
|
||||
# Selection link may highlight incorrect ID in parallel,
|
||||
# hence disable them.
|
||||
set(SelectionLinkBasic_DISABLE_CS TRUE)
|
||||
set(SelectionLinkInitial_DISABLE_CS TRUE)
|
||||
set(SelectionLinkMultiple_DISABLE_CS TRUE)
|
||||
set(SelectionLinkRemove_DISABLE_CS TRUE)
|
||||
set(SelectionLinkReaction_DISABLE_CS TRUE)
|
||||
ENDIF ()
|
||||
|
||||
# Composite Surface Selection is currently broken in everything but bultin
|
||||
SET (CompositeSurfaceSelection_DISABLE_CS TRUE)
|
||||
SET (CompositeSurfaceSelection_DISABLE_CRS TRUE)
|
||||
|
||||
# Clip test has object picking which is not supported in client-render-server
|
||||
# mode.
|
||||
SET (Clip_DISABLE_CRS TRUE)
|
||||
|
||||
# Image volume rendering not supported in CRS mode.
|
||||
set (ImageVolumeRendering_DISABLE_CRS TRUE)
|
||||
|
||||
# These Xdmf tests have wireframes, hence the increased thresholds.
|
||||
SET (XdmfReadImageData_THRESHOLD 20)
|
||||
SET (XdmfReadRectilinearGrid_THRESHOLD 20)
|
||||
SET (XdmfReadRectilinearGridCollection_THRESHOLD 20)
|
||||
SET (XdmfReadStructuredGrid_THRESHOLD 20)
|
||||
SET (XdmfReadStructuredGridCollection_THRESHOLD 20)
|
||||
SET (XdmfReadImageDataCollection_THRESHOLD 20)
|
||||
|
||||
# This test renders points and they are offsetted a bit differently on
|
||||
# different platforms so just increase the threshold
|
||||
SET (SaveCSV_THRESHOLD 40)
|
||||
|
||||
# Disable some testing configurations for these tests.
|
||||
|
||||
## Disable ClientRenderServer tests for FFTOverTime. This is done since
|
||||
## selection is not supported in render server mode esp. when number of render
|
||||
## server processess is not same as the data server processes
|
||||
set (FFTOverTime_DISABLE_CRS TRUE)
|
||||
set (FFTOverTime_THRESHOLD 70) # since there's a plot, account for minor
|
||||
# rendering differences.
|
||||
|
||||
# ColorEditorVolumeControls does volume rendering of structrued data which required remote
|
||||
# rendering in client-serve mode.
|
||||
SET (ColorEditorVolumeControls_DISABLE_CS TRUE)
|
||||
SET (ColorEditorVolumeControls_DISABLE_CRS TRUE)
|
||||
|
||||
# ViewSettingsDialog uses texture background which is currently supported only
|
||||
# in local render mode.
|
||||
SET (ViewSettingsDialog_DISABLE_CS TRUE)
|
||||
SET (ViewSettingsDialog_DISABLE_CRS TRUE)
|
||||
|
||||
# MultiBlockAttributes1 requires selection which doesn't work on pvcrs
|
||||
SET (MultiBlockAttributes1_DISABLE_CRS TRUE)
|
||||
|
||||
# Plugins are only built as shared libraries.
|
||||
IF (NOT BUILD_SHARED_LIBS)
|
||||
SET (NiftiReaderWriterPlugin_DISABLE_C TRUE)
|
||||
ENDIF ()
|
||||
# There should be a client server specific version of this test.
|
||||
SET (NiftiReaderWriterPlugin_DISABLE_CS TRUE)
|
||||
SET (NiftiReaderWriterPlugin_DISABLE_CRS TRUE)
|
||||
|
||||
# Set image threshold overrides for the tests.
|
||||
SET(SaveLargeScreenshot_THRESHOLD 10000)
|
||||
|
||||
# Make these tests use reverse connection.
|
||||
SET (CutMulti_REVERSE_CONNECT TRUE)
|
||||
|
||||
# Since this involves charts.
|
||||
SET(HistogramSelection_THRESHOLD 40)
|
||||
SET(LineChartSelection_THRESHOLD 40)
|
||||
SET(FunctionalBagPlots_THRESHOLD 40)
|
||||
|
||||
# Increate threshold for this one since the chart axes
|
||||
# tends to render slightly differently.
|
||||
set (LoadStateMultiView_THRESHOLD 20)
|
||||
|
||||
# Selection not supported in CRS and is needed for this test.
|
||||
set (ResetToVisibleRange_DISABLE_CRS TRUE)
|
||||
|
||||
##########################################################
|
||||
# List of known incompatible tests for Collaboration
|
||||
#
|
||||
# Contains Undo/Redo actions:
|
||||
# - Clip, UndoRedo, UndoRedo[1-8]
|
||||
#
|
||||
# Contains Plugin Loading actions:
|
||||
# - LoadPlugins, NiftiReaderWriterPlugin, H5PartReaderPlugin
|
||||
#
|
||||
# Does not work in CS or CRS mode
|
||||
# - ViewSettingsDialog, RectilinearFractal, NewColorEditor
|
||||
#
|
||||
# Does not work because a disconnection is involved
|
||||
# - ExportX3dPOVVRML
|
||||
#
|
||||
# Don't want to support for now
|
||||
# - ComparativeVisPanel
|
||||
# - LoadSaveStateAnimation: The time get reset by collab
|
||||
#
|
||||
# Timing issues (Works on speedy computer)
|
||||
# - 3DWidgetInCustomFilter, CustomFilter
|
||||
#
|
||||
##########################################################
|
||||
|
||||
OPTION(PARAVIEW_COLLABORATION_TESTING
|
||||
"Add Collaboration testing"
|
||||
ON)
|
||||
MARK_AS_ADVANCED(PARAVIEW_COLLABORATION_TESTING)
|
||||
|
||||
# The create/delete test was only meant for collaboration
|
||||
SET (CreateDelete_DISABLE_C TRUE)
|
||||
SET (CreateDelete_DISABLE_CS TRUE)
|
||||
SET (CreateDelete_DISABLE_CRS TRUE)
|
||||
|
||||
# List of test Enable for collaboration
|
||||
#set (AnimatePipelineTime_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (CalcParens_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (Calculator_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (CameraLink_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (CompositeSurfaceSelection_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
set (Contour_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (ContourRange_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
set (CreateDelete_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (CustomSourceProbe_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (D3SmallCells_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (DualSphereAnimation_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (EnSight_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (ExodusModeShapes_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (ExodusXML_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (ExTimeseries_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (ExTimeseries2_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (ExtractBlock_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (ExtractLevel_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (FindDataDialog_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (FFTOverTime_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (Flow_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (Flow2_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (Fractal2D_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (GridConnectivity_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (NormalGlyphs_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (OpenSaveData_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (Plot3DReader_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (PlotEdges_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (PlotEdges2_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (PropertyConversion_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
set (PropertyConversion1_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
set (PropertyConversion2_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
## disabling since the state file doesn't have view layout and such old state
|
||||
## files are not currently supported in collaborative mode.
|
||||
##set (PropertyLink_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (ReadXMLPolyDataFileSeries_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (RepresentationSelector_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (SaveColorMap_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (SaveCSV_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (SelectReader_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (SimpleInteraction_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (Slice_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
set (SpreadSheet1_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (SpreadSheet2_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (SPTimeseries_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (SpyPlotHistoryReader_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (StreamTracerUpdates_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (TemporalInterpolator_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (TemporalShiftScale_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (Tessellate_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (Threshold_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (UnstructuredOutline_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
set (VariableSelector_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
set (VariableSelector1_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
set (XdmfRead_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (XdmfReadImageData_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (XdmfReadImageDataCollection_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (XdmfReadRectilinearGrid_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (XdmfReadRectilinearGridCollection_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (XdmfReadStructuredGrid_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (XdmfReadStructuredGridCollection_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
#set (XdmfGridAttributes_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
set (ZLibXDMF_ENABLE_COLLAB ${PARAVIEW_COLLABORATION_TESTING})
|
||||
|
||||
|
||||
set(TESTS_WITH_MULTI_SERVERS_3
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/TestMultiServer3.xml
|
||||
)
|
||||
|
||||
list(APPEND TESTS_WITHOUT_BASELINES
|
||||
${TESTS_WITH_INLINE_COMPARES})
|
||||
|
||||
add_client_tests("pv"
|
||||
TEST_SCRIPTS ${TESTS_WITHOUT_BASELINES}
|
||||
)
|
||||
|
||||
add_client_tests("pv"
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${TESTS_WITH_BASELINES}
|
||||
)
|
||||
|
||||
add_client_server_tests("pvcs"
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${TESTS_WITH_BASELINES}
|
||||
)
|
||||
|
||||
add_client_server_tests("pvcs"
|
||||
TEST_SCRIPTS ${TESTS_WITH_INLINE_COMPARES}
|
||||
)
|
||||
|
||||
IF (PARAVIEW_CLIENT_RENDER_SERVER_TESTS)
|
||||
add_client_render_server_tests("pvcrs"
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${TESTS_WITH_BASELINES}
|
||||
)
|
||||
|
||||
add_client_render_server_tests("pvcrs"
|
||||
TEST_SCRIPTS ${TESTS_WITH_INLINE_COMPARES}
|
||||
)
|
||||
ENDIF ()
|
||||
|
||||
# TODO: remote rendering tests and reverse connect tests.
|
||||
|
||||
add_multi_client_tests("pvcs-collab"
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${TESTS_WITH_BASELINES})
|
||||
|
||||
add_multi_server_tests("pvcs-multi-servers" 3
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${TESTS_WITH_MULTI_SERVERS_3})
|
||||
|
||||
# Removing these test since these have been failing for a while the the testing
|
||||
# infrastrructure not catching it properly until now. We need to redo the tile display
|
||||
# testing :(.
|
||||
#set (TileDisplayScatterPlot-2x1_THRESHOLD 40)
|
||||
#add_tile_display_tests("pvcs-tile-display" 2 1
|
||||
# BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
# TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/TileDisplayScatterPlot-2x1.xml)
|
||||
#
|
||||
#set (TileDisplayScatterPlot-2x2_THRESHOLD 40)
|
||||
#add_tile_display_tests("pvcs-tile-display" 2 2
|
||||
# BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
# TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/TileDisplayScatterPlot-2x2.xml)
|
||||
|
||||
# This test has been behaving badly across many platforms and needs to be fixed
|
||||
# before it can be useful. Disabling for now, see bug #15424.
|
||||
#set (TileDisplay3DTesting-1x2_THRESHOLD 270)
|
||||
#add_tile_display_tests("pvcs-tile-display" 1 2
|
||||
# BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
# TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/TileDisplay3DTesting-1x2.xml)
|
||||
|
||||
set (TileDisplay3DTesting-2x1_THRESHOLD 270)
|
||||
add_tile_display_tests("pvcs-tile-display" 2 1
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/TileDisplay3DTesting-2x1.xml)
|
||||
|
||||
set (TileDisplay3DTesting-2x2_THRESHOLD 270)
|
||||
add_tile_display_tests("pvcs-tile-display" 2 2
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/TileDisplay3DTesting-2x2.xml)
|
||||
|
||||
|
||||
#------------------------------------------------------------------
|
||||
# Add tests that test command line arguments (among other things).
|
||||
#------------------------------------------------------------------
|
||||
if (TARGET paraview)
|
||||
# The state file need to point to the correct data file. We do that by
|
||||
# configuring the state file.
|
||||
configure_file (
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/exodusStateFile.3.14.1.pvsm.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/exodusStateFile.3.14.1.pvsm" @ONLY)
|
||||
add_pv_test("pv" "_DISABLE_C"
|
||||
COMMAND --client $<TARGET_FILE:paraview>
|
||||
--enable-bt
|
||||
-dr
|
||||
--test-directory=${PARAVIEW_TEST_DIR}
|
||||
--state=${CMAKE_CURRENT_BINARY_DIR}/exodusStateFile.3.14.1.pvsm
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/LoadExodusStateFile.xml)
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
# Add test to test stereo rendering modes.
|
||||
add_client_tests("pv"
|
||||
--stereo
|
||||
--stereo-type=Interlaced
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/StereoInterlaced.xml)
|
||||
add_client_server_tests("pvcs"
|
||||
--stereo
|
||||
--stereo-type=Interlaced
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/StereoInterlaced.xml)
|
||||
add_client_render_server_tests("pvcrs"
|
||||
--stereo
|
||||
--stereo-type=Interlaced
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/StereoInterlaced.xml)
|
||||
add_client_tests("pv"
|
||||
--stereo
|
||||
--stereo-type=SplitViewportHorizontal
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/StereoSplitViewportHorizontal.xml)
|
||||
add_client_server_tests("pvcs"
|
||||
--stereo
|
||||
--stereo-type=SplitViewportHorizontal
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/StereoSplitViewportHorizontal.xml)
|
||||
add_client_render_server_tests("pvcrs"
|
||||
--stereo
|
||||
--stereo-type=SplitViewportHorizontal
|
||||
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
||||
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/StereoSplitViewportHorizontal.xml)
|
||||
endif()
|
||||
@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionOpenData" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/SPCTH/Dave_Karelitz_Small/spcth_a" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/CellArrayStatus/ArraySelectionWidget/1QHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/CellArrayStatus/ArraySelectionWidget/1QHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="Surface" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/ColorEditor/DisplayColorWidget/Variables" command="set_string" arguments="Pressure (dynes/cm^2^)" />
|
||||
</pqevents>
|
||||
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionOpenData" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/SPCTH/Dave_Karelitz_Small/spcth_a" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/CellArrayStatus/ArraySelectionWidget/1QHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/CellArrayStatus/ArraySelectionWidget/1QHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,11,12,/0:0/0:0/1:1" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,11,12,/0:0/0:0/1:1" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/pqProxyGroupMenuManager0/Cut" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionPositiveX" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/CutFunction/1pqProxySelectionWidget0/pqImplicitPlaneWidget/show3DWidget" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,29 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionOpenData" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/SPCTH/Dave_Karelitz_Small/spcth_a" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/CellArrayStatus/ArraySelectionWidget/1QHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/CellArrayStatus/ArraySelectionWidget/1QHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,11,12,/0:0/0:0/1:1" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,11,12,/0:0/0:0/1:1" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionNegativeY" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="Surface" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="Pressure (dynes/cm^2^)" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuFilters" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/Alphabetical" command="activate" arguments="AMRDualContour" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/SelectMaterialArrays/ArraySelectionWidget/1QHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/SelectMaterialArrays/ArraySelectionWidget/1QHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="Pressure (dynes/cm^2^) (partial)" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,54,7,/0:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,54,7,/0:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,10,9,/0:0/0:1" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,10,9,/0:0/0:1" />
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="Outline" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/SearchBox/AdvancedButton" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/SearchBox/SearchLineEdit" command="set_string" arguments="b" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/SearchBox/SearchLineEdit" command="set_string" arguments="ba" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/SearchBox/SearchLineEdit" command="set_string" arguments="bac" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/BackfaceRepresentation/ComboBox" command="set_string" arguments="Cull Frontface" />
|
||||
</pqevents>
|
||||
@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionOpenData" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/SPCTH/Dave_Karelitz_Small/spcth_a" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/CellArrayStatus/ArraySelectionWidget/1QHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/CellArrayStatus/ArraySelectionWidget/1QHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,11,12,/0:0/0:0/1:1" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,11,12,/0:0/0:0/1:1" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionNegativeY" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuFilters" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/Alphabetical" command="activate" arguments="AMRDualClip" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/SelectMaterialArrays/ArraySelectionWidget/1QHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/SelectMaterialArrays/ArraySelectionWidget/1QHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="Pressure (dynes/cm^2^) (partial)" />
|
||||
</pqevents>
|
||||
@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionOpenData" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/SPCTH/Dave_Karelitz_Small/spcth_a" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/CellArrayStatus/ArraySelectionWidget/1QHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/CellArrayStatus/ArraySelectionWidget/1QHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,11,12,/0:0/0:0/1:1" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,11,12,/0:0/0:0/1:1" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuFilters" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/Alphabetical" command="activate" arguments="MaterialInterfaceFilter" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/SelectMassArray/ArraySelectionWidget/1QHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/SelectMassArray/ArraySelectionWidget/1QHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRNextFrame" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="Id" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionPositiveZ" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,30 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionOpenData" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/SPCTH/DerivedDensity/2Dclyinder.spcth" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/CellArrayStatus/ArraySelectionWidget/1QHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/CellArrayStatus/ArraySelectionWidget/1QHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="Derived Density - 2" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/actionEditColorMap" command="activate" arguments="" />
|
||||
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ResetRangeToCustom" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqRescaleRangeDialog/MinimumScalar" command="set_string" arguments="8" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqRescaleRangeDialog/MaximumScalar" command="set_string" arguments="8.2" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqRescaleRangeDialog/RescaleButton" command="activate" arguments="" />
|
||||
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ChoosePreset" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqPresetDialog/searchBox/SearchLineEdit" command="set_string" arguments="black" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqPresetDialog/gradients" command="mousePress" arguments="1,1,0,253,11,/0:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqPresetDialog/gradients" command="mouseRelease" arguments="1,0,0,253,11,/0:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqPresetDialog/apply" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqPresetDialog/close" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menu_View" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_View" command="activate" arguments="Color Map Editor" />
|
||||
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRNextFrame" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRNextFrame" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/axesToolbar/actionShowCenterAxes" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionNegativeZ" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionResetCamera" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar/menuSources" command="activate" arguments="RTAnalyticSource" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/pqProxyGroupMenuManager0/Calculator" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/Function" command="set_string" arguments="-sin(RTData)" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent
|
||||
object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/Representation/displayRepresentationWidget/comboBox" command="set_string" arguments="Surface" />
|
||||
<pqevent
|
||||
object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/ColorEditor/DisplayColorWidget/Variables" command="set_string" arguments="Result" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/Alphabetical" command="activate" arguments="DataSetTriangleFilter" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,29 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar/menuSources" command="activate" arguments="Sphere" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/Alphabetical" command="activate" arguments="Calculator" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/Scalars" command="activate" arguments="" />
|
||||
<pqevent object="1QMenu0" command="activate" arguments="Normals_X" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/Multiply" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/iHat" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/Plus" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/sqrt" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/LeftParentheses" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/Scalars" command="activate" arguments="" />
|
||||
<pqevent object="1QMenu0" command="activate" arguments="Normals_Y" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/RightParentheses" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/Multiply" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/jHat" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/Plus" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/Scalars" command="activate" arguments="" />
|
||||
<pqevent object="1QMenu0" command="activate" arguments="Normals_Z" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/Multiply" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/kHat" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/Alphabetical" command="activate" arguments="WarpVector" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/SelectInputVectors/ComboBox" command="set_string" arguments="Result" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/ColorEditor/DisplayColorWidget/Variables" command="set_string" arguments="Result" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionResetCamera" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/TitleBar/SplitHorizontal" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.2/CentralWidgetFrame/EmptyView/scrollArea/qt_scrollarea_viewport/widgetFoo/ConvertActionsFrame/RenderView" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.1" command="mousePress" arguments="1,1,0,272,21" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.1" command="mouseRelease" arguments="1,0,0,272,21" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuSources" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuSources" command="activate" arguments="RTAnalyticSource" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="RTData" />
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="Surface" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.2/TitleBar/TitleLabel" command="mousePress" arguments="1,1,0,72,15" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.2/TitleBar/TitleLabel" command="mouseMove" arguments="1,0,0,84,15" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.2/TitleBar/TitleLabel" command="mouseRelease" arguments="1,0,0,84,15" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,14,13,/0:0/0:1" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,14,13,/0:0/0:1" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="RTData" />
|
||||
<pqevent object="pqClientMainWindow/Common/1QToolButton1" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,32,10,/0:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,32,10,/0:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/actionScalarBarVisibility" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.1/TitleBar/TitleLabel" command="mousePress" arguments="1,1,0,32,7" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.1/TitleBar/TitleLabel" command="mouseMove" arguments="1,0,0,44,8" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.1/TitleBar/TitleLabel" command="mouseRelease" arguments="1,0,0,44,8" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/actionScalarBarVisibility" command="set_boolean" arguments="false" />
|
||||
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuTools" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuTools" command="activate" arguments="actionToolsManageLinks" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/addButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy1" command="expand" arguments="1.0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy1" command="expand" arguments="0.0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy1" command="setCurrent" arguments="0.0.0.0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy2" command="expand" arguments="0.0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy2" command="setCurrent" arguments="0.0.1.0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/buttonBox/1QPushButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/buttonBox/1QPushButton0" command="activate" arguments="" />
|
||||
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/SearchBox/SearchLineEdit" command="set_string" arguments="p" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/SearchBox/SearchLineEdit" command="set_string" arguments="pa" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/SearchBox/SearchLineEdit" command="set_string" arguments="para" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/SearchBox/SearchLineEdit" command="set_string" arguments="para" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/CameraParallelProjection/CheckBox" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.1/TitleBar/TitleLabel" command="mousePress" arguments="1,1,0,32,11" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.1/TitleBar/TitleLabel" command="mouseMove" arguments="1,0,0,44,11" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.1/TitleBar/TitleLabel" command="mouseRelease" arguments="1,0,0,44,11" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/1QToolButton4" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/1QToolButton5" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/1QToolButton6" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/1QToolButton8" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuTools" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuTools" command="activate" arguments="actionTesting_Window_Size" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/1QToolButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/1QToolButton4" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.2/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/CameraLink-Parallel.png" width="300" height="300" />
|
||||
|
||||
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/CameraParallelProjection/CheckBox" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/1QToolButton0" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.2/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/CameraLink-Perspective.png" width="300" height="300" />
|
||||
|
||||
|
||||
</pqevents>
|
||||
@ -1,71 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menu_Catalyst" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_Catalyst" command="activate" arguments="actionCatalystConnect" />
|
||||
<pqevent object="pqClientMainWindow/1QInputDialog0/1QDialogButtonBox0/1QPushButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/1QMessageBox0/qt_msgbox_buttonbox/1QPushButton0" command="activate" arguments="" />
|
||||
|
||||
<!-- wait for Catalyst pipeline to show-up -->
|
||||
<pqevent object="pqClientMainWindow" command="pqLiveInsituManager"
|
||||
arguments="wait_timestep 5"/>
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,12,13,/1:0/0:0/0:1" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,12,13,/1:0/0:1" />
|
||||
|
||||
<!-- wait for extract to arrive on the Live server-->
|
||||
<pqevent object="pqClientMainWindow" command="pqLiveInsituManager"
|
||||
arguments="wait_timestep 10"/>
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,9,8,/0:0/0:1" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,9,8,/0:0/0:1" />
|
||||
|
||||
<!-- wait for splitter -->
|
||||
<pqevent object="pqClientMainWindow" command="pqLiveInsituManager"
|
||||
arguments="wait_timestep 12"/>
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.1/Close" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menu_Catalyst" />
|
||||
|
||||
<!-- pause the simulation -->
|
||||
<pqevent object="pqClientMainWindow" command="pqLiveInsituManager"
|
||||
arguments="wait_timestep 16"/>
|
||||
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_Catalyst" command="activate" arguments="actionCatalystPauseSimulation" />
|
||||
|
||||
<pqevent object="pqClientMainWindow" command="pqLiveInsituManager"
|
||||
arguments="wait_timestep 17"/>
|
||||
|
||||
<!-- change multiple values while paused -->
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,85,15,/1:0/0:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,85,15,/1:0/0:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_vcontainer/1QScrollBar0" command="mousePress" arguments="1,1,0,11,15" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_vcontainer/1QScrollBar0" command="mouseMove" arguments="1,0,0,-2,36" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_vcontainer/1QScrollBar0" command="mouseRelease" arguments="1,0,0,-2,36" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ComputeGradients/CheckBox" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ComputeNormals/CheckBox" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,73,12,/1:0/0:0/1:0" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,73,12,/1:0/0:0/1:0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/CutFunction/1pqProxySelectionWidget0/pqImplicitPlaneWidget/normalY" command="set_string" arguments="1" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_vcontainer/1QScrollBar0" command="mousePress" arguments="1,1,0,5,48" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_vcontainer/1QScrollBar0" command="mouseMove" arguments="1,0,0,5,124" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_vcontainer/1QScrollBar0" command="mouseRelease" arguments="1,0,0,5,124" />
|
||||
|
||||
<!-- apply the changes -->
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
|
||||
<pqevent object="pqClientMainWindow" command="pause"
|
||||
arguments="2000" />
|
||||
|
||||
<!-- continue the simulation -->
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_Catalyst" command="activate" arguments="actionCatalystContinue" />
|
||||
|
||||
<pqevent object="pqClientMainWindow" command="pause"
|
||||
arguments="2000" />
|
||||
|
||||
<!-- set the active view -->
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mousePress" arguments="(0.287574,0.232601,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseMove" arguments="(0.287574,0.232601,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseRelease" arguments="(0.287574,0.232601,1,0,0)" />
|
||||
|
||||
<!-- wait for time step 21 -->
|
||||
<pqevent object="pqClientMainWindow" command="pqLiveInsituManager"
|
||||
arguments="wait_timestep 21"/>
|
||||
|
||||
</pqevents>
|
||||
@ -1,60 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menu_Catalyst" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_Catalyst" command="activate" arguments="actionCatalystConnect" />
|
||||
<pqevent object="pqClientMainWindow/1QInputDialog0/1QDialogButtonBox0/1QPushButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/1QMessageBox0/qt_msgbox_buttonbox/1QPushButton0" command="activate" arguments="" />
|
||||
|
||||
<!-- wait for Catalyst pipeline to show-up -->
|
||||
<pqevent object="pqClientMainWindow" command="pqLiveInsituManager"
|
||||
arguments="wait_timestep 5"/>
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,12,13,/1:0/0:0/0:1" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,12,13,/1:0/0:1" />
|
||||
|
||||
<!-- wait for extract to arrive on the Live server-->
|
||||
<pqevent object="pqClientMainWindow" command="pqLiveInsituManager"
|
||||
arguments="wait_timestep 10"/>
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,9,8,/0:0/0:1" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,9,8,/0:0/0:1" />
|
||||
|
||||
<!-- wait for splitter -->
|
||||
<pqevent object="pqClientMainWindow" command="pqLiveInsituManager"
|
||||
arguments="wait_timestep 12"/>
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.1/Close" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menu_Catalyst" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_Catalyst" command="activate" arguments="actionCatalystSetBreakpoint" />
|
||||
|
||||
<!-- set a breakpoint -->
|
||||
<pqevent object="pqClientMainWindow/pqSetBreakpointDialog/BreakpointTime" command="set_string" arguments="20" />
|
||||
<pqevent object="pqClientMainWindow/pqSetBreakpointDialog/ButtonBox/1QPushButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,88,11,/1:0/0:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,88,11,/1:0/0:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_vcontainer/1QScrollBar0" command="mousePress" arguments="1,1,0,11,50" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_vcontainer/1QScrollBar0" command="mouseMove" arguments="1,0,0,6,81" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_vcontainer/1QScrollBar0" command="mouseRelease" arguments="1,0,0,6,81" />
|
||||
|
||||
<!-- Add another scalar value to contour -->
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ContourValues/ScalarValueList/Add" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ContourValues/ScalarValueList/Table/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="1" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ContourValues/ScalarValueList/Table" command="keyEvent" arguments="7,49,0,1,0,1" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ContourValues/ScalarValueList/Table" command="keyEvent" arguments="7,49,0,1,0,1" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ContourValues/ScalarValueList/Table/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="18" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ContourValues/ScalarValueList/Table" command="keyEvent" arguments="7,56,0,8,0,1" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ContourValues/ScalarValueList/Table" command="keyEvent" arguments="7,56,0,8,0,1" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ContourValues/ScalarValueList/Table/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="180" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ContourValues/ScalarValueList/Add" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ContourValues/ScalarValueList/Remove" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
|
||||
<!-- set the active view -->
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mousePress" arguments="(0.287574,0.232601,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseMove" arguments="(0.287574,0.232601,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseRelease" arguments="(0.287574,0.232601,1,0,0)" />
|
||||
|
||||
<!-- wait for breakpoint to be hit -->
|
||||
<pqevent object="pqClientMainWindow" command="pqLiveInsituManager"
|
||||
arguments="wait_breakpoint_hit"/>
|
||||
<!-- wait for time step 21 (one after the breakpoint) -->
|
||||
<pqevent object="pqClientMainWindow" command="pqLiveInsituManager"
|
||||
arguments="wait_timestep 21"/>
|
||||
</pqevents>
|
||||
@ -1,80 +0,0 @@
|
||||
try: paraview.simple
|
||||
except: from paraview.simple import *
|
||||
|
||||
from paraview import coprocessing
|
||||
|
||||
|
||||
#--------------------------------------------------------------
|
||||
# Code generated from cpstate.py to create the CoProcessor.
|
||||
|
||||
|
||||
# ----------------------- CoProcessor definition -----------------------
|
||||
|
||||
def CreateCoProcessor():
|
||||
def _CreatePipeline(coprocessor, datadescription):
|
||||
class Pipeline:
|
||||
Wavelet1 = coprocessor.CreateProducer( datadescription, "input" )
|
||||
|
||||
Contour1 = Contour( guiName="Contour1", ContourBy=['POINTS', 'RTData'], Isosurfaces=[157.0909652709961], ComputeScalars=1, PointMergeMethod="Uniform Binning" )
|
||||
|
||||
SetActiveSource(Wavelet1)
|
||||
Slice1 = Slice( guiName="Slice1", SliceOffsetValues=[-9.622499999999999, -5.773500000000001, -1.924500000000001, 1.924500000000001, 5.7734999999999985, 9.622499999999999], Triangulatetheslice=0, SliceType="Plane" )
|
||||
|
||||
return Pipeline()
|
||||
|
||||
class CoProcessor(coprocessing.CoProcessor):
|
||||
def CreatePipeline(self, datadescription):
|
||||
self.Pipeline = _CreatePipeline(self, datadescription)
|
||||
|
||||
coprocessor = CoProcessor()
|
||||
freqs = {'input': [1]}
|
||||
coprocessor.SetUpdateFrequencies(freqs)
|
||||
return coprocessor
|
||||
|
||||
#--------------------------------------------------------------
|
||||
# Global variables that will hold the pipeline for each timestep
|
||||
# Creating the CoProcessor object, doesn't actually create the ParaView pipeline.
|
||||
# It will be automatically setup when coprocessor.UpdateProducers() is called the
|
||||
# first time.
|
||||
coprocessor = CreateCoProcessor()
|
||||
|
||||
#--------------------------------------------------------------
|
||||
# Enable Live-Visualizaton with ParaView
|
||||
coprocessor.EnableLiveVisualization(True)
|
||||
|
||||
|
||||
# ---------------------- Data Selection method ----------------------
|
||||
|
||||
def RequestDataDescription(datadescription):
|
||||
"Callback to populate the request for current timestep"
|
||||
global coprocessor
|
||||
if datadescription.GetForceOutput() == True:
|
||||
# We are just going to request all fields and meshes from the simulation
|
||||
# code/adaptor.
|
||||
for i in range(datadescription.GetNumberOfInputDescriptions()):
|
||||
datadescription.GetInputDescription(i).AllFieldsOn()
|
||||
datadescription.GetInputDescription(i).GenerateMeshOn()
|
||||
return
|
||||
|
||||
# setup requests for all inputs based on the requirements of the
|
||||
# pipeline.
|
||||
coprocessor.LoadRequestedData(datadescription)
|
||||
|
||||
# ------------------------ Processing method ------------------------
|
||||
|
||||
def DoCoProcessing(datadescription):
|
||||
"Callback to do co-processing for current timestep"
|
||||
global coprocessor
|
||||
|
||||
# Update the coprocessor by providing it the newly generated simulation data.
|
||||
# If the pipeline hasn't been setup yet, this will setup the pipeline.
|
||||
coprocessor.UpdateProducers(datadescription)
|
||||
|
||||
# Write output data, if appropriate.
|
||||
coprocessor.WriteData(datadescription);
|
||||
|
||||
# Write image capture (Last arg: rescale lookup table), if appropriate.
|
||||
coprocessor.WriteImages(datadescription, rescale_lookuptable=False)
|
||||
|
||||
# Live Visualization, if enabled.
|
||||
coprocessor.DoLiveVisualization(datadescription, "localhost", 22222)
|
||||
@ -1,85 +0,0 @@
|
||||
import sys
|
||||
if len(sys.argv) != 3:
|
||||
print "command is 'python <python driver code> <script name> <number of time steps>'"
|
||||
sys.exit(1)
|
||||
import paraview
|
||||
import paraview.vtk as vtk
|
||||
import paraview.simple as pvsimple
|
||||
import math
|
||||
|
||||
# initialize and read input parameters
|
||||
paraview.options.batch = True
|
||||
paraview.options.symmetric = True
|
||||
|
||||
def _refHolderMaker(obj):
|
||||
def _refHolder(obj2, string):
|
||||
tmp = obj
|
||||
return _refHolder
|
||||
|
||||
def coProcess(grid, time, step, scriptname, wholeExtent):
|
||||
import vtkPVCatalystPython
|
||||
import os
|
||||
scriptpath, scriptname = os.path.split(scriptname)
|
||||
sys.path.append(scriptpath)
|
||||
if scriptname.endswith(".py"):
|
||||
print 'script name is ', scriptname
|
||||
scriptname = scriptname[0:len(scriptname)-3]
|
||||
try:
|
||||
cpscript = __import__(scriptname)
|
||||
except:
|
||||
print sys.exc_info()
|
||||
print 'Cannot find ', scriptname, ' -- no coprocessing will be performed.'
|
||||
sys.exit(1)
|
||||
return
|
||||
|
||||
datadescription = vtkPVCatalystPython.vtkCPDataDescription()
|
||||
datadescription.SetTimeData(time, step)
|
||||
datadescription.AddInput("input")
|
||||
cpscript.RequestDataDescription(datadescription)
|
||||
inputdescription = datadescription.GetInputDescriptionByName("input")
|
||||
if inputdescription.GetIfGridIsNecessary() == False:
|
||||
return
|
||||
|
||||
inputdescription.SetGrid(grid)
|
||||
if grid.IsA("vtkImageData") == True or grid.IsA("vtkRectilinearGrid") == True \
|
||||
or grid.IsA("vtkStructuredGrid") == True:
|
||||
inputdescription.SetWholeExtent(wholeExtent)
|
||||
|
||||
cpscript.DoCoProcessing(datadescription)
|
||||
|
||||
|
||||
|
||||
try:
|
||||
numsteps = int(sys.argv[2])
|
||||
except ValueError:
|
||||
print 'the last argument should be a number'
|
||||
numsteps = 10
|
||||
|
||||
|
||||
#imageData2 = vtk.vtkImageData()
|
||||
|
||||
for step in range(numsteps):
|
||||
print "Timestep ", step
|
||||
# assume simulation time starts at 0
|
||||
time = step/float(numsteps)
|
||||
|
||||
# create the input to the coprocessing library. normally
|
||||
# this will come from the adaptor
|
||||
wavelet = pvsimple.Wavelet()
|
||||
wholeExtent = wavelet.WholeExtent
|
||||
# put in some variation in the point data that changes with time
|
||||
wavelet.Maximum = 255+200*math.sin(step * math.pi / 100)
|
||||
wavelet.UpdatePipeline()
|
||||
imageData = pvsimple.servermanager.Fetch(wavelet)
|
||||
|
||||
# note that we delete wavelet now since. if not, it will
|
||||
# get deleted automatically in the coprocessing script
|
||||
pvsimple.Delete(wavelet)
|
||||
wavelet = None
|
||||
|
||||
# "perform" coprocessing. results are outputted only if
|
||||
# the passed in script says we should at time/step
|
||||
coProcess(imageData, time, step, sys.argv[1], wholeExtent)
|
||||
imageData = None
|
||||
import time
|
||||
time.sleep(1)
|
||||
@ -1,82 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuSources" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuSources" command="activate" arguments="ImageMandelbrotSource" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/MaximumNumberOfIterations/IntRangeWidget/LineEdit" command="set_string" arguments="5" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuFilters" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/Alphabetical" command="activate" arguments="PointDataToCellData" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/pqProxyGroupMenuManager0/Calculator" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/AttributeMode/ComboBox" command="set_string" arguments="Cell Data" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/Function" command="set_string" arguments="floor(Iterations)" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/Function" command="key" arguments="41" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/Function/Function" command="key" arguments="16777248" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/actionScalarBarVisibility" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/actionEditColorMap" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/IndexedLookup/CheckBox" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AddActive" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/ChoosePreset" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/gradients" command="mousePress" arguments="1,1,0,118,9,/0:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/gradients" command="mouseRelease" arguments="1,0,0,118,9,/0:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/apply" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/close" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties" command="mousePress" arguments="1,1,0,90,107" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties" command="mouseRelease" arguments="1,0,0,90,107" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/NanColor/ColorButton" command="setChosenColor" arguments="255,0,255" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mousePress" arguments="1,1,0,11,11,/3:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mouseRelease" arguments="1,0,0,11,11,/3:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mousePress" arguments="1,1,0,16,16,/1:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mouseRelease" arguments="1,0,0,16,16,/1:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/DeleteAll" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AddActive" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mousePress" arguments="1,1,0,26,13,/1:2" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mouseRelease" arguments="1,0,0,26,13,/1:2" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/Remove" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mousePress" arguments="1,1,0,43,21,/1:2" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mouseRelease" arguments="1,0,0,43,21,/1:2" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mouseDblClick" arguments="1,1,0,43,21,/1:2" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mouseRelease" arguments="1,0,0,43,21,/1:2" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="6,16777248,33554432,,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="6,16777248,33554432,,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="T" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,84,33554432,T,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,84,33554432,T,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="key" arguments="16777248" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,16777248,0,,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,16777248,0,,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="Th" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,72,0,h,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,72,0,h,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="Thre" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,82,0,r,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,82,0,r,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="Thre" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,69,0,e,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,69,0,e,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="Three" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,69,0,e,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="keyEvent" arguments="7,69,0,e,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/Update" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/ChoosePreset" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/NanColor/ColorButton" command="setChosenColor" arguments="249,131,36" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/gradients" command="mousePress" arguments="1,1,0,203,18,/5:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/gradients" command="mouseRelease" arguments="1,0,0,203,18,/5:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/apply" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/close" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/ChoosePreset" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/searchBox/SearchLineEdit" command="set_string" arguments="dark" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/gradients" command="mousePress" arguments="1,1,0,177,19,/0:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/gradients" command="mouseRelease" arguments="1,0,0,177,19,/0:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/apply" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/close" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/NanColor/ColorButton" command="setChosenColor" arguments="0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mousePress" arguments="1,1,0,19,15,/4:2" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AnnotationsTable" command="mouseRelease" arguments="1,0,0,19,15,/4:2" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/Remove" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/Remove" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/Remove" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/Remove" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/1QToolButton2" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,27 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<!-- BUG #0015407 -->
|
||||
<!-- open dataset with 4 timesteps, with end time = 4 -->
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/1QToolButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/dualSphereAnimation4.pvd" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="Solid Color" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/1QToolButton4" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menu_File" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_File" command="activate" arguments="actionFileSaveServerState" />
|
||||
<!-- save this state file -->
|
||||
<pqevent object="pqClientMainWindow/FileSaveServerStateDialog" command="filesSelected" arguments="$PARAVIEW_TEST_ROOT/ChangingTimestepsInStateFiles_4.pvsm" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menu_Edit" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_Edit" command="activate" arguments="actionDelete_All" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_File" command="activate" arguments="actionFileLoadServerState" />
|
||||
<pqevent object="pqClientMainWindow/FileLoadServerStateDialog" command="filesSelected" arguments="$PARAVIEW_TEST_ROOT/ChangingTimestepsInStateFiles_4.pvsm" />
|
||||
<pqevent object="pqClientMainWindow/FixStateFilenamesDialog/1pqCollapsedGroup0/FileName/FileButton" command="activate" arguments="" />
|
||||
<!-- change to dataset with 10 timesteps, with end time > 4 -->
|
||||
<pqevent object="pqClientMainWindow/FixStateFilenamesDialog/1pqCollapsedGroup0/FileName/pqFileDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/dualSphereAnimation.pvd" />
|
||||
<pqevent object="pqClientMainWindow/FixStateFilenamesDialog/buttonBox/1QPushButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/1QToolButton3" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/1QToolButton3" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/1QToolButton3" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/1QToolButton3" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/1QToolButton4" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,87 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<!-- This test tests various axis labels and axis range modes for the line
|
||||
chart -->
|
||||
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionOpenData" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/FileSeries/wavelet_..vti" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuFilters" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/DataAnalysis" command="activate" arguments="ProbeLine" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Splitter.0/Frame.1/Close" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuTools" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuTools" command="activate" arguments="actionTesting_Window_Size" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRLastFrame" command="activate" arguments="" />
|
||||
|
||||
<!-- By default, the Y-axis should scale with time. So we capture the image at
|
||||
the first frame and last frame and see that it has indeed scaled -->
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRFirstFrame" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/ChartAxisRangeAndLabelsA.png" width="300" height="300" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRPlay" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/ChartAxisRangeAndLabelsB.png" width="300" height="300" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRFirstFrame" command="activate" arguments="" />
|
||||
|
||||
<!-- Specify an explicit range for Y-axis (40, 300). Now verify that over time
|
||||
the axis range remains fixed to (40, 300) -->
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisUseCustomRange/CheckBox" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisRangeMinimum/LineEdit0" command="set_string" arguments="40" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisRangeMinimum/LineEdit0" command="key" arguments="16777220" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisRangeMaximum/LineEdit0" command="set_string" arguments="300" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisRangeMaximum/LineEdit0" command="key" arguments="16777220" />
|
||||
|
||||
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRFirstFrame" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/ChartAxisRangeAndLabelsC.png" width="300" height="300" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRPlay" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRLastFrame" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/ChartAxisRangeAndLabelsD.png" width="300" height="300" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRFirstFrame" command="activate" arguments="" />
|
||||
|
||||
<!-- With fixed Y-axis range, now lets specify custom labels. They should
|
||||
remain fixed over time as well.
|
||||
Labels are: 5, 50, 6, 60, 1, 10, 100, 30, 300, 75, 75
|
||||
-->
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/SearchBox/AdvancedButton" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/SearchBox/SearchLineEdit" command="set_string" arguments="Left" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisUseCustomLabels/CheckBox" command="set_boolean" arguments="true" />
|
||||
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Add" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Table/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="5" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Add" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Table/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="50" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Add" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Table/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="6" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Add" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Table/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="60" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Add" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Table/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="1" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Add" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Table/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="10" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Add" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Table/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="100" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Add" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Table/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="30" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Add" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Table/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="300" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Add" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Table/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="75" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Add" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisLabels/ScalarValueList/Table/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments="75" />
|
||||
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRFirstFrame" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/ChartAxisRangeAndLabelsE.png" width="300" height="300" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRLastFrame" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/ChartAxisRangeAndLabelsF.png" width="300" height="300" />
|
||||
|
||||
<!-- With custom labels, we now let the chart compute axis range
|
||||
automatically. The axis range should scale with time, but the labels should
|
||||
sitll stay fixed at those we specified.-->
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/ViewFrame/ProxyPanel/LeftAxisUseCustomRange/CheckBox" command="set_boolean" arguments="false" />
|
||||
|
||||
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRFirstFrame" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/ChartAxisRangeAndLabelsG.png" width="300" height="300" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRLastFrame" command="activate" arguments="" />
|
||||
<pqcompareview object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" baseline="$PARAVIEW_DATA_ROOT/Baseline/ChartAxisRangeAndLabelsH.png" width="300" height="300" />
|
||||
</pqevents>
|
||||
@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/1QToolButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/bake/bake.e" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuTools" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuTools" command="activate" arguments="actionTesting_Window_Size" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/1QToolButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/actionSelect_Block" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mousePress" arguments="(0.37,0.353333,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseMove" arguments="(0.643333,0.53,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseRelease" arguments="(0.643333,0.53,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ElementBlocks/BlockSelectionWidget/CheckSelectedBlocksButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/TitleBar/ToolBar/1QToolButton13" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="vtkBlockColors" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/actionScalarBarVisibility" command="set_boolean" arguments="false" />
|
||||
</pqevents>
|
||||
@ -1,45 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menu_File" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_File" command="activate" arguments="actionFileOpen" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/can.ex2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mousePress" arguments="(0.394083,0.263736,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseMove" arguments="(0.40355,0.606227,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseRelease" arguments="(0.40355,0.606227,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/Alphabetical" command="activate" arguments="ProbeLine" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_vcontainer/1QScrollBar0" command="mousePress" arguments="1,1,0,8,32" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_vcontainer/1QScrollBar0" command="mouseMove" arguments="1,0,0,16,130" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_vcontainer/1QScrollBar0" command="mouseRelease" arguments="1,0,0,16,130" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="0.0,2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="1.0,2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="6.0,2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="7.0,2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="8.0,2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="9.0,2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable/1pqCheckableHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable/1pqCheckableHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable/1pqCheckableHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable/1pqCheckableHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="6.0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="8.0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="1.0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="9.0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="7.0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="0.0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="7.0,2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="6.0,2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="7.0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="1.0,2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="6.0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="9.0,2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCurrent" arguments="8.0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="8.0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="8.0,2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable" command="setCheckState" arguments="1.0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable/1pqCheckableHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable/1pqCheckableHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable/1pqCheckableHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/DisplayFrame/ProxyPanel/SeriesEditor/SeriesTable/1pqCheckableHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
</pqevents>
|
||||
@ -1,107 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<!--
|
||||
This test tests different aspects of using the Clip panel/filter including:
|
||||
* undo/redo
|
||||
* clip plane linking
|
||||
* camera properties dialog
|
||||
* pick-to-select object
|
||||
-->
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionOpenData" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/can.ex2" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRFirstFrame" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ArrayStatus/SelectionWidget/1QHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ArrayStatus/SelectionWidget/1QHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionPositiveZ" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionNegativeZ" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionPositiveY" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionNegativeY" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/Common" command="activate" arguments="Clip" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ClipFunction/1pqProxySelectionWidget0/pqImplicitPlaneWidget/useYNormal" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionUndo" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionUndo" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionRedo" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_File" command="activate" arguments="actionFileOpen" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/can.ex2" />
|
||||
<pqevent object="pqClientMainWindow/VCRToolbar/actionVCRFirstFrame" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ArrayStatus/SelectionWidget/1QHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ArrayStatus/SelectionWidget/1QHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
|
||||
<!-- Extra accept to let old Mac to catch-up their breath and populate the variable combobox -->
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="ACCL" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Components" command="set_string" arguments="X" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuFilters/pqProxyGroupMenuManager0/Clip" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ClipFunction/1pqProxySelectionWidget0/pqImplicitPlaneWidget/useYNormal" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/InsideOut/CheckBox" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuTools" command="activate" arguments="actionToolsManageLinks" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/addButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy1" command="mousePress" arguments="1,1,0,-10,16,/1:0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy1" command="mouseRelease" arguments="1,0,0,-10,16,/1:0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy1" command="mousePress" arguments="1,1,0,-13,8,/1:0/1:0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy1" command="mouseRelease" arguments="1,0,0,-13,8,/1:0/1:0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy1" command="mousePress" arguments="1,1,0,16,7,/1:0/1:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy1" command="mouseRelease" arguments="1,0,0,16,7,/1:0/1:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy2" command="mousePress" arguments="1,1,0,-13,12,/1:0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy2" command="mouseRelease" arguments="1,0,0,-13,12,/1:0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy2" command="mousePress" arguments="1,1,0,-9,10,/1:0/3:0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy2" command="mouseRelease" arguments="1,0,0,-9,10,/1:0/3:0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy2" command="mousePress" arguments="1,1,0,10,9,/1:0/3:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/stackedWidget/page/ObjectTreeProxy2" command="mouseRelease" arguments="1,0,0,10,9,/1:0/3:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/pqLinksEditor/buttonBox/1QPushButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqLinksManager/buttonBox/1QPushButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,49,13,/0:0/0:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,49,13,/0:0/0:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ClipFunction/1pqProxySelectionWidget0/pqImplicitPlaneWidget/useYNormal" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ClipFunction/1pqProxySelectionWidget0/pqImplicitPlaneWidget/useXNormal" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ClipFunction/1pqProxySelectionWidget0/pqImplicitPlaneWidget/useZNormal" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
|
||||
<!-- Add some test for the Camera Setting Dialog -->
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/actionAdjustCamera" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/groupBox_2/viewsGroup/viewXPlus" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/groupBox_2/viewsGroup/viewXMinus" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/groupBox_2/viewsGroup" command="mouseMove" arguments="1,0,0,88,46" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/groupBox_2/viewsGroup" command="mouseRelease" arguments="1,0,0,88,46" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/groupBox_2/viewsGroup/viewYPlus" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/groupBox_2/viewsGroup/viewYMinus" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/rollAngle" command="spin" arguments="up" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/rollAngle" command="spin" arguments="up" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/rollButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/elevationAngle" command="spin" arguments="up" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/elevationAngle" command="spin" arguments="up" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/elevationButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/azimuthAngle" command="spin" arguments="up" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/azimuthButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/azimuthAngle" command="set_double" arguments="0" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/azimuthButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/elevationAngle" command="set_double" arguments="0" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/elevationButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/rollAngle" command="set_double" arguments="0" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/rollButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/groupBox_2/viewsGroup/viewZPlus" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/groupBox_2/viewsGroup/viewYMinus" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/closeButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionResetCamera" command="activate" arguments="" />
|
||||
|
||||
<!-- Do some pick-to-select testing -->
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuTools" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuTools" command="activate" arguments="actionTesting_Window_Size" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mousePress" arguments="(0.61,0.733333,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseMove" arguments="(0.61,0.733333,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseRelease" arguments="(0.61,0.733333,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mousePress" arguments="(0.58,0.266667,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseMove" arguments="(0.58,0.266667,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/Viewport" command="mouseRelease" arguments="(0.58,0.266667,1,0,0)" />
|
||||
|
||||
<!-- Make sure the clip filter is selected so the widget is visible -->
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mousePress" arguments="1,1,0,54,11,/0:0/1:0/0:0" />
|
||||
<pqevent object="pqClientMainWindow/pipelineBrowserDock/pipelineBrowser" command="mouseRelease" arguments="1,0,0,54,11,/0:0/1:0/0:0" />
|
||||
</pqevents>
|
||||
@ -1,26 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menu_File" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_File" command="activate" arguments="actionFileOpen" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/CubeStringArray.vtk" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="sides" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/1QToolButton1" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/AddActive" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/TitleBar/1QToolBar0/1QToolButton3" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/rollAngle" command="set_double" arguments="35" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/rollButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog" command="key" arguments="16777221" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/pqCustomViewButtonDialog/toolTip0" command="key" arguments="16777221" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/rollButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/elevationAngle" command="set_double" arguments="45" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/orientationsGroup/elevationButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/pqCameraDialog/closeButton" command="activate" arguments="" />
|
||||
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/ChoosePreset" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/gradients" command="mousePress" arguments="1,1,0,171,14,/5:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/gradients" command="mouseRelease" arguments="1,0,0,171,14,/5:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/apply" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/1QToolButton2" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/AnnotationsEditor/pqPresetDialog/close" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,75 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuSources" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuSources" command="activate" arguments="RTAnalyticSource" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="Surface" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="RTData" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/actionEditColorMap" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/ShowScalarBar" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/ShowScalarBar" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/ShowScalarBar" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/EditScalarBar" command="activate" arguments="" />
|
||||
<pqevent object="ColorLegendEditor/widget/OKButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ChoosePreset" command="activate" arguments="" />
|
||||
<!-- Choose "Blue to Red Rainbow" -->
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqPresetDialog/gradients" command="mousePress" arguments="1,1,0,256,10,/14:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqPresetDialog/gradients" command="mouseRelease" arguments="1,0,0,256,10,/14:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqPresetDialog/apply" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqPresetDialog/close" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorEditor/1QVTKWidget0" command="mousePress" arguments="(0.172956,0.575,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorEditor/1QVTKWidget0" command="mouseMove" arguments="(0.172956,0.575,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorEditor/1QVTKWidget0" command="mouseRelease" arguments="(0.172956,0.575,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorEditor/1QVTKWidget0" command="mousePress" arguments="(0.342767,0.55,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorEditor/1QVTKWidget0" command="mouseMove" arguments="(0.342767,0.55,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorEditor/1QVTKWidget0" command="mouseRelease" arguments="(0.342767,0.55,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorEditor/1QVTKWidget0" command="mousePress" arguments="(0.515723,0.45,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorEditor/1QVTKWidget0" command="mouseMove" arguments="(0.515723,0.45,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorEditor/1QVTKWidget0" command="mouseRelease" arguments="(0.515723,0.45,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorEditor/1QVTKWidget0" command="mousePress" arguments="(0.713836,0.375,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorEditor/1QVTKWidget0" command="mouseMove" arguments="(0.713836,0.375,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorEditor/1QVTKWidget0" command="mouseRelease" arguments="(0.713836,0.375,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/Update" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/EnableOpacityMapping" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/Update" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/EnableOpacityMapping" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/Update" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/SearchBox/SearchLineEdit" command="set_string" arguments="d" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/SearchBox/SearchLineEdit" command="set_string" arguments="di" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/SearchBox/SearchLineEdit" command="set_string" arguments="dis" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/Discretize/CheckBox" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/SearchBox/SearchLineEdit" command="key" arguments="16777216" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/SearchBox/SearchLineEdit" command="set_string" arguments="n" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/SearchBox/SearchLineEdit" command="set_string" arguments="nu" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/SearchBox/SearchLineEdit" command="key" arguments="16777219" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/SearchBox/SearchLineEdit" command="set_string" arguments="d" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/SearchBox/SearchLineEdit" command="set_string" arguments="di" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/SearchBox/SearchLineEdit" command="set_string" arguments="dis" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/Discretize/CheckBox" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/SearchBox/SearchLineEdit" command="set_string" arguments="n" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/SearchBox/SearchLineEdit" command="set_string" arguments="nu" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/SearchBox/SearchLineEdit" command="set_string" arguments="num" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/NumberOfTableValues/IntRangeWidget/LineEdit" command="set_string" arguments="5" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/NumberOfTableValues/IntRangeWidget/LineEdit" command="key" arguments="16777220" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/Update" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/SearchBox/SearchLineEdit" command="key" arguments="16777216" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ResetRangeToCustom" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqRescaleRangeDialog/MinimumScalar" command="set_string" arguments="0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqRescaleRangeDialog/MaximumScalar" command="key" arguments="16777217" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqRescaleRangeDialog/MaximumScalar" command="set_string" arguments="3" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqRescaleRangeDialog/MaximumScalar" command="set_string" arguments="30" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqRescaleRangeDialog/MaximumScalar" command="set_string" arguments="300" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqRescaleRangeDialog/RescaleButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ResetRangeToData" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/Update" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ResetRangeToCustom" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqRescaleRangeDialog/MinimumScalar" command="set_string" arguments="0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqRescaleRangeDialog/MaximumScalar" command="key" arguments="16777217" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqRescaleRangeDialog/MaximumScalar" command="set_string" arguments="3" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqRescaleRangeDialog/MaximumScalar" command="set_string" arguments="35" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqRescaleRangeDialog/MaximumScalar" command="set_string" arguments="350" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqRescaleRangeDialog/RescaleButton" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/Update" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/InvertTransferFunctions" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/Update" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,52 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionOpenData" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/iron protein.vtk" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="Volume" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/actionEditColorMap" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mousePress" arguments="(0.396226,0.612069,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseMove" arguments="(0.396226,0.612069,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseRelease" arguments="(0.396226,0.612069,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mousePress" arguments="(0.396226,0.612069,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseMove" arguments="(0.380503,0.956897,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseRelease" arguments="(0.380503,0.956897,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mousePress" arguments="(0.801887,0.327586,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseMove" arguments="(0.801887,0.327586,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseRelease" arguments="(0.801887,0.327586,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mousePress" arguments="(0.801887,0.327586,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseMove" arguments="(0.528302,0.344828,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseRelease" arguments="(0.528302,0.344828,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mousePress" arguments="(0.292453,0.431034,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseMove" arguments="(0.292453,0.431034,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseRelease" arguments="(0.292453,0.431034,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mousePress" arguments="(0.292453,0.431034,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseMove" arguments="(0.27673,0.965517,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseRelease" arguments="(0.27673,0.965517,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mousePress" arguments="(0.518868,0.267241,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseMove" arguments="(0.559748,-0.112069,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseRelease" arguments="(0.559748,-0.112069,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/Update" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mousePress" arguments="(0.380503,0.275862,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseMove" arguments="(0.380503,0.275862,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseRelease" arguments="(0.380503,0.275862,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="keyEvent" arguments="6:16777223:0::0:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="keyEvent" arguments="7:16777223:0::0:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="keyEvent" arguments="6:16777234:0::0:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="keyEvent" arguments="7:16777234:0::0:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="keyEvent" arguments="6:16777236:0::0:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="keyEvent" arguments="7:16777236:0::0:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="keyEvent" arguments="6:16777223:0::0:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="keyEvent" arguments="7:16777223:0::0:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mousePress" arguments="(0.965409,0.336207,1,1,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseMove" arguments="(0.996855,-0.163793,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityEditor/1QVTKWidget0" command="mouseRelease" arguments="(0.996855,-0.163793,1,0,0)" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/Update" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ChoosePreset" command="activate" arguments="" />
|
||||
<!-- load "X Ray" -->
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqPresetDialog/gradients" command="mousePress" arguments="1,1,0,206,11,/7:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqPresetDialog/gradients" command="mouseRelease" arguments="1,0,0,206,11,/7:0" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqPresetDialog/apply" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/pqPresetDialog/close" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/Update" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuSources" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuSources" command="activate" arguments="CylinderSource" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="TCoords" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/actionEditColorMap" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/EditScalarBar" command="activate" arguments="" />
|
||||
<pqevent object="ColorLegendEditor/scrollArea/qt_scrollarea_viewport/Container/ProxyWidget/AddRangeLabels/CheckBox" command="set_boolean" arguments="true" />
|
||||
<pqevent object="ColorLegendEditor/widget/ApplyButton" command="activate" arguments="" />
|
||||
<pqevent object="ColorLegendEditor/widget/OKButton" command="activate" arguments="" />
|
||||
</pqevents>
|
||||
@ -1,72 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuSources" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menuSources" command="activate" arguments="RTAnalyticSource" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="Surface" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="RTData" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/actionEditColorMap" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/AdvancedButton" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="mousePress" arguments="1,1,0,22,15,/0:3" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="mouseRelease" arguments="1,0,0,22,15,/0:3" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="mousePress" arguments="1,1,0,22,15,/0:3" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="mouseRelease" arguments="1,0,0,22,15,/0:3" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="mouseDblClick" arguments="1,1,0,22,15,/0:3" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="mouseRelease" arguments="1,0,0,22,15,/0:3" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="key" arguments="46" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,46,0,.,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,46,0,.,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments=".1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,49,0,1,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,49,0,1,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="6,16777220,0,
|
||||
,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="6,16777220,0,
|
||||
,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,16777220,0,
|
||||
,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="6,16777217,0, ,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,16777217,0, ,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="6,16777217,0, ,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,16777217,0, ,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="6,16777217,0, ,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,16777217,0, ,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="mousePress" arguments="1,1,0,54,11,/1:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="mouseRelease" arguments="1,0,0,54,11,/1:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="mouseDblClick" arguments="1,1,0,54,11,/1:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="mouseRelease" arguments="1,0,0,54,11,/1:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="key" arguments="46" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,46,0,.,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,46,0,.,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments=".4" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,52,0,4,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,52,0,4,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="key" arguments="16777217" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,16777217,0, ,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,16777217,0, ,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="key" arguments="46" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,46,0,.,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,46,0,.,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments=".1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,49,0,1,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,49,0,1,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="key" arguments="16777217" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,16777217,0, ,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,16777217,0, ,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="6,16777220,0,
|
||||
,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="6,16777220,0,
|
||||
,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ColorTable" command="keyEvent" arguments="7,16777220,0,
|
||||
,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/EnableOpacityMapping" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityTable" command="mousePress" arguments="1,1,0,40,19,/1:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityTable" command="mouseRelease" arguments="1,0,0,40,19,/1:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityTable" command="mouseDblClick" arguments="1,1,0,40,19,/1:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityTable" command="mouseRelease" arguments="1,0,0,40,19,/1:1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="key" arguments="46" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityTable" command="keyEvent" arguments="7,46,0,.,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityTable" command="keyEvent" arguments="7,46,0,.,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityTable/qt_scrollarea_viewport/1QExpandingLineEdit0" command="set_string" arguments=".5" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityTable" command="keyEvent" arguments="7,53,0,5,0,1" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/OpacityTable" command="keyEvent" arguments="7,53,0,5,0,1" />
|
||||
@ -1,25 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/Close" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/EmptyView/scrollArea/qt_scrollarea_viewport/widgetFoo/ConvertActionsFrame/ComparativeRenderView" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menu_File" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_File" command="activate" arguments="actionFileOpen" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/can.ex2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ArrayStatus/SelectionWidget/1QHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ArrayStatus/SelectionWidget/1QHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionPositiveX" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionNegativeX" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionNegativeY" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="Outline" />
|
||||
<pqevent object="pqClientMainWindow/representationToolbar/displayRepresentation/comboBox" command="set_string" arguments="Surface" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menuFilters" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_View" command="activate" arguments="Comparative View Inspector" />
|
||||
<pqevent object="pqClientMainWindow/comparativePanelDock/comparativeVisPanel/overlay" command="set_boolean" arguments="true" />
|
||||
<pqevent object="pqClientMainWindow/comparativePanelDock/comparativeVisPanel/addParameter" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionResetCamera" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="DISPL" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionResetCamera" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/comparativePanelDock/comparativeVisPanel/overlay" command="set_boolean" arguments="false" />
|
||||
<pqevent object="pqClientMainWindow/comparativePanelDock/comparativeVisPanel/overlay" command="set_boolean" arguments="true" />
|
||||
</pqevents>
|
||||
@ -1,22 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<pqevents>
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/Close" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/centralwidget/MultiViewWidget/CoreWidget/qt_tabwidget_stackedwidget/MultiViewWidget1/Frame.0/CentralWidgetFrame/EmptyView/scrollArea/qt_scrollarea_viewport/widgetFoo/ConvertActionsFrame/ComparativeRenderView" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/MainControlsToolbar/actionOpenData" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/FileOpenDialog" command="filesSelected" arguments="$PARAVIEW_DATA_ROOT/can.ex2" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ArrayStatus/SelectionWidget/1QHeaderView0" command="mousePress" arguments="1,1,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/ProxyPanel/ArrayStatus/SelectionWidget/1QHeaderView0" command="mouseRelease" arguments="1,0,0,0,0,0" />
|
||||
<pqevent object="pqClientMainWindow/propertiesDock/propertiesPanel/Accept" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionNegativeY" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/menubar" command="activate" arguments="menu_View" />
|
||||
<pqevent object="pqClientMainWindow/menubar/menu_View" command="activate" arguments="Comparative View Inspector" />
|
||||
<pqevent object="pqClientMainWindow/comparativePanelDock/comparativeVisPanel/addParameter" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/comparativePanelDock/comparativeVisPanel/layoutY" command="spin" arguments="up" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/displayColor/Variables" command="set_string" arguments="DISPL" />
|
||||
<pqevent object="pqClientMainWindow/cameraToolbar/actionNegativeY" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/variableToolbar/actionEditColorMap" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/ResetRangeToDataOverTime" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/PropertiesFrame/Properties/ColorOpacityEditor/1QMessageBox0/qt_msgbox_buttonbox/1QPushButton0" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/colorMapEditorPanel/scrollArea/qt_scrollarea_viewport/scrollAreaWidgetContents/Update" command="activate" arguments="" />
|
||||
<pqevent object="pqClientMainWindow/colorMapEditorDock/qt_dockwidget_closebutton" command="activate" arguments="" />
|
||||
</pqevents>
|
||||