2014-05-30 08:53:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 10:47:38 +00:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
2015-10-03 13:16:42 +00:00
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2017-01-11 18:31:31 +00:00
|
|
|
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2016-04-07 18:05:28 +00:00
|
|
|
#include "ui/countryinput.h"
|
2016-03-14 16:59:18 +00:00
|
|
|
#include "intro/introwidget.h"
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-11-04 19:50:35 +00:00
|
|
|
namespace Ui {
|
2016-11-15 11:56:49 +00:00
|
|
|
class PhonePartInput;
|
|
|
|
class CountryCodeInput;
|
2016-11-04 19:50:35 +00:00
|
|
|
class RoundButton;
|
2016-11-16 10:44:06 +00:00
|
|
|
class FlatLabel;
|
2016-11-04 19:50:35 +00:00
|
|
|
} // namespace Ui
|
|
|
|
|
2016-11-24 19:28:23 +00:00
|
|
|
namespace Intro {
|
|
|
|
|
2017-02-18 11:29:19 +00:00
|
|
|
class PhoneWidget : public Widget::Step {
|
2014-05-30 08:53:19 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-11-24 19:28:23 +00:00
|
|
|
PhoneWidget(QWidget *parent, Widget::Data *data);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
void selectCountry(const QString &country);
|
|
|
|
|
2016-11-24 19:28:23 +00:00
|
|
|
void setInnerFocus() override;
|
2016-03-14 16:59:18 +00:00
|
|
|
void activate() override;
|
|
|
|
void finished() override;
|
|
|
|
void cancelled() override;
|
2016-11-24 19:28:23 +00:00
|
|
|
void submit() override;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-11-24 19:28:23 +00:00
|
|
|
bool hasBack() const override {
|
|
|
|
return true;
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-11-24 19:28:23 +00:00
|
|
|
protected:
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
|
|
|
|
private slots:
|
2014-05-30 08:53:19 +00:00
|
|
|
void onInputChange();
|
|
|
|
void onCheckRequest();
|
|
|
|
|
|
|
|
private:
|
2016-11-24 19:28:23 +00:00
|
|
|
void updateSignupGeometry();
|
|
|
|
void countryChanged();
|
|
|
|
|
|
|
|
void phoneCheckDone(const MTPauth_CheckedPhone &result);
|
|
|
|
void phoneSubmitDone(const MTPauth_SentCode &result);
|
|
|
|
bool phoneSubmitFail(const RPCError &error);
|
|
|
|
|
2016-11-16 10:44:06 +00:00
|
|
|
void toSignUp();
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
QString fullNumber() const;
|
|
|
|
void stopCheck();
|
|
|
|
|
2017-05-30 13:54:05 +00:00
|
|
|
void showPhoneError(base::lambda<QString()> textFactory);
|
2016-11-24 19:28:23 +00:00
|
|
|
void hidePhoneError();
|
|
|
|
void showSignup();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-11-04 19:50:35 +00:00
|
|
|
bool _changed = false;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
object_ptr<CountryInput> _country;
|
|
|
|
object_ptr<Ui::CountryCodeInput> _code;
|
|
|
|
object_ptr<Ui::PhonePartInput> _phone;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
object_ptr<Ui::WidgetFadeWrap<Ui::FlatLabel>> _signup = { nullptr };
|
2016-11-04 19:50:35 +00:00
|
|
|
|
|
|
|
QString _sentPhone;
|
|
|
|
mtpRequestId _sentRequest = 0;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
object_ptr<QTimer> _checkRequest;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
};
|
2016-11-24 19:28:23 +00:00
|
|
|
|
|
|
|
} // namespace Intro
|