2019-01-17 01:44:24 +05:30
|
|
|
/* Copyright 2013-2019 MultiMC Contributors
|
2013-11-18 23:35:35 +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 <QDialog>
|
2013-11-19 00:28:03 +05:30
|
|
|
#include <memory>
|
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "pages/BasePage.h"
|
2014-07-16 03:43:40 +05:30
|
|
|
|
2016-02-28 00:28:40 +05:30
|
|
|
#include "minecraft/auth/MojangAccountList.h"
|
2015-05-28 23:08:29 +05:30
|
|
|
#include "MultiMC.h"
|
2013-11-18 23:35:35 +05:30
|
|
|
|
2013-12-01 06:30:42 +05:30
|
|
|
namespace Ui
|
|
|
|
{
|
2014-07-16 03:43:40 +05:30
|
|
|
class AccountListPage;
|
2013-11-18 23:35:35 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
class AuthenticateTask;
|
|
|
|
|
2014-07-21 03:17:46 +05:30
|
|
|
class AccountListPage : public QWidget, public BasePage
|
2013-11-18 23:35:35 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2013-11-18 23:35:35 +05:30
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
explicit AccountListPage(QWidget *parent = 0);
|
|
|
|
~AccountListPage();
|
|
|
|
|
|
|
|
QString displayName() const override
|
|
|
|
{
|
|
|
|
return tr("Accounts");
|
|
|
|
}
|
|
|
|
QIcon icon() const override
|
|
|
|
{
|
|
|
|
auto icon = MMC->getThemedIcon("accounts");
|
|
|
|
if(icon.isNull())
|
|
|
|
{
|
|
|
|
icon = MMC->getThemedIcon("noaccount");
|
|
|
|
}
|
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
QString id() const override
|
|
|
|
{
|
|
|
|
return "accounts";
|
|
|
|
}
|
|
|
|
QString helpPage() const override
|
|
|
|
{
|
|
|
|
return "Getting-Started#adding-an-account";
|
|
|
|
}
|
2013-11-18 23:35:35 +05:30
|
|
|
|
|
|
|
public
|
|
|
|
slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void on_addAccountBtn_clicked();
|
2013-11-18 23:35:35 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void on_rmAccountBtn_clicked();
|
2013-11-18 23:35:35 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void on_setDefaultBtn_clicked();
|
2013-11-28 03:44:18 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void on_noDefaultBtn_clicked();
|
2013-11-23 00:17:39 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void on_uploadSkinBtn_clicked();
|
2016-05-13 02:21:25 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void listChanged();
|
2013-11-29 09:10:40 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
//! Updates the states of the dialog's buttons.
|
|
|
|
void updateButtonStates();
|
2013-11-28 03:44:18 +05:30
|
|
|
|
2013-11-18 23:35:35 +05:30
|
|
|
protected:
|
2018-07-15 18:21:05 +05:30
|
|
|
std::shared_ptr<MojangAccountList> m_accounts;
|
2013-11-18 23:35:35 +05:30
|
|
|
|
|
|
|
protected
|
|
|
|
slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void addAccount(const QString& errMsg="");
|
2013-11-18 23:35:35 +05:30
|
|
|
|
|
|
|
private:
|
2018-07-15 18:21:05 +05:30
|
|
|
Ui::AccountListPage *ui;
|
2013-11-18 23:35:35 +05:30
|
|
|
};
|