mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Removed Profile tab from Preferences
This commit is contained in:
parent
eed9aea63a
commit
591b73e7f3
@ -11,36 +11,13 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) :
|
||||
{
|
||||
ui->setupUi(this);
|
||||
Q_ASSERT(profile!=NULL);
|
||||
ui->firstNameEdit->setText((*profile)["FirstName"].toString());
|
||||
ui->lastNameEdit->setText((*profile)["LastName"].toString());
|
||||
ui->addressEdit->clear();
|
||||
ui->addressEdit->appendPlainText((*profile)["Address"].toString());
|
||||
ui->emailEdit->setText((*profile)["EmailAddress"].toString());
|
||||
ui->phoneEdit->setText((*profile)["Phone"].toString());
|
||||
QString gender;
|
||||
|
||||
if ((*profile).Exists("Gender")) {
|
||||
gender=(*profile)["Gender"].toString().toLower();
|
||||
} else gender="male";
|
||||
|
||||
// I know this looks sexist.. This was originally a boolean.. :)
|
||||
if ((gender=="male") || (gender=="true")) ui->genderMale->setChecked(true);
|
||||
else if ((gender=="female") || (gender=="false")) ui->genderFemale->setChecked(true);
|
||||
|
||||
|
||||
bool ok;
|
||||
ui->heightEdit->setValue((*profile)["Height"].toDouble(&ok));
|
||||
if (!(*profile).Exists("DOB")) {
|
||||
ui->dobEdit->setDate(QDate(1970,1,1));
|
||||
} else {
|
||||
ui->dobEdit->setDate((*profile)["DOB"].toDate());
|
||||
}
|
||||
ui->tabWidget->setCurrentIndex(0);
|
||||
int i=ui->unitCombo->findText((*profile)["UnitSystem"].toString());
|
||||
if (i<0) i=0;
|
||||
ui->unitCombo->setCurrentIndex(i);
|
||||
|
||||
i=ui->timeZoneCombo->findText((*profile)["TimeZone"].toString());
|
||||
ui->timeZoneCombo->setCurrentIndex(i);
|
||||
//i=ui->timeZoneCombo->findText((*profile)["TimeZone"].toString());
|
||||
//ui->timeZoneCombo->setCurrentIndex(i);
|
||||
|
||||
QTime t=pref["DaySplitTime"].toTime();
|
||||
ui->timeEdit->setTime(t);
|
||||
@ -97,23 +74,12 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) :
|
||||
row++;
|
||||
}
|
||||
}
|
||||
QLocale locale=QLocale::system();
|
||||
/* QLocale locale=QLocale::system();
|
||||
QString shortformat=locale.dateFormat(QLocale::ShortFormat);
|
||||
if (!shortformat.toLower().contains("yyyy")) {
|
||||
shortformat.replace("yy","yyyy");
|
||||
}
|
||||
ui->dobEdit->setDisplayFormat(shortformat);
|
||||
}*/
|
||||
|
||||
ui->profileTab->setTabOrder(ui->firstNameEdit,ui->lastNameEdit);
|
||||
ui->profileTab->setTabOrder(ui->lastNameEdit,ui->addressEdit);
|
||||
ui->profileTab->setTabOrder(ui->addressEdit,ui->genderMale);
|
||||
ui->profileTab->setTabOrder(ui->genderMale,ui->genderFemale);
|
||||
ui->profileTab->setTabOrder(ui->genderFemale,ui->dobEdit);
|
||||
ui->profileTab->setTabOrder(ui->dobEdit,ui->heightEdit);
|
||||
ui->profileTab->setTabOrder(ui->heightEdit,ui->phoneEdit);
|
||||
ui->profileTab->setTabOrder(ui->phoneEdit,ui->timeZoneCombo);
|
||||
ui->profileTab->setTabOrder(ui->timeZoneCombo,ui->emailEdit);
|
||||
ui->profileTab->setTabOrder(ui->emailEdit,ui->unitCombo);
|
||||
}
|
||||
|
||||
|
||||
@ -145,18 +111,8 @@ void PreferencesDialog::on_eventTable_doubleClicked(const QModelIndex &index)
|
||||
|
||||
void PreferencesDialog::Save()
|
||||
{
|
||||
(*profile)["FirstName"]=ui->firstNameEdit->text();
|
||||
(*profile)["LastName"]=ui->lastNameEdit->text();
|
||||
if (ui->genderMale->isChecked())
|
||||
(*profile)["Gender"]="male";
|
||||
else (*profile)["Gender"]="female";
|
||||
(*profile)["Height"]=ui->heightEdit->value();
|
||||
(*profile)["DOB"]=ui->dobEdit->date();
|
||||
(*profile)["EmailAddress"]=ui->emailEdit->text();
|
||||
(*profile)["Phone"]=ui->phoneEdit->text();
|
||||
(*profile)["Address"]=ui->addressEdit->toPlainText();
|
||||
(*profile)["UnitSystem"]=ui->unitCombo->currentText();
|
||||
(*profile)["TimeZone"]=ui->timeZoneCombo->currentText();
|
||||
//(*profile)["TimeZone"]=ui->timeZoneCombo->currentText();
|
||||
|
||||
pref["CombineCloserSessions"]=ui->combineSlider->value();
|
||||
pref["IgnoreShorterSessions"]=ui->IgnoreSlider->value();
|
||||
|
@ -9,8 +9,8 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>491</width>
|
||||
<height>299</height>
|
||||
<width>477</width>
|
||||
<height>264</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
@ -29,269 +29,151 @@
|
||||
<item>
|
||||
<widget class="QTabWidget" name="tabWidget">
|
||||
<property name="currentIndex">
|
||||
<number>2</number>
|
||||
<number>0</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="profileTab">
|
||||
<widget class="QWidget" name="tab_3">
|
||||
<attribute name="title">
|
||||
<string>&Profile</string>
|
||||
<string>&CPAP/Visual</string>
|
||||
</attribute>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_8">
|
||||
<item>
|
||||
<layout class="QGridLayout" name="gridLayout_2">
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="label_8">
|
||||
<property name="text">
|
||||
<string>Address:</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="label_13">
|
||||
<property name="text">
|
||||
<string>Phone:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QLineEdit" name="phoneEdit"/>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_6">
|
||||
<item>
|
||||
<widget class="QLineEdit" name="firstNameEdit">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
||||
<horstretch>1</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label_7">
|
||||
<property name="text">
|
||||
<string>First Name:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<widget class="QLineEdit" name="emailEdit"/>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<widget class="QLabel" name="label_14">
|
||||
<property name="text">
|
||||
<string>Email:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="1">
|
||||
<spacer name="verticalSpacer_3">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QPlainTextEdit" name="addressEdit">
|
||||
<property name="tabChangesFocus">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label_17">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Intentional Leak</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<item row="1" column="0" colspan="2">
|
||||
<widget class="QLabel" name="label_12">
|
||||
<property name="text">
|
||||
<string>Gender:</string>
|
||||
</property>
|
||||
</widget>
|
||||
<item row="4" column="0">
|
||||
<widget class="QLabel" name="label_18">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Overlay Flags</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="6" column="0">
|
||||
<widget class="QLabel" name="label_7">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Unit System</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="3">
|
||||
<widget class="QCheckBox" name="useGraphSnapshots">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>The Pie Chart in the Daily Views left panel.
|
||||
This takes extra space, and has been known to cause problems on certain computer configurations, hence it's turned off by default.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Graph Snapshots</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QDoubleSpinBox" name="intentionalLeakEdit">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Intentional Leak value for your Mask type in Litres/Minute.
|
||||
(ResMed machines only report unintentional leaks and don't need this)
|
||||
</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="1">
|
||||
<widget class="QComboBox" name="overlayFlagsCombo">
|
||||
<property name="toolTip">
|
||||
<string>The visual method of displaying waveform overlay flags.</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Standard Bars</string>
|
||||
</property>
|
||||
</item>
|
||||
<item row="1" column="2">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_9">
|
||||
<item>
|
||||
<widget class="QRadioButton" name="genderMale">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
||||
<horstretch>1</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Male</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="genderFemale">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
||||
<horstretch>1</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Female</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Top & Bottom Markers</string>
|
||||
</property>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="label_10">
|
||||
<property name="text">
|
||||
<string>D.O.B.:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="3">
|
||||
<widget class="QCheckBox" name="useAntiAliasing">
|
||||
<property name="toolTip">
|
||||
<string>Reduces the jagged edges on lines a little.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Use Anti-Aliasing</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="6" column="1">
|
||||
<widget class="QComboBox" name="unitCombo">
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Metric</string>
|
||||
</property>
|
||||
</item>
|
||||
<item row="2" column="2">
|
||||
<widget class="QDateEdit" name="dobEdit">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
||||
<horstretch>1</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>You don't have to if you don't want. Some nifty calculations may need it.</string>
|
||||
</property>
|
||||
<property name="displayFormat">
|
||||
<string>d/MM/yyyy</string>
|
||||
</property>
|
||||
</widget>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Dark Ages</string>
|
||||
</property>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<widget class="QLabel" name="label_11">
|
||||
<property name="text">
|
||||
<string>Height:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="2">
|
||||
<widget class="QDoubleSpinBox" name="heightEdit">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
||||
<horstretch>1</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Used in BMI calculations. Americans, please us decimal inches here, unless you speak metric.</string>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<double>0.000000000000000</double>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<double>299.990000000000009</double>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="2">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
||||
<item>
|
||||
<widget class="QLineEdit" name="lastNameEdit">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
||||
<horstretch>1</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label_9">
|
||||
<property name="text">
|
||||
<string>Last Name:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="2">
|
||||
<widget class="QComboBox" name="timeZoneCombo">
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>The Moon</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Jupiter</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Ursa Minor</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Yo Momma!</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="0">
|
||||
<widget class="QLabel" name="label_15">
|
||||
<property name="text">
|
||||
<string>Time Zone:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="6" column="2">
|
||||
<spacer name="verticalSpacer_2">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="5" column="2">
|
||||
<widget class="QComboBox" name="unitCombo">
|
||||
<property name="toolTip">
|
||||
<string/>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Metric</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Dark Ages</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="0">
|
||||
<widget class="QLabel" name="label_16">
|
||||
<property name="text">
|
||||
<string>Unit System:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="6" column="3">
|
||||
<widget class="QCheckBox" name="useMultithreading">
|
||||
<property name="toolTip">
|
||||
<string>You may need to disable this if your experiencing crashes.
|
||||
It has no effect on single cpu machines.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Use Multi-Threading</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="8" column="0" colspan="4">
|
||||
<spacer name="verticalSpacer_4">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>264</width>
|
||||
<height>108</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
@ -514,134 +396,6 @@ p, li { white-space: pre-wrap; }
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="tab_3">
|
||||
<attribute name="title">
|
||||
<string>&CPAP/Visual</string>
|
||||
</attribute>
|
||||
<layout class="QGridLayout" name="gridLayout_3">
|
||||
<item row="0" column="0">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_10">
|
||||
<item>
|
||||
<widget class="QLabel" name="label_17">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Intentional Leak</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QDoubleSpinBox" name="intentionalLeakEdit">
|
||||
<property name="toolTip">
|
||||
<string>Intentional Leak value for your Mask type in Litres/Minute.
|
||||
(ResMed machines only report unintentional leaks and don't need this)
|
||||
</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QCheckBox" name="useGraphSnapshots">
|
||||
<property name="toolTip">
|
||||
<string>The Pie Chart in the Daily Views left panel.
|
||||
This takes extra space, and has been known to cause problems on certain computer configurations, hence it's turned off by default.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Graph Snapshots</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_11">
|
||||
<item>
|
||||
<widget class="QLabel" name="label_18">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Overlay Flags</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QComboBox" name="overlayFlagsCombo">
|
||||
<property name="toolTip">
|
||||
<string>The visual method of displaying waveform overlay flags.</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Standard Bars</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Top & Bottom Markers</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QCheckBox" name="useAntiAliasing">
|
||||
<property name="toolTip">
|
||||
<string>Reduces the jagged edges on lines a little.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Use Anti-Aliasing</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<spacer name="verticalSpacer_4">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>264</width>
|
||||
<height>108</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<spacer name="verticalSpacer_5">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>185</width>
|
||||
<height>108</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QCheckBox" name="useMultithreading">
|
||||
<property name="toolTip">
|
||||
<string>You may need to disable this if your experiencing crashes.
|
||||
It has no effect on single cpu machines.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Use Multi-Threading</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="tab_2">
|
||||
<attribute name="title">
|
||||
<string>&Events</string>
|
||||
|
Loading…
Reference in New Issue
Block a user