pqFlatTreeViewEventPlayer.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 pqFlatTreeViewEventPlayer_h
6 #define pqFlatTreeViewEventPlayer_h
7 
8 #include "pqCoreModule.h"
9 #include "pqWidgetEventPlayer.h"
10 
18 class PQCORE_EXPORT pqFlatTreeViewEventPlayer : public pqWidgetEventPlayer
19 {
20  Q_OBJECT
21  typedef pqWidgetEventPlayer Superclass;
22 
23 public:
24  pqFlatTreeViewEventPlayer(QObject* p = nullptr);
25 
26  using Superclass::playEvent;
27  bool playEvent(
28  QObject* Object, const QString& Command, const QString& Arguments, bool& Error) override;
29 
30 private:
33 };
34 
35 #endif // !pqFlatTreeViewEventPlayer_h
#define PQCORE_EXPORT
Definition: pqCoreModule.h:15
Concrete implementation of pqWidgetEventPlayer that translates high-level ParaView events into low-le...