2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-03-25 16:39:33 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-03-25 16:39:33 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-03-25 16:39:33 +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
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2011-03-25 16:39:33 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2011-03-25 16:39:33 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-03-25 16:39:33 +01:00
|
|
|
|
|
|
|
|
#ifndef VCSBASE_VCSBASEEDITORPARAMETERWIDGET_H
|
|
|
|
|
#define VCSBASE_VCSBASEEDITORPARAMETERWIDGET_H
|
|
|
|
|
|
|
|
|
|
#include "vcsbase_global.h"
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QStringList>
|
|
|
|
|
#include <QVariant>
|
|
|
|
|
#include <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
|
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
namespace VcsBase {
|
2011-12-08 13:07:00 +01:00
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
namespace Internal { class VcsBaseEditorParameterWidgetPrivate; }
|
2011-03-25 16:39:33 +01:00
|
|
|
|
|
|
|
|
// Documentation->inside.
|
2012-01-07 12:31:48 +01:00
|
|
|
class VCSBASE_EXPORT VcsBaseEditorParameterWidget : public QWidget
|
2011-03-25 16:39:33 +01:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2011-09-16 15:00:41 +02:00
|
|
|
|
2011-03-25 16:39:33 +01:00
|
|
|
public:
|
2012-01-07 12:31:48 +01:00
|
|
|
explicit VcsBaseEditorParameterWidget(QWidget *parent = 0);
|
|
|
|
|
~VcsBaseEditorParameterWidget();
|
2011-09-16 15:00:41 +02:00
|
|
|
|
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:
|
2012-01-07 12:31:48 +01:00
|
|
|
friend class Internal::VcsBaseEditorParameterWidgetPrivate;
|
|
|
|
|
Internal::VcsBaseEditorParameterWidgetPrivate *const d;
|
2011-03-25 16:39:33 +01:00
|
|
|
};
|
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
} // namespace VcsBase
|
2011-03-25 16:39:33 +01:00
|
|
|
|
|
|
|
|
#endif // VCSBASE_VCSBASEEDITORPARAMETERWIDGET_H
|