2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-11-16 09:17:21 +00:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-11-16 09:17:21 +00:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-11-16 09:17:21 +00: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:58:39 +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-11-16 09:17:21 +00:00
|
|
|
**
|
2016-01-15 14:58:39 +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-11-16 09:17:21 +00:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
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:
|
|
|
|
|
explicit SettingsSelector(QWidget *parent = 0);
|
|
|
|
|
~SettingsSelector();
|
|
|
|
|
|
|
|
|
|
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
|