ParaView
|
pqStandardPropertyWidgetInterface provides a concrete implementation of pqPropertyWidget used by ParaView application. More...
#include <pqStandardPropertyWidgetInterface.h>
Public Member Functions | |
pqStandardPropertyWidgetInterface (QObject *p=0) | |
virtual | ~pqStandardPropertyWidgetInterface () |
virtual pqPropertyWidget * | createWidgetForProperty (vtkSMProxy *proxy, vtkSMProperty *property) |
Given a proxy and its property, create a widget for the same, if possible. More... | |
virtual pqPropertyWidget * | createWidgetForPropertyGroup (vtkSMProxy *proxy, vtkSMPropertyGroup *group) |
Given a proxy and its property group, create a widget for the same, of possible. More... | |
virtual pqPropertyWidgetDecorator * | createWidgetDecorator (const QString &type, vtkPVXMLElement *config, pqPropertyWidget *widget) |
Given the type of the decorator and the pqPropertyWidget that needs to be decorated, create the pqPropertyWidgetDecorator instance, if possible. More... | |
![]() | |
virtual | ~pqPropertyWidgetInterface () |
pqStandardPropertyWidgetInterface provides a concrete implementation of pqPropertyWidget used by ParaView application.
It adds logic to create some of the custom widgets and decorators used by ParaView's Properties Panel.
Definition at line 41 of file pqStandardPropertyWidgetInterface.h.
pqStandardPropertyWidgetInterface::pqStandardPropertyWidgetInterface | ( | QObject * | p = 0 | ) |
|
virtual |
|
virtual |
Given a proxy and its property, create a widget for the same, if possible.
For unsupported/unknown proxies/properties, implementations should simply return NULL without raising any errors (or messages). Supported types are:
calculator
: pqCalculatorWidget camera_manipulator
: pqCameraManipulatorWidget color_palette_selector
: pqColorPaletteSelectorWidget color_selector
: pqColorSelectorPropertyWidget color_selector_with_palette
: pqColorSelectorPropertyWidget with palette menu command_button
: pqCommandButtonPropertyWidget display_representation_selector
: pqDisplayRepresentationPropertyWidget double_range
: pqDoubleRangeSliderPropertyWidget image_compressor_config
: pqImageCompressorWidget index_selection
: pqIndexSelectionWidget list
: pqListPropertyWidget texture_selector
: pqTextureSelectorPropertyWidget transfer_function_editor
: pqTransferFunctionWidgetPropertyWidget viewtype_selector:
pqViewTypePropertyWidget glyph_scale_factor:
pqGlyphScaleFactorPropertyWidget proxy_editor:
pqProxyEditorPropertyWidget int_mask:
pqIntMaskPropertyWidget filename_widget:
pqFileNamePropertyWidget Reimplemented from pqPropertyWidgetInterface.
|
virtual |
Given a proxy and its property group, create a widget for the same, of possible.
For unsupported/unknown proxies/property-groups, implementations should simply return NULL without raising any errors (or messages). Supported types are:
AnnotationsEditor
: pqColorAnnotationsPropertyWidget ArrayStatus
: pqArrayStatusPropertyWidget BackgroundEditor
: pqBackgroundPropertyWidget ColorEditor
: pqColorEditorPropertyWidget ColorOpacityEditor
: pqColorOpacityEditorWidget FontEditor
: pqFontPropertyWidget LightsEditor
: pqLightsPropertyGroup SeriesEditor
: pqSeriesEditorPropertyWidget InteractivePlane
: pqImplicitPlanePropertyWidget InteractiveBox:
pqBoxPropertyWidget InteractiveHandle:
pqHandlePropertyWidget InteractiveLine:
pqLinePropertyWidget InteractiveSpline:
pqSplinePropertyWidget InteractiveSphere:
pqSpherePropertyWidget InteractivePolyLine:
pqSplinePropertyWidget (with mode==POLYLINE) InteractiveCylinder:
pqCylinderPropertyWidget YoungsMaterial:
pqYoungsMaterialPropertyWidget cinema_export_selector
: pqCinemaConfiguration Reimplemented from pqPropertyWidgetInterface.
|
virtual |
Given the type of the decorator and the pqPropertyWidget that needs to be decorated, create the pqPropertyWidgetDecorator instance, if possible.
For unsupported/unknown, implementations should simply return NULL without raising any errors (or messages). Supported types are:
CTHArraySelectionDecorator
: pqCTHArraySelectionDecorator EnableWidgetDecorator
: pqEnableWidgetDecorator ShowWidgetDecorator
: pqShowWidgetDecorator InputDataTypeDecorator
: pqInputDataTypeDecorator GenericDecorator:
pqGenericPropertyWidgetDecorator OSPRayHidingDecorator:
pqOSPRayHidingDecorator Reimplemented from pqPropertyWidgetInterface.