mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-05-04 15:03:59 +02:00
27 lines
617 B
C++
27 lines
617 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 Data {
|
|
struct StatisticalChart;
|
|
} // namespace Data
|
|
|
|
namespace Statistic {
|
|
|
|
struct Limits;
|
|
|
|
void PaintLinearChartView(
|
|
QPainter &p,
|
|
const Data::StatisticalChart &chartData,
|
|
const Limits &xPercentageLimitsWas,
|
|
const Limits &xPercentageLimitsNow,
|
|
const Limits &xPercentageLimitsNowY,
|
|
float64 progress,
|
|
const QRect &rect);
|
|
|
|
} // namespace Statistic
|