2016-11-15 11:56:49 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
|
|
|
|
|
|
|
Telegram Desktop is free 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.
|
|
|
|
|
|
|
|
It 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
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2017-01-11 18:31:31 +00:00
|
|
|
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
2016-11-15 11:56:49 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "styles/style_widgets.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
|
|
|
class RippleAnimation {
|
|
|
|
public:
|
2017-02-26 11:32:13 +00:00
|
|
|
using UpdateCallback = base::lambda<void()>;
|
2016-11-15 11:56:49 +00:00
|
|
|
|
|
|
|
// White upon transparent mask, like colorizeImage(black-white-mask, white).
|
2016-11-20 12:54:07 +00:00
|
|
|
RippleAnimation(const style::RippleAnimation &st, QImage mask, const UpdateCallback &update);
|
2016-11-15 11:56:49 +00:00
|
|
|
|
|
|
|
void add(QPoint origin, int startRadius = 0);
|
2016-11-16 12:06:02 +00:00
|
|
|
void addFading();
|
|
|
|
void lastStop();
|
|
|
|
void lastUnstop();
|
|
|
|
void lastFinish();
|
2016-11-15 11:56:49 +00:00
|
|
|
|
2016-12-02 19:16:35 +00:00
|
|
|
void paint(QPainter &p, int x, int y, int outerWidth, TimeMs ms, const QColor *colorOverride = nullptr);
|
2016-11-15 11:56:49 +00:00
|
|
|
|
|
|
|
bool empty() const {
|
|
|
|
return _ripples.isEmpty();
|
|
|
|
}
|
|
|
|
|
2017-02-26 11:32:13 +00:00
|
|
|
static QImage maskByDrawer(QSize size, bool filled, base::lambda<void(QPainter &p)> drawer);
|
2016-11-16 16:04:25 +00:00
|
|
|
static QImage rectMask(QSize size);
|
|
|
|
static QImage roundRectMask(QSize size, int radius);
|
|
|
|
static QImage ellipseMask(QSize size);
|
|
|
|
|
2016-11-15 11:56:49 +00:00
|
|
|
~RippleAnimation() {
|
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void clear();
|
|
|
|
void clearFinished();
|
|
|
|
|
|
|
|
const style::RippleAnimation &_st;
|
|
|
|
QPixmap _mask;
|
|
|
|
UpdateCallback _update;
|
|
|
|
|
|
|
|
class Ripple;
|
|
|
|
QList<Ripple*> _ripples;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Ui
|