pqStreamingTestingEventPlayer.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 pqStreamingTestingEventPlayer_h
5 #define pqStreamingTestingEventPlayer_h
6 
8 #include "pqWidgetEventPlayer.h"
9 #include <QPointer>
10 
20 {
21  Q_OBJECT
22  typedef pqWidgetEventPlayer Superclass;
23 
24 public:
26  : Superclass(p)
27  {
28  }
29  using Superclass::playEvent;
30  bool playEvent(QObject*, const QString& command, const QString& arguments, bool& error) override;
31 
32  void setViewStreamingBehavior(pqViewStreamingBehavior*);
33  pqViewStreamingBehavior* viewStreamingBehavior();
34 
35 protected:
36  QPointer<pqViewStreamingBehavior> StreamingBehavior;
37 };
38 
39 #endif
#define PQAPPLICATIONCOMPONENTS_EXPORT
Concrete implementation of pqWidgetEventPlayer that handles playback of recorded pqViewStreamingBehav...
pqViewStreamingBehavior is used to manage rendering of render-view when streaming is enabled...
QPointer< pqViewStreamingBehavior > StreamingBehavior