-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpqPlayBackEventsDialog.h
62 lines (49 loc) · 1.65 KB
/
pqPlayBackEventsDialog.h
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
// SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
// SPDX-License-Identifier: BSD-3-Clause
#ifndef _pqPlayBackEventsDialog_h
#define _pqPlayBackEventsDialog_h
#include "QtTestingExport.h"
#include <QDialog>
class pqEventPlayer;
class pqEventDispatcher;
class pqTestUtility;
/// Provides a standard dialog that will PlayBack user input to an XML file as long as the dialog
/// remains open
class QTTESTING_EXPORT pqPlayBackEventsDialog : public QDialog
{
Q_OBJECT
typedef QDialog Superclass;
public:
/**
Creates the dialog and begins translating user input with the supplied translator.
*/
pqPlayBackEventsDialog(
pqEventPlayer& Player, pqEventDispatcher& Source, pqTestUtility* TestUtility, QWidget* Parent);
~pqPlayBackEventsDialog() override;
private Q_SLOTS:
void onEventAboutToBePlayed(const QString&, const QString&, const QString&);
void loadFiles();
void insertFiles();
void removeFiles();
void onPlayOrPause(bool);
void onOneStep();
void onStarted();
void onStarted(const QString&);
void onStopped();
void onModal(bool value);
public Q_SLOTS:
void done(int) override;
void updateUi();
protected:
void moveEvent(QMoveEvent* event) override;
private:
void loadFiles(const QStringList& filenames);
void addFile(const QString& filename);
QStringList selectedFileNames() const;
pqPlayBackEventsDialog(const pqPlayBackEventsDialog&); // Not Implemented
pqPlayBackEventsDialog& operator=(const pqPlayBackEventsDialog&); // Not Implemented
struct pqImplementation;
pqImplementation* const Implementation;
};
#endif // !_pqPlayBackEventsDialog_h