1 | // Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB). |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #ifndef QT3DINPUT_INPUT_HANDLE_TYPES_P_H |
5 | #define QT3DINPUT_INPUT_HANDLE_TYPES_P_H |
6 | |
7 | // |
8 | // W A R N I N G |
9 | // ------------- |
10 | // |
11 | // This file is not part of the Qt API. It exists for the convenience |
12 | // of other Qt classes. This header file may change from version to |
13 | // version without notice, or even be removed. |
14 | // |
15 | // We mean it. |
16 | // |
17 | |
18 | #include <Qt3DCore/private/qhandle_p.h> |
19 | |
20 | QT_BEGIN_NAMESPACE |
21 | |
22 | namespace Qt3DInput { |
23 | namespace Input { |
24 | |
25 | class KeyboardDevice; |
26 | class KeyboardHandler; |
27 | class MouseHandler; |
28 | class MouseDevice; |
29 | class Axis; |
30 | class AxisActionHandler; |
31 | class AbstractAxisInput; |
32 | class AxisSetting; |
33 | class Action; |
34 | class ActionInput; |
35 | class InputSequence; |
36 | class InputChord; |
37 | class LogicalDevice; |
38 | class GenericDeviceBackendNode; |
39 | class PhysicalDeviceProxy; |
40 | class AxisAccumulator; |
41 | |
42 | typedef Qt3DCore::QHandle<KeyboardDevice> HKeyboardDevice; |
43 | typedef Qt3DCore::QHandle<KeyboardHandler> HKeyboardHandler; |
44 | typedef Qt3DCore::QHandle<MouseHandler> HMouseHandler; |
45 | typedef Qt3DCore::QHandle<MouseDevice> HMouseDevice; |
46 | typedef Qt3DCore::QHandle<Axis> HAxis; |
47 | typedef Qt3DCore::QHandle<AxisActionHandler> HAxisActionHandler; |
48 | typedef Qt3DCore::QHandle<AxisSetting> HAxisSetting; |
49 | typedef Qt3DCore::QHandle<Action> HAction; |
50 | typedef Qt3DCore::QHandle<AbstractAxisInput> HAxisInput; |
51 | typedef Qt3DCore::QHandle<ActionInput> HActionInput; |
52 | typedef Qt3DCore::QHandle<InputSequence> HInputSequence; |
53 | typedef Qt3DCore::QHandle<InputChord> HInputChord; |
54 | typedef Qt3DCore::QHandle<LogicalDevice> HLogicalDevice; |
55 | typedef Qt3DCore::QHandle<GenericDeviceBackendNode> HGenericDeviceBackendNode; |
56 | typedef Qt3DCore::QHandle<PhysicalDeviceProxy> HPhysicalDeviceProxy; |
57 | typedef Qt3DCore::QHandle<AxisAccumulator> HAxisAccumulator; |
58 | |
59 | } // namespace Input |
60 | } // namespace Qt3DInput |
61 | |
62 | QT_END_NAMESPACE |
63 | |
64 | #endif // QT3DINPUT_INPUT_HANDLE_TYPES_P_H |
65 | |