2021-01-18 07:28:54 +00:00
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-10-08 22:11:24 +01:00
|
|
|
*
|
|
|
|
* 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
|
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
|
|
|
|
2013-10-09 01:03:02 +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
|
|
|
|
2022-08-10 18:48:34 +01:00
|
|
|
void setName(QString text = {});
|
|
|
|
void setDescription(QString text = {});
|
2022-08-29 13:14:15 +01:00
|
|
|
void setImage(QPixmap img = {});
|
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);
|
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;
|
|
|
|
class QMessageBox* m_current_box = nullptr;
|
2013-10-08 21:45:48 +01:00
|
|
|
};
|