void SPlaneSlicer::starting() { m_reslicer->SetOutputDimensionality(2); m_reslicer->SetInterpolationModeToLinear(); updateDefaultValue(); this->updating(); }
LiveDataWidget::LiveDataWidget(QStringList &langList, QWidget *parent /* = 0 */) : QWidget (parent) , _langList(langList) , _shortNameListView(0) , _shortNameListModel(0) , _shortNameEdit(0) , _unitEdit(0) , _commandIDBox(0) , _algorithmIDBox(0) , _contentEdits() , _defEdits() , _catalogList() , _shortNameList() , _currentCatalog() , _isAddNew(false) { QHBoxLayout *mainLayout = new QHBoxLayout(this); setLayout(mainLayout); _shortNameListView = new QListView(this); _shortNameListView->setMaximumWidth(240); _shortNameListModel = new QStringListModel(); _shortNameListView->setModel(_shortNameListModel); mainLayout->addWidget(_shortNameListView); QVBoxLayout *editLayout = new QVBoxLayout(this); mainLayout->addLayout(editLayout); { QHBoxLayout *hlayout = new QHBoxLayout(this); editLayout->addLayout(hlayout); // Short Name edit, for add new item QGroupBox *box = new QGroupBox(this); box->setTitle(trUtf8("Short Name")); box->setMaximumHeight(50); QHBoxLayout *layout = new QHBoxLayout(box); _shortNameEdit = new QLineEdit(box); box->setLayout(layout); layout->addWidget(_shortNameEdit); hlayout->addWidget(box); // Unit box = new QGroupBox(this); box->setTitle(trUtf8("Unit")); box->setMaximumWidth(100); box->setMaximumHeight(50); layout = new QHBoxLayout(box); _unitEdit = new QLineEdit(box); box->setLayout(layout); layout->addWidget(_unitEdit); hlayout->addWidget(box); // Command ID. box = new QGroupBox(this); box->setTitle(trUtf8("Command ID")); box->setMaximumWidth(100); box->setMaximumHeight(50); layout = new QHBoxLayout(box); _commandIDBox = new QComboBox(box); box->setLayout(layout); layout->addWidget(_commandIDBox); hlayout->addWidget(box); // Algorithm ID. box = new QGroupBox(this); box->setTitle(trUtf8("Algorithm ID")); box->setMaximumWidth(100); box->setMaximumHeight(50); layout = new QHBoxLayout(box); _algorithmIDBox = new QComboBox(box); box->setLayout(layout); layout->addWidget(_algorithmIDBox); hlayout->addWidget(box); } connect(_unitEdit, SIGNAL(textChanged(QString)), this, SLOT(updateUnit(QString))); connect(_commandIDBox, SIGNAL(currentIndexChanged(QString)), this, SLOT(updateCommboxID(QString))); connect(_algorithmIDBox, SIGNAL(currentIndexChanged(QString)), this, SLOT(updateAlgorithmID(QString))); connect(_shortNameEdit, SIGNAL(textChanged(QString)), this, SLOT(changeAddNew())); for (int i = 0; i < _langList.size(); i++) { QGroupBox *box = new QGroupBox(this); box->setTitle(_langList[i]); editLayout->addWidget(box); QVBoxLayout *boxLayout = new QVBoxLayout(box); box->setLayout(boxLayout); // Defalut Value QGroupBox *defBox = new QGroupBox(box); defBox->setTitle(trUtf8("Default Value")); boxLayout->addWidget(defBox); QLineEdit *defEdit = new QLineEdit(defBox); defEdit->setObjectName(_langList[i]); QVBoxLayout *layout = new QVBoxLayout(defBox); defBox->setLayout(layout); layout->addWidget(defEdit); defBox->setMaximumHeight(50); _defEdits.insert(_langList[i], defEdit); // Content Edit QGroupBox *contentBox = new QGroupBox(box); contentBox->setTitle(trUtf8("Content")); boxLayout->addWidget(contentBox); QPlainTextEdit *contentEdit = new QPlainTextEdit(contentBox); contentEdit->setObjectName(_langList[i]); layout = new QVBoxLayout(contentBox); layout->addWidget(contentEdit); contentBox->setLayout(layout); _contentEdits.insert(_langList[i], contentEdit); connect(defEdit, SIGNAL(textChanged(QString)), this, SLOT(updateDefaultValue(QString))); connect(contentEdit, SIGNAL(textChanged()), this, SLOT(updateContent())); } connect(_shortNameListView, SIGNAL(clicked(QModelIndex)), this, SLOT(setCurrentShortName(QModelIndex))); }