aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/edit3d/cameraspeedconfiguration.h
blob: fef06efc49951d72614335d2cf8a43031d41b710 (plain)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#pragma once

#include <auxiliarydata.h>

#include <QObject>
#include <QPoint>
#include <QPointer>

QT_BEGIN_NAMESPACE
class QQuickView;
QT_END_NAMESPACE

namespace QmlDesigner {

class Edit3DView;

inline constexpr AuxiliaryDataKeyView edit3dCameraSpeedDocProperty{AuxiliaryDataType::Document,
                                                                   "cameraSpeed3d"};
inline constexpr AuxiliaryDataKeyView edit3dCameraSpeedMultiplierDocProperty{AuxiliaryDataType::Document,
                                                                             "cameraSpeed3dMultiplier"};
inline constexpr AuxiliaryDataKeyView edit3dCameraTotalSpeedProperty{AuxiliaryDataType::NodeInstanceAuxiliary,
                                                                     "cameraTotalSpeed3d"};

class CameraSpeedConfiguration : public QObject
{
    Q_OBJECT
    Q_PROPERTY(double speed READ speed WRITE setSpeed NOTIFY speedChanged)
    Q_PROPERTY(double multiplier READ multiplier WRITE setMultiplier NOTIFY multiplierChanged)
    Q_PROPERTY(double totalSpeed READ totalSpeed NOTIFY totalSpeedChanged)

public:
    CameraSpeedConfiguration(Edit3DView *view);
    ~CameraSpeedConfiguration();

    Q_INVOKABLE void resetDefaults();
    Q_INVOKABLE void hideCursor();
    Q_INVOKABLE void restoreCursor();
    Q_INVOKABLE void holdCursorInPlace();
    Q_INVOKABLE int devicePixelRatio();

    void cancel();
    void apply();

    void showConfigDialog(const QPoint &pos);

    void setSpeed(double value);
    double speed() const { return m_speed; }
    void setMultiplier(double value);
    double multiplier() const { return m_multiplier; }
    double totalSpeed() const { return m_speed * m_multiplier; }

    constexpr static double defaultSpeed = 25.;
    constexpr static double defaultMultiplier = 1.;

signals:
    void speedChanged();
    void multiplierChanged();
    void totalSpeedChanged();

protected:
    bool eventFilter(QObject *obj, QEvent *event) override;

private:
    void asyncClose();

    QPointer<QQuickView> m_configDialog;
    QPointer<Edit3DView> m_view;
    double m_speed = 0.;
    double m_multiplier = 0.;
    bool m_changes = false;
    QPoint m_lastPos;
    bool m_cursorHidden = false;
};

} // namespace QmlDesigner