2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-03-25 16:39:33 +01:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
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
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/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
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company 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 <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;
|
2013-03-25 11:36:51 +01:00
|
|
|
class QStringList;
|
2011-05-31 08:31:25 +00:00
|
|
|
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());
|
2013-04-23 21:18:27 +03:00
|
|
|
QToolButton *addToggleButton(const QStringList &options, const QString &label,
|
|
|
|
|
const QString &tooltip = QString());
|
|
|
|
|
QComboBox *addComboBox(const QStringList &options, const QList<ComboBoxItem> &items);
|
2011-05-31 08:31:26 +00:00
|
|
|
|
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-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:
|
2015-01-20 17:42:16 +01:00
|
|
|
void handleArgumentsChanged();
|
|
|
|
|
void executeCommand();
|
2011-05-31 08:31:25 +00:00
|
|
|
|
2011-03-25 16:39:33 +01:00
|
|
|
signals:
|
2015-01-20 17:42:16 +01:00
|
|
|
void commandExecutionRequested();
|
|
|
|
|
|
2011-03-25 16:39:33 +01:00
|
|
|
// 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();
|
2013-04-23 21:18:27 +03:00
|
|
|
OptionMapping(const QString &option, QWidget *w);
|
|
|
|
|
OptionMapping(const QStringList &optionList, QWidget *w);
|
|
|
|
|
QStringList options;
|
2011-05-31 08:31:25 +00:00
|
|
|
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
|