summaryrefslogtreecommitdiffstats
path: root/examples/widgets/effects/blurpicker/blurpicker.h
blob: 6e4ac84e560b32a07f81305ed4420b99d11339d6 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef BLURPICKER_H
#define BLURPICKER_H

#include <QGraphicsEffect>
#include <QGraphicsView>
#include <QPropertyAnimation>

#include "blureffect.h"

class BlurPicker: public QGraphicsView
{
    Q_OBJECT
    Q_PROPERTY(qreal index READ index WRITE setIndex)

public:
    BlurPicker(QWidget *parent = nullptr);

    qreal index() const;
    void setIndex(qreal);

protected:
    void keyPressEvent(QKeyEvent *event) override;
    void resizeEvent(QResizeEvent *event) override;
    void mousePressEvent(QMouseEvent *event) override;

private:
    void setupScene();

private:
    qreal m_index;
    QList<QGraphicsItem*> m_icons;
    QPropertyAnimation m_animation;
};

#endif // BLURPICKER_H