2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-25 20:07:13 +00:00
2023-07-20 07:20:57 +04:00

28 lines
616 B
C++

/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
namespace Ui {
inline constexpr auto kOutlineSegmentsMax = 50;
struct OutlineSegment {
QBrush brush;
float64 width = 0.;
};
void PaintOutlineSegments(
QPainter &p,
QRectF ellipse,
const std::vector<OutlineSegment> &segments,
float64 fromFullProgress = 1.);
[[nodiscard]] QLinearGradient UnreadStoryOutlineGradient(QRectF rect = {});
} // namespace Ui