[2bbe924ad8] | 1 | /* |
---|
| 2 | * TSPSG: TSP Solver and Generator |
---|
[0af510a462] | 3 | * Copyright (C) 2007-2012 Oleksii Serdiuk <contacts[at]oleksii[dot]name> |
---|
[2bbe924ad8] | 4 | * |
---|
[7ba743d983] | 5 | * $Id: $Format:%h %ai %an$ $ |
---|
| 6 | * $URL: http://tspsg.info/ $ |
---|
[2bbe924ad8] | 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 "globals.h" |
---|
| 25 | |
---|
[31694c8b58] | 26 | #ifdef Q_OS_WINCE_WM |
---|
| 27 | # include <shellapi.h> |
---|
| 28 | #endif |
---|
| 29 | |
---|
| 30 | QSettings *initSettings(QObject *parent) |
---|
| 31 | { |
---|
| 32 | #ifdef Q_OS_WINCE_WM |
---|
| 33 | /*! |
---|
| 34 | * \hack HACK: On Windows Mobile the way Qt tries to get path for saving |
---|
| 35 | * settings doesn't always work. This workaround tries to fix it. |
---|
| 36 | */ |
---|
| 37 | if (!QDesktopServices::storageLocation(QDesktopServices::DataLocation).isEmpty()) { |
---|
| 38 | #endif // Q_OS_WINCE_WM |
---|
| 39 | return new QSettings(QSettings::IniFormat, QSettings::UserScope, "TSPSG", "tspsg", parent); |
---|
| 40 | #ifdef Q_OS_WINCE_WM |
---|
| 41 | } else { |
---|
| 42 | wchar_t path[MAX_PATH]; |
---|
| 43 | SHGetSpecialFolderPath(0, path, 0x001a, FALSE); |
---|
| 44 | QString fileName = QString::fromWCharArray(path); |
---|
| 45 | fileName.append("\\TSPSG\\tspsg.ini"); |
---|
| 46 | return new QSettings(fileName, QSettings::IniFormat, parent); |
---|
| 47 | } |
---|
| 48 | #endif // Q_OS_WINCE_WM |
---|
| 49 | } |
---|
| 50 | |
---|
[b8a2a118c4] | 51 | #ifndef HANDHELD |
---|
[2bbe924ad8] | 52 | void toggleStyle(QWidget *widget, bool enable) |
---|
| 53 | { |
---|
[9eb63a1598] | 54 | if (enable) { |
---|
| 55 | widget->setStyleSheet(QString("%1 {background-color: %2; border-color: %3; border-width: 1px; border-style: solid; border-radius: 3px;}").arg(widget->metaObject()->className(), widget->palette().window().color().name(), widget->palette().shadow().color().name())); |
---|
| 56 | } else { |
---|
| 57 | widget->setStyleSheet(QString()); |
---|
| 58 | } |
---|
[2bbe924ad8] | 59 | } |
---|
[b8a2a118c4] | 60 | #endif // HANDHELD |
---|