2 * Copyright (C) 2013-2014 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/>.
18import QtQuick.Layouts 1.1
19import Lomiri.Components 1.3
20import Lomiri.Indicators 0.1 as Indicators
28 property QtObject model: null
29 property int currentMenuIndex: -1
30 property Component pageDelegate
35 onCurrentMenuIndexChanged: {
36 listViewContent.currentIndex = currentMenuIndex;
41 objectName: "indicatorsContentListView"
45 highlightFollowsCurrentItem: false
47 orientation: ListView.Horizontal
48 // Load all the indicator menus (a big number)
49 cacheBuffer: 1073741823
51 // for additions/removals.
53 listViewContent.currentIndex = content.currentMenuIndex;
56 onCurrentIndexChanged: {
57 positionViewAtIndex(currentIndex, ListView.Beginning);
63 width: ListView.view.width
64 height: ListView.view.height
66 visible: ListView.isCurrentItem
68 property var modelData: model
69 property var modelIndex: index
71 sourceComponent: pageDelegate
74 // Reset the indicator states
75 if (!visible && status == Loader.Ready) {