~mardy/ubuntu-system-settings-online-accounts/qml-dialog

« back to all changes in this revision

Viewing changes to src/NoAccountsPage.qml

  • Committer: Alberto Mardegan
  • Date: 2013-05-30 13:00:54 UTC
  • Revision ID: alberto.mardegan@canonical.com-20130530130054-oojk8zrqbhmiaitd
First iteration

Show existing accounts and providers list

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical Ltd.
 
3
 *
 
4
 * Contact: Alberto Mardegan <alberto.mardegan@canonical.com>
 
5
 *
 
6
 * This program is free software: you can redistribute it and/or modify it
 
7
 * under the terms of the GNU General Public License version 3, as published
 
8
 * by the Free Software Foundation.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful, but
 
11
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
12
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
13
 * PURPOSE.  See the GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License along
 
16
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
import QtQuick 2.0
 
20
import Ubuntu.Components 0.1
 
21
import Ubuntu.Components.ListItems 0.1 as ListItem
 
22
 
 
23
Flickable {
 
24
    id: root
 
25
 
 
26
    property variant accountsModel
 
27
 
 
28
    contentHeight: contentItem.childrenRect.height
 
29
 
 
30
    Column {
 
31
        anchors.left: parent.left
 
32
        anchors.right: parent.right
 
33
 
 
34
        Label {
 
35
            anchors.left: parent.left
 
36
            anchors.right: parent.right
 
37
            text: i18n.dtr(plugin.translations, "No accounts")
 
38
        }
 
39
 
 
40
        ListItem.Divider {}
 
41
 
 
42
        AddAccountLabel {}
 
43
 
 
44
        Label {
 
45
            anchors.left: parent.left
 
46
            anchors.right: parent.right
 
47
            text: i18n.dtr(plugin.translations, "Add account:")
 
48
        }
 
49
 
 
50
        ProvidersList {
 
51
            onProviderClicked: pageStack.push(accountCreationPage,
 
52
                                              { providerId: providerId })
 
53
        }
 
54
    }
 
55
}