summaryrefslogtreecommitdiff
path: root/src/plugins/qmldesigner/components/curveeditor/curveeditortoolbar.h
blob: bb368364e66d523eeceef7c8eb7614a94d964ad9 (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
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include <QSpinBox>
#include <QSlider>
#include <QToolBar>
#include <QValidator>
#include <QWidget>

#include "keyframe.h"

namespace QmlDesigner {

class CurveEditorModel;

class ValidatableSpinBox : public QSpinBox
{
    Q_OBJECT
public:
    ValidatableSpinBox(std::function<bool(int)> validator, QWidget* parent=nullptr);
protected:
    QValidator::State validate(QString &text, int &pos) const override;
private:
    std::function<bool(int)> m_validator;
};


class CurveEditorToolBar : public QToolBar
{
    Q_OBJECT

signals:
    void unifyClicked();

    void interpolationClicked(Keyframe::Interpolation interpol);

    void startFrameChanged(int start);

    void endFrameChanged(int end);

    void currentFrameChanged(int current);

    void zoomChanged(double zoom);

public:
    CurveEditorToolBar(CurveEditorModel *model, QWidget* parent = nullptr);

    void setZoom(double zoom);

    void setCurrentFrame(int current, bool notify);

    void updateBoundsSilent(int start, int end);

private:
    ValidatableSpinBox *m_startSpin;
    ValidatableSpinBox *m_endSpin;
    QSpinBox *m_currentSpin;
    QSlider *m_zoomSlider;
};

} // End namespace QmlDesigner.