Skip to content
Snippets Groups Projects
Commit 789c3d23 authored by SeeLook's avatar SeeLook
Browse files

Fix menu button checkbox click

parent b6cff17f
No related branches found
No related tags found
No related merge requests found
888b 88 88
8888b 88 ,d 88
88 `8b 88 88 88
88 `8b 88 ,adPPYba, ,adPPYba, MM88MMM 88 ,d8 ,adPPYYba,
88 `8b 88 a8" "8a a8" "8a 88 88 ,a8" "" `Y8
88 `8b 88 8b d8 8b d8 88 8888[ ,adPPPPP88
88 `8888 "8a, ,a8" "8a, ,a8" 88, 88`"Yba, 88, ,88
88 `888 `"YbbdP"' `"YbbdP"' "Y888 88 `Y8a `"8bbdP"Y8
888b 88 88
8888b 88 ,d 88
88 `8b 88 88 88
88 `8b 88 ,adPPYba, ,adPPYba, MM88MMM 88 ,d8 ,adPPYYba,
88 `8b 88 a8" "8a a8" "8a 88 88 ,a8" "" `Y8
88 `8b 88 8b d8 8b d8 88 8888[ ,adPPPPP88
88 `8888 "8a, ,a8" "8a, ,a8" 88, 88`"Yba, 88, ,88
88 `888 `"YbbdP"' `"YbbdP"' "Y888 88 `Y8a `"8bbdP"Y8
============================================================================
================ TODO LIST ======================
============================================================================
......@@ -17,7 +17,7 @@ TRANSLATION CONTEXT CHANGES
TaboutNootka -> AuthorsPage
TscoreSettings -> ScorePage, KeySufixEdit, (rearrange ScorePage)
TradioClef - Tclef (rearrange Tclef)
TscoreActions & TmelMan - MainScore
TscoreActions & TmelMan - TmainScoreObject
TtoolBar - MainWindow
TtoolBar - exam actions are created in TexamExecutor
accidssettings -> AccidsPage (but remove line breaks from descriptions)
......@@ -29,13 +29,12 @@ TRANSLATION CONTEXT CHANGES
============================================================================
small glitches:
- clef is not approved when settings were accepted
- sometimes setting a note doesn't scale tie - probably due to note width is not refreshed
- meter can be too close to key signature - probably related with clef change
============================================================================
- TexamExecutor has many, many un-wrapped strings, many ""
- Use int and enumerations between plugins and main window instead of text messages (level plugin to do)
To consideration:
- additional settings options:
- disable screen locking (TRUE by default)
......@@ -58,12 +57,9 @@ To consideration:
- certificates would have some additional data about melodies
- bring back isVoice() audio param - average pitch of all chunks or min duration will depend on it
- divide TexamExecutor class !!!!!
- dialog to configure generated melody and its rhythms
- rhythms in level and exercise/exam
- Class that manages recent exams menu list and has colored item 'recent opened exams',
use recent exams list for analyzer the same as start exam dialog has (common class or method)
- managing melodies in levels, adding set of melodies to the level
- settings for keyboard shortcuts
- sophisticated and configurable algorithm to generate random melodies
......
......@@ -50,7 +50,7 @@ Rectangle {
TcheckBox {
anchors {verticalCenter: parent.verticalCenter}
checked: menuButton.action.checked
onClicked: menuButton.clicked()
onClicked: buttonClicked()
x: (Noo.fontSize() * 3.5 - width) / 2
}
}
......@@ -58,9 +58,10 @@ Rectangle {
Component {
id: shortComp
Text {
anchors {verticalCenter: parent.verticalCenter}
anchors.verticalCenter: parent.verticalCenter
text: "(" + action.key() + ")"
x: menuButton.width - width - Noo.fontSize()
font.pixelSize: Noo.fontSize() * 0.8
x: menuButton.width - width - Noo.fontSize() / 2
}
}
......@@ -73,13 +74,15 @@ Rectangle {
id: ma
anchors.fill: parent
hoverEnabled: true
onClicked: {
menuButton.clicked()
if (action) {
if (action.checkable)
action.checked = !action.checked
action.trigger()
}
onClicked: buttonClicked()
}
function buttonClicked() {
menuButton.clicked()
if (action) {
if (action.checkable)
action.checked = !action.checked
action.trigger()
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment