2016-11-21 17:46:29 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-11-21 17:46:29 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-11-21 17:46:29 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "styles/style_widgets.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
|
|
|
class CrossAnimation {
|
|
|
|
public:
|
2018-09-20 16:39:59 +00:00
|
|
|
static void paint(
|
|
|
|
Painter &p,
|
|
|
|
const style::CrossAnimation &st,
|
|
|
|
style::color color,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int outerWidth,
|
|
|
|
float64 shown,
|
|
|
|
float64 loading = 0.);
|
|
|
|
static void paintStaticLoading(
|
|
|
|
Painter &p,
|
|
|
|
const style::CrossAnimation &st,
|
|
|
|
style::color color,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int outerWidth,
|
|
|
|
float64 shown);
|
2016-11-21 17:46:29 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Ui
|