Home
last modified time | relevance | path

Searched refs:graceNote (Results 1 – 5 of 5) sorted by relevance

/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar/src/org/herac/tuxguitar/gui/items/tool/
H A DNoteEffectToolItems.java48 private ToolItem graceNote; field in NoteEffectToolItems
93 this.graceNote = new ToolItem(toolBar, SWT.CHECK); in showItems()
94 this.graceNote.addSelectionListener(TuxGuitar.instance().getAction(ChangeGraceNoteAction.NAME)); in showItems()
187 this.graceNote.setSelection(note != null && note.getEffect().isGrace()); in update()
188 this.graceNote.setEnabled(!running && note != null); in update()
219 this.graceNote.setToolTipText(TuxGuitar.getProperty("effects.grace")); in loadProperties()
236 this.graceNote.setImage(TuxGuitar.instance().getIconManager().getEffectGrace()); in loadIcons()
/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar/src/org/herac/tuxguitar/gui/items/menu/
H A DNoteEffectsMenuItem.java58 private MenuItem graceNote; field in NoteEffectsMenuItem
120 this.graceNote = new MenuItem(this.menu, SWT.CHECK); in showItems()
121 this.graceNote.addSelectionListener(TuxGuitar.instance().getAction(ChangeGraceNoteAction.NAME)); in showItems()
193 this.graceNote.setSelection(note != null && note.getEffect().isGrace()); in update()
194 this.graceNote.setEnabled(!running && note != null); in update()
225 setMenuItemTextAndAccelerator(this.graceNote, "effects.grace", ChangeGraceNoteAction.NAME); in loadProperties()
/dports/audio/musescore/MuseScore-3.6.1/libmscore/
H A Dselect.cpp587 for (Chord* graceNote : chord->graceNotes()) in updateSelectedElements()
588 if (canSelect(graceNote)) appendChord(graceNote); in updateSelectedElements()
/dports/audio/musescore/MuseScore-3.6.1/importexport/guitarpro/
H A Dimportgtp-gp6.cpp862 bool graceNote = false; in readBeats() local
867 graceNote = true; in readBeats()
947 if (graceNote) in readBeats()
1580 if (graceNote) { in readBeats()
1770 if (graceNote) in readBeats()
/dports/audio/musescore/MuseScore-3.6.1/mscore/debugger/
H A Ddebugger.cpp985 cb.graceNote->setChecked(chord->noteType() != NoteType::NORMAL); in setElement()