2015-02-03 03:55:30 +05:30
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-10-09 02:41:24 +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.
|
|
|
|
*/
|
|
|
|
|
2013-10-12 18:49:49 +05:30
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QtGui>
|
2013-11-04 07:23:05 +05:30
|
|
|
|
|
|
|
#include "MCModInfoFrame.h"
|
|
|
|
#include "ui_MCModInfoFrame.h"
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "dialogs/CustomMessageBox.h"
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-10-09 05:33:02 +05:30
|
|
|
void MCModInfoFrame::updateWithMod(Mod &m)
|
2013-10-09 02:15:48 +05:30
|
|
|
{
|
2013-10-09 02:55:56 +05:30
|
|
|
if(m.type() == m.MOD_FOLDER)
|
|
|
|
{
|
2013-10-09 05:33:02 +05:30
|
|
|
clear();
|
2013-10-09 02:55:56 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-09 06:56:03 +05:30
|
|
|
QString text = "";
|
2013-10-09 07:40:56 +05:30
|
|
|
QString name = "";
|
2013-12-26 09:44:32 +05:30
|
|
|
if(m.name().isEmpty()) name = m.mmc_id();
|
2013-10-09 07:40:56 +05:30
|
|
|
else name = m.name();
|
|
|
|
|
|
|
|
if(m.homeurl().isEmpty()) text = name;
|
|
|
|
else text = "<a href=\"" + m.homeurl() + "\">" + name + "</a>";
|
2013-10-09 06:56:03 +05:30
|
|
|
if(!m.authors().isEmpty()) text += " by " + m.authors();
|
2013-10-09 02:15:48 +05:30
|
|
|
|
2013-10-09 06:56:03 +05:30
|
|
|
setModText(text);
|
2013-10-09 02:15:48 +05:30
|
|
|
|
2013-10-09 06:56:03 +05:30
|
|
|
if(m.description().isEmpty())
|
|
|
|
{
|
|
|
|
setModDescription(tr("No description provided in mcmod.info"));
|
|
|
|
}
|
|
|
|
else
|
2013-10-12 23:29:14 +05:30
|
|
|
{
|
2013-10-09 06:56:03 +05:30
|
|
|
setModDescription(m.description());
|
|
|
|
}
|
2013-10-09 05:33:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void MCModInfoFrame::clear()
|
|
|
|
{
|
2013-10-09 06:56:03 +05:30
|
|
|
setModText(tr("Select a mod to view title and authors..."));
|
|
|
|
setModDescription(tr("Select a mod to view description..."));
|
2013-10-09 02:15:48 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
MCModInfoFrame::MCModInfoFrame(QWidget *parent) :
|
|
|
|
QFrame(parent),
|
|
|
|
ui(new Ui::MCModInfoFrame)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
MCModInfoFrame::~MCModInfoFrame()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2013-10-09 06:56:03 +05:30
|
|
|
void MCModInfoFrame::setModText(QString text)
|
2013-10-09 02:15:48 +05:30
|
|
|
{
|
2013-10-09 06:56:03 +05:30
|
|
|
ui->label_ModText->setText(text);
|
2013-10-09 02:15:48 +05:30
|
|
|
}
|
|
|
|
|
2013-10-09 06:56:03 +05:30
|
|
|
void MCModInfoFrame::setModDescription(QString text)
|
2013-10-09 02:15:48 +05:30
|
|
|
{
|
2013-10-12 23:29:14 +05:30
|
|
|
ui->label_ModDescription->setToolTip("");
|
|
|
|
QString intermediatetext = text.trimmed();
|
|
|
|
bool prev(false);
|
|
|
|
QChar rem('\n');
|
|
|
|
QString finaltext;
|
|
|
|
finaltext.reserve(intermediatetext.size());
|
|
|
|
foreach(const QChar& c, intermediatetext)
|
|
|
|
{
|
|
|
|
if(c == rem && prev){
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
prev = c == rem;
|
|
|
|
finaltext += c;
|
|
|
|
}
|
|
|
|
QString labeltext;
|
|
|
|
labeltext.reserve(300);
|
|
|
|
if(finaltext.length() > 290)
|
|
|
|
{
|
|
|
|
ui->label_ModDescription->setOpenExternalLinks(false);
|
|
|
|
ui->label_ModDescription->setTextFormat(Qt::TextFormat::RichText);
|
|
|
|
desc = text;
|
|
|
|
labeltext.append("<html><body>" + finaltext.left(287) + "<a href=\"#mod_desc\">...</a></body></html>");
|
|
|
|
QObject::connect(ui->label_ModDescription, &QLabel::linkActivated, this, &MCModInfoFrame::modDescEllipsisHandler);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->label_ModDescription->setTextFormat(Qt::TextFormat::PlainText);
|
|
|
|
labeltext.append(finaltext);
|
|
|
|
}
|
|
|
|
ui->label_ModDescription->setText(labeltext);
|
2013-10-09 02:15:48 +05:30
|
|
|
}
|
2013-10-12 18:49:49 +05:30
|
|
|
void MCModInfoFrame::modDescEllipsisHandler(const QString &link)
|
|
|
|
{
|
2013-10-29 18:10:09 +05:30
|
|
|
CustomMessageBox::selectable(this, tr(""), desc)->show();
|
2013-10-12 18:49:49 +05:30
|
|
|
}
|