pqItemViewSearchWidgetEventPlayer.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 pqItemViewSearchWidgetEventPlayer_h
6 #define pqItemViewSearchWidgetEventPlayer_h
7 
8 #include "pqComponentsModule.h" // needed for EXPORT macro.
9 #include "pqWidgetEventPlayer.h"
10 
14 class PQCOMPONENTS_EXPORT pqItemViewSearchWidgetEventPlayer : public pqWidgetEventPlayer
15 {
16  Q_OBJECT
17  typedef pqWidgetEventPlayer Superclass;
18 
19 public:
20  pqItemViewSearchWidgetEventPlayer(QObject* parent = nullptr);
22 
23  using Superclass::playEvent;
24  bool playEvent(
25  QObject* object, const QString& command, const QString& arguments, bool& error) override;
26 
27  static const QString& EVENT_NAME();
28 
29 private:
30  Q_DISABLE_COPY(pqItemViewSearchWidgetEventPlayer)
31 };
32 
33 #endif
#define PQCOMPONENTS_EXPORT
pqItemViewSearchWidgetEventPlayer is the player for pqItemViewSearchWidget.