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

« back to all changes in this revision

Viewing changes to src/MainPage.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 SystemSettings 1.0
 
21
import Ubuntu.Components 0.1
 
22
import Ubuntu.OnlineAccounts 0.1
 
23
 
 
24
ItemPage {
 
25
    id: root
 
26
    flickable: accountsPage.visible ? accountsPage : noAccountsPage
 
27
 
 
28
    AccountServiceModel {
 
29
        id: accountsModel
 
30
        service: "global"
 
31
        includeDisabled: true
 
32
    }
 
33
 
 
34
    AccountsPage {
 
35
        id: accountsPage
 
36
        anchors.fill: parent
 
37
        accountsModel: accountsModel
 
38
        visible: accountsModel.count > 0
 
39
    }
 
40
 
 
41
    NoAccountsPage {
 
42
        id: noAccountsPage
 
43
        anchors.fill: parent
 
44
        accountsModel: accountsModel
 
45
        visible: !accountsPage.visible
 
46
    }
 
47
 
 
48
    Component {
 
49
        id: accountCreationPage
 
50
        AccountCreationPage {}
 
51
    }
 
52
}