pqMenuReactionUtils.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
2 // SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
3 // SPDX-License-Identifier: BSD-3-Clause
4 #ifndef pqMenuReactionUtils_h
5 #define pqMenuReactionUtils_h
6 
7 #include "pqApplicationComponentsModule.h" // for exports
8 #include <QString>
9 
10 class vtkSMDomain;
11 class vtkSMInputProperty;
12 class vtkSMProxy;
13 
21 {
22 
26 PQAPPLICATIONCOMPONENTS_EXPORT QString getDomainDisplayText(vtkSMDomain* domain);
27 
33 PQAPPLICATIONCOMPONENTS_EXPORT vtkSMInputProperty* getInputProperty(vtkSMProxy* proxy);
34 }
35 
36 #endif
vtkSMProxy
proxy for a VTK object(s) on a server
Definition: vtkSMProxy.h:140
pqMenuReactionUtils::getDomainDisplayText
PQAPPLICATIONCOMPONENTS_EXPORT QString getDomainDisplayText(vtkSMDomain *domain)
Generates a QString with an error helper message for a given vtkSMDomain.
pqMenuReactionUtils
Groups helper functions used by multiple pq*MenuReaction classes.
Definition: pqMenuReactionUtils.h:20
vtkSMDomain
represents the possible values a property can have
Definition: vtkSMDomain.h:37
pqMenuReactionUtils::getInputProperty
PQAPPLICATIONCOMPONENTS_EXPORT vtkSMInputProperty * getInputProperty(vtkSMProxy *proxy)
Gets the vtkSMInputProperty for a given vtkSMProxy.
vtkSMInputProperty
proxy representing inputs to a filter
Definition: vtkSMInputProperty.h:28