2023-08-27 21:16:48 +00:00
|
|
|
/*
|
|
|
|
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;
|
|
|
|
|
|
|
|
class AbstractChartView {
|
|
|
|
public:
|
|
|
|
virtual ~AbstractChartView() = default;
|
|
|
|
|
|
|
|
virtual void paint(
|
|
|
|
QPainter &p,
|
|
|
|
const Data::StatisticalChart &chartData,
|
|
|
|
const Limits &xIndices,
|
|
|
|
const Limits &xPercentageLimits,
|
|
|
|
const Limits &heightLimits,
|
|
|
|
const QRect &rect,
|
|
|
|
bool footer) = 0;
|
|
|
|
|
|
|
|
virtual void paintSelectedXIndex(
|
|
|
|
QPainter &p,
|
|
|
|
const Data::StatisticalChart &chartData,
|
|
|
|
const Limits &xPercentageLimits,
|
|
|
|
const Limits &heightLimits,
|
|
|
|
const QRect &rect,
|
2023-09-05 14:03:08 +00:00
|
|
|
int selectedXIndex,
|
|
|
|
float64 progress) = 0;
|
2023-08-27 21:16:48 +00:00
|
|
|
|
2023-09-05 17:04:37 +00:00
|
|
|
[[nodiscard]] virtual int findXIndexByPosition(
|
|
|
|
const Data::StatisticalChart &chartData,
|
|
|
|
const Limits &xPercentageLimits,
|
|
|
|
const QRect &rect,
|
|
|
|
float64 x) = 0;
|
|
|
|
|
2023-08-27 21:16:48 +00:00
|
|
|
virtual void setEnabled(int id, bool enabled, crl::time now) = 0;
|
|
|
|
[[nodiscard]] virtual bool isEnabled(int id) const = 0;
|
|
|
|
[[nodiscard]] virtual bool isFinished() const = 0;
|
|
|
|
[[nodiscard]] virtual float64 alpha(int id) const = 0;
|
|
|
|
|
2023-08-27 21:39:17 +00:00
|
|
|
struct HeightLimits final {
|
|
|
|
Limits full;
|
|
|
|
Limits ranged;
|
|
|
|
};
|
|
|
|
|
|
|
|
[[nodiscard]] virtual HeightLimits heightLimits(
|
|
|
|
Data::StatisticalChart &chartData,
|
|
|
|
Limits xIndices) = 0;
|
|
|
|
|
2023-08-27 21:16:48 +00:00
|
|
|
virtual void tick(crl::time now) = 0;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Statistic
|