2016-01-15 14:57:40 +01:00
|
|
|
/****************************************************************************
|
2011-02-28 13:40:04 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 Brian McGillion and Hugues Delorme
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2011-02-28 13:40:04 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2011-02-28 13:40:04 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-02-28 13:40:04 +01:00
|
|
|
|
2016-02-03 12:15:21 +01:00
|
|
|
#pragma once
|
2011-02-28 13:40:04 +01:00
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
namespace Utils { class FilePath; }
|
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
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
Utils::FilePath binaryPath() const;
|
2012-08-21 14:45:42 +03:00
|
|
|
|
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
|