2013-08-28 08:08:29 +05:30
|
|
|
#include "ModEditDialogCommon.h"
|
2013-10-29 18:10:09 +05:30
|
|
|
#include "CustomMessageBox.h"
|
2013-10-08 05:06:11 +05:30
|
|
|
#include <QDesktopServices>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QString>
|
|
|
|
#include <QUrl>
|
|
|
|
bool lastfirst(QModelIndexList &list, int &first, int &last)
|
2013-08-28 08:08:29 +05:30
|
|
|
{
|
2013-10-08 05:06:11 +05:30
|
|
|
if (!list.size())
|
2013-08-28 08:08:29 +05:30
|
|
|
return false;
|
|
|
|
first = last = list[0].row();
|
2013-10-08 05:06:11 +05:30
|
|
|
for (auto item : list)
|
2013-08-28 08:08:29 +05:30
|
|
|
{
|
|
|
|
int row = item.row();
|
2013-10-08 05:06:11 +05:30
|
|
|
if (row < first)
|
2013-08-28 08:08:29 +05:30
|
|
|
first = row;
|
2013-10-08 05:06:11 +05:30
|
|
|
if (row > last)
|
2013-08-28 08:08:29 +05:30
|
|
|
last = row;
|
|
|
|
}
|
|
|
|
return true;
|
2013-10-08 05:06:11 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void showWebsiteForMod(QWidget *parentDlg, Mod &m)
|
|
|
|
{
|
|
|
|
QString url = m.homeurl();
|
|
|
|
if (url.size())
|
|
|
|
{
|
|
|
|
// catch the cases where the protocol is missing
|
|
|
|
if(!url.startsWith("http"))
|
|
|
|
{
|
|
|
|
url = "http://" + url;
|
|
|
|
}
|
|
|
|
QDesktopServices::openUrl(url);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-10-29 18:10:09 +05:30
|
|
|
CustomMessageBox::selectable(parentDlg, parentDlg->tr("How sad!"),
|
|
|
|
parentDlg->tr("The mod author didn't provide a website link for this mod."),
|
|
|
|
QMessageBox::Warning);
|
2013-10-08 05:06:11 +05:30
|
|
|
}
|
|
|
|
}
|