1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
/*
SPDX-FileCopyrightText: 2007 Andreas Pakulat <apaku@gmx.de>
SPDX-FileCopyrightText: 2017 Friedrich W. H. Kossebau <kossebau@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef KDEVPLATFORM_ENVIRONMENTPROFILELISTMODEL_H
#define KDEVPLATFORM_ENVIRONMENTPROFILELISTMODEL_H
#include <QAbstractItemModel>
#include "util/environmentprofilelist.h"
namespace KDevelop
{
// Subclassing EnvironmentProfileList instead of having as a member, to have access to protected API
class EnvironmentProfileListModel : public QAbstractItemModel, protected EnvironmentProfileList
{
Q_OBJECT
public:
explicit EnvironmentProfileListModel(QObject* parent = nullptr);
int rowCount(const QModelIndex& parent = {}) const override;
int columnCount(const QModelIndex& parent = {}) const override;
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
QModelIndex index(int row, int column, const QModelIndex& parent = {}) const override;
QModelIndex parent(const QModelIndex& index) const override;
int profileIndex(const QString& profileName) const;
int defaultProfileIndex() const;
QString profileName(int profileIndex) const;
bool hasProfile(const QString& profileName) const;
QMap<QString, QString>& variables(const QString& profileName);
int addProfile(const QString& newProfileName);
int cloneProfile(const QString& newProfileName, const QString& sourceProfileName);
void removeProfile(int profileIndex);
void setDefaultProfile(int profileIndex);
void loadFromConfig(KConfig* config);
void saveToConfig(KConfig* config);
Q_SIGNALS:
void profileAboutToBeRemoved(const QString& profileName);
void defaultProfileChanged(int defaultProfileIndex);
};
}
#endif
|