-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpqBasicWidgetEventTranslator.h
More file actions
38 lines (28 loc) · 1.03 KB
/
pqBasicWidgetEventTranslator.h
File metadata and controls
38 lines (28 loc) · 1.03 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
38
// SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
// SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
// SPDX-License-Identifier: BSD-3-Clause
#ifndef _pqBasicWidgetEventTranslator_h
#define _pqBasicWidgetEventTranslator_h
#include "pqWidgetEventTranslator.h"
#include <QPointer>
#include <QWidget>
/**
Translates low-level Qt events into high-level ParaView events that can be recorded as test cases.
\sa pqEventTranslator
*/
class QTTESTING_EXPORT pqBasicWidgetEventTranslator : public pqWidgetEventTranslator
{
Q_OBJECT
typedef pqWidgetEventTranslator Superclass;
public:
pqBasicWidgetEventTranslator(QObject* p = 0);
~pqBasicWidgetEventTranslator() override;
using Superclass::translateEvent;
bool translateEvent(QObject* object, QEvent* event, int eventType, bool& error) override;
protected:
QPoint LastPos;
private:
pqBasicWidgetEventTranslator(const pqBasicWidgetEventTranslator&);
pqBasicWidgetEventTranslator& operator=(const pqBasicWidgetEventTranslator&);
};
#endif // !_pqBasicWidgetEventTranslator_h