41#include "ui_minimumnormsettingsview.h"
64 const QString& sMethod,
68,
m_pUi(new Ui::MinimumNormSettingsViewWidget)
74 connect(
m_pUi->m_comboBox_method,
static_cast<void (QComboBox::*)(
const QString&)
>(&QComboBox::currentTextChanged),
77 connect(
m_pUi->m_comboBox_triggerType,
static_cast<void (QComboBox::*)(
const QString&)
>(&QComboBox::currentTextChanged),
80 connect(
m_pUi->m_spinBox_timepoint, &QSpinBox::editingFinished,
86 m_pUi->m_comboBox_method->setEnabled(
false);
89 this->setWindowTitle(
"MinimumNorm Settings");
90 this->setMinimumWidth(330);
91 this->setMaximumWidth(330);
108 for(
const QString &sTriggerType : lTriggerTypes) {
109 if(
m_pUi->m_comboBox_triggerType->findText(sTriggerType) == -1) {
110 m_pUi->m_comboBox_triggerType->addItem(sTriggerType);
124 QSettings settings(
"MNECPP");
136 QSettings settings(
"MNECPP");
Declaration of the MinimumNormSettingsView Class.
2-D display widgets and visualisation helpers (charts, topography, colour maps).
AbstractView(QWidget *parent=0, Qt::WindowFlags f=Qt::Widget)
void updateProcessingMode(ProcessingMode mode)
~MinimumNormSettingsView()
void onMethodChanged(const QString &method)
void onTriggerTypeChanged(const QString &sTriggerType)
MinimumNormSettingsView(const QString &sSettingsPath="", const QString &sMethod="", QWidget *parent=0, Qt::WindowFlags f=Qt::Widget)
void timePointChanged(int iTimePoint)
void updateGuiMode(GuiMode mode)
void onTimePointValueChanged()
void triggerTypeChanged(const QString &triggerType)
void setTriggerTypes(const QStringList &lTriggerTypes)
void methodChanged(const QString &method)
Ui::MinimumNormSettingsViewWidget * m_pUi