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
|
addPlugin({
pluginDependencies: ["CorePlugin"],
pluginLibrary: "TimelinePlugin",
settings: {
"$$.TimelineSettings": {
text: qsTr("Timeline"),
visible: true,
// IMPORTANT: if you want to declare other settings group as a
// child of this element, the child must have order > 300,
//otherwise it will not appear in Tools/Options dialog
order: 300,
properties: {
"$$.ShowCorrelationArrows": {
order: 130,
type: "bool",
category: qsTr("Basic settings"),
text: qsTr("Show correlation arrows"),
detailsText: qsTr("Show arrows on correlated items on the Timeline"),
defaultValue: true
},
}
}
}
})
|