2011-03-25 16:39:33 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
2011-05-06 15:05:37 +02:00
|
|
|
** Contact: Nokia Corporation (info@qt.nokia.com)
|
2011-03-25 16:39:33 +01:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-05-06 15:05:37 +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-03-25 16:39:33 +01:00
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-05-06 15:05:37 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2011-03-25 16:39:33 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-05-06 15:05:37 +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-03-25 16:39:33 +01:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-05-06 15:05:37 +02:00
|
|
|
** Nokia at info@qt.nokia.com.
|
2011-03-25 16:39:33 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef VCSBASE_VCSBASEEDITORPARAMETERWIDGET_H
|
|
|
|
|
#define VCSBASE_VCSBASEEDITORPARAMETERWIDGET_H
|
|
|
|
|
|
|
|
|
|
#include "vcsbase_global.h"
|
|
|
|
|
|
|
|
|
|
#include <QtGui/QWidget>
|
|
|
|
|
#include <QtCore/QStringList>
|
|
|
|
|
|
2011-05-31 08:31:25 +00:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QToolButton;
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2011-03-25 16:39:33 +01:00
|
|
|
namespace VCSBase {
|
|
|
|
|
class VCSBaseEditorParameterWidgetPrivate;
|
|
|
|
|
|
|
|
|
|
// Documentation->inside.
|
|
|
|
|
class VCSBASE_EXPORT VCSBaseEditorParameterWidget : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit VCSBaseEditorParameterWidget(QWidget *parent = 0);
|
|
|
|
|
~VCSBaseEditorParameterWidget();
|
|
|
|
|
|
|
|
|
|
QStringList baseArguments() const;
|
|
|
|
|
void setBaseArguments(const QStringList &);
|
|
|
|
|
|
2011-05-31 08:31:25 +00:00
|
|
|
QToolButton *addToggleButton(const QString &option, const QString &label,
|
|
|
|
|
const QString &tooltip = QString());
|
|
|
|
|
QToolButton *addIgnoreWhiteSpaceButton(const QString &option);
|
|
|
|
|
QToolButton *addIgnoreBlankLinesButton(const QString &option);
|
2011-03-25 16:39:33 +01:00
|
|
|
|
|
|
|
|
// Return the effective arguments according to setting.
|
2011-05-31 08:31:25 +00:00
|
|
|
virtual QStringList arguments() const;
|
2011-03-25 16:39:33 +01:00
|
|
|
|
|
|
|
|
// Standard texts
|
|
|
|
|
static QString msgIgnoreWhiteSpaceLabel();
|
|
|
|
|
static QString msgIgnoreWhiteSpaceToolTip();
|
|
|
|
|
static QString msgIgnoreBlankLinesLabel();
|
|
|
|
|
static QString msgIgnoreBlankLinesToolTip();
|
|
|
|
|
|
2011-05-31 08:31:25 +00:00
|
|
|
public slots:
|
|
|
|
|
virtual void executeCommand();
|
|
|
|
|
virtual void handleArgumentsChanged();
|
|
|
|
|
|
2011-03-25 16:39:33 +01:00
|
|
|
signals:
|
|
|
|
|
// Trigger a re-run to show changed output according to new argument list.
|
|
|
|
|
void argumentsChanged();
|
|
|
|
|
|
2011-05-31 08:31:25 +00:00
|
|
|
protected:
|
|
|
|
|
struct OptionMapping
|
|
|
|
|
{
|
|
|
|
|
OptionMapping();
|
|
|
|
|
OptionMapping(const QString &optName, QWidget *w);
|
|
|
|
|
QString optionName;
|
|
|
|
|
QWidget *widget;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const QList<OptionMapping> &optionMappings() const;
|
|
|
|
|
virtual QStringList argumentsForOption(const OptionMapping &mapping) const;
|
|
|
|
|
|
2011-03-25 16:39:33 +01:00
|
|
|
private:
|
2011-05-31 08:31:25 +00:00
|
|
|
friend class VCSBaseEditorParameterWidgetPrivate;
|
2011-03-25 16:39:33 +01:00
|
|
|
QScopedPointer<VCSBaseEditorParameterWidgetPrivate> d;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace VCSBase
|
|
|
|
|
|
|
|
|
|
#endif // VCSBASE_VCSBASEEDITORPARAMETERWIDGET_H
|