blob: 95281df34070582b11fe09b5ceebc52cdd7cf1d7 (
plain)
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
103
|
/*
* Copyright (C) 2010-2011 David Edmundson.
* Author: David Edmundson <kde@davidedmundson.co.uk>
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 3 of the License, or (at your option) any
* later version. See http://www.gnu.org/copyleft/lgpl.html the full text of the
* license.
*/
#include "sessionsmodel.h"
#include <QtCore/QList>
#include <QtCore/QDir>
#include <QtCore/QVariant>
#include <QtCore/QSettings>
using namespace QLightDM;
class SessionItem;
class SessionsModelPrivate
{
public:
QList<SessionItem> items;
};
class SessionItem
{
public:
//FIXME can I make these consts, if I set them in a lovely constructor?
QString id;
QString name;
QString comment;
};
SessionsModel::SessionsModel(QObject *parent) :
QAbstractListModel(parent),
d(new SessionsModelPrivate())
{
buildList();
}
SessionsModel::~SessionsModel()
{
}
int SessionsModel::rowCount(const QModelIndex &parent) const
{
if (parent == QModelIndex()) { //if top level
return d->items.size();
} else {
return 0; // no child elements.
}
}
QVariant SessionsModel::data(const QModelIndex &index, int role) const
{
if (! index.isValid()) {
return QVariant();
}
int row = index.row();
switch (role) {
case SessionsModel::IdRole:
return d->items[row].id;
case Qt::DisplayRole:
return d->items[row].name;
case Qt::ToolTipRole:
return d->items[row].comment;
}
return QVariant();
}
void SessionsModel::buildList()
{
//maybe clear first?
//FIXME don't hardcode this!
QDir sessionDir("/usr/share/xsessions");
sessionDir.setNameFilters(QStringList() << "*.desktop");
QList<SessionItem> items;
foreach(QString sessionFileName, sessionDir.entryList()) {
QSettings sessionData(sessionDir.filePath(sessionFileName), QSettings::IniFormat);
sessionData.beginGroup("Desktop Entry");
sessionFileName.chop(8);// chop(8) removes '.desktop'
SessionItem item;
item.id = sessionFileName;
item.name = sessionData.value("Name").toString();
item.comment = sessionData.value("Comment").toString();
items.append(item);
}
beginInsertRows(QModelIndex(), 0, items.size());
d->items.append(items);
endInsertRows();
}
|