1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
/* This file is part of lomiri-action-api
* Copyright 2013 Canonical Ltd.
*
* lomiri-action-api is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version 3,
* as published by the Free Software Foundation.
*
* lomiri-action-api is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import Lomiri.Action 1.1
import QtQuick 2.0
import QtTest 1.0
/* This test will make sure there are no unintentional changes to the
* schemantics of the API (default properties work as expected, etc)
* so that any files written to the prior release of the library
* will not bail out when loaded resulting in client applications failing
* to start.
*/
Item {
ActionManager {
id: manager
localContexts: [ctx1, ctx2]
onQuit: {}
Action {
id: globalaction
name: "NewMessage"
text: "Write New Message"
iconName: "email-new-message"
description: "Write a new Message"
keywords: "Compose;Send"
enabled: true
parameterType: Action.String
onTriggered: {}
}
}
ActionContext {
id: ctx1
Action {
id: myaction1
text: "Foo"
onTriggered: {}
}
}
ActionContext {
id: ctx2
PreviewAction {
id: previewaction
text: "Color Balance"
commitLabel: "Apply"
onStarted: {}
onResetted: {}
onCancelled: {}
onTriggered: {}
PreviewRangeParameter {
text: "lorem ipsum"
value: 0
minimumValue: -100
maximumValue: 100
onValueChanged: {}
}
}
}
/*
MenuItem {
action: myaction1
text: "New Message"
iconName: "menu-new-message"
target: "user@corporation.tld"
visible: true
enabled: false
}
*/
Component.onCompleted: {
ctx2.active = true
}
TestCase {
name: "API Test"
id: test_api
function test_api() {
// just make sure this file can be loaded properly by the QmlEngine.
verify(1)
}
}
}
|