pqPluginTreeWidgetEventPlayer.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 
5 #ifndef pqPluginTreeWidgetEventPlayer_h
6 #define pqPluginTreeWidgetEventPlayer_h
7 
8 #include "pqComponentsModule.h"
9 #include "pqWidgetEventPlayer.h"
10 
18 class PQCOMPONENTS_EXPORT pqPluginTreeWidgetEventPlayer : public pqWidgetEventPlayer
19 {
20  Q_OBJECT
21  typedef pqWidgetEventPlayer Superclass;
22 
23 public:
24  pqPluginTreeWidgetEventPlayer(QObject* parent = nullptr);
26 
27  using Superclass::playEvent;
28  bool playEvent(
29  QObject* object, const QString& command, const QString& arguments, bool& error) override;
30 
31 private:
32  Q_DISABLE_COPY(pqPluginTreeWidgetEventPlayer)
33 };
34 
35 #endif // !pqPluginTreeWidgetEventPlayer_h
Concrete implementation of pqWidgetEventPlayer that translates high-level ParaView events into low-le...
#define PQCOMPONENTS_EXPORT