tdesktop/Telegram/SourceFiles/boxes/language_box.h

43 lines
874 B
C
Raw Normal View History

/*
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 "lang/lang_cloud_manager.h"
2017-04-06 14:38:10 +00:00
#include "boxes/abstract_box.h"
2018-09-05 21:01:50 +00:00
#include "base/binary_guard.h"
namespace Ui {
class MultiSelect;
struct ScrollToRequest;
} // namespace Ui
2019-09-18 11:19:05 +00:00
class LanguageBox : public Ui::BoxContent {
public:
LanguageBox(QWidget*) {
}
void setInnerFocus() override;
2018-09-05 21:01:50 +00:00
static base::binary_guard Show();
protected:
void prepare() override;
void keyPressEvent(QKeyEvent *e) override;
private:
using Languages = Lang::CloudManager::Languages;
not_null<Ui::MultiSelect*> createMultiSelect();
int rowsInPage() const;
Fn<void()> _setInnerFocus;
Fn<Ui::ScrollToRequest(int rows)> _jump;
};