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
|
|
|
|
*/
|
|
|
|
#include "statistics/view/chart_view_factory.h"
|
|
|
|
|
|
|
|
#include "statistics/statistics_common.h"
|
|
|
|
#include "statistics/view/linear_chart_view.h"
|
2023-08-27 21:44:50 +00:00
|
|
|
#include "statistics/view/stack_chart_view.h"
|
2023-09-12 08:35:09 +00:00
|
|
|
#include "statistics/view/stack_linear_chart_view.h"
|
2023-08-27 21:16:48 +00:00
|
|
|
|
|
|
|
namespace Statistic {
|
|
|
|
|
|
|
|
std::unique_ptr<AbstractChartView> CreateChartView(ChartViewType type) {
|
|
|
|
switch (type) {
|
|
|
|
case ChartViewType::Linear: {
|
2023-09-11 12:22:24 +00:00
|
|
|
return std::make_unique<LinearChartView>(false);
|
2023-08-27 21:16:48 +00:00
|
|
|
} break;
|
2023-08-27 21:44:50 +00:00
|
|
|
case ChartViewType::Stack: {
|
|
|
|
return std::make_unique<StackChartView>();
|
|
|
|
} break;
|
2023-09-11 12:22:24 +00:00
|
|
|
case ChartViewType::DoubleLinear: {
|
|
|
|
return std::make_unique<LinearChartView>(true);
|
|
|
|
} break;
|
2023-09-12 08:35:09 +00:00
|
|
|
case ChartViewType::StackLinear: {
|
|
|
|
return std::make_unique<StackLinearChartView>();
|
|
|
|
} break;
|
2023-08-27 21:16:48 +00:00
|
|
|
default: Unexpected("Type in Statistic::CreateChartView.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Statistic
|