Added settings dialog.
This commit is contained in:
		@@ -18,16 +18,19 @@ SOURCES += main.cpp\
 | 
				
			|||||||
    util/pathutils.cpp \
 | 
					    util/pathutils.cpp \
 | 
				
			||||||
    data/instancelist.cpp \
 | 
					    data/instancelist.cpp \
 | 
				
			||||||
    data/stdinstance.cpp \
 | 
					    data/stdinstance.cpp \
 | 
				
			||||||
    data/inifile.cpp
 | 
					    data/inifile.cpp \
 | 
				
			||||||
 | 
					    gui/settingsdialog.cpp
 | 
				
			||||||
 | 
					
 | 
				
			||||||
HEADERS  += gui/mainwindow.h \
 | 
					HEADERS  += gui/mainwindow.h \
 | 
				
			||||||
    data/instancebase.h \
 | 
					    data/instancebase.h \
 | 
				
			||||||
    util/pathutils.h \
 | 
					    util/pathutils.h \
 | 
				
			||||||
    data/instancelist.h \
 | 
					    data/instancelist.h \
 | 
				
			||||||
    data/stdinstance.h \
 | 
					    data/stdinstance.h \
 | 
				
			||||||
    data/inifile.h
 | 
					    data/inifile.h \
 | 
				
			||||||
 | 
					    gui/settingsdialog.h
 | 
				
			||||||
 | 
					
 | 
				
			||||||
FORMS    += gui/mainwindow.ui
 | 
					FORMS    += gui/mainwindow.ui \
 | 
				
			||||||
 | 
					    gui/settingsdialog.ui
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RESOURCES += \
 | 
					RESOURCES += \
 | 
				
			||||||
    multimc.qrc
 | 
					    multimc.qrc
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,6 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
					<?xml version="1.0" encoding="UTF-8"?>
 | 
				
			||||||
<!DOCTYPE QtCreatorProject>
 | 
					<!DOCTYPE QtCreatorProject>
 | 
				
			||||||
<!-- Written by Qt Creator 2.6.1, 2013-01-14T15:28:18. -->
 | 
					<!-- Written by Qt Creator 2.6.1, 2013-01-15T16:57:52. -->
 | 
				
			||||||
<qtcreator>
 | 
					<qtcreator>
 | 
				
			||||||
 <data>
 | 
					 <data>
 | 
				
			||||||
  <variable>ProjectExplorer.Project.ActiveTarget</variable>
 | 
					  <variable>ProjectExplorer.Project.ActiveTarget</variable>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -15,8 +15,8 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#include "stdinstance.h"
 | 
					#include "stdinstance.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
StdInstance::StdInstance(QString dir) :
 | 
					StdInstance::StdInstance(QString rootDir) :
 | 
				
			||||||
	InstanceBase(dir)
 | 
						InstanceBase(rootDir)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -22,7 +22,7 @@
 | 
				
			|||||||
class StdInstance : public InstanceBase
 | 
					class StdInstance : public InstanceBase
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
	StdInstance(QString dir);
 | 
						explicit StdInstance(QString rootDir);
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif // STDINSTANCE_H
 | 
					#endif // STDINSTANCE_H
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -19,15 +19,14 @@
 | 
				
			|||||||
#include <QDesktopServices>
 | 
					#include <QDesktopServices>
 | 
				
			||||||
#include <QUrl>
 | 
					#include <QUrl>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "../gui/settingsdialog.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
MainWindow::MainWindow(QWidget *parent) :
 | 
					MainWindow::MainWindow(QWidget *parent) :
 | 
				
			||||||
	QMainWindow(parent),
 | 
						QMainWindow(parent),
 | 
				
			||||||
	ui(new Ui::MainWindow)
 | 
						ui(new Ui::MainWindow)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	ui->setupUi(this);
 | 
						ui->setupUi(this);
 | 
				
			||||||
	instList.loadInstances("instances");
 | 
						instList.loadInstances("instances");
 | 
				
			||||||
	
 | 
					 | 
				
			||||||
	model.setInstanceList(&instList);
 | 
					 | 
				
			||||||
	ui->instListView->setModel(&model);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
MainWindow::~MainWindow()
 | 
					MainWindow::~MainWindow()
 | 
				
			||||||
@@ -62,7 +61,8 @@ void MainWindow::on_actionCheckUpdate_triggered()
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
void MainWindow::on_actionSettings_triggered()
 | 
					void MainWindow::on_actionSettings_triggered()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	
 | 
						SettingsDialog dialog(this);
 | 
				
			||||||
 | 
						dialog.exec();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void MainWindow::on_actionReportBug_triggered()
 | 
					void MainWindow::on_actionReportBug_triggered()
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -19,9 +19,9 @@
 | 
				
			|||||||
#include <QMainWindow>
 | 
					#include <QMainWindow>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "../data/instancelist.h"
 | 
					#include "../data/instancelist.h"
 | 
				
			||||||
#include "../data/instancelistmodel.h"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace Ui {
 | 
					namespace Ui
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
class MainWindow;
 | 
					class MainWindow;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -56,7 +56,6 @@ private:
 | 
				
			|||||||
	Ui::MainWindow *ui;
 | 
						Ui::MainWindow *ui;
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
	InstanceList instList;
 | 
						InstanceList instList;
 | 
				
			||||||
	InstanceListModel model;
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif // MAINWINDOW_H
 | 
					#endif // MAINWINDOW_H
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										77
									
								
								gui/settingsdialog.cpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										77
									
								
								gui/settingsdialog.cpp
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,77 @@
 | 
				
			|||||||
 | 
					/* 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 "settingsdialog.h"
 | 
				
			||||||
 | 
					#include "ui_settingsdialog.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include <QFileDialog>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					SettingsDialog::SettingsDialog(QWidget *parent) :
 | 
				
			||||||
 | 
						QDialog(parent),
 | 
				
			||||||
 | 
						ui(new Ui::SettingsDialog)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						ui->setupUi(this);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					SettingsDialog::~SettingsDialog()
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						delete ui;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void SettingsDialog::updateCheckboxStuff()
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						ui->minMemSpinBox->setEnabled(!(ui->compatModeCheckBox->isChecked() || 
 | 
				
			||||||
 | 
														ui->maximizedCheckBox->isChecked()));
 | 
				
			||||||
 | 
						ui->maxMemSpinBox->setEnabled(!(ui->compatModeCheckBox->isChecked() || 
 | 
				
			||||||
 | 
														ui->maximizedCheckBox->isChecked()));
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						ui->maximizedCheckBox->setEnabled(!ui->compatModeCheckBox->isChecked());
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void SettingsDialog::on_instDirBrowseBtn_clicked()
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						QString dir = QFileDialog::getExistingDirectory(this, "Instance Directory", 
 | 
				
			||||||
 | 
																		ui->instDirTextBox->text());
 | 
				
			||||||
 | 
						if (!dir.isEmpty())
 | 
				
			||||||
 | 
							ui->instDirTextBox->setText(dir);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void SettingsDialog::on_modsDirBrowseBtn_clicked()
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						QString dir = QFileDialog::getExistingDirectory(this, "Mods Directory", 
 | 
				
			||||||
 | 
																		ui->modsDirTextBox->text());
 | 
				
			||||||
 | 
						if (!dir.isEmpty())
 | 
				
			||||||
 | 
							ui->modsDirTextBox->setText(dir);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void SettingsDialog::on_lwjglDirBrowseBtn_clicked()
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						QString dir = QFileDialog::getExistingDirectory(this, "LWJGL Directory", 
 | 
				
			||||||
 | 
																		ui->lwjglDirTextBox->text());
 | 
				
			||||||
 | 
						if (!dir.isEmpty())
 | 
				
			||||||
 | 
							ui->lwjglDirTextBox->setText(dir);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void SettingsDialog::on_compatModeCheckBox_clicked(bool checked)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						Q_UNUSED(checked);
 | 
				
			||||||
 | 
						updateCheckboxStuff();
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void SettingsDialog::on_maximizedCheckBox_clicked(bool checked)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						Q_UNUSED(checked);
 | 
				
			||||||
 | 
						updateCheckboxStuff();
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										50
									
								
								gui/settingsdialog.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										50
									
								
								gui/settingsdialog.h
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,50 @@
 | 
				
			|||||||
 | 
					/* 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.
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifndef SETTINGSDIALOG_H
 | 
				
			||||||
 | 
					#define SETTINGSDIALOG_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include <QDialog>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					namespace Ui {
 | 
				
			||||||
 | 
					class SettingsDialog;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					class SettingsDialog : public QDialog
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						Q_OBJECT
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
					public:
 | 
				
			||||||
 | 
						explicit SettingsDialog(QWidget *parent = 0);
 | 
				
			||||||
 | 
						~SettingsDialog();
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						void updateCheckboxStuff();
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
					private slots:
 | 
				
			||||||
 | 
						void on_instDirBrowseBtn_clicked();
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						void on_modsDirBrowseBtn_clicked();
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						void on_lwjglDirBrowseBtn_clicked();
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						void on_compatModeCheckBox_clicked(bool checked);
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						void on_maximizedCheckBox_clicked(bool checked);
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
					private:
 | 
				
			||||||
 | 
						Ui::SettingsDialog *ui;
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#endif // SETTINGSDIALOG_H
 | 
				
			||||||
							
								
								
									
										541
									
								
								gui/settingsdialog.ui
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										541
									
								
								gui/settingsdialog.ui
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,541 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0" encoding="UTF-8"?>
 | 
				
			||||||
 | 
					<ui version="4.0">
 | 
				
			||||||
 | 
					 <class>SettingsDialog</class>
 | 
				
			||||||
 | 
					 <widget class="QDialog" name="SettingsDialog">
 | 
				
			||||||
 | 
					  <property name="geometry">
 | 
				
			||||||
 | 
					   <rect>
 | 
				
			||||||
 | 
					    <x>0</x>
 | 
				
			||||||
 | 
					    <y>0</y>
 | 
				
			||||||
 | 
					    <width>400</width>
 | 
				
			||||||
 | 
					    <height>420</height>
 | 
				
			||||||
 | 
					   </rect>
 | 
				
			||||||
 | 
					  </property>
 | 
				
			||||||
 | 
					  <property name="windowTitle">
 | 
				
			||||||
 | 
					   <string>Settings</string>
 | 
				
			||||||
 | 
					  </property>
 | 
				
			||||||
 | 
					  <property name="windowIcon">
 | 
				
			||||||
 | 
					   <iconset resource="../multimc.qrc">
 | 
				
			||||||
 | 
					    <normaloff>:/icons/toolbar/settings</normaloff>:/icons/toolbar/settings</iconset>
 | 
				
			||||||
 | 
					  </property>
 | 
				
			||||||
 | 
					  <property name="modal">
 | 
				
			||||||
 | 
					   <bool>true</bool>
 | 
				
			||||||
 | 
					  </property>
 | 
				
			||||||
 | 
					  <layout class="QVBoxLayout" name="mainLayout">
 | 
				
			||||||
 | 
					   <item>
 | 
				
			||||||
 | 
					    <widget class="QTabWidget" name="settingsTabs">
 | 
				
			||||||
 | 
					     <property name="tabShape">
 | 
				
			||||||
 | 
					      <enum>QTabWidget::Rounded</enum>
 | 
				
			||||||
 | 
					     </property>
 | 
				
			||||||
 | 
					     <property name="currentIndex">
 | 
				
			||||||
 | 
					      <number>0</number>
 | 
				
			||||||
 | 
					     </property>
 | 
				
			||||||
 | 
					     <widget class="QWidget" name="generalTab">
 | 
				
			||||||
 | 
					      <attribute name="title">
 | 
				
			||||||
 | 
					       <string>General</string>
 | 
				
			||||||
 | 
					      </attribute>
 | 
				
			||||||
 | 
					      <layout class="QVBoxLayout" name="generalTabLayout">
 | 
				
			||||||
 | 
					       <item>
 | 
				
			||||||
 | 
					        <widget class="QGroupBox" name="sortingModeBox">
 | 
				
			||||||
 | 
					         <property name="enabled">
 | 
				
			||||||
 | 
					          <bool>true</bool>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					         <property name="title">
 | 
				
			||||||
 | 
					          <string>Sorting Mode</string>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					         <layout class="QHBoxLayout" name="sortingModeBoxLayout">
 | 
				
			||||||
 | 
					          <item>
 | 
				
			||||||
 | 
					           <widget class="QRadioButton" name="sortLastLaunchedBtn">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>By last launched</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item>
 | 
				
			||||||
 | 
					           <widget class="QRadioButton" name="sortByNameBtn">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>By name</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					         </layout>
 | 
				
			||||||
 | 
					        </widget>
 | 
				
			||||||
 | 
					       </item>
 | 
				
			||||||
 | 
					       <item>
 | 
				
			||||||
 | 
					        <widget class="QGroupBox" name="updateSettingsBox">
 | 
				
			||||||
 | 
					         <property name="title">
 | 
				
			||||||
 | 
					          <string>Update Settings</string>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					         <layout class="QVBoxLayout" name="updateSettingsBoxLayout">
 | 
				
			||||||
 | 
					          <item>
 | 
				
			||||||
 | 
					           <widget class="QCheckBox" name="devBuildsCheckBox">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Use development builds?</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item>
 | 
				
			||||||
 | 
					           <widget class="QCheckBox" name="autoUpdateCheckBox">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Check for updates when MultiMC starts?</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					         </layout>
 | 
				
			||||||
 | 
					        </widget>
 | 
				
			||||||
 | 
					       </item>
 | 
				
			||||||
 | 
					       <item>
 | 
				
			||||||
 | 
					        <widget class="QGroupBox" name="foldersBox">
 | 
				
			||||||
 | 
					         <property name="title">
 | 
				
			||||||
 | 
					          <string>Folders</string>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					         <layout class="QGridLayout" name="foldersBoxLayout">
 | 
				
			||||||
 | 
					          <item row="0" column="0">
 | 
				
			||||||
 | 
					           <widget class="QLabel" name="labelInstDir">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Instances:</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="0" column="1">
 | 
				
			||||||
 | 
					           <widget class="QLineEdit" name="instDirTextBox"/>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="0" column="2">
 | 
				
			||||||
 | 
					           <widget class="QToolButton" name="instDirBrowseBtn">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>...</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="1" column="0">
 | 
				
			||||||
 | 
					           <widget class="QLabel" name="labelModsDir">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Mods:</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="1" column="1">
 | 
				
			||||||
 | 
					           <widget class="QLineEdit" name="modsDirTextBox"/>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="1" column="2">
 | 
				
			||||||
 | 
					           <widget class="QToolButton" name="modsDirBrowseBtn">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>...</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="2" column="0">
 | 
				
			||||||
 | 
					           <widget class="QLabel" name="labelLWJGLDir">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>LWJGL:</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="2" column="1">
 | 
				
			||||||
 | 
					           <widget class="QLineEdit" name="lwjglDirTextBox"/>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="2" column="2">
 | 
				
			||||||
 | 
					           <widget class="QToolButton" name="lwjglDirBrowseBtn">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>...</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					         </layout>
 | 
				
			||||||
 | 
					        </widget>
 | 
				
			||||||
 | 
					       </item>
 | 
				
			||||||
 | 
					       <item>
 | 
				
			||||||
 | 
					        <spacer name="generalTabSpacer">
 | 
				
			||||||
 | 
					         <property name="orientation">
 | 
				
			||||||
 | 
					          <enum>Qt::Vertical</enum>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					         <property name="sizeHint" stdset="0">
 | 
				
			||||||
 | 
					          <size>
 | 
				
			||||||
 | 
					           <width>20</width>
 | 
				
			||||||
 | 
					           <height>40</height>
 | 
				
			||||||
 | 
					          </size>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					        </spacer>
 | 
				
			||||||
 | 
					       </item>
 | 
				
			||||||
 | 
					      </layout>
 | 
				
			||||||
 | 
					     </widget>
 | 
				
			||||||
 | 
					     <widget class="QWidget" name="consoleTab">
 | 
				
			||||||
 | 
					      <attribute name="title">
 | 
				
			||||||
 | 
					       <string>Console</string>
 | 
				
			||||||
 | 
					      </attribute>
 | 
				
			||||||
 | 
					      <layout class="QVBoxLayout" name="verticalLayout">
 | 
				
			||||||
 | 
					       <item>
 | 
				
			||||||
 | 
					        <widget class="QGroupBox" name="consoleSettingsBox">
 | 
				
			||||||
 | 
					         <property name="title">
 | 
				
			||||||
 | 
					          <string>Console Settings</string>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					         <layout class="QVBoxLayout" name="verticalLayout_2">
 | 
				
			||||||
 | 
					          <item>
 | 
				
			||||||
 | 
					           <widget class="QCheckBox" name="showConsoleCheck">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Show console while the game is running?</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item>
 | 
				
			||||||
 | 
					           <widget class="QCheckBox" name="autoCloseConsoleCheck">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Automatically close console when the game quits?</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					         </layout>
 | 
				
			||||||
 | 
					        </widget>
 | 
				
			||||||
 | 
					       </item>
 | 
				
			||||||
 | 
					       <item>
 | 
				
			||||||
 | 
					        <widget class="QGroupBox" name="consoleColorsBox">
 | 
				
			||||||
 | 
					         <property name="title">
 | 
				
			||||||
 | 
					          <string>Instance Console Colors</string>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					         <layout class="QGridLayout" name="gridLayout">
 | 
				
			||||||
 | 
					          <item row="0" column="0">
 | 
				
			||||||
 | 
					           <widget class="QLabel" name="labelSysMessageColor">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>System message color:</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="0" column="1">
 | 
				
			||||||
 | 
					           <widget class="QLineEdit" name="sysMsgColorTextBox"/>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="1" column="0">
 | 
				
			||||||
 | 
					           <widget class="QLabel" name="labelOutputMsgColor">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Output message color:</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="1" column="1">
 | 
				
			||||||
 | 
					           <widget class="QLineEdit" name="outMsgColorTextBox"/>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="2" column="0">
 | 
				
			||||||
 | 
					           <widget class="QLabel" name="labelErrorMessageColor">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Error message color:</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="2" column="1">
 | 
				
			||||||
 | 
					           <widget class="QLineEdit" name="errMsgColorTextBox"/>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					         </layout>
 | 
				
			||||||
 | 
					        </widget>
 | 
				
			||||||
 | 
					       </item>
 | 
				
			||||||
 | 
					       <item>
 | 
				
			||||||
 | 
					        <spacer name="consoleVerticalSpacer">
 | 
				
			||||||
 | 
					         <property name="orientation">
 | 
				
			||||||
 | 
					          <enum>Qt::Vertical</enum>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					         <property name="sizeHint" stdset="0">
 | 
				
			||||||
 | 
					          <size>
 | 
				
			||||||
 | 
					           <width>20</width>
 | 
				
			||||||
 | 
					           <height>40</height>
 | 
				
			||||||
 | 
					          </size>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					        </spacer>
 | 
				
			||||||
 | 
					       </item>
 | 
				
			||||||
 | 
					      </layout>
 | 
				
			||||||
 | 
					     </widget>
 | 
				
			||||||
 | 
					     <widget class="QWidget" name="minecraftTab">
 | 
				
			||||||
 | 
					      <attribute name="title">
 | 
				
			||||||
 | 
					       <string>Minecraft</string>
 | 
				
			||||||
 | 
					      </attribute>
 | 
				
			||||||
 | 
					      <layout class="QVBoxLayout" name="verticalLayout_3">
 | 
				
			||||||
 | 
					       <item>
 | 
				
			||||||
 | 
					        <widget class="QGroupBox" name="windowSizeGroupBox">
 | 
				
			||||||
 | 
					         <property name="title">
 | 
				
			||||||
 | 
					          <string>Window Size</string>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					         <layout class="QVBoxLayout" name="verticalLayout_4">
 | 
				
			||||||
 | 
					          <item>
 | 
				
			||||||
 | 
					           <widget class="QCheckBox" name="compatModeCheckBox">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Compatibility mode?</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item>
 | 
				
			||||||
 | 
					           <widget class="QCheckBox" name="maximizedCheckBox">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Start Minecraft maximized?</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item>
 | 
				
			||||||
 | 
					           <layout class="QGridLayout" name="gridLayoutWindowSize">
 | 
				
			||||||
 | 
					            <item row="1" column="0">
 | 
				
			||||||
 | 
					             <widget class="QLabel" name="labelWindowHeight">
 | 
				
			||||||
 | 
					              <property name="text">
 | 
				
			||||||
 | 
					               <string>Window height:</string>
 | 
				
			||||||
 | 
					              </property>
 | 
				
			||||||
 | 
					             </widget>
 | 
				
			||||||
 | 
					            </item>
 | 
				
			||||||
 | 
					            <item row="0" column="0">
 | 
				
			||||||
 | 
					             <widget class="QLabel" name="labelWindowWidth">
 | 
				
			||||||
 | 
					              <property name="text">
 | 
				
			||||||
 | 
					               <string>Window width:</string>
 | 
				
			||||||
 | 
					              </property>
 | 
				
			||||||
 | 
					             </widget>
 | 
				
			||||||
 | 
					            </item>
 | 
				
			||||||
 | 
					            <item row="0" column="1">
 | 
				
			||||||
 | 
					             <widget class="QSpinBox" name="windowWidthSpinBox">
 | 
				
			||||||
 | 
					              <property name="minimum">
 | 
				
			||||||
 | 
					               <number>854</number>
 | 
				
			||||||
 | 
					              </property>
 | 
				
			||||||
 | 
					              <property name="maximum">
 | 
				
			||||||
 | 
					               <number>65536</number>
 | 
				
			||||||
 | 
					              </property>
 | 
				
			||||||
 | 
					              <property name="singleStep">
 | 
				
			||||||
 | 
					               <number>1</number>
 | 
				
			||||||
 | 
					              </property>
 | 
				
			||||||
 | 
					              <property name="value">
 | 
				
			||||||
 | 
					               <number>854</number>
 | 
				
			||||||
 | 
					              </property>
 | 
				
			||||||
 | 
					             </widget>
 | 
				
			||||||
 | 
					            </item>
 | 
				
			||||||
 | 
					            <item row="1" column="1">
 | 
				
			||||||
 | 
					             <widget class="QSpinBox" name="windowHeightSpinBox">
 | 
				
			||||||
 | 
					              <property name="minimum">
 | 
				
			||||||
 | 
					               <number>480</number>
 | 
				
			||||||
 | 
					              </property>
 | 
				
			||||||
 | 
					              <property name="maximum">
 | 
				
			||||||
 | 
					               <number>65536</number>
 | 
				
			||||||
 | 
					              </property>
 | 
				
			||||||
 | 
					              <property name="value">
 | 
				
			||||||
 | 
					               <number>480</number>
 | 
				
			||||||
 | 
					              </property>
 | 
				
			||||||
 | 
					             </widget>
 | 
				
			||||||
 | 
					            </item>
 | 
				
			||||||
 | 
					           </layout>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					         </layout>
 | 
				
			||||||
 | 
					        </widget>
 | 
				
			||||||
 | 
					       </item>
 | 
				
			||||||
 | 
					       <item>
 | 
				
			||||||
 | 
					        <widget class="QCheckBox" name="autoLoginCheckBox">
 | 
				
			||||||
 | 
					         <property name="text">
 | 
				
			||||||
 | 
					          <string>Login automatically when an instance launches?</string>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					        </widget>
 | 
				
			||||||
 | 
					       </item>
 | 
				
			||||||
 | 
					       <item>
 | 
				
			||||||
 | 
					        <spacer name="verticalSpacerMinecraft">
 | 
				
			||||||
 | 
					         <property name="orientation">
 | 
				
			||||||
 | 
					          <enum>Qt::Vertical</enum>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					         <property name="sizeHint" stdset="0">
 | 
				
			||||||
 | 
					          <size>
 | 
				
			||||||
 | 
					           <width>20</width>
 | 
				
			||||||
 | 
					           <height>40</height>
 | 
				
			||||||
 | 
					          </size>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					        </spacer>
 | 
				
			||||||
 | 
					       </item>
 | 
				
			||||||
 | 
					      </layout>
 | 
				
			||||||
 | 
					     </widget>
 | 
				
			||||||
 | 
					     <widget class="QWidget" name="javaTab">
 | 
				
			||||||
 | 
					      <attribute name="title">
 | 
				
			||||||
 | 
					       <string>Java</string>
 | 
				
			||||||
 | 
					      </attribute>
 | 
				
			||||||
 | 
					      <layout class="QVBoxLayout" name="verticalLayout_5">
 | 
				
			||||||
 | 
					       <item>
 | 
				
			||||||
 | 
					        <widget class="QGroupBox" name="memoryGroupBox">
 | 
				
			||||||
 | 
					         <property name="title">
 | 
				
			||||||
 | 
					          <string>Memory</string>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					         <layout class="QGridLayout" name="gridLayout_2">
 | 
				
			||||||
 | 
					          <item row="1" column="1">
 | 
				
			||||||
 | 
					           <widget class="QSpinBox" name="maxMemSpinBox">
 | 
				
			||||||
 | 
					            <property name="minimum">
 | 
				
			||||||
 | 
					             <number>512</number>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					            <property name="maximum">
 | 
				
			||||||
 | 
					             <number>65536</number>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					            <property name="singleStep">
 | 
				
			||||||
 | 
					             <number>128</number>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					            <property name="value">
 | 
				
			||||||
 | 
					             <number>1024</number>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="0" column="0">
 | 
				
			||||||
 | 
					           <widget class="QLabel" name="labelMinMem">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Minimum memory allocation:</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="1" column="0">
 | 
				
			||||||
 | 
					           <widget class="QLabel" name="labelMaxMem">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Maximum memory allocation:</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="0" column="1">
 | 
				
			||||||
 | 
					           <widget class="QSpinBox" name="minMemSpinBox">
 | 
				
			||||||
 | 
					            <property name="minimum">
 | 
				
			||||||
 | 
					             <number>256</number>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					            <property name="maximum">
 | 
				
			||||||
 | 
					             <number>65536</number>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					            <property name="singleStep">
 | 
				
			||||||
 | 
					             <number>128</number>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					            <property name="value">
 | 
				
			||||||
 | 
					             <number>256</number>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					         </layout>
 | 
				
			||||||
 | 
					        </widget>
 | 
				
			||||||
 | 
					       </item>
 | 
				
			||||||
 | 
					       <item>
 | 
				
			||||||
 | 
					        <widget class="QGroupBox" name="javaSettingsGroupBox">
 | 
				
			||||||
 | 
					         <property name="title">
 | 
				
			||||||
 | 
					          <string>Java Settings</string>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					         <layout class="QGridLayout" name="gridLayout_3">
 | 
				
			||||||
 | 
					          <item row="0" column="0">
 | 
				
			||||||
 | 
					           <widget class="QLabel" name="labelJavaPath">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Java path:</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="0" column="1">
 | 
				
			||||||
 | 
					           <widget class="QLineEdit" name="javaPathTextBox"/>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="1" column="0">
 | 
				
			||||||
 | 
					           <widget class="QLabel" name="labelJVMArgs">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>JVM arguments:</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="0" column="2">
 | 
				
			||||||
 | 
					           <widget class="QPushButton" name="pushButton">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Auto-detect</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="1" column="1" colspan="2">
 | 
				
			||||||
 | 
					           <widget class="QLineEdit" name="jvmArgsTextBox"/>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					         </layout>
 | 
				
			||||||
 | 
					        </widget>
 | 
				
			||||||
 | 
					       </item>
 | 
				
			||||||
 | 
					       <item>
 | 
				
			||||||
 | 
					        <widget class="QGroupBox" name="customCommandsGroupBox">
 | 
				
			||||||
 | 
					         <property name="title">
 | 
				
			||||||
 | 
					          <string>Custom Commands</string>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					         <layout class="QGridLayout" name="gridLayout_4">
 | 
				
			||||||
 | 
					          <item row="1" column="0">
 | 
				
			||||||
 | 
					           <widget class="QLabel" name="labelPostExitCmd">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Post-exit command:</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="0" column="0">
 | 
				
			||||||
 | 
					           <widget class="QLabel" name="labelPreLaunchCmd">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Pre-launch command:</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="0" column="1">
 | 
				
			||||||
 | 
					           <widget class="QLineEdit" name="preLaunchCmdTextBox"/>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="1" column="1">
 | 
				
			||||||
 | 
					           <widget class="QLineEdit" name="postExitCmdTextBox"/>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					          <item row="2" column="0" colspan="2">
 | 
				
			||||||
 | 
					           <widget class="QLabel" name="labelCustomCmdsDescription">
 | 
				
			||||||
 | 
					            <property name="text">
 | 
				
			||||||
 | 
					             <string>Pre-launch command runs before the instance launches and post-exit command runs after it exits. Both will be run in MultiMC's working directory with INST_ID, INST_DIR, and INST_NAME as environment variables.</string>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					            <property name="wordWrap">
 | 
				
			||||||
 | 
					             <bool>true</bool>
 | 
				
			||||||
 | 
					            </property>
 | 
				
			||||||
 | 
					           </widget>
 | 
				
			||||||
 | 
					          </item>
 | 
				
			||||||
 | 
					         </layout>
 | 
				
			||||||
 | 
					        </widget>
 | 
				
			||||||
 | 
					       </item>
 | 
				
			||||||
 | 
					       <item>
 | 
				
			||||||
 | 
					        <spacer name="verticalSpacerJava">
 | 
				
			||||||
 | 
					         <property name="orientation">
 | 
				
			||||||
 | 
					          <enum>Qt::Vertical</enum>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					         <property name="sizeHint" stdset="0">
 | 
				
			||||||
 | 
					          <size>
 | 
				
			||||||
 | 
					           <width>20</width>
 | 
				
			||||||
 | 
					           <height>40</height>
 | 
				
			||||||
 | 
					          </size>
 | 
				
			||||||
 | 
					         </property>
 | 
				
			||||||
 | 
					        </spacer>
 | 
				
			||||||
 | 
					       </item>
 | 
				
			||||||
 | 
					      </layout>
 | 
				
			||||||
 | 
					     </widget>
 | 
				
			||||||
 | 
					    </widget>
 | 
				
			||||||
 | 
					   </item>
 | 
				
			||||||
 | 
					   <item>
 | 
				
			||||||
 | 
					    <widget class="QDialogButtonBox" name="buttonBox">
 | 
				
			||||||
 | 
					     <property name="orientation">
 | 
				
			||||||
 | 
					      <enum>Qt::Horizontal</enum>
 | 
				
			||||||
 | 
					     </property>
 | 
				
			||||||
 | 
					     <property name="standardButtons">
 | 
				
			||||||
 | 
					      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
 | 
				
			||||||
 | 
					     </property>
 | 
				
			||||||
 | 
					    </widget>
 | 
				
			||||||
 | 
					   </item>
 | 
				
			||||||
 | 
					  </layout>
 | 
				
			||||||
 | 
					 </widget>
 | 
				
			||||||
 | 
					 <resources>
 | 
				
			||||||
 | 
					  <include location="../multimc.qrc"/>
 | 
				
			||||||
 | 
					 </resources>
 | 
				
			||||||
 | 
					 <connections>
 | 
				
			||||||
 | 
					  <connection>
 | 
				
			||||||
 | 
					   <sender>buttonBox</sender>
 | 
				
			||||||
 | 
					   <signal>accepted()</signal>
 | 
				
			||||||
 | 
					   <receiver>SettingsDialog</receiver>
 | 
				
			||||||
 | 
					   <slot>accept()</slot>
 | 
				
			||||||
 | 
					   <hints>
 | 
				
			||||||
 | 
					    <hint type="sourcelabel">
 | 
				
			||||||
 | 
					     <x>257</x>
 | 
				
			||||||
 | 
					     <y>410</y>
 | 
				
			||||||
 | 
					    </hint>
 | 
				
			||||||
 | 
					    <hint type="destinationlabel">
 | 
				
			||||||
 | 
					     <x>157</x>
 | 
				
			||||||
 | 
					     <y>274</y>
 | 
				
			||||||
 | 
					    </hint>
 | 
				
			||||||
 | 
					   </hints>
 | 
				
			||||||
 | 
					  </connection>
 | 
				
			||||||
 | 
					  <connection>
 | 
				
			||||||
 | 
					   <sender>buttonBox</sender>
 | 
				
			||||||
 | 
					   <signal>rejected()</signal>
 | 
				
			||||||
 | 
					   <receiver>SettingsDialog</receiver>
 | 
				
			||||||
 | 
					   <slot>reject()</slot>
 | 
				
			||||||
 | 
					   <hints>
 | 
				
			||||||
 | 
					    <hint type="sourcelabel">
 | 
				
			||||||
 | 
					     <x>325</x>
 | 
				
			||||||
 | 
					     <y>410</y>
 | 
				
			||||||
 | 
					    </hint>
 | 
				
			||||||
 | 
					    <hint type="destinationlabel">
 | 
				
			||||||
 | 
					     <x>286</x>
 | 
				
			||||||
 | 
					     <y>274</y>
 | 
				
			||||||
 | 
					    </hint>
 | 
				
			||||||
 | 
					   </hints>
 | 
				
			||||||
 | 
					  </connection>
 | 
				
			||||||
 | 
					 </connections>
 | 
				
			||||||
 | 
					</ui>
 | 
				
			||||||
		Reference in New Issue
	
	Block a user