2022-03-20 19:01:08 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2023-06-19 23:36:18 +01:00
|
|
|
* Prism Launcher - Minecraft Launcher
|
2022-03-20 19:01:08 +00:00
|
|
|
* Copyright (c) 2022 Jamie Mansfield <jmansfield@cadixdev.org>
|
2023-06-19 23:36:18 +01:00
|
|
|
* Copyright (C) 2023 TheKodeToad <TheKodeToad@proton.me>
|
2014-06-29 18:59:08 +01:00
|
|
|
*
|
2022-03-20 19:01:08 +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.
|
2014-06-29 18:59:08 +01:00
|
|
|
*
|
2022-03-20 19:01:08 +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.
|
2014-06-29 18:59:08 +01:00
|
|
|
*
|
2022-03-20 19:01:08 +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.
|
2014-06-29 18:59:08 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2014-07-12 22:02:52 +01:00
|
|
|
|
2014-06-29 18:59:08 +01:00
|
|
|
#include <QModelIndex>
|
2023-08-14 17:16:53 +01:00
|
|
|
#include <QWidget>
|
2014-07-12 22:02:52 +01:00
|
|
|
|
2021-11-22 02:55:16 +00:00
|
|
|
#include "ui/pages/BasePageContainer.h"
|
2023-08-14 17:16:53 +01:00
|
|
|
#include "ui/pages/BasePageProvider.h"
|
2014-06-29 18:59:08 +01:00
|
|
|
|
2014-06-30 01:02:57 +01:00
|
|
|
class QLayout;
|
2014-06-29 18:59:08 +01:00
|
|
|
class IconLabel;
|
|
|
|
class QSortFilterProxyModel;
|
|
|
|
class PageModel;
|
|
|
|
class QLabel;
|
|
|
|
class QListView;
|
|
|
|
class QLineEdit;
|
|
|
|
class QStackedLayout;
|
|
|
|
class QGridLayout;
|
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
class PageContainer : public QWidget, public BasePageContainer {
|
2014-06-29 18:59:08 +01:00
|
|
|
Q_OBJECT
|
2023-08-14 17:16:53 +01:00
|
|
|
public:
|
|
|
|
explicit PageContainer(BasePageProvider* pageProvider, QString defaultId = QString(), QWidget* parent = 0);
|
2014-07-12 22:02:52 +01:00
|
|
|
virtual ~PageContainer() {}
|
2014-06-29 18:59:08 +01:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
void addButtons(QWidget* buttons);
|
|
|
|
void addButtons(QLayout* buttons);
|
2016-10-28 02:36:29 +01:00
|
|
|
/*
|
|
|
|
* Save any unsaved state and prepare to be closed.
|
|
|
|
* @return true if everything can be saved, false if there is something that requires attention
|
|
|
|
*/
|
|
|
|
bool prepareToClose();
|
2018-04-12 00:44:51 +01:00
|
|
|
bool saveAll();
|
2014-06-29 18:59:08 +01:00
|
|
|
|
2017-09-26 18:04:37 +01:00
|
|
|
/* request close - used by individual pages */
|
|
|
|
bool requestClose() override
|
|
|
|
{
|
2023-08-14 17:16:53 +01:00
|
|
|
if (m_container) {
|
2017-09-26 18:04:37 +01:00
|
|
|
return m_container->requestClose();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-06-19 22:42:27 +01:00
|
|
|
bool selectPage(QString pageId) override;
|
2023-06-22 13:11:55 +01:00
|
|
|
BasePage* selectedPage() const override;
|
2022-10-14 18:09:41 +01:00
|
|
|
BasePage* getPage(QString pageId) override;
|
2023-07-03 17:32:59 +01:00
|
|
|
const QList<BasePage*>& getPages() const;
|
2015-05-29 01:22:02 +01:00
|
|
|
|
2016-11-06 23:18:27 +00:00
|
|
|
void refreshContainer() override;
|
2023-08-14 17:16:53 +01:00
|
|
|
virtual void setParentContainer(BasePageContainer* container) { m_container = container; };
|
2016-08-06 14:39:29 +01:00
|
|
|
|
2022-02-22 17:40:50 +00:00
|
|
|
void changeEvent(QEvent*) override;
|
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
private:
|
2014-06-29 18:59:08 +01:00
|
|
|
void createUI();
|
2022-02-22 17:40:50 +00:00
|
|
|
void retranslate();
|
2018-03-19 01:36:12 +00:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
public slots:
|
2018-03-19 01:36:12 +00:00
|
|
|
void help();
|
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
signals:
|
2022-07-15 15:20:08 +01:00
|
|
|
/** Emitted when the currently selected page is changed */
|
|
|
|
void selectedPageChanged(BasePage* previous, BasePage* selected);
|
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
private slots:
|
|
|
|
void currentChanged(const QModelIndex& current);
|
2014-06-29 18:59:08 +01:00
|
|
|
void showPage(int row);
|
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
private:
|
|
|
|
BasePageContainer* m_container = nullptr;
|
|
|
|
BasePage* m_currentPage = 0;
|
|
|
|
QSortFilterProxyModel* m_proxyModel;
|
|
|
|
PageModel* m_model;
|
|
|
|
QStackedLayout* m_pageStack;
|
|
|
|
QListView* m_pageList;
|
|
|
|
QLabel* m_header;
|
|
|
|
IconLabel* m_iconHeader;
|
|
|
|
QGridLayout* m_layout;
|
2014-06-29 18:59:08 +01:00
|
|
|
};
|