-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpq3DViewEventTranslator.h
More file actions
37 lines (28 loc) · 1.01 KB
/
pq3DViewEventTranslator.h
File metadata and controls
37 lines (28 loc) · 1.01 KB
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
// SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
// SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
// SPDX-License-Identifier: BSD-3-Clause
#ifndef _pq3DViewEventTranslator_h
#define _pq3DViewEventTranslator_h
#include "pqWidgetEventTranslator.h"
#include <QMouseEvent>
/**
Translates low-level Qt events into high-level ParaView events that can be recorded as test cases.
\sa pqEventTranslator
*/
class QTTESTING_EXPORT pq3DViewEventTranslator : public pqWidgetEventTranslator
{
Q_OBJECT
typedef pqWidgetEventTranslator Superclass;
public:
pq3DViewEventTranslator(const QByteArray& classname, QObject* p = 0);
~pq3DViewEventTranslator() override;
using Superclass::translateEvent;
bool translateEvent(QObject* Object, QEvent* Event, bool& Error) override;
protected:
QByteArray mClassType;
QMouseEvent lastMoveEvent;
private:
pq3DViewEventTranslator(const pq3DViewEventTranslator&);
pq3DViewEventTranslator& operator=(const pq3DViewEventTranslator&);
};
#endif // !_pq3DViewEventTranslator_h