mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
40 lines
802 B
C
40 lines
802 B
C
|
// Copyright (C) 2016 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||
|
|
||
|
#ifndef STAREDITOR_H
|
||
|
#define STAREDITOR_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
#include "starrating.h"
|
||
|
|
||
|
//! [0]
|
||
|
class StarEditor : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
StarEditor(QWidget *parent = nullptr);
|
||
|
|
||
|
QSize sizeHint() const override;
|
||
|
void setStarRating(const StarRating &starRating) {
|
||
|
myStarRating = starRating;
|
||
|
}
|
||
|
StarRating starRating() { return myStarRating; }
|
||
|
|
||
|
signals:
|
||
|
void editingFinished();
|
||
|
|
||
|
protected:
|
||
|
void paintEvent(QPaintEvent *event) override;
|
||
|
void mouseMoveEvent(QMouseEvent *event) override;
|
||
|
void mouseReleaseEvent(QMouseEvent *event) override;
|
||
|
|
||
|
private:
|
||
|
int starAtPosition(int x) const;
|
||
|
|
||
|
StarRating myStarRating;
|
||
|
};
|
||
|
//! [0]
|
||
|
|
||
|
#endif
|