mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-05-11 02:13:56 +02:00
30 lines
714 B
C++
30 lines
714 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;
|
|
struct DetailsPaintContext;
|
|
struct ChartLineViewContext;
|
|
|
|
void PaintLinearChartView(
|
|
QPainter &p,
|
|
const Data::StatisticalChart &chartData,
|
|
const Limits &xIndices,
|
|
const Limits &xPercentageLimits,
|
|
const Limits &heightLimits,
|
|
const QRect &rect,
|
|
ChartLineViewContext &lineViewContext,
|
|
DetailsPaintContext &detailsPaintContext);
|
|
|
|
} // namespace Statistic
|