mirror of
https://github.com/pbek/QOwnNotes.git
synced 2025-06-28 21:09:52 +00:00
35 lines
1 KiB
QML
35 lines
1 KiB
QML
import QtQml 2.0
|
|
import QOwnNotesTypes 1.0
|
|
|
|
/**
|
|
* This script creates scripting labels
|
|
*
|
|
*/
|
|
Script {
|
|
/**
|
|
* Initializes the labels
|
|
*/
|
|
function init() {
|
|
script.registerLabel("html-label", "<strong>Strong</strong> HTML text<br />with three lines<br />and a <a href='https://www.qownnotes.org'>link to a website</a>.");
|
|
|
|
script.registerLabel("long-label", "another very long text, another very long text, another very long text, another very long text, another very long text, another very long text, another very long text, another very long text, another very long text, another very long text, another very long text that will wrap");
|
|
|
|
script.registerLabel("counter-label");
|
|
}
|
|
|
|
/**
|
|
* This starts a timer that triggers two seconds
|
|
*/
|
|
property QtObject timer: Timer {
|
|
interval: 1000
|
|
repeat: true
|
|
running: true
|
|
|
|
property int count: 0
|
|
|
|
onTriggered: {
|
|
count++;
|
|
script.setLabelText("counter-label", "count = " + count);
|
|
}
|
|
}
|
|
}
|