diff -r ecff51f1e7fb -r 8a14024f954a stif/QtUI/StifQtUI/dlgsetting.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/stif/QtUI/StifQtUI/dlgsetting.cpp Mon Mar 15 12:46:13 2010 +0200 @@ -0,0 +1,62 @@ +/* + * dlgsetting.cpp + * + * Created on: 2010-2-8 + * Author: y183zhan + */ + +#include "dlgsetting.h" +#include + +DlgSetting::DlgSetting(UiSetting* settingObj, QWidget *parent) + : QDialog(parent), setting(settingObj) + { + SetupUI(); + } + +void DlgSetting::SetupUI() + { + this->setContextMenuPolicy(Qt::NoContextMenu); + QGridLayout *mainLayout = new QGridLayout(this); + this->setLayout(mainLayout); + + chkShowoutput = new QCheckBox(this); + chkShowoutput->setText(tr("Show output in execution.")); + chkShowoutput->setChecked(setting->ReadSetting("showoutput") == "true"); + + QWidget *toolWidget = new QWidget(this); + QGridLayout *toolLayout = new QGridLayout(); + + toolWidget->setLayout(toolLayout); + btnOk = new QPushButton(tr("Ok"), toolWidget); + btnOk->setFixedSize(100, 30); + QObject::connect(btnOk, SIGNAL(clicked()), this, + SLOT(on_btnOk_clicked())); + btnCancel = new QPushButton(tr("Cancel"), toolWidget); + btnCancel->setFixedSize(100, 30); + QObject::connect(btnCancel, SIGNAL(clicked()), this, + SLOT(on_btnCancel_clicked())); + toolLayout->addWidget(btnOk, 0, 0); + toolLayout->addWidget(btnCancel, 0, 1); + + mainLayout->addWidget(chkShowoutput, 0, 0); + mainLayout->addWidget(toolWidget, 2, 0); + } + +void DlgSetting::on_btnOk_clicked() + { + if(chkShowoutput->checkState() == Qt::Checked) + { + setting->SetSetting("showoutput", "true"); + } + else + { + setting->SetSetting("showoutput", "false"); + } + this->accept(); + } + +void DlgSetting::on_btnCancel_clicked() + { + this->reject(); + }