File: environmentselectionmodel.cpp

package info (click to toggle)
kdevelop 4%3A24.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 71,888 kB
  • sloc: cpp: 290,869; python: 3,626; javascript: 3,518; sh: 1,316; ansic: 703; xml: 401; php: 95; lisp: 66; makefile: 31; sed: 12
file content (102 lines) | stat: -rw-r--r-- 2,668 bytes parent folder | download | duplicates (2)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
    SPDX-FileCopyrightText: 2013 Ivan Shapovalov <intelfx100@gmail.com>

    SPDX-License-Identifier: LGPL-2.0-or-later
*/

#include "environmentselectionmodel.h"

#include <KLocalizedString>

namespace {

QStringList entriesFromEnv(const KDevelop::EnvironmentProfileList& env)
{
    // We add an empty (i. e. default profile) entry to the front of the model's list.
    return QStringList(QString()) + env.profileNames();
}

}

namespace KDevelop {

EnvironmentSelectionModel::EnvironmentSelectionModel(QObject* parent) :
    QStringListModel(parent)
    , m_env(KSharedConfig::openConfig())
{
    const QStringList entries = entriesFromEnv(m_env);
    setStringList(entries);
    m_profilesLookupTable = QSet<QString>(entries.begin(), entries.end());
}

QVariant EnvironmentSelectionModel::headerData(int section, Qt::Orientation orientation, int role) const
{
    if (section != 0 ||
        orientation != Qt::Horizontal ||
        role != Qt::DisplayRole) {
        return QVariant();
    }

    return i18nc("@title:column", "Profile");
}

QVariant EnvironmentSelectionModel::data(const QModelIndex& index, int role) const
{
    QVariant nativeData = QStringListModel::data(index, Qt::DisplayRole);
    QString profileName = nativeData.toString();

    switch (role) {
    case Qt::DisplayRole:
        if (profileName.isEmpty()) {
            return i18nc("@item:inlistbox", "Use default profile (currently: %1)", m_env.defaultProfileName());
        }

        if (!m_profilesLookupTable.contains(profileName)) {
            return i18nc("@item:inlistbox", "%1 (does not exist)", profileName);
        }

        return nativeData;

    case EffectiveNameRole:
        if (profileName.isEmpty()) {
            return m_env.defaultProfileName();
        }

        return nativeData;

    default:
        return QStringListModel::data(index, role);
    }
}

bool EnvironmentSelectionModel::setData(const QModelIndex& /*index*/, const QVariant& /*value*/, int /*role*/)
{
    return false;
}

EnvironmentProfileList EnvironmentSelectionModel::environmentProfiles() const
{
    return m_env;
}

void EnvironmentSelectionModel::reload()
{
    m_env = EnvironmentProfileList(KSharedConfig::openConfig());

    const QStringList entries = entriesFromEnv(m_env);
    setStringList(entries);
    m_profilesLookupTable = QSet<QString>(entries.begin(), entries.end());
}

QString EnvironmentSelectionModel::reloadSelectedItem(const QString& currentProfile)
{
    if (m_profilesLookupTable.contains(currentProfile)) {
        return currentProfile;
    } else {
        return QString();
    }
}

} // namespace KDevelop

#include "moc_environmentselectionmodel.cpp"