2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2011-11-16 09:17:21 +00:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2011-11-16 09:17:21 +00:00
|
|
|
|
|
|
|
|
#include "utils_global.h"
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QWidget>
|
2011-11-16 09:17:21 +00:00
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QAbstractItemModel;
|
|
|
|
|
class QComboBox;
|
|
|
|
|
class QLabel;
|
|
|
|
|
class QMenu;
|
|
|
|
|
class QPushButton;
|
|
|
|
|
class QString;
|
|
|
|
|
class QVariant;
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
namespace Utils {
|
|
|
|
|
|
|
|
|
|
class QTCREATOR_UTILS_EXPORT SettingsSelector : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2018-07-23 10:45:40 +02:00
|
|
|
explicit SettingsSelector(QWidget *parent = nullptr);
|
|
|
|
|
~SettingsSelector() override;
|
2011-11-16 09:17:21 +00:00
|
|
|
|
|
|
|
|
void setConfigurationModel(QAbstractItemModel *model);
|
|
|
|
|
QAbstractItemModel *configurationModel() const;
|
|
|
|
|
|
|
|
|
|
void setLabelText(const QString &text);
|
|
|
|
|
QString labelText() const;
|
|
|
|
|
void setCurrentIndex(int index);
|
|
|
|
|
|
|
|
|
|
void setAddMenu(QMenu *);
|
|
|
|
|
QMenu *addMenu() const;
|
|
|
|
|
|
2011-11-22 13:04:49 +00:00
|
|
|
int currentIndex() const;
|
|
|
|
|
|
2011-11-16 09:17:21 +00:00
|
|
|
signals:
|
|
|
|
|
void add();
|
|
|
|
|
void remove(int index);
|
|
|
|
|
void rename(int index, const QString &newName);
|
|
|
|
|
void currentChanged(int index);
|
|
|
|
|
|
2016-06-28 22:31:02 +03:00
|
|
|
private:
|
2011-11-16 09:17:21 +00:00
|
|
|
void removeButtonClicked();
|
|
|
|
|
void renameButtonClicked();
|
|
|
|
|
void updateButtonState();
|
|
|
|
|
|
|
|
|
|
QLabel *m_label;
|
|
|
|
|
QComboBox *m_configurationCombo;
|
|
|
|
|
QPushButton *m_addButton;
|
|
|
|
|
QPushButton *m_removeButton;
|
|
|
|
|
QPushButton *m_renameButton;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Utils
|