2022-03-19 11:46:56 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
2022-03-20 19:01:08 +00:00
|
|
|
* Copyright (c) 2022 Jamie Mansfield <jmansfield@cadixdev.org>
|
2013-11-18 18:05:35 +00:00
|
|
|
*
|
2022-03-19 11:46:56 +00:00
|
|
|
* This program 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, version 3.
|
2013-11-18 18:05:35 +00:00
|
|
|
*
|
2022-03-19 11:46:56 +00:00
|
|
|
* This program 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.
|
2013-11-18 18:05:35 +00:00
|
|
|
*
|
2022-03-19 11:46:56 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following copyright and
|
|
|
|
* permission notice:
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* 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.
|
2013-11-18 18:05:35 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-07-19 07:29:31 +01:00
|
|
|
#include <QMainWindow>
|
2013-11-18 18:58:03 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2021-11-22 02:55:16 +00:00
|
|
|
#include "ui/pages/BasePage.h"
|
2014-07-15 23:13:40 +01:00
|
|
|
|
2021-07-26 20:44:11 +01:00
|
|
|
#include "minecraft/auth/AccountList.h"
|
2021-11-20 15:22:22 +00:00
|
|
|
#include "Application.h"
|
2013-11-18 18:05:35 +00:00
|
|
|
|
2013-12-01 01:00:42 +00:00
|
|
|
namespace Ui
|
|
|
|
{
|
2014-07-15 23:13:40 +01:00
|
|
|
class AccountListPage;
|
2013-11-18 18:05:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class AuthenticateTask;
|
|
|
|
|
2019-07-19 07:29:31 +01:00
|
|
|
class AccountListPage : public QMainWindow, public BasePage
|
2013-11-18 18:05:35 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
Q_OBJECT
|
2013-11-18 18:05:35 +00:00
|
|
|
public:
|
2018-07-15 13:51:05 +01:00
|
|
|
explicit AccountListPage(QWidget *parent = 0);
|
|
|
|
~AccountListPage();
|
|
|
|
|
|
|
|
QString displayName() const override
|
|
|
|
{
|
|
|
|
return tr("Accounts");
|
|
|
|
}
|
|
|
|
QIcon icon() const override
|
|
|
|
{
|
2021-11-20 15:22:22 +00:00
|
|
|
auto icon = APPLICATION->getThemedIcon("accounts");
|
2018-07-15 13:51:05 +01:00
|
|
|
if(icon.isNull())
|
|
|
|
{
|
2021-11-20 15:22:22 +00:00
|
|
|
icon = APPLICATION->getThemedIcon("noaccount");
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
QString id() const override
|
|
|
|
{
|
|
|
|
return "accounts";
|
|
|
|
}
|
|
|
|
QString helpPage() const override
|
|
|
|
{
|
|
|
|
return "Getting-Started#adding-an-account";
|
|
|
|
}
|
2022-02-22 18:23:53 +00:00
|
|
|
void retranslate() override;
|
2013-11-18 18:05:35 +00:00
|
|
|
|
2021-02-11 01:22:43 +00:00
|
|
|
public slots:
|
2021-07-26 20:44:11 +01:00
|
|
|
void on_actionAddMojang_triggered();
|
|
|
|
void on_actionAddMicrosoft_triggered();
|
2022-01-17 11:08:10 +00:00
|
|
|
void on_actionAddOffline_triggered();
|
2019-07-19 07:29:31 +01:00
|
|
|
void on_actionRemove_triggered();
|
2021-08-29 21:55:33 +01:00
|
|
|
void on_actionRefresh_triggered();
|
2019-07-19 07:29:31 +01:00
|
|
|
void on_actionSetDefault_triggered();
|
|
|
|
void on_actionNoDefault_triggered();
|
|
|
|
void on_actionUploadSkin_triggered();
|
2021-02-11 01:22:43 +00:00
|
|
|
void on_actionDeleteSkin_triggered();
|
2016-05-12 21:51:25 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
void listChanged();
|
2013-11-29 03:40:40 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
//! Updates the states of the dialog's buttons.
|
|
|
|
void updateButtonStates();
|
2013-11-27 22:14:18 +00:00
|
|
|
|
2021-02-11 01:22:43 +00:00
|
|
|
protected slots:
|
2019-07-25 00:02:30 +01:00
|
|
|
void ShowContextMenu(const QPoint &pos);
|
2013-11-18 18:05:35 +00:00
|
|
|
|
|
|
|
private:
|
2021-02-11 01:22:43 +00:00
|
|
|
void changeEvent(QEvent * event) override;
|
|
|
|
QMenu * createPopupMenu() override;
|
2021-11-20 15:22:22 +00:00
|
|
|
shared_qobject_ptr<AccountList> m_accounts;
|
2018-07-15 13:51:05 +01:00
|
|
|
Ui::AccountListPage *ui;
|
2013-11-18 18:05:35 +00:00
|
|
|
};
|