add Custom Classes base
parent
59f4f97c6d
commit
9cf969140e
|
@ -3,6 +3,8 @@
|
||||||
<qresource>
|
<qresource>
|
||||||
<file>patches/fiesta.ips</file>
|
<file>patches/fiesta.ips</file>
|
||||||
<file>patches/balance.ips</file>
|
<file>patches/balance.ips</file>
|
||||||
|
<file>patches/custom_classes.ips</file>
|
||||||
|
<file>patches/cc_spellblade.ips</file>
|
||||||
<file>patches/portraits.ips</file>
|
<file>patches/portraits.ips</file>
|
||||||
<file>patches/double_ap.ips</file>
|
<file>patches/double_ap.ips</file>
|
||||||
<file>patches/sound_restoration.ips</file>
|
<file>patches/sound_restoration.ips</file>
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -9,7 +9,7 @@
|
||||||
* * Redistributions in binary form must reproduce the above copyright
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
* notice, this list of conditions and the following disclaimer in the
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
* documentation and/or other materials provided with the distribution.
|
* documentation and/or other materials provided with the distribution.
|
||||||
* * Neither the name of the <organization> nor the
|
* * Neither the name of the software nor the
|
||||||
* names of its contributors may be used to endorse or promote products
|
* names of its contributors may be used to endorse or promote products
|
||||||
* derived from this software without specific prior written permission.
|
* derived from this software without specific prior written permission.
|
||||||
*
|
*
|
||||||
|
@ -50,10 +50,12 @@ Exdeath::Exdeath(QWidget *parent) : QWidget(parent) {
|
||||||
radBase = new QRadioButton("Base");
|
radBase = new QRadioButton("Base");
|
||||||
radFiesta = new QRadioButton("Fiesta");
|
radFiesta = new QRadioButton("Fiesta");
|
||||||
radBalance = new QRadioButton("Balance");
|
radBalance = new QRadioButton("Balance");
|
||||||
|
radCClass = new QRadioButton("Custom Classes");
|
||||||
radBase->setChecked(true);
|
radBase->setChecked(true);
|
||||||
layMode->addWidget(radBase);
|
layMode->addWidget(radBase);
|
||||||
layMode->addWidget(radFiesta);
|
layMode->addWidget(radFiesta);
|
||||||
layMode->addWidget(radBalance);
|
layMode->addWidget(radBalance);
|
||||||
|
layMode->addWidget(radCClass);
|
||||||
|
|
||||||
chkPortraits = new QCheckBox("Yes");
|
chkPortraits = new QCheckBox("Yes");
|
||||||
chkAP = new QCheckBox("Yes");
|
chkAP = new QCheckBox("Yes");
|
||||||
|
@ -113,6 +115,9 @@ void Exdeath::btnApply_clicked(bool trigger) {
|
||||||
patches << ":/patches/fiesta.ips";
|
patches << ":/patches/fiesta.ips";
|
||||||
} else if (radBalance->isChecked()) {
|
} else if (radBalance->isChecked()) {
|
||||||
patches << ":/patches/balance.ips";
|
patches << ":/patches/balance.ips";
|
||||||
|
} else if (radCClass->isChecked()) {
|
||||||
|
patches << ":/patches/custom_classes.ips";
|
||||||
|
patches << ":/patches/cc_spellblade.ips";
|
||||||
}
|
}
|
||||||
if (chkPortraits->isChecked()) {
|
if (chkPortraits->isChecked()) {
|
||||||
patches << ":/patches/portraits.ips";
|
patches << ":/patches/portraits.ips";
|
||||||
|
|
|
@ -40,6 +40,7 @@ private:
|
||||||
QRadioButton *radBase;
|
QRadioButton *radBase;
|
||||||
QRadioButton *radFiesta;
|
QRadioButton *radFiesta;
|
||||||
QRadioButton *radBalance;
|
QRadioButton *radBalance;
|
||||||
|
QRadioButton *radCClass;
|
||||||
|
|
||||||
QCheckBox *chkPortraits;
|
QCheckBox *chkPortraits;
|
||||||
QCheckBox *chkAP;
|
QCheckBox *chkAP;
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
* * Redistributions in binary form must reproduce the above copyright
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
* notice, this list of conditions and the following disclaimer in the
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
* documentation and/or other materials provided with the distribution.
|
* documentation and/or other materials provided with the distribution.
|
||||||
* * Neither the name of the <organization> nor the
|
* * Neither the name of the software nor the
|
||||||
* names of its contributors may be used to endorse or promote products
|
* names of its contributors may be used to endorse or promote products
|
||||||
* derived from this software without specific prior written permission.
|
* derived from this software without specific prior written permission.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue