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-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@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-11-02 15:59:12 +01:00
|
|
|
** Nokia at qt-info@nokia.com.
|
2011-03-25 16:39:33 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef VCSBASE_VCSBASEEDITORPARAMETERWIDGET_H
|
|
|
|
|
#define VCSBASE_VCSBASEEDITORPARAMETERWIDGET_H
|
|
|
|
|
|
|
|
|
|
#include "vcsbase_global.h"
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QStringList>
|
2011-05-31 08:31:26 +00:00
|
|
|
#include <QtCore/QVariant>
|
2012-01-07 03:35:54 +01:00
|
|
|
#include <QtGui/QWidget>
|
2011-03-25 16:39:33 +01:00
|
|
|
|
2011-05-31 08:31:25 +00:00
|
|
|
QT_BEGIN_NAMESPACE
|
2011-05-31 08:31:26 +00:00
|
|
|
class QComboBox;
|
2011-05-31 08:31:25 +00:00
|
|
|
class QToolButton;
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2011-03-25 16:39:33 +01:00
|
|
|
namespace VCSBase {
|
2011-12-08 13:07:00 +01:00
|
|
|
|
2012-01-07 03:35:54 +01:00
|
|
|
namespace Internal { class VCSBaseEditorParameterWidgetPrivate; }
|
2011-03-25 16:39:33 +01:00
|
|
|
|
|
|
|
|
// Documentation->inside.
|
|
|
|
|
class VCSBASE_EXPORT VCSBaseEditorParameterWidget : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2011-09-16 15:00:41 +02:00
|
|
|
|
2011-03-25 16:39:33 +01:00
|
|
|
public:
|
2011-09-16 15:00:41 +02:00
|
|
|
explicit VCSBaseEditorParameterWidget(QWidget *parent = 0);
|
|
|
|
|
~VCSBaseEditorParameterWidget();
|
|
|
|
|
|
2011-07-28 13:02:45 +00:00
|
|
|
struct VCSBASE_EXPORT ComboBoxItem
|
2011-05-31 08:31:26 +00:00
|
|
|
{
|
2012-01-07 03:35:54 +01:00
|
|
|
ComboBoxItem() {}
|
2011-05-31 08:31:26 +00:00
|
|
|
ComboBoxItem(const QString &text, const QVariant &val);
|
|
|
|
|
QString displayText;
|
|
|
|
|
QVariant value;
|
|
|
|
|
};
|
|
|
|
|
|
2011-03-25 16:39:33 +01:00
|
|
|
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());
|
2011-05-31 08:31:26 +00:00
|
|
|
QComboBox *addComboBox(const QString &option, const QList<ComboBoxItem> &items);
|
|
|
|
|
|
2011-06-10 10:40:42 +02:00
|
|
|
void mapSetting(QToolButton *button, bool *setting);
|
|
|
|
|
void mapSetting(QComboBox *comboBox, QString *setting);
|
2011-10-06 16:20:12 +02:00
|
|
|
void mapSetting(QComboBox *comboBox, int *setting);
|
2011-06-10 10:40:42 +02:00
|
|
|
|
2011-05-31 08:31:26 +00:00
|
|
|
QStringList comboBoxOptionTemplate() const;
|
|
|
|
|
void setComboBoxOptionTemplate(const QStringList &optTemplate) const;
|
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
|
|
|
|
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-06-10 10:40:42 +02:00
|
|
|
void updateMappedSettings();
|
2011-05-31 08:31:25 +00:00
|
|
|
|
2011-03-25 16:39:33 +01:00
|
|
|
private:
|
2011-12-08 13:07:00 +01:00
|
|
|
friend class Internal::VCSBaseEditorParameterWidgetPrivate;
|
|
|
|
|
Internal::VCSBaseEditorParameterWidgetPrivate *const d;
|
2011-03-25 16:39:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace VCSBase
|
|
|
|
|
|
|
|
|
|
#endif // VCSBASE_VCSBASEEDITORPARAMETERWIDGET_H
|