mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-27 12:47:16 +00:00
57 lines
1.3 KiB
C
57 lines
1.3 KiB
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
|
||
|
|
||
|
#include "statistics/statistics_common.h"
|
||
|
#include "statistics/view/abstract_chart_view.h"
|
||
|
|
||
|
namespace Data {
|
||
|
struct StatisticalChart;
|
||
|
} // namespace Data
|
||
|
|
||
|
namespace Statistic {
|
||
|
|
||
|
struct Limits;
|
||
|
|
||
|
class StackChartView final : public AbstractChartView {
|
||
|
public:
|
||
|
StackChartView();
|
||
|
~StackChartView() override final;
|
||
|
|
||
|
void paint(
|
||
|
QPainter &p,
|
||
|
const Data::StatisticalChart &chartData,
|
||
|
const Limits &xIndices,
|
||
|
const Limits &xPercentageLimits,
|
||
|
const Limits &heightLimits,
|
||
|
const QRect &rect,
|
||
|
bool footer) override;
|
||
|
|
||
|
void paintSelectedXIndex(
|
||
|
QPainter &p,
|
||
|
const Data::StatisticalChart &chartData,
|
||
|
const Limits &xPercentageLimits,
|
||
|
const Limits &heightLimits,
|
||
|
const QRect &rect,
|
||
|
int selectedXIndex) override;
|
||
|
|
||
|
void setEnabled(int id, bool enabled, crl::time now) override;
|
||
|
[[nodiscard]] bool isEnabled(int id) const override;
|
||
|
[[nodiscard]] bool isFinished() const override;
|
||
|
[[nodiscard]] float64 alpha(int id) const override;
|
||
|
|
||
|
[[nodiscard]] HeightLimits heightLimits(
|
||
|
Data::StatisticalChart &chartData,
|
||
|
Limits xIndices) override;
|
||
|
|
||
|
void tick(crl::time now) override;
|
||
|
|
||
|
};
|
||
|
|
||
|
} // namespace Statistic
|