2 * Copyright (C) 2013 Canonical, Ltd.
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.
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.
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/>.
18 import AccountsService 0.1
19 import Ubuntu.Components 0.1
20 import LightDM 0.1 as LightDM
21 import "../Components"
27 property bool ready: background.source == "" || background.status == Image.Ready || background.status == Image.Error
29 signal selected(int uid)
30 signal unlocked(int uid)
33 // In case background fails to load
39 property url backgroundValue: AccountsService.backgroundFile != undefined && AccountsService.backgroundFile.length > 0 ? AccountsService.backgroundFile : greeter.defaultBackground
40 onBackgroundValueChanged: background.source = backgroundValue
44 objectName: "greeterBackground"
47 topMargin: backgroundTopMargin
49 fillMode: Image.PreserveAspectCrop
52 // See Shell.qml's backgroundSettings treatment for why we need a separate
53 // Image, but it boils down to avoiding binding loop detection.
55 source: background.source
61 if (status == Image.Error && source != greeter.defaultBackground) {
62 background.source = greeter.defaultBackground
75 objectName: "loginLoader"
78 leftMargin: Math.min(parent.width * 0.16, units.gu(20))
79 verticalCenter: parent.verticalCenter
84 // TODO: Once we have a system API for determining which mode we are
85 // in, tablet/phone/desktop, that should be used instead of narrowMode.
86 source: greeter.narrowMode ? "" : "LoginList.qml"
89 item.currentIndex = greeterContentLoader.currentIndex;
93 target: loginLoader.item
95 value: greeterContentLoader.model
99 target: loginLoader.item
109 onCurrentIndexChanged: {
110 if (greeterContentLoader.currentIndex !== loginLoader.item.currentIndex) {
111 greeterContentLoader.currentIndex = loginLoader.item.currentIndex;
119 objectName: "infographics"
120 height: narrowMode ? parent.height : 0.75 * parent.height
121 model: greeterContentLoader.infographicModel
123 property string selectedUser
124 property string infographicUser: AccountsService.statsWelcomeScreen ? selectedUser : ""
125 onInfographicUserChanged: greeterContentLoader.infographicModel.username = infographicUser
127 Component.onCompleted: {
128 selectedUser = greeterContentLoader.model.data(greeterContentLoader.currentIndex, LightDM.UserRoles.NameRole)
129 greeterContentLoader.infographicModel.username = infographicUser
130 greeterContentLoader.infographicModel.readyForDataChange()
135 onSelected: infographics.selectedUser = greeterContentLoader.model.data(uid, LightDM.UserRoles.NameRole)
139 verticalCenter: parent.verticalCenter
140 left: narrowMode ? root.left : loginLoader.right
151 topMargin: units.gu(2)
152 horizontalCenter: parent.horizontalCenter