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