Licenses, cleanup
This commit is contained in:
parent
f2291ef161
commit
bf951c3eb8
@ -345,38 +345,6 @@ void LegacyModEditDialog::on_buttonBox_rejected()
|
|||||||
close();
|
close();
|
||||||
}
|
}
|
||||||
|
|
||||||
//FIXME: too much copypasta makes peterix a sad hacker. BUT IT'S SO DELICIOUS!
|
|
||||||
|
|
||||||
void LegacyModEditDialog::on_coreWebsite_clicked()
|
|
||||||
{
|
|
||||||
int first, last;
|
|
||||||
auto list = ui->coreModsTreeView->selectionModel()->selectedRows();
|
|
||||||
|
|
||||||
if (!lastfirst(list, first, last))
|
|
||||||
return;
|
|
||||||
showWebsiteForMod(this, m_coremods->operator[](first));
|
|
||||||
}
|
|
||||||
|
|
||||||
void LegacyModEditDialog::on_jarWebsite_clicked()
|
|
||||||
{
|
|
||||||
int first, last;
|
|
||||||
auto list = ui->jarModsTreeView->selectionModel()->selectedRows();
|
|
||||||
|
|
||||||
if (!lastfirst(list, first, last))
|
|
||||||
return;
|
|
||||||
showWebsiteForMod(this, m_jarmods->operator[](first));
|
|
||||||
}
|
|
||||||
|
|
||||||
void LegacyModEditDialog::on_loaderWebsite_clicked()
|
|
||||||
{
|
|
||||||
int first, last;
|
|
||||||
auto list = ui->loaderModTreeView->selectionModel()->selectedRows();
|
|
||||||
|
|
||||||
if (!lastfirst(list, first, last))
|
|
||||||
return;
|
|
||||||
showWebsiteForMod(this, m_mods->operator[](first));
|
|
||||||
}
|
|
||||||
|
|
||||||
void LegacyModEditDialog::on_jarModsTreeView_pressed(const QModelIndex &index)
|
void LegacyModEditDialog::on_jarModsTreeView_pressed(const QModelIndex &index)
|
||||||
{
|
{
|
||||||
int first, last;
|
int first, last;
|
||||||
|
@ -53,17 +53,11 @@ slots:
|
|||||||
void on_rmTexPackBtn_clicked();
|
void on_rmTexPackBtn_clicked();
|
||||||
void on_viewTexPackBtn_clicked();
|
void on_viewTexPackBtn_clicked();
|
||||||
|
|
||||||
void on_jarWebsite_clicked();
|
|
||||||
void on_loaderWebsite_clicked();
|
|
||||||
void on_coreWebsite_clicked();
|
|
||||||
|
|
||||||
// Questionable: SettingsDialog doesn't need this for some reason?
|
// Questionable: SettingsDialog doesn't need this for some reason?
|
||||||
void on_buttonBox_rejected();
|
void on_buttonBox_rejected();
|
||||||
|
|
||||||
void on_jarModsTreeView_pressed(const QModelIndex &index);
|
void on_jarModsTreeView_pressed(const QModelIndex &index);
|
||||||
|
|
||||||
void on_coreModsTreeView_pressed(const QModelIndex &index);
|
void on_coreModsTreeView_pressed(const QModelIndex &index);
|
||||||
|
|
||||||
void on_loaderModTreeView_pressed(const QModelIndex &index);
|
void on_loaderModTreeView_pressed(const QModelIndex &index);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
@ -1,3 +1,18 @@
|
|||||||
|
/* Copyright 2013 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.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "MCModInfoFrame.h"
|
#include "MCModInfoFrame.h"
|
||||||
#include "ui_MCModInfoFrame.h"
|
#include "ui_MCModInfoFrame.h"
|
||||||
|
|
||||||
|
@ -1,5 +1,19 @@
|
|||||||
#ifndef MCMODINFOFRAME_H
|
/* Copyright 2013 MultiMC Contributors
|
||||||
#define MCMODINFOFRAME_H
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
#include <QFrame>
|
#include <QFrame>
|
||||||
#include "logic/Mod.h"
|
#include "logic/Mod.h"
|
||||||
@ -28,5 +42,3 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
void handleModInfoUpdate(Mod &m, MCModInfoFrame *frame);
|
void handleModInfoUpdate(Mod &m, MCModInfoFrame *frame);
|
||||||
|
|
||||||
#endif // MCMODINFOFRAME_H
|
|
||||||
|
@ -144,6 +144,16 @@
|
|||||||
<property name="labelAlignment">
|
<property name="labelAlignment">
|
||||||
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
||||||
</property>
|
</property>
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QLabel" name="label_2">
|
||||||
|
<property name="text">
|
||||||
|
<string>Authors:</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item row="0" column="1">
|
<item row="0" column="1">
|
||||||
<widget class="QLabel" name="label_Authors">
|
<widget class="QLabel" name="label_Authors">
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
@ -169,41 +179,6 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="1" column="0">
|
|
||||||
<widget class="QLabel" name="label_3">
|
|
||||||
<property name="text">
|
|
||||||
<string>Credits:</string>
|
|
||||||
</property>
|
|
||||||
<property name="alignment">
|
|
||||||
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="1" column="1">
|
|
||||||
<widget class="QLabel" name="label_Credits">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>200</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize">
|
|
||||||
<size>
|
|
||||||
<width>16777215</width>
|
|
||||||
<height>92</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string><html><head/><body><p><span style=" font-style:italic; color:#4a4a4a;">Mod credits</span></p></body></html></string>
|
|
||||||
</property>
|
|
||||||
<property name="alignment">
|
|
||||||
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
|
||||||
</property>
|
|
||||||
<property name="wordWrap">
|
|
||||||
<bool>true</bool>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="2" column="0">
|
<item row="2" column="0">
|
||||||
<widget class="QLabel" name="label_4">
|
<widget class="QLabel" name="label_4">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@ -242,10 +217,35 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="0" column="0">
|
<item row="1" column="1">
|
||||||
<widget class="QLabel" name="label_2">
|
<widget class="QLabel" name="label_Credits">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>200</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>16777215</width>
|
||||||
|
<height>92</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Authors:</string>
|
<string><html><head/><body><p><span style=" font-style:italic; color:#4a4a4a;">Mod credits</span></p></body></html></string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
||||||
|
</property>
|
||||||
|
<property name="wordWrap">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="0">
|
||||||
|
<widget class="QLabel" name="label_3">
|
||||||
|
<property name="text">
|
||||||
|
<string>Credits:</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="alignment">
|
<property name="alignment">
|
||||||
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
||||||
|
Loading…
Reference in New Issue
Block a user