~paulliu/unity8/lp1383693

« back to all changes in this revision

Viewing changes to qml/Panel/IndicatorPage.qml

Implementation of expandable panel design Fixes: 1368856

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright 2013 Canonical Ltd.
 
2
 * Copyright 2013-2014 Canonical Ltd.
3
3
 *
4
4
 * This program is free software; you can redistribute it and/or modify
5
5
 * it under the terms of the GNU Lesser General Public License as published by
12
12
 *
13
13
 * You should have received a copy of the GNU Lesser General Public License
14
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 
 *
16
 
 * Authors:
17
 
 *      Renato Araujo Oliveira Filho <renato@canonical.com>
18
 
 *      Nick Dedekind <nick.dedekind@canonical.com>
19
15
 */
20
16
 
21
17
import QtQuick 2.0
22
18
import Ubuntu.Components 0.1 as Components
23
19
import Unity.Indicators 0.1 as Indicators
 
20
import "Indicators"
24
21
 
25
22
IndicatorBase {
26
23
    id: main
125
122
        delegate: Loader {
126
123
            id: loader
127
124
            objectName: "menuItem" + index
128
 
            asynchronous: true
129
125
            width: ListView.view.width
130
126
            visible: status == Loader.Ready
131
127