2023-06-15 09:40:39 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* Prism Launcher - Minecraft Launcher
|
|
|
|
* Copyright (c) 2023 Trial97 <alexandru.tripon97@gmail.com>
|
2013-10-08 22:11:24 +01:00
|
|
|
*
|
2023-06-15 09:40:39 +01: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-10-08 22:11:24 +01:00
|
|
|
*
|
2023-06-15 09:40:39 +01: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-10-08 22:11:24 +01:00
|
|
|
*
|
2023-06-15 09:40:39 +01: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-10-08 22:11:24 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2013-10-08 21:45:48 +01:00
|
|
|
|
|
|
|
#include <QFrame>
|
2022-08-10 18:48:34 +01:00
|
|
|
|
2019-08-04 02:27:53 +01:00
|
|
|
#include "minecraft/mod/Mod.h"
|
2022-08-10 18:48:34 +01:00
|
|
|
#include "minecraft/mod/ResourcePack.h"
|
2022-09-04 13:45:09 +01:00
|
|
|
#include "minecraft/mod/TexturePack.h"
|
2013-10-08 21:45:48 +01:00
|
|
|
|
2023-06-15 09:40:39 +01:00
|
|
|
namespace Ui {
|
2022-08-10 18:48:34 +01:00
|
|
|
class InfoFrame;
|
2013-10-08 21:45:48 +01:00
|
|
|
}
|
|
|
|
|
2022-08-10 18:48:34 +01:00
|
|
|
class InfoFrame : public QFrame {
|
2018-07-15 13:51:05 +01:00
|
|
|
Q_OBJECT
|
2013-10-09 01:03:02 +01:00
|
|
|
|
2022-08-10 18:48:34 +01:00
|
|
|
public:
|
|
|
|
InfoFrame(QWidget* parent = nullptr);
|
|
|
|
~InfoFrame() override;
|
2013-10-08 21:45:48 +01:00
|
|
|
|
2023-06-25 09:36:37 +01:00
|
|
|
void setName(QString text = {});
|
2022-08-10 18:48:34 +01:00
|
|
|
void setDescription(QString text = {});
|
2022-08-29 13:14:15 +01:00
|
|
|
void setImage(QPixmap img = {});
|
2023-05-05 21:46:38 +01:00
|
|
|
void setLicense(QString text = {});
|
|
|
|
void setIssueTracker(QString text = {});
|
2013-10-08 21:45:48 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
void clear();
|
2013-10-09 01:03:02 +01:00
|
|
|
|
2022-08-10 18:48:34 +01:00
|
|
|
void updateWithMod(Mod const& m);
|
|
|
|
void updateWithResource(Resource const& resource);
|
2022-08-30 22:06:13 +01:00
|
|
|
void updateWithResourcePack(ResourcePack& rp);
|
2022-09-04 13:45:09 +01:00
|
|
|
void updateWithTexturePack(TexturePack& tp);
|
|
|
|
|
|
|
|
static QString renderColorCodes(QString input);
|
2022-08-10 18:48:34 +01:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void descriptionEllipsisHandler(QString link);
|
2023-05-05 21:46:38 +01:00
|
|
|
void licenseEllipsisHandler(QString link);
|
2018-07-15 13:51:05 +01:00
|
|
|
void boxClosed(int result);
|
2013-10-12 14:19:49 +01:00
|
|
|
|
2022-08-10 18:48:34 +01:00
|
|
|
private:
|
2018-07-15 13:51:05 +01:00
|
|
|
void updateHiddenState();
|
2016-01-02 03:01:00 +00:00
|
|
|
|
2022-08-10 18:48:34 +01:00
|
|
|
private:
|
|
|
|
Ui::InfoFrame* ui;
|
|
|
|
QString m_description;
|
2023-05-05 21:46:38 +01:00
|
|
|
QString m_license;
|
2022-08-10 18:48:34 +01:00
|
|
|
class QMessageBox* m_current_box = nullptr;
|
2013-10-08 21:45:48 +01:00
|
|
|
};
|