2011-02-28 13:40:04 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (c) 2014 Brian McGillion and Hugues Delorme
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-02-28 13:40:04 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-02-28 13:40:04 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2011-02-28 13:40:04 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, 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.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2011-02-28 13:40:04 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
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;
|
|
|
|
|
|
2014-03-05 11:09:11 +01:00
|
|
|
QStringList searchPathList() 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
|
|
|
|
2013-02-28 15:12:33 +01:00
|
|
|
virtual void readLegacySettings(const QSettings *settings);
|
|
|
|
|
|
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
|