Files
ThirdParty-6/ParaView-5.0.1/ParaViewCore/ServerManager/Core/vtkSMDomain.h

201 lines
7.4 KiB
C++

/*=========================================================================
Program: ParaView
Module: vtkSMDomain.h
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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.
=========================================================================*/
// .NAME vtkSMDomain - represents the possible values a property can have
// .SECTION Description
//
// vtkSMDomain is an abstract class that describes the "domain" of a
// a widget. A domain is a collection of possible values a property
// can have.
//
// Each domain can depend on one or more properties to compute it's
// values. This are called "required" properties and can be set in
// the XML configuration file.
//
// Every time a domain changes it must fire a vtkCommand::DomainModifiedEvent.
// Applications may decide to update the UI every-time the domain changes. As a
// result, domains ideally should only fire that event when their values change
// for real not just potentially changed.
#ifndef vtkSMDomain_h
#define vtkSMDomain_h
#include "vtkPVServerManagerCoreModule.h" //needed for exports
#include "vtkSMSessionObject.h"
#include "vtkClientServerID.h" // needed for saving animation in batch script
class vtkPVDataInformation;
class vtkPVXMLElement;
class vtkSMProperty;
class vtkSMProxyLocator;
//BTX
struct vtkSMDomainInternals;
//ETX
class VTKPVSERVERMANAGERCORE_EXPORT vtkSMDomain : public vtkSMSessionObject
{
public:
vtkTypeMacro(vtkSMDomain, vtkSMSessionObject);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Is the (unchecked) value of the property in the domain? Overwritten by
// sub-classes.
virtual int IsInDomain(vtkSMProperty* property) = 0;
// Description:
// Update self based on the "unchecked" values of all required
// properties. Subclasses must override this method to update the domain based
// on the requestingProperty (and/or other required properties).
virtual void Update(vtkSMProperty* requestingProperty)
{
(void)requestingProperty;
}
// Description:
// Set the value of an element of a property from the animation editor.
virtual void SetAnimationValue(
vtkSMProperty*, int vtkNotUsed(index), double vtkNotUsed(value)) {}
// Description:
// A vtkSMProperty is often defined with a default value in the
// XML itself. However, many times, the default value must be determined
// at run time. To facilitate this, domains can override this method
// to compute and set the default value for the property.
// Note that unlike the compile-time default values, the
// application must explicitly call this method to initialize the
// property.
// If \c use_unchecked_values is true, the property's unchecked values will be
// changed by this method.
// Returns 1 if the domain updated the property.
// Default implementation does nothing.
virtual int SetDefaultValues(vtkSMProperty*, bool vtkNotUsed(use_unchecked_values))
{return 0; };
// Description:
// Assigned by the XML parser. The name assigned in the XML
// configuration. Can be used to figure out the origin of the
// domain.
vtkGetStringMacro(XMLName);
// Description:
// When the IsOptional flag is set, IsInDomain() always returns true.
// This is used by properties that use domains to provide information
// (a suggestion to the gui for example) as opposed to restrict their
// values.
vtkGetMacro(IsOptional, bool);
// Description:
// Provides access to the vtkSMProperty on which this domain is hooked up.
vtkSMProperty* GetProperty();
protected:
vtkSMDomain();
~vtkSMDomain();
// Description:
// Add the header and creates a new vtkPVXMLElement for the
// domain, fills it up with the common attributes. The newly
// created element will also be added to the parent element as a child node.
// Subclasses can override ChildSaveState() method to fill it up with
// subclass specific values.
void SaveState(vtkPVXMLElement* parent, const char* uid);
virtual void ChildSaveState(vtkPVXMLElement* domainElement);
// Description:
// Load the state of the domain from the XML.
// Subclasses generally have no need to load XML state. In fact, serialization
// of state for domains, in general, is unnecessary for two reasons:
// 1. domains whose values are defined in XML will be populated from the
// configuration xml anyways.
// 2. domains whose values depend on data (at runtime) will be repopulated
// with data values when the XML state is loaded.
// The only exception to this rule is vtkSMProxyListDomain (presently).
// vtkSMProxyListDomain needs to try to restore proxies (with proper ids) for
// the domain.
virtual int LoadState(vtkPVXMLElement* vtkNotUsed(domainElement),
vtkSMProxyLocator* vtkNotUsed(loader)) { return 1; }
// Description:
// Set the appropriate ivars from the xml element. Should
// be overwritten by subclass if adding ivars.
virtual int ReadXMLAttributes(vtkSMProperty* prop, vtkPVXMLElement* elem);
//BTX
friend class vtkSMProperty;
//ETX
// Description:
// Returns a given required property of the given function.
// Function is a string associated with the require property
// in the XML file.
vtkSMProperty* GetRequiredProperty(const char* function);
// Description:
// Remove the given property from the required properties list.
void RemoveRequiredProperty(vtkSMProperty* prop);
// Description:
// Add a new required property to this domain.
// Whenever the \c prop fires vtkCommand::UncheckedPropertyModifiedEvent,
// vtkSMDomain::Update(prop) is called. Also whenever a vtkSMInputProperty is
// added as a required property, vtkSMDomain::Update(prop) will also be called
// the vtkCommand::UpdateDataEvent is fired by the proxies contained in that
// required property.
void AddRequiredProperty(vtkSMProperty *prop, const char *function);
// Description:
// Helper method to get vtkPVDataInformation from input proxy connected to the
// required property with the given function.
virtual vtkPVDataInformation* GetInputDataInformation(
const char* function, int index=0);
// Description:
// When the IsOptional flag is set, IsInDomain() always returns true.
// This is used by properties that use domains to provide information
// (a suggestion to the gui for example) as opposed to restrict their
// values.
vtkSetMacro(IsOptional, bool);
// Description:
// Assigned by the XML parser. The name assigned in the XML
// configuration. Can be used to figure out the origin of the
// domain.
vtkSetStringMacro(XMLName);
// Description:
// Invokes DomainModifiedEvent. Note that this event *must* be fired after the
// domain has changed (ideally, if and only if the domain has changed).
void DomainModified();
void InvokeModified() { this->DomainModified(); }
// Description:
// Gets the number of required properties added.
unsigned int GetNumberOfRequiredProperties();
// Description:
// Set the domain's property. This is called by vtkSMProperty when the domain
// is created.
void SetProperty(vtkSMProperty*);
char* XMLName;
bool IsOptional;
vtkSMDomainInternals* Internals;
private:
vtkSMDomain(const vtkSMDomain&); // Not implemented
void operator=(const vtkSMDomain&); // Not implemented
};
#endif