OSDN Git Service

f195abab51b04af3ed4cf33de56080b735434a60
[qt-creator-jp/qt-creator-jp.git] / src / plugins / designer / settingsmanager.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #include "settingsmanager.h"
35 #include "designerconstants.h"
36
37 #include <QtCore/QDebug>
38
39 using namespace Designer::Internal;
40
41 void SettingsManager::beginGroup(const QString &prefix)
42 {
43     if (Designer::Constants::Internal::debug > 1)
44         qDebug() << Q_FUNC_INFO << addPrefix(prefix);
45     m_settings.beginGroup(addPrefix(prefix));
46 }
47
48 void SettingsManager::endGroup()
49 {
50     if (Designer::Constants::Internal::debug > 1)
51         qDebug() << Q_FUNC_INFO;
52     m_settings.endGroup();
53 }
54
55 bool SettingsManager::contains(const QString &key) const
56 {
57     return m_settings.contains(addPrefix(key));
58 }
59
60 void SettingsManager::setValue(const QString &key, const QVariant &value)
61 {
62     if (Designer::Constants::Internal::debug > 1)
63         qDebug() << Q_FUNC_INFO  << addPrefix(key) << ": " << value;
64     m_settings.setValue(addPrefix(key), value);
65 }
66
67 QVariant SettingsManager::value(const QString &key, const QVariant &defaultValue) const
68 {
69     QVariant result = m_settings.value(addPrefix(key), defaultValue);
70     if (Designer::Constants::Internal::debug > 1)
71         qDebug() << Q_FUNC_INFO << addPrefix(key) << ": " << result;
72     return result;
73 }
74
75 void SettingsManager::remove(const QString &key)
76 {
77     m_settings.remove(addPrefix(key));
78 }
79
80 QString SettingsManager::addPrefix(const QString &name) const
81 {
82     QString result = name;
83     if (m_settings.group().isEmpty())
84         result.insert(0, QLatin1String("Designer"));
85     return result;
86 }