2011-02-28 13:40:04 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2010 Brian McGillion & Hugues Delorme
|
|
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2011-02-28 13:40:04 +01:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2011-02-28 13:40:04 +01:00
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2011-02-28 13:40:04 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2011-02-28 13:40:04 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef VCSBASECLIENTSETTINGS_H
|
|
|
|
|
#define VCSBASECLIENTSETTINGS_H
|
|
|
|
|
|
|
|
|
|
#include "vcsbase_global.h"
|
2012-01-07 03:35:54 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QStringList>
|
|
|
|
|
#include <QVariant>
|
|
|
|
|
#include <QSharedDataPointer>
|
2011-02-28 13:40:04 +01:00
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QSettings;
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
namespace VcsBase {
|
2011-02-28 13:40:04 +01:00
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
namespace Internal { class VcsBaseClientSettingsPrivate; }
|
2011-09-14 09:13:44 +00:00
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
class VCSBASE_EXPORT VcsBaseClientSettings
|
2011-02-28 13:40:04 +01:00
|
|
|
{
|
|
|
|
|
public:
|
2011-09-14 09:13:44 +00:00
|
|
|
static const QLatin1String binaryPathKey;
|
|
|
|
|
static const QLatin1String userNameKey;
|
|
|
|
|
static const QLatin1String userEmailKey;
|
|
|
|
|
static const QLatin1String logCountKey;
|
|
|
|
|
static const QLatin1String promptOnSubmitKey;
|
|
|
|
|
static const QLatin1String timeoutKey; // Seconds
|
2012-09-27 11:25:58 +02:00
|
|
|
static const QLatin1String pathKey;
|
2011-09-14 09:13:44 +00:00
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
VcsBaseClientSettings();
|
|
|
|
|
VcsBaseClientSettings(const VcsBaseClientSettings &other);
|
|
|
|
|
VcsBaseClientSettings &operator=(const VcsBaseClientSettings &other);
|
|
|
|
|
virtual ~VcsBaseClientSettings();
|
2011-02-28 13:40:04 +01:00
|
|
|
|
2011-09-14 09:13:44 +00:00
|
|
|
void writeSettings(QSettings *settings) const;
|
|
|
|
|
void readSettings(const QSettings *settings);
|
2011-02-28 13:40:04 +01:00
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
bool equals(const VcsBaseClientSettings &rhs) const;
|
2011-02-28 13:40:04 +01:00
|
|
|
|
2011-09-14 09:13:44 +00:00
|
|
|
QStringList keys() const;
|
|
|
|
|
bool hasKey(const QString &key) const;
|
2011-02-28 13:40:04 +01:00
|
|
|
|
2011-09-14 09:13:44 +00:00
|
|
|
int *intPointer(const QString &key);
|
|
|
|
|
int intValue(const QString &key, int defaultValue = 0) const;
|
2011-02-28 13:40:04 +01:00
|
|
|
|
2011-09-14 09:13:44 +00:00
|
|
|
bool *boolPointer(const QString &key);
|
|
|
|
|
bool boolValue(const QString &key, bool defaultValue = false) const;
|
2011-02-28 13:40:04 +01:00
|
|
|
|
2011-09-14 09:13:44 +00:00
|
|
|
QString *stringPointer(const QString &key);
|
|
|
|
|
QString stringValue(const QString &key, const QString &defaultValue = QString()) const;
|
2011-02-28 13:40:04 +01:00
|
|
|
|
2011-09-14 09:13:44 +00:00
|
|
|
QVariant value(const QString &key) const;
|
|
|
|
|
void setValue(const QString &key, const QVariant &v);
|
|
|
|
|
QVariant::Type valueType(const QString &key) const;
|
2011-02-28 13:40:04 +01:00
|
|
|
|
2012-08-21 14:45:42 +03:00
|
|
|
QString binaryPath() const;
|
|
|
|
|
|
2011-09-14 09:13:44 +00:00
|
|
|
protected:
|
2011-06-23 10:32:37 +02:00
|
|
|
QString settingsGroup() const;
|
|
|
|
|
void setSettingsGroup(const QString &group);
|
|
|
|
|
|
2011-09-14 09:13:44 +00:00
|
|
|
void declareKey(const QString &key, const QVariant &defaultValue);
|
|
|
|
|
QVariant keyDefaultValue(const QString &key) const;
|
2011-08-16 08:29:37 +00:00
|
|
|
|
2011-02-28 13:40:04 +01:00
|
|
|
private:
|
2012-01-07 12:31:48 +01:00
|
|
|
friend bool equals(const VcsBaseClientSettings &rhs);
|
|
|
|
|
friend class VcsBaseClientSettingsPrivate;
|
|
|
|
|
QSharedDataPointer<Internal::VcsBaseClientSettingsPrivate> d;
|
2011-02-28 13:40:04 +01:00
|
|
|
};
|
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
inline bool operator==(const VcsBaseClientSettings &s1, const VcsBaseClientSettings &s2)
|
2011-02-28 13:40:04 +01:00
|
|
|
{ return s1.equals(s2); }
|
2012-01-07 12:31:48 +01:00
|
|
|
inline bool operator!=(const VcsBaseClientSettings &s1, const VcsBaseClientSettings &s2)
|
2011-02-28 13:40:04 +01:00
|
|
|
{ return !s1.equals(s2); }
|
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
} // namespace VcsBase
|
2011-02-28 13:40:04 +01:00
|
|
|
|
|
|
|
|
#endif // VCSBASECLIENTSETTINGS_H
|