source: tspsg/src/settingsdialog.cpp @ 7ba743d983

appveyorimgbotreadme
Last change on this file since 7ba743d983 was 7ba743d983, checked in by Oleksii Serdiuk, 12 years ago

Converted svn keywords into git export-subst attribute.

However, keywords are now replaced only when you run 'git archive'.

  • Property mode set to 100644
File size: 19.3 KB
Line 
1/*
2 *  TSPSG: TSP Solver and Generator
3 *  Copyright (C) 2007-2011 Lёppa <contacts[at]oleksii[dot]name>
4 *
5 *  $Id: $Format:%h %ai %an$ $
6 *  $URL: http://tspsg.info/ $
7 *
8 *  This file is part of TSPSG.
9 *
10 *  TSPSG is free software: you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License as published by
12 *  the Free Software Foundation, either version 3 of the License, or
13 *  (at your option) any later version.
14 *
15 *  TSPSG is distributed in the hope that it will be useful,
16 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 *  GNU General Public License for more details.
19 *
20 *  You should have received a copy of the GNU General Public License
21 *  along with TSPSG.  If not, see <http://www.gnu.org/licenses/>.
22 */
23
24#include "settingsdialog.h"
25
26/*!
27 * \brief Class constructor.
28 * \param parent Settings Dialog parent widget.
29 *
30 * Initializes Settings Dialog and creates its layout based on target OS.
31 */
32SettingsDialog::SettingsDialog(QWidget *parent)
33    : QDialog(parent), _newFont(false), _newColor(false), _translucency(0)
34{
35    setupUi(this);
36
37    setWindowIcon(GET_ICON("preferences-system"));
38
39    buttonBox->button(QDialogButtonBox::Ok)->setIcon(GET_ICON("dialog-ok"));
40#ifndef QT_NO_STATUSTIP
41    buttonBox->button(QDialogButtonBox::Ok)->setStatusTip(tr("Save new preferences"));
42#endif
43    buttonBox->button(QDialogButtonBox::Ok)->setCursor(QCursor(Qt::PointingHandCursor));
44    buttonBox->button(QDialogButtonBox::Cancel)->setIcon(GET_ICON("dialog-cancel"));
45#ifndef QT_NO_STATUSTIP
46    buttonBox->button(QDialogButtonBox::Cancel)->setStatusTip(tr("Close without saving preferences"));
47#endif
48    buttonBox->button(QDialogButtonBox::Cancel)->setCursor(QCursor(Qt::PointingHandCursor));
49
50    buttonColor->setIcon(GET_ICON("format-text-color"));
51    buttonFont->setIcon(GET_ICON("preferences-desktop-font"));
52    buttonHelp->setIcon(GET_ICON("help-hint"));
53
54QPalette p = bgWhite->palette();
55    p.setColor(QPalette::Window, p.color(QPalette::Base));
56    bgWhite->setPalette(p);
57
58    p = lineHorizontal->palette();
59    p.setColor(QPalette::Window, p.color(QPalette::Text));
60    lineHorizontal->setPalette(p);
61
62// Layout helpers
63QBoxLayout *box;
64QHBoxLayout *hbox;
65#ifndef QT_NO_PRINTER
66    cbHQGraph = new QCheckBox(bgWhite);
67    cbHQGraph->setObjectName("cbHQGraph");
68#ifndef QT_NO_STATUSTIP
69    cbHQGraph->setStatusTip(tr("Higher quality graph looks much better when printing but uglier on the screen"));
70#endif // QT_NO_STATUSTIP
71    cbHQGraph->setText(tr("Draw solution graph in higher quality"));
72    cbHQGraph->setCursor(QCursor(Qt::PointingHandCursor));
73
74    box = static_cast<QBoxLayout *>(tabOutput->layout());
75    hbox = new QHBoxLayout();
76    hbox->addSpacing(10);
77    hbox->addWidget(cbHQGraph);
78    box->insertLayout(box->indexOf(cbGenerateGraph) + 2, hbox);
79    connect(cbGenerateGraph, SIGNAL(toggled(bool)), cbHQGraph, SLOT(setEnabled(bool)));
80#endif
81
82    if (hasUpdater()) {
83        cbCheck4Updates = new QCheckBox(bgWhite);
84        cbCheck4Updates->setObjectName("cbCheck4Updates");
85#ifndef QT_NO_STATUSTIP
86        cbCheck4Updates->setStatusTip(tr("Automatically check for updates at the given interval"));
87#endif // QT_NO_STATUSTIP
88        cbCheck4Updates->setText(tr("Check for updates every"));
89        cbCheck4Updates->setCursor(QCursor(Qt::PointingHandCursor));
90
91        spinUpdateCheckInterval = new QSpinBox(bgWhite);
92        spinUpdateCheckInterval->setObjectName("spinUpdateCheckInterval");
93#ifndef QT_NO_STATUSTIP
94        spinUpdateCheckInterval->setStatusTip(tr("Minimal interval at which to check for updates"));
95#endif // QT_NO_STATUSTIP
96        spinUpdateCheckInterval->setSuffix(tr(" days", "Don't forget a space at the beginning!"));
97        spinUpdateCheckInterval->setRange(1, 365);
98        spinUpdateCheckInterval->setCursor(QCursor(Qt::PointingHandCursor));
99
100        connect(cbCheck4Updates, SIGNAL(toggled(bool)), spinUpdateCheckInterval, SLOT(setEnabled(bool)));
101
102        box = static_cast<QBoxLayout *>(tabGeneral->layout());
103        hbox = new QHBoxLayout();
104        hbox->setSpacing(0);
105        hbox->addWidget(cbCheck4Updates);
106        hbox->addWidget(spinUpdateCheckInterval);
107        hbox->addStretch();
108        box->insertLayout(box->indexOf(cbUseNativeDialogs) + 1, hbox);
109    } else
110        cbCheck4Updates = NULL;
111
112#ifdef HANDHELD
113QVBoxLayout *vbox1; // Layout helper
114
115    // On screens with small height when SIP is shown and the window is resized
116    // there is not enought space for all elements.
117    // So we show the scrollbars to be able to access them.
118QScrollArea *scrollArea = new QScrollArea(this);
119    scrollArea->setFrameShape(QFrame::NoFrame);
120    scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
121    scrollArea->setWidgetResizable(true);
122    scrollArea->setWidget(bgWhite);
123
124    bgWhite->layout()->setMargin(0);
125
126    // Central layout
127    vbox1 = new QVBoxLayout(this);
128    vbox1->setMargin(0);
129    vbox1->setSpacing(0);
130    vbox1->addWidget(scrollArea);
131    vbox1->addWidget(bgGrey);
132    setLayout(vbox1);
133#else // HANDHELD
134QVBoxLayout *vbox; // Layout helper
135
136#ifndef HANDHELD
137    if (QtWin::isCompositionEnabled()) {
138        cbUseTranslucency = new QCheckBox(bgWhite);
139        cbUseTranslucency->setObjectName("cbUseTranslucency");
140#ifndef QT_NO_STATUSTIP
141        cbUseTranslucency->setStatusTip(tr("Make Main Window background translucent"));
142#endif // QT_NO_STATUSTIP
143        cbUseTranslucency->setText(tr("Use translucency effects"));
144        cbUseTranslucency->setCursor(QCursor(Qt::PointingHandCursor));
145    }
146#endif // HANDHELD
147
148    cbSaveState = new QCheckBox(bgWhite);
149    cbSaveState->setObjectName("cbSaveState");
150#ifndef QT_NO_STATUSTIP
151    cbSaveState->setStatusTip(tr("Restore main window state and position on application restart"));
152#endif // QT_NO_STATUSTIP
153    cbSaveState->setText(tr("Save main window state and position"));
154    cbSaveState->setCursor(QCursor(Qt::PointingHandCursor));
155
156    imgIcon = new QLabel(this);
157    imgIcon->setObjectName("imgIcon");
158    imgIcon->setSizePolicy(QSizePolicy::Fixed,QSizePolicy::Expanding);
159    imgIcon->setFrameShape(QFrame::NoFrame);
160    imgIcon->setPixmap(GET_ICON("preferences-system").pixmap(128, 128));
161    imgIcon->setStyleSheet("background-color: #0080C0; padding-top: 11px;");
162    imgIcon->setAlignment(Qt::AlignTop | Qt::AlignHCenter);
163    imgIcon->setMinimumWidth(150);
164
165    labelHint = new QLabel(bgGrey);
166    labelHint->setObjectName("labelHint");
167    labelHint->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Preferred);
168    labelHint->setMinimumSize(QSize(250, 28));
169    labelHint->setMaximumSize(QSize(QWIDGETSIZE_MAX, 28));
170    labelHint->setTextFormat(Qt::PlainText);
171//      labelHint->setAlignment(Qt::AlignLeft | Qt::AlignTop);
172    labelHint->setWordWrap(true);
173#ifndef QT_NO_STATUSTIP
174    labelHint->setStatusTip(tr("Hover mouse pointer over dialog elements to get additional help"));
175#endif // QT_NO_STATUSTIP
176
177    lineVertical = new QFrame(this);
178    lineVertical->setObjectName("lineVertical");
179    lineVertical->setFrameShadow(QFrame::Plain);
180    lineVertical->setFrameShape(QFrame::VLine);
181    lineVertical->setLineWidth(2);
182
183    // Top line
184    hbox = new QHBoxLayout();
185    hbox->addWidget(imgIcon);
186    hbox->addWidget(lineVertical);
187    hbox->addWidget(bgWhite);
188
189    box = static_cast<QBoxLayout *>(tabGeneral->layout());
190    box->insertWidget(box->indexOf(cbUseNativeDialogs) + 1, cbSaveState);
191#ifndef HANDHELD
192    if (QtWin::isCompositionEnabled())
193        box->insertWidget(box->indexOf(cbUseNativeDialogs) + 1, cbUseTranslucency);
194#endif // HANDHELD
195
196    // Inserting label for hints to the bottom part (with grey bg)
197    buttons->insertWidget(buttons->indexOf(buttonHelp) + 1, labelHint, 1);
198
199    // Central layout
200    vbox = new QVBoxLayout(this);
201    vbox->setMargin(0);
202    vbox->setSpacing(0);
203    vbox->addLayout(hbox);
204    vbox->addWidget(bgGrey);
205    setLayout(vbox);
206#endif // HANDHELD
207
208#ifdef Q_WS_WINCE_WM
209    // We need to react to SIP show/hide and resize the window appropriately
210    connect(QApplication::desktop(), SIGNAL(workAreaResized(int)), SLOT(desktopResized(int)));
211#endif // Q_WS_WINCE_WM
212    connect(spinRandMin, SIGNAL(valueChanged(int)), SLOT(spinRandMinValueChanged(int)));
213    connect(buttonFont, SIGNAL(clicked()), SLOT(buttonFontClicked()));
214    connect(buttonColor, SIGNAL(clicked()), SLOT(buttonColorClicked()));
215    setWindowFlags(windowFlags() ^ Qt::WindowContextHelpButtonHint);
216#if !defined(QT_NO_STATUSTIP) && !defined(HANDHELD)
217    // Setting initial text of dialog hint label to own status tip text.
218    labelHint->setText(labelHint->statusTip());
219#endif // HANDHELD
220
221    settings = new QSettings(QSettings::IniFormat, QSettings::UserScope, "TSPSG", "tspsg", this);
222    settings->remove("SettingsReset");
223
224    cbAutosize->setChecked(settings->value("Autosize", DEF_AUTOSIZE).toBool());
225    cbSaveLastUsed->setChecked(settings->value("SaveLastUsed", DEF_SAVE_LAST_USED).toBool());
226    cbUseNativeDialogs->setChecked(settings->value("UseNativeDialogs", DEF_USE_NATIVE_DIALOGS).toBool());
227#ifndef HANDHELD
228    if (QtWin::isCompositionEnabled())
229        cbUseTranslucency->setChecked(settings->value("UseTranslucency", DEF_USE_TRANSLUCENCY).toBool());
230#endif // HANDHELD
231#ifndef HANDHELD
232    cbSaveState->setChecked(settings->value("SavePos", DEF_SAVEPOS).toBool());
233#endif // HANDHELD
234    if (cbCheck4Updates != NULL) {
235        settings->beginGroup("Check4Updates");
236        cbCheck4Updates->setChecked(settings->value("Enabled", DEF_CHECK_FOR_UPDATES).toBool());
237        spinUpdateCheckInterval->setValue(settings->value("Interval", DEF_UPDATE_CHECK_INTERVAL).toInt());
238        settings->endGroup();
239        spinUpdateCheckInterval->setEnabled(cbCheck4Updates->isChecked());
240    }
241
242    settings->beginGroup("Task");
243    cbSymmetricMode->setChecked(settings->value("SymmetricMode", DEF_SYMMETRIC_MODE).toBool());
244    spinFractionalAccuracy->setValue(settings->value("FractionalAccuracy", DEF_FRACTIONAL_ACCURACY).toInt());
245    spinRandMin->setMaximum(MAX_RAND_VALUE);
246    spinRandMin->setValue(settings->value("RandMin",DEF_RAND_MIN).toInt());
247    spinRandMax->setMaximum(MAX_RAND_VALUE);
248    spinRandMax->setValue(settings->value("RandMax",DEF_RAND_MAX).toInt());
249    cbFractionalRandom->setChecked(settings->value("FractionalRandom", DEF_FRACTIONAL_RANDOM).toBool());
250    settings->endGroup();
251
252    settings->beginGroup("Output");
253    cbGenerateGraph->setChecked(settings->value("GenerateGraph", DEF_GENERATE_GRAPH).toBool());
254
255#ifndef QT_NO_PRINTER
256    cbHQGraph->setEnabled(cbGenerateGraph->isChecked());
257    cbHQGraph->setChecked(settings->value("HQGraph", DEF_HQ_GRAPH).toBool());
258#endif
259
260#if !defined(NOSVG) && (QT_VERSION >= 0x040500)
261    comboGraphImageFormat->addItem("svg");
262#endif // NOSVG && QT_VERSION >= 0x040500
263    // We create whitelist of formats, supported by the most popular web browsers according to
264    //  http://en.wikipedia.org/wiki/Comparison_of_web_browsers#Image_format_support
265    //  + TIFF format (there are plugins to support it).
266QStringList whitelist;
267    whitelist << "bmp" << "jpeg" << "png" << "tiff" << "xbm";
268    foreach (QByteArray format, QImageWriter::supportedImageFormats()) {
269        if (whitelist.contains(format))
270            comboGraphImageFormat->addItem(format);
271    }
272    comboGraphImageFormat->model()->sort(0);
273    comboGraphImageFormat->setCurrentIndex(comboGraphImageFormat->findText(settings->value("GraphImageFormat", DEF_GRAPH_IMAGE_FORMAT).toString(), Qt::MatchFixedString));
274    if (comboGraphImageFormat->currentIndex() < 0)
275        comboGraphImageFormat->setCurrentIndex(comboGraphImageFormat->findText(DEF_GRAPH_IMAGE_FORMAT, Qt::MatchFixedString));
276    labelGraphImageFormat->setEnabled(cbGenerateGraph->isChecked());
277    comboGraphImageFormat->setEnabled(cbGenerateGraph->isChecked());
278    cbEmbedGraphIntoHTML->setChecked(settings->value("EmbedGraphIntoHTML", DEF_EMBED_GRAPH_INTO_HTML).toBool());
279    cbEmbedGraphIntoHTML->setEnabled(cbGenerateGraph->isChecked());
280
281    cbShowMatrix->setChecked(settings->value("ShowMatrix", DEF_SHOW_MATRIX).toBool());
282    cbCitiesLimit->setEnabled(cbShowMatrix->isChecked());
283    cbCitiesLimit->setChecked(settings->value("UseShowMatrixLimit", DEF_USE_SHOW_MATRIX_LIMIT && cbShowMatrix->isChecked()).toBool());
284    spinCitiesLimit->setEnabled(cbShowMatrix->isChecked() && cbCitiesLimit->isChecked());
285    spinCitiesLimit->setValue(settings->value("ShowMatrixLimit", DEF_SHOW_MATRIX_LIMIT).toInt());
286    spinCitiesLimit->setMaximum(MAX_NUM_CITIES);
287    cbScrollToEnd->setChecked(settings->value("ScrollToEnd", DEF_SCROLL_TO_END).toBool());
288
289    font = qvariant_cast<QFont>(settings->value("Font", QFont(DEF_FONT_FACE, DEF_FONT_SIZE)));
290    color = QColor(settings->value("Colors/Text", DEF_TEXT_COLOR).toString());
291    settings->endGroup();
292
293#ifdef HANDHELD
294    setWindowState(Qt::WindowMaximized);
295#else
296    adjustSize();
297#endif // Q_WS_WINCE_WM
298}
299
300/*!
301 * \brief Indicates whether or not the font color has been changed.
302 * \return \c true if font color changed, otherwise \c false.
303 */
304bool SettingsDialog::colorChanged() const
305{
306    return _newColor;
307}
308
309/*!
310 * \brief Indicates whether or not the font properties have been changed.
311 * \return \c true if font properties changed, otherwise \c false.
312 */
313bool SettingsDialog::fontChanged() const
314{
315    return _newFont;
316}
317
318/*!
319 * \brief Indicates whether and how the translucency setting was changed
320 * \retval -1 the translucency was \em disabled.
321 * \retval  0 the translucency <em>didn't change</em>.
322 * \retval  1 the translucency was \em enabled.
323 */
324qint8 SettingsDialog::translucencyChanged() const
325{
326    return _translucency;
327}
328
329/* Privates **********************************************************/
330
331void SettingsDialog::accept()
332{
333    if (QApplication::keyboardModifiers() & Qt::ShiftModifier) {
334        if (QMessageBox::question(this, tr("Settings Reset"), tr("Do you really want to <b>reset all application settings to their defaults</b>?"), QMessageBox::RestoreDefaults | QMessageBox::Cancel) == QMessageBox::RestoreDefaults) {
335            _newFont = (font != QFont(DEF_FONT_FACE, DEF_FONT_SIZE));
336            _newColor = (color != DEF_TEXT_COLOR);
337            settings->remove("");
338            settings->setValue("SettingsReset", true);
339            QDialog::accept();
340            QMessageBox::information(this->parentWidget(), tr("Settings Reset"), tr("All settings where successfully reset to their defaults.\nIt is recommended to restart the application now."));
341            return;
342        } else
343            return;
344    }
345    settings->setValue("Autosize", cbAutosize->isChecked());
346    settings->setValue("SaveLastUsed", cbSaveLastUsed->isChecked());
347    settings->setValue("UseNativeDialogs", cbUseNativeDialogs->isChecked());
348#ifndef HANDHELD
349    if (QtWin::isCompositionEnabled()) {
350bool old = settings->value("UseTranslucency", DEF_USE_TRANSLUCENCY).toBool();
351        if ((!old && cbUseTranslucency->isChecked()) || (old && !cbUseTranslucency->isChecked())) {
352            _translucency = old ? -1 : 1;
353        } else
354            _translucency = 0;
355        settings->setValue("UseTranslucency", cbUseTranslucency->isChecked());
356    }
357    settings->setValue("SavePos", cbSaveState->isChecked());
358#endif // HANDHELD
359    if (cbCheck4Updates != NULL) {
360        settings->beginGroup("Check4Updates");
361        settings->setValue("Enabled", cbCheck4Updates->isChecked());
362        if (cbCheck4Updates->isChecked())
363            settings->setValue("Interval", spinUpdateCheckInterval->value());
364        settings->endGroup();
365    }
366
367    settings->beginGroup("Task");
368    settings->setValue("SymmetricMode", cbSymmetricMode->isChecked());
369    settings->setValue("FractionalAccuracy", spinFractionalAccuracy->value());
370    settings->setValue("RandMin", spinRandMin->value());
371    settings->setValue("RandMax", spinRandMax->value());
372    settings->setValue("FractionalRandom", cbFractionalRandom->isChecked());
373    settings->endGroup();
374
375    settings->beginGroup("Output");
376    settings->setValue("GenerateGraph", cbGenerateGraph->isChecked());
377    if (cbGenerateGraph->isChecked()) {
378#ifndef QT_NO_PRINTER
379        settings->setValue("HQGraph", cbHQGraph->isChecked());
380#endif
381        if (cbGenerateGraph->isChecked()) {
382            if (comboGraphImageFormat->currentIndex() >= 0)
383                settings->setValue("GraphImageFormat", comboGraphImageFormat->currentText());
384            else
385                settings->setValue("GraphImageFormat", DEF_GRAPH_IMAGE_FORMAT);
386        }
387        settings->setValue("EmbedGraphIntoHTML", cbEmbedGraphIntoHTML->isChecked());
388    }
389    settings->setValue("ShowMatrix", cbShowMatrix->isChecked());
390    settings->setValue("UseShowMatrixLimit", cbShowMatrix->isChecked() && cbCitiesLimit->isChecked());
391    if (cbCitiesLimit->isChecked())
392        settings->setValue("ShowMatrixLimit", spinCitiesLimit->value());
393    settings->setValue("ScrollToEnd", cbScrollToEnd->isChecked());
394    if (_newFont)
395        settings->setValue("Font", font);
396    if (_newColor)
397        settings->setValue("Colors/Text", color.name());
398    settings->endGroup();
399    QDialog::accept();
400}
401
402void SettingsDialog::buttonColorClicked()
403{
404QColor color = QColorDialog::getColor(this->color,this);
405    if (color.isValid() && (this->color != color)) {
406        this->color = color;
407        _newColor = true;
408    }
409}
410
411void SettingsDialog::buttonFontClicked()
412{
413bool ok;
414QFont font = QFontDialog::getFont(&ok,this->font,this);
415    if (ok && (this->font != font)) {
416        this->font = font;
417        _newFont = true;
418    }
419}
420
421#ifdef Q_WS_WINCE_WM
422void SettingsDialog::desktopResized(int screen)
423{
424    if (screen != 0)
425        return;
426
427QRect availableGeometry = QApplication::desktop()->availableGeometry(0);
428    if (currentGeometry != availableGeometry) {
429        QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
430        /*!
431         * \hack HACK: This hack checks whether \link QDesktopWidget::availableGeometry() availableGeometry()\endlink's \c top + \c hegiht = \link QDesktopWidget::screenGeometry() screenGeometry()\endlink's \c height.
432         *  If \c true, the window gets maximized. If we used \c setGeometry() in this case, the bottom of the
433         *  window would end up being behind the soft buttons. Is this a bug in Qt or Windows Mobile?
434         */
435        if ((availableGeometry.top() + availableGeometry.height()) == QApplication::desktop()->screenGeometry().height()) {
436            setWindowState(windowState() | Qt::WindowMaximized);
437        } else {
438            if (windowState() & Qt::WindowMaximized)
439                setWindowState(windowState() ^ Qt::WindowMaximized);
440            setGeometry(availableGeometry);
441        }
442        currentGeometry = availableGeometry;
443        QApplication::restoreOverrideCursor();
444    }
445}
446
447void SettingsDialog::showEvent(QShowEvent *ev)
448{
449    desktopResized(0);
450
451    QWidget::showEvent(ev);
452}
453#endif // Q_WS_WINCE_WM
454
455void SettingsDialog::spinRandMinValueChanged(int val) {
456    spinRandMax->setMinimum(val);
457}
458
459#if !defined(QT_NO_STATUSTIP) && !defined(HANDHELD)
460bool SettingsDialog::event(QEvent *ev)
461{
462    // Checking for StatusTip event and if tip text is not empty string
463    // setting it as text of the dialog hint label. Otherwise, setting
464    // dialog hint label text to own status tip text.
465    if (ev->type() == QEvent::StatusTip) {
466QString tip = static_cast<QStatusTipEvent *>(ev)->tip();
467        if (tip.length() != 0)
468            labelHint->setText(tip);
469        else
470            labelHint->setText(labelHint->statusTip());
471        return true;
472    } else
473        return QDialog::event(ev);
474}
475#endif // HANDHELD
Note: See TracBrowser for help on using the repository browser.