Revision 3a6370bf39d14d68f194f1204ddf42fe2aa329d2 authored by Pierre Guillou on 11 October 2019, 13:16:44 UTC, committed by Pierre Guillou on 13 April 2022, 09:24:25 UTC
1 parent cdaa0c2
vtkSMProxyClipboard.h
/*=========================================================================
Program: ParaView
Module: vtkSMProxyClipboard.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.
=========================================================================*/
/**
* @class vtkSMProxyClipboard
* @brief helper class to help copy/paste properties on
* proxies.
*
* vtkSMProxyClipboard is a helper class used to enable copy/paste for
* properties on proxies. Copy/Paste is more that simply copying values from a
* proxy to another (for which one should simply use vtkSMProxy::Copy()). This
* has several extra smarts including the following:
* \li Skips input properties.
* \li Skips properties that are hidden by setting
* vtkSMProperty::PanelVisibility to "never".
* \li Specially handles properties with vtkSMProxyListDomain to select the same
* type of proxy from the target domain when pasting and then loading the
* state for the value proxy separately.
* \li For other vtkSMProxyProperty instances (e.g. LookupTable,
* ScalarOpacityFunction, etc.) on Paste, it tries to locate the requested proxy
* value on the session.
*/
#ifndef vtkSMProxyClipboard_h
#define vtkSMProxyClipboard_h
#include "vtkRemotingMiscModule.h" //needed for exports
#include "vtkSMObject.h"
#include "vtkSmartPointer.h" // for vtkSmartPointer.
class vtkPVXMLElement;
class vtkSMProxy;
class vtkSMProxyClipboardInternals;
class VTKREMOTINGMISC_EXPORT vtkSMProxyClipboard : public vtkSMObject
{
public:
static vtkSMProxyClipboard* New();
vtkTypeMacro(vtkSMProxyClipboard, vtkSMObject);
void PrintSelf(ostream& os, vtkIndent indent) override;
/**
* Put a proxy's state on the clipboard. Return true if the operation was
* successful.
*/
bool Copy(vtkSMProxy* source);
/**
* Returns true of the proxy state on the clipboard can be pasted on to the
* specified \c target. Current implementation doesn't check for the types of the
* proxies. In future, we can make this type-aware or add other criteria.
*/
bool CanPaste(vtkSMProxy* target);
/**
* Paste the state on the clipboard on to the target proxy.
*/
bool Paste(vtkSMProxy* target);
/**
* Clears the clipboard. Same as calling Copy(nullptr).
*/
void Clear() { this->Copy(nullptr); }
protected:
vtkSMProxyClipboard();
~vtkSMProxyClipboard() override;
vtkSmartPointer<vtkPVXMLElement> CopiedState;
private:
vtkSMProxyClipboard(const vtkSMProxyClipboard&) = delete;
void operator=(const vtkSMProxyClipboard&) = delete;
vtkSMProxyClipboardInternals* Internals;
};
#endif

Computing file changes ...