2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 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
|
|
|
|
|
2019-07-19 11:59:31 +05:30
|
|
|
#include <QMainWindow>
|
2013-11-19 00:28:03 +05:30
|
|
|
#include <memory>
|
|
|
|
|
2021-11-22 08:25:16 +05:30
|
|
|
#include "ui/pages/BasePage.h"
|
2014-07-16 03:43:40 +05:30
|
|
|
|
2021-07-27 01:14:11 +05:30
|
|
|
#include "minecraft/auth/AccountList.h"
|
2021-11-20 20:52:22 +05:30
|
|
|
#include "Application.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;
|
|
|
|
|
2019-07-19 11:59:31 +05:30
|
|
|
class AccountListPage : public QMainWindow, 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
|
|
|
|
{
|
2021-11-20 20:52:22 +05:30
|
|
|
auto icon = APPLICATION->getThemedIcon("accounts");
|
2018-07-15 18:21:05 +05:30
|
|
|
if(icon.isNull())
|
|
|
|
{
|
2021-11-20 20:52:22 +05:30
|
|
|
icon = APPLICATION->getThemedIcon("noaccount");
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
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
|
|
|
|
2021-02-11 06:52:43 +05:30
|
|
|
public slots:
|
2021-07-27 01:14:11 +05:30
|
|
|
void on_actionAddMojang_triggered();
|
|
|
|
void on_actionAddMicrosoft_triggered();
|
2022-01-17 16:38:10 +05:30
|
|
|
void on_actionAddOffline_triggered();
|
2019-07-19 11:59:31 +05:30
|
|
|
void on_actionRemove_triggered();
|
2021-08-30 02:25:33 +05:30
|
|
|
void on_actionRefresh_triggered();
|
2019-07-19 11:59:31 +05:30
|
|
|
void on_actionSetDefault_triggered();
|
|
|
|
void on_actionNoDefault_triggered();
|
|
|
|
void on_actionUploadSkin_triggered();
|
2021-02-11 06:52:43 +05:30
|
|
|
void on_actionDeleteSkin_triggered();
|
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
|
|
|
|
2021-02-11 06:52:43 +05:30
|
|
|
protected slots:
|
2019-07-25 04:32:30 +05:30
|
|
|
void ShowContextMenu(const QPoint &pos);
|
2013-11-18 23:35:35 +05:30
|
|
|
|
|
|
|
private:
|
2021-02-11 06:52:43 +05:30
|
|
|
void changeEvent(QEvent * event) override;
|
|
|
|
QMenu * createPopupMenu() override;
|
2021-11-20 20:52:22 +05:30
|
|
|
shared_qobject_ptr<AccountList> m_accounts;
|
2018-07-15 18:21:05 +05:30
|
|
|
Ui::AccountListPage *ui;
|
2013-11-18 23:35:35 +05:30
|
|
|
};
|