2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#ifndef BUBBLE_H
|
|
|
|
#define BUBBLE_H
|
|
|
|
|
|
|
|
#include <QBrush>
|
|
|
|
#include <QColor>
|
|
|
|
#include <QPointF>
|
|
|
|
#include <QRect>
|
|
|
|
#include <QRectF>
|
|
|
|
|
2012-12-19 13:19:18 +00:00
|
|
|
QT_FORWARD_DECLARE_CLASS(QPainter)
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
class Bubble
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Bubble(const QPointF &position, qreal radius, const QPointF &velocity);
|
|
|
|
~Bubble();
|
|
|
|
|
|
|
|
void drawBubble(QPainter *painter);
|
|
|
|
void updateBrush();
|
|
|
|
void move(const QRect &bbox);
|
|
|
|
void updateCache();
|
|
|
|
QRectF rect();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QColor randomColor();
|
|
|
|
|
|
|
|
QBrush brush;
|
|
|
|
QPointF position;
|
|
|
|
QPointF vel;
|
|
|
|
qreal radius;
|
|
|
|
QColor innerColor;
|
|
|
|
QColor outerColor;
|
2019-09-13 18:43:09 +00:00
|
|
|
QImage *cache = nullptr;
|
2011-04-27 10:05:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|