2009-03-19 17:40:01 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2009-03-19 17:40:01 +01:00
|
|
|
**
|
|
|
|
|
** 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
|
2009-06-17 00:01:27 +10:00
|
|
|
** contact the sales department at http://www.qtsoftware.com/contact.
|
2009-03-19 17:40:01 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef VCSBASESETTINGS_H
|
|
|
|
|
#define VCSBASESETTINGS_H
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QString>
|
|
|
|
|
#include <QtGui/QWidget>
|
|
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QSettings;
|
2009-03-20 14:20:28 +01:00
|
|
|
class QDebug;
|
2009-03-19 17:40:01 +01:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
namespace VCSBase {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
// Common VCS settings, message check script and user nick names.
|
|
|
|
|
struct VCSBaseSettings {
|
|
|
|
|
VCSBaseSettings();
|
|
|
|
|
|
|
|
|
|
QString nickNameMailMap;
|
|
|
|
|
QString nickNameFieldListFile;
|
|
|
|
|
|
|
|
|
|
QString submitMessageCheckScript;
|
|
|
|
|
|
2009-03-20 14:20:28 +01:00
|
|
|
bool lineWrap;
|
|
|
|
|
int lineWrapWidth;
|
|
|
|
|
|
2009-03-19 17:40:01 +01:00
|
|
|
void toSettings(QSettings *) const;
|
|
|
|
|
void fromSettings(QSettings *);
|
|
|
|
|
|
|
|
|
|
bool equals(const VCSBaseSettings &rhs) const;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
inline bool operator==(const VCSBaseSettings &s1, const VCSBaseSettings &s2) { return s1.equals(s2); }
|
|
|
|
|
inline bool operator!=(const VCSBaseSettings &s1, const VCSBaseSettings &s2) { return !s1.equals(s2); }
|
|
|
|
|
|
2009-03-20 14:20:28 +01:00
|
|
|
QDebug operator<<(QDebug,const VCSBaseSettings& );
|
2009-03-19 17:40:01 +01:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace VCSBase
|
|
|
|
|
|
|
|
|
|
#endif // VCSBASESETTINGS_H
|