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
|