diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2010-05-12 18:38:27 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2010-05-12 18:38:27 +0000 |
commit | d12ebc839f2d509c8a5ac60f7e9e55ffab5dcbcf (patch) | |
tree | 01780dd64257fa84bc76ed7c79285513d5235673 /settingsdialog.cpp | |
parent | visual polishing of attachment-view, testfile for more attachments, add test-... (diff) | |
download | gpg4usb-d12ebc839f2d509c8a5ac60f7e9e55ffab5dcbcf.tar.gz gpg4usb-d12ebc839f2d509c8a5ac60f7e9e55ffab5dcbcf.zip |
add option for mimeparsing to settings-dialog
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@326 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'settingsdialog.cpp')
-rwxr-xr-x | settingsdialog.cpp | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/settingsdialog.cpp b/settingsdialog.cpp index e6d086a..976907e 100755 --- a/settingsdialog.cpp +++ b/settingsdialog.cpp @@ -117,6 +117,16 @@ SettingsDialog::SettingsDialog(QWidget *parent) vbox2->addWidget(langNote); langBox->setLayout(vbox2); + /***************************************** + * MIME-Parsing-Box + *****************************************/ + + mimeParseBox = new QGroupBox(tr("MIME-parsing (Experimental)")); + mimeParseBoxLayout = new QHBoxLayout(); + mimeParseCheckBox =new QCheckBox(tr("Try to split attachments from PGP-MIME ecrypted messages."),this); + mimeParseBoxLayout->addWidget(mimeParseCheckBox); + mimeParseBox->setLayout(mimeParseBoxLayout); + /***************************************** * Button-Box *****************************************/ @@ -129,14 +139,15 @@ SettingsDialog::SettingsDialog(QWidget *parent) *****************************************/ vbox = new QVBoxLayout(); vbox->addWidget(iconSizeBox); - vbox->addWidget(iconStyleBox); + vbox->addWidget(iconStyleBox); vbox->addWidget(windowSizeBox); vbox->addWidget(saveCheckedKeysBox); + vbox->addWidget(mimeParseBox); vbox->addWidget(langBox); vbox->addWidget(buttonBox); setLayout(vbox); - - setSettings(); + + setSettings(); exec(); } @@ -181,6 +192,9 @@ void SettingsDialog::setSettings() Qt::CheckState keySave = static_cast<Qt::CheckState>(settings.value("keys/keySave", Qt::Unchecked).toUInt()); saveCheckedKeysCheckBox->setCheckState(keySave); + // MIME-Parsing + if(settings.value("mime/parsemime").toBool()) mimeParseCheckBox->setCheckState(Qt::Checked); + //Language setting QString langKey = settings.value("int/lang").toString(); QString langValue = lang.value(langKey); @@ -217,6 +231,8 @@ void SettingsDialog::applySettings() settings.setValue("window/windowSave", windowSizeCheckBox->checkState()); settings.setValue("keys/keySave", saveCheckedKeysCheckBox->checkState()); + settings.setValue("mime/parsemime" , mimeParseCheckBox->isChecked()); + //qDebug() << "lang:" << langSelectBox->currentText() << " : " << lang.key(langSelectBox->currentText()); settings.setValue("int/lang", lang.key(langSelectBox->currentText())); |