-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpqListViewEventPlayer.h
More file actions
29 lines (23 loc) · 973 Bytes
/
pqListViewEventPlayer.h
File metadata and controls
29 lines (23 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
// SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
// SPDX-License-Identifier: BSD-3-Clause
#ifndef __pqListViewEventPlayer_h
#define __pqListViewEventPlayer_h
#include "pqAbstractItemViewEventPlayerBase.h"
/// pqListViewEventPlayer is a player for QTableWidget. Plays back the state
/// recorded using pqListViewEventTranslator.
class QTTESTING_EXPORT pqListViewEventPlayer : public pqAbstractItemViewEventPlayerBase
{
Q_OBJECT
typedef pqAbstractItemViewEventPlayerBase Superclass;
public:
pqListViewEventPlayer(QObject* parent = 0);
~pqListViewEventPlayer() override;
using Superclass::playEvent;
bool playEvent(QObject* object, const QString& command, const QString& arguments, int eventType,
bool& error) override;
private:
pqListViewEventPlayer(const pqListViewEventPlayer&); // Not implemented.
void operator=(const pqListViewEventPlayer&); // Not implemented.
};
#endif