Files
tdesktop/Telegram/SourceFiles/ui/boxes/confirm_phone_box.h
allhaileris afb81b8278
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
init
2026-02-16 15:50:16 +03:00

72 lines
1.7 KiB
C++

/*
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 "ui/layers/box_content.h"
#include "ui/widgets/sent_code_field.h"
namespace Ui {
class FlatLabel;
class RoundButton;
class ConfirmPhoneBox final : public Ui::BoxContent {
public:
ConfirmPhoneBox(
QWidget*,
const QString &phone,
int codeLength,
const QString &openUrl,
std::optional<int> timeout);
[[nodiscard]] rpl::producer<QString> checkRequests() const;
[[nodiscard]] rpl::producer<> resendRequests() const;
void callDone();
void showServerError(const QString &text);
protected:
void prepare() override;
void setInnerFocus() override;
void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override;
private:
void sendCode();
void sendCall();
void checkPhoneAndHash();
[[nodiscard]] int fragmentSkip() const;
QString getPhone() const;
void showError(const QString &error);
// _hash from the link for account.sendConfirmPhoneCode call.
// _phoneHash from auth.sentCode for account.confirmPhone call.
const QString _phone;
// If we receive the code length, we autosubmit _code field when enough symbols is typed.
const int _sentCodeLength = 0;
bool _isWaitingCheck = false;
object_ptr<Ui::FlatLabel> _about = { nullptr };
object_ptr<Ui::SentCodeField> _code = { nullptr };
object_ptr<Ui::RoundButton> _fragment = { nullptr };
QString _error;
Ui::SentCodeCall _call;
rpl::event_stream<QString> _checkRequests;
rpl::event_stream<> _resendRequests;
};
} // namespace Ui