Unity 8
UsersModel.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 
20 /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
21  * CHANGES MADE HERE MUST BE REFLECTED ON THE MOCK LIB
22  * COUNTERPART IN tests/mocks/Lightdm/liblightdm
23  * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
24 
25 // LightDM currently is Qt4 compatible, and so doesn't define setRoleNames.
26 // To use the same method of setting role name that it does, we
27 // set our compatibility to Qt4 here too.
28 #define QT_DISABLE_DEPRECATED_BEFORE QT_VERSION_CHECK(4, 0, 0)
29 
30 #include "UsersModel.h"
31 #include "UsersModelPrivate.h"
32 #include <QtCore/QDir>
33 #include <QtCore/QString>
34 #include <QtGui/QIcon>
35 
36 namespace QLightDM
37 {
38 
39 UsersModel::UsersModel(QObject *parent) :
40  QAbstractListModel(parent),
41  d_ptr(new UsersModelPrivate(this))
42 {
43  Q_D(UsersModel);
44 
45  // Extend roleNames (we want to keep the "display" role)
46  QHash<int, QByteArray> roles = roleNames();
47  roles[NameRole] = "name";
48  roles[RealNameRole] = "realName";
49  roles[LoggedInRole] = "loggedIn";
50  roles[BackgroundRole] = "background";
51  roles[BackgroundPathRole] = "backgroundPath";
52  roles[SessionRole] = "session";
53  roles[HasMessagesRole] = "hasMessages";
54  roles[ImagePathRole] = "imagePath";
55  setRoleNames(roles);
56 
57  connect(d_ptr, &UsersModelPrivate::dataChanged, this, [this](int i) {
58  QModelIndex index = createIndex(i, 0);
59  Q_EMIT dataChanged(index, index);
60  });
61 }
62 
63 int UsersModel::rowCount(const QModelIndex &parent) const
64 {
65  Q_D(const UsersModel);
66 
67  if (parent.isValid()) {
68  return 0;
69  } else { // parent is root
70  return d->entries.size();
71  }
72 }
73 
74 QVariant UsersModel::data(const QModelIndex &index, int role) const
75 {
76  Q_D(const UsersModel);
77 
78  if (!index.isValid()) {
79  return QVariant();
80  }
81 
82  int row = index.row();
83  switch (role) {
84  case Qt::DisplayRole:
85  return d->entries[row].real_name;
86  case Qt::DecorationRole:
87  return QIcon();
88  case UsersModel::NameRole:
89  return d->entries[row].username;
90  case UsersModel::RealNameRole:
91  return d->entries[row].real_name;
92  case UsersModel::SessionRole:
93  return d->entries[row].session;
94  case UsersModel::LoggedInRole:
95  return d->entries[row].is_active;
96  case UsersModel::BackgroundRole:
97  return QPixmap(d->entries[row].background);
98  case UsersModel::BackgroundPathRole:
99  return d->entries[row].background;
100  case UsersModel::HasMessagesRole:
101  return d->entries[row].has_messages;
102  case UsersModel::ImagePathRole:
103  return "";
104  default:
105  return QVariant();
106  }
107 }
108 
109 }