pqPauseLiveSourcePropertyWidget.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 pqPauseLiveSourcePropertyWidget_h
5 #define pqPauseLiveSourcePropertyWidget_h
6 
7 #include "pqApplicationComponentsModule.h" // needed for exports
8 #include "pqPropertyWidget.h"
9 
10 #include <QScopedPointer>
11 
25 {
26  Q_OBJECT
28 
29 public:
31  vtkSMProxy* proxy, vtkSMProperty* smproperty, QWidget* parent = nullptr);
33 
34 private Q_SLOTS:
35  void onClicked(bool checked);
36 
37 private: // NOLINT(readability-redundant-access-specifiers)
38  Q_DISABLE_COPY(pqPauseLiveSourcePropertyWidget)
39 
40  class pqInternals;
41  QScopedPointer<pqInternals> Internals;
42 };
43 
44 #endif
widget to pause current live source
pqPropertyWidget represents a widget created for each property of a proxy on the pqPropertiesPanel (f...
#define PQAPPLICATIONCOMPONENTS_EXPORT
superclass for all SM properties
proxy for a VTK object(s) on a server
Definition: vtkSMProxy.h:140