2019-01-05 14:08:02 +03: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
|
|
|
|
|
2021-02-01 17:51:01 +04:00
|
|
|
#include "ui/layers/generic_box.h"
|
|
|
|
#include "base/required.h"
|
2019-01-05 14:08:02 +03:00
|
|
|
|
2020-11-29 21:26:49 +03:00
|
|
|
namespace style {
|
|
|
|
struct Checkbox;
|
2021-02-01 17:51:01 +04:00
|
|
|
struct Radio;
|
2020-11-29 21:26:49 +03:00
|
|
|
} // namespace style
|
|
|
|
|
2021-02-01 17:51:01 +04:00
|
|
|
struct SingleChoiceBoxArgs {
|
|
|
|
template <typename T>
|
|
|
|
using required = base::required<T>;
|
2019-01-05 14:08:02 +03:00
|
|
|
|
2021-02-01 17:51:01 +04:00
|
|
|
required<rpl::producer<QString>> title;
|
|
|
|
const std::vector<QString> &options;
|
|
|
|
int initialSelection = 0;
|
2021-11-11 15:44:12 +04:00
|
|
|
required<Fn<void(int)>> callback;
|
2021-02-01 17:51:01 +04:00
|
|
|
const style::Checkbox *st = nullptr;
|
|
|
|
const style::Radio *radioSt = nullptr;
|
2019-01-05 14:08:02 +03:00
|
|
|
};
|
|
|
|
|
2021-02-01 17:51:01 +04:00
|
|
|
void SingleChoiceBox(
|
|
|
|
not_null<Ui::GenericBox*> box,
|
|
|
|
SingleChoiceBoxArgs &&args);
|