2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2014-04-16 19:49:12 +05:30
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QtWidgets/QDialog>
|
|
|
|
#include <QtCore/QEventLoop>
|
|
|
|
|
2021-07-27 01:14:11 +05:30
|
|
|
#include "minecraft/auth/MinecraftAccount.h"
|
2021-11-22 04:06:55 +05:30
|
|
|
#include "tasks/Task.h"
|
2014-04-16 19:49:12 +05:30
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class LoginDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class LoginDialog : public QDialog
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2014-04-16 19:49:12 +05:30
|
|
|
|
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
~LoginDialog();
|
2014-04-16 19:49:12 +05:30
|
|
|
|
2021-07-27 01:14:11 +05:30
|
|
|
static MinecraftAccountPtr newAccount(QWidget *parent, QString message);
|
2014-04-16 19:49:12 +05:30
|
|
|
|
|
|
|
private:
|
2018-07-15 18:21:05 +05:30
|
|
|
explicit LoginDialog(QWidget *parent = 0);
|
2014-04-16 19:49:12 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void setUserInputsEnabled(bool enable);
|
2014-04-16 19:49:12 +05:30
|
|
|
|
|
|
|
protected
|
|
|
|
slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void accept();
|
2014-04-16 19:49:12 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void onTaskFailed(const QString &reason);
|
|
|
|
void onTaskSucceeded();
|
|
|
|
void onTaskStatus(const QString &status);
|
|
|
|
void onTaskProgress(qint64 current, qint64 total);
|
2014-04-16 19:49:12 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void on_userTextBox_textEdited(const QString &newText);
|
|
|
|
void on_passTextBox_textEdited(const QString &newText);
|
2014-04-16 19:49:12 +05:30
|
|
|
|
|
|
|
private:
|
2018-07-15 18:21:05 +05:30
|
|
|
Ui::LoginDialog *ui;
|
2021-07-27 01:14:11 +05:30
|
|
|
MinecraftAccountPtr m_account;
|
2021-11-22 04:06:55 +05:30
|
|
|
Task::Ptr m_loginTask;
|
2014-04-16 19:49:12 +05:30
|
|
|
};
|