2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-03-25 16:39:33 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2011-03-25 16:39:33 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2011-03-25 16:39:33 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-03-25 16:39:33 +01:00
|
|
|
|
2016-02-03 12:15:21 +01:00
|
|
|
#pragma once
|
2011-03-25 16:39:33 +01:00
|
|
|
|
|
|
|
|
#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);
|
2016-02-03 12:15:21 +01:00
|
|
|
~VcsBaseEditorParameterWidget() override;
|
2011-09-16 15:00:41 +02:00
|
|
|
|
2016-02-03 12:15:21 +01:00
|
|
|
class VCSBASE_EXPORT ComboBoxItem
|
2011-05-31 08:31:26 +00:00
|
|
|
{
|
2016-02-03 12:15:21 +01:00
|
|
|
public:
|
|
|
|
|
ComboBoxItem() = default;
|
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:
|
2016-02-03 12:15:21 +01:00
|
|
|
class OptionMapping
|
2011-05-31 08:31:25 +00:00
|
|
|
{
|
2016-02-03 12:15:21 +01:00
|
|
|
public:
|
|
|
|
|
OptionMapping() = default;
|
2013-04-23 21:18:27 +03:00
|
|
|
OptionMapping(const QString &option, QWidget *w);
|
|
|
|
|
OptionMapping(const QStringList &optionList, QWidget *w);
|
|
|
|
|
QStringList options;
|
2016-02-03 12:15:21 +01:00
|
|
|
QWidget *widget = nullptr;
|
2011-05-31 08:31:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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
|