add custom keys configuration

This commit is contained in:
2017-07-10 01:43:21 +03:00
parent 7a00dce7c5
commit 7ce3e8b1cf
14 changed files with 428 additions and 46 deletions

View File

@ -41,15 +41,21 @@ Row {
signal showMessage(string message)
QtControls.Button {
width: parent.width * 3 / 10
width: parent.width * 3 / 15
text: i18n("Edit bars")
onClicked: backend.editItem("graphicalitem")
}
QtControls.Button {
width: parent.width * 3 / 10
width: parent.width * 3 / 15
text: i18n("Formatters")
onClicked: awFormatter.showDialog(backend.dictKeys(true))
onClicked: awFormatter.showFormatterDialog(backend.dictKeys(true))
}
QtControls.Button {
width: parent.width * 3 / 15
text: i18n("User keys")
onClicked: awFormatter.showKeysDialog(backend.dictKeys(true))
}
QtControls.Button {