File: environmentprofilelistmodel.h

package info (click to toggle)
kdevelop 4%3A22.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 70,096 kB
  • sloc: cpp: 284,635; javascript: 3,558; python: 3,422; sh: 1,319; ansic: 685; xml: 331; php: 95; lisp: 66; makefile: 39; sed: 12
file content (52 lines) | stat: -rw-r--r-- 1,781 bytes parent folder | download | duplicates (3)
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