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

« back to all changes in this revision

Viewing changes to src/NewAccountPage.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
 
 
22
Page {
 
23
    title: i18n.dtr(plugin.translations, "Add account")
 
24
 
 
25
    Flickable {
 
26
        anchors.fill: parent
 
27
        contentHeight: contentItem.childrenRect.height
 
28
 
 
29
        ProvidersList {
 
30
            onProviderClicked: pageStack.push(accountCreationPage,
 
31
                                              { providerId: providerId })
 
32
        }
 
33
    }
 
34
}