tdesktop/Telegram/SourceFiles/boxes/single_choice_box.h

39 lines
732 B
C
Raw Normal View History

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
#include "boxes/abstract_box.h"
#include <vector>
enum LangKey : int;
namespace Ui {
class Radiobutton;
} // namespace Ui
class SingleChoiceBox : public BoxContent {
public:
2019-01-11 10:07:56 +00:00
SingleChoiceBox(
QWidget*,
LangKey title,
const std::vector<QString> &optionTexts,
int initialSelection,
Fn<void(int)> callback);
2019-01-05 11:08:02 +00:00
protected:
void prepare() override;
private:
LangKey _title;
std::vector<QString> _optionTexts;
int _initialSelection = 0;
Fn<void(int)> _callback;
};