Unity 8
UsersModelPrivate.cpp
1 /*
2  * Copyright (C) 2013 Canonical, Ltd.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 3.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Author: Michael Terry <michael.terry@canonical.com>
17  */
18 
19 #include "UsersModelPrivate.h"
20 
21 #include <QDir>
22 #include <QSettings>
23 #include <QStringList>
24 
25 namespace QLightDM
26 {
27 
28 UsersModelPrivate::UsersModelPrivate(UsersModel* parent)
29  : q_ptr(parent)
30 {
31  QSettings settings(QDir::homePath() + "/.unity8-greeter-demo", QSettings::NativeFormat);
32  QStringList users = settings.value(QStringLiteral("users"), QStringList() << qgetenv("USER")).toStringList();
33 
34  entries.reserve(users.count());
35  Q_FOREACH(const QString &user, users)
36  {
37  QVariant defaultValue = QString(user[0].toUpper() + user.mid(1));
38  QString name = settings.value(user + "/name", defaultValue).toString();
39  entries.append({user, name, 0, 0, false, false, 0, 0});
40  }
41 }
42 
43 }