-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpqSpinBoxEventTranslator.h
More file actions
38 lines (27 loc) · 1000 Bytes
/
pqSpinBoxEventTranslator.h
File metadata and controls
38 lines (27 loc) · 1000 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
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 _pqSpinBoxEventTranslator_h
#define _pqSpinBoxEventTranslator_h
#include "pqWidgetEventTranslator.h"
/**
Translates low-level Qt events into high-level ParaView events that can be recorded as test cases.
\sa pqEventTranslator
*/
class QTTESTING_EXPORT pqSpinBoxEventTranslator : public pqWidgetEventTranslator
{
Q_OBJECT
typedef pqWidgetEventTranslator Superclass;
public:
pqSpinBoxEventTranslator(QObject* p = 0);
using Superclass::translateEvent;
bool translateEvent(QObject* Object, QEvent* Event, bool& Error) override;
private:
pqSpinBoxEventTranslator(const pqSpinBoxEventTranslator&);
pqSpinBoxEventTranslator& operator=(const pqSpinBoxEventTranslator&);
QObject* CurrentObject;
private Q_SLOTS:
void onDestroyed(QObject*);
void onValueChanged(int number);
};
#endif // !_pqSpinBoxEventTranslator_h