2 * Copyright (C) 2014-2016 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 Lomiri.Components 1.3
19import AccountsService 0.1
22 * This object is always present, so it should be lean and mean. It will
23 * use a Loader to create the heavier tutorial pages if needed.
29 readonly property alias active: loader.active
31 property Item launcher
34 property string usageScenario
35 property bool paused // hide any existing tutorial and don't show new ones
36 property bool delayed // don't show new tutorials
37 property int lastInputTimestamp
39 readonly property bool demonstrateLauncher: loader.item ? loader.item.demonstrateLauncher : false
40 readonly property bool launcherEnabled: loader.item ? loader.item.launcherEnabled : true
41 readonly property bool launcherLongSwipeEnabled: loader.item ? loader.item.launcherLongSwipeEnabled : true
42 readonly property bool spreadEnabled: loader.item ? loader.item.spreadEnabled : true
43 readonly property bool panelEnabled: loader.item ? loader.item.panelEnabled : true
44 readonly property bool running: loader.item ? loader.item.running : false
55 source: "TutorialContent.qml"
56 active: AccountsService.demoEdges
78 property: "usageScenario"
79 value: root.usageScenario
96 property: "lastInputTimestamp"
97 value: root.lastInputTimestamp
102 onFinished: AccountsService.demoEdges = false