2015-01-20 02:04:19 +08:00
|
|
|
/*
|
|
|
|
Copyright (C) 2015 by Project Tox <https://tox.im>
|
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
This program is libre software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the COPYING file for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "notificationicon.h"
|
|
|
|
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QTimer>
|
|
|
|
|
|
|
|
NotificationIcon::NotificationIcon(QSizeF Size)
|
|
|
|
: size(Size)
|
|
|
|
{
|
2015-01-26 18:09:21 +08:00
|
|
|
icon.addFile(":/ui/chatArea/typing.svg");
|
2015-01-20 02:04:19 +08:00
|
|
|
|
|
|
|
updateTimer = new QTimer(this);
|
|
|
|
updateTimer->setInterval(1000/60);
|
|
|
|
updateTimer->setSingleShot(false);
|
|
|
|
|
|
|
|
updateTimer->start();
|
|
|
|
|
|
|
|
connect(updateTimer, &QTimer::timeout, this, &NotificationIcon::updateGradient);
|
|
|
|
}
|
|
|
|
|
|
|
|
QRectF NotificationIcon::boundingRect() const
|
|
|
|
{
|
|
|
|
return QRectF(QPointF(-size.width() / 2.0, -size.height() / 2.0), size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NotificationIcon::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
|
|
{
|
|
|
|
painter->setRenderHint(QPainter::SmoothPixmapTransform);
|
|
|
|
painter->translate(-size.width() / 2.0, -size.height() / 2.0);
|
|
|
|
|
|
|
|
painter->fillRect(QRect(0, 0, size.width(), size.height()), grad);
|
2015-01-26 18:09:21 +08:00
|
|
|
painter->drawPixmap(0, 0, size.width(), size.height(), icon.pixmap(size.toSize() * painter->device()->devicePixelRatio()));
|
2015-01-20 02:04:19 +08:00
|
|
|
|
|
|
|
Q_UNUSED(option)
|
|
|
|
Q_UNUSED(widget)
|
|
|
|
}
|
|
|
|
|
|
|
|
void NotificationIcon::setWidth(qreal width)
|
|
|
|
{
|
|
|
|
Q_UNUSED(width)
|
|
|
|
}
|
|
|
|
|
|
|
|
qreal NotificationIcon::getAscent() const
|
|
|
|
{
|
|
|
|
return 3.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NotificationIcon::updateGradient()
|
|
|
|
{
|
|
|
|
alpha += 0.005;
|
|
|
|
|
|
|
|
if(alpha + dotWidth >= 1.0)
|
|
|
|
alpha = 0.0;
|
|
|
|
|
|
|
|
grad = QLinearGradient(QPointF(-0.5*size.width(),0), QPointF(3.0/2.0*size.width(),0));
|
|
|
|
grad.setColorAt(0, Qt::lightGray);
|
|
|
|
grad.setColorAt(qMax(0.0, alpha - dotWidth), Qt::lightGray);
|
|
|
|
grad.setColorAt(alpha, Qt::darkGray);
|
|
|
|
grad.setColorAt(qMin(1.0, alpha + dotWidth), Qt::lightGray);
|
|
|
|
grad.setColorAt(1, Qt::lightGray);
|
|
|
|
|
|
|
|
update();
|
|
|
|
}
|