Renamed VCSBaseSettingsPage to CommonSettingsPage

To free up the name for an upcoming VCSBaseOptionsPage class that forms
the base for all version control option pages.

Reviewed-by: Friedemann Kleint
This commit is contained in:
Thorbjørn Lindeijer
2010-04-12 16:34:21 +02:00
parent 9454fe5689
commit f9051e6f87
12 changed files with 163 additions and 135 deletions

View File

@@ -0,0 +1,71 @@
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** Commercial Usage
**
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
**
** GNU Lesser General Public License Usage
**
** 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.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
#ifndef COMMONVCSSETTINGS_H
#define COMMONVCSSETTINGS_H
#include <QtCore/QString>
#include <QtGui/QWidget>
QT_BEGIN_NAMESPACE
class QSettings;
class QDebug;
QT_END_NAMESPACE
namespace VCSBase {
namespace Internal {
// Common VCS settings, message check script and user nick names.
struct CommonVcsSettings
{
CommonVcsSettings();
QString nickNameMailMap;
QString nickNameFieldListFile;
QString submitMessageCheckScript;
bool lineWrap;
int lineWrapWidth;
void toSettings(QSettings *) const;
void fromSettings(QSettings *);
bool equals(const CommonVcsSettings &rhs) const;
};
inline bool operator==(const CommonVcsSettings &s1, const CommonVcsSettings &s2) { return s1.equals(s2); }
inline bool operator!=(const CommonVcsSettings &s1, const CommonVcsSettings &s2) { return !s1.equals(s2); }
QDebug operator<<(QDebug, const CommonVcsSettings &);
} // namespace Internal
} // namespace VCSBase
#endif // COMMONVCSSETTINGS_H