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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
|
# This file is part of the Frescobaldi project, http://www.frescobaldi.org/
#
# Copyright (c) 2008 - 2014 by Wilbert Berendsen
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# See http://www.gnu.org/licenses/ for more information.
"""
The Quick Insert panel spanners Tool.
"""
from PyQt5.QtGui import QTextCursor
from PyQt5.QtWidgets import QHBoxLayout, QToolButton
import app
import icons
import cursortools
import tokeniter
import lydocument
import documentactions
import symbols
import ly.document
import ly.rhythm
from . import tool
from . import buttongroup
class Spanners(tool.Tool):
"""Dynamics tool in the quick insert panel toolbox."""
def __init__(self, panel):
super(Spanners, self).__init__(panel)
self.removemenu = QToolButton(self,
autoRaise=True,
popupMode=QToolButton.InstantPopup,
icon=icons.get('edit-clear'))
mainwindow = panel.parent().mainwindow()
mainwindow.selectionStateChanged.connect(self.removemenu.setEnabled)
self.removemenu.setEnabled(mainwindow.hasSelection())
ac = documentactions.DocumentActions.instance(mainwindow).actionCollection
self.removemenu.addAction(ac.tools_quick_remove_slurs)
layout = QHBoxLayout()
layout.addWidget(self.removemenu)
layout.addStretch(1)
self.layout().addLayout(layout)
self.layout().addWidget(ArpeggioGroup(self))
self.layout().addWidget(GlissandoGroup(self))
self.layout().addWidget(SpannerGroup(self))
self.layout().addWidget(GraceGroup(self))
self.layout().addStretch(1)
def icon(self):
"""Should return an icon for our tab."""
return symbols.icon("spanner_phrasingslur")
def title(self):
"""Should return a title for our tab."""
return _("Spanners")
def tooltip(self):
"""Returns a tooltip"""
return _("Slurs, spanners, etcetera.")
class ArpeggioGroup(buttongroup.ButtonGroup):
def translateUI(self):
self.setTitle(_("Arpeggios"))
def actionData(self):
"""Should yield name, icon, function (may be None) for every action."""
for name, title in self.actionTexts():
yield name, symbols.icon(name), None
def actionTexts(self):
"""Should yield name, text for very action."""
yield 'arpeggio_normal', _("Arpeggio")
yield 'arpeggio_arrow_up', _("Arpeggio with Up Arrow")
yield 'arpeggio_arrow_down', _("Arpeggio with Down Arrow")
yield 'arpeggio_bracket', _("Bracket Arpeggio")
yield 'arpeggio_parenthesis', _("Parenthesis Arpeggio")
def actionTriggered(self, name):
# convert arpeggio_normal to arpeggioNormal, etc.
name = _arpeggioTypes[name]
cursor = self.mainwindow().textCursor()
# which arpeggio type is last used?
lastused = '\\arpeggioNormal'
types = set(_arpeggioTypes.values())
block = cursor.block()
while block.isValid():
s = types.intersection(tokeniter.tokens(block))
if s:
lastused = s.pop()
break
block = block.previous()
# where to insert
c = lydocument.cursor(cursor)
c.select_end_of_block()
with cursortools.compress_undo(cursor):
for item in ly.rhythm.music_items(c, partial=ly.document.OUTSIDE):
c = QTextCursor(cursor.document())
c.setPosition(item.end)
c.insertText('\\arpeggio')
if name != lastused:
cursortools.strip_indent(c)
indent = c.block().text()[:c.position()-c.block().position()]
c.insertText(name + '\n' + indent)
# just pick the first place
return
class GlissandoGroup(buttongroup.ButtonGroup):
def translateUI(self):
self.setTitle(_("Glissandos"))
def actionData(self):
"""Should yield name, icon, function (may be None) for every action."""
for name, title in self.actionTexts():
yield name, symbols.icon(name), None
def actionTexts(self):
"""Should yield name, text for very action."""
yield 'glissando_normal', _("Glissando")
yield 'glissando_dashed', _("Dashed Glissando")
yield 'glissando_dotted', _("Dotted Glissando")
yield 'glissando_zigzag', _("Zigzag Glissando")
yield 'glissando_trill', _("Trill Glissando")
def actionTriggered(self, name):
cursor = self.mainwindow().textCursor()
style = _glissandoStyles[name]
c = lydocument.cursor(cursor)
c.select_end_of_block()
for item in ly.rhythm.music_items(c, partial=ly.document.OUTSIDE):
c = QTextCursor(cursor.document())
c.setPosition(item.end)
if style:
text = "-\\tweak #'style #'{0} \\glissando".format(style)
else:
text = '\\glissando'
c.insertText(text)
return
class SpannerGroup(buttongroup.ButtonGroup):
def translateUI(self):
self.setTitle(_("Spanners"))
def actionData(self):
for name, title in self.actionTexts():
yield name, symbols.icon(name), None
def actionTexts(self):
yield 'spanner_slur', _("Slur")
yield 'spanner_phrasingslur', _("Phrasing Slur")
yield 'spanner_beam16', _("Beam")
yield 'spanner_trill', _("Trill")
yield 'spanner_melisma', _("Melisma")
def actionTriggered(self, name):
d = ['_', '', '^'][self.direction()+1]
if name == "spanner_slur":
spanner = d + '(', ')'
elif name == "spanner_phrasingslur":
spanner = d + '\\(', '\\)'
elif name == "spanner_beam16":
spanner = d + '[', ']'
elif name == "spanner_trill":
spanner = '\\startTrillSpan', '\\stopTrillSpan'
elif name == "spanner_melisma":
spanner = '\\melisma', '\\melismaEnd'
cursor = self.mainwindow().textCursor()
with cursortools.compress_undo(cursor):
for s, c in zip(spanner, spanner_positions(cursor)):
c.insertText(s)
class GraceGroup(buttongroup.ButtonGroup):
def translateUI(self):
self.setTitle(_("Grace Notes"))
def actionData(self):
for name, title in self.actionTexts():
yield name, symbols.icon(name), None
def actionTexts(self):
yield 'grace_grace', _("Grace Notes")
yield 'grace_beam', _("Grace Notes w. beaming")
yield 'grace_accia', _("Acciaccatura")
yield 'grace_appog', _("Appoggiatura")
yield 'grace_slash', _("Slashed no slur")
yield 'grace_after', _("After grace")
def actionTriggered(self, name):
d = ['_', '', '^'][self.direction()+1]
single = ''
if name == "grace_grace":
inner = ''
outer = '\\grace { ', ' }'
single = '\\grace '
elif name == "grace_beam":
inner = d + '[', ']'
outer = '\\grace { ', ' }'
elif name == "grace_accia":
inner = ''
outer = '\\acciaccatura { ', ' }'
single = '\\acciaccatura '
elif name == "grace_appog":
inner = ''
outer = '\\appoggiatura { ', ' }'
single = '\\appoggiatura '
elif name == "grace_slash":
inner = d + '[', ']'
outer = '\\slashedGrace { ', ' }'
elif name == "grace_after":
inner = d + '{ '
outer = '\\afterGrace ', ' }'
cursor = self.mainwindow().textCursor()
with cursortools.compress_undo(cursor):
if inner:
for i, ci in zip(inner, spanner_positions(cursor)):
ci.insertText(i)
if cursor.hasSelection():
ins = self.mainwindow().textCursor()
ins.setPosition(cursor.selectionStart())
ins.insertText(outer[0])
ins.setPosition(cursor.selectionEnd())
ins.insertText(outer[1])
else:
if single:
cursor.insertText(single)
else:
c = lydocument.cursor(cursor)
c.end = None
items = list(ly.rhythm.music_items(c, partial=ly.document.OUTSIDE))
after = self.mainwindow().textCursor()
try:
i = items[2]
pos = i.pos + 1
end = (i.tokens or i.dur_tokens)[0].end
after.setPosition(pos)
after.setPosition(end, QTextCursor.KeepAnchor)
except IndexError:
after.movePosition(cursor.EndOfLine)
after.insertText(outer[1])
cursor.insertText(outer[0])
def spanner_positions(cursor):
"""Return a list with 0 to 2 QTextCursor instances.
At the first cursor a starting spanner item can be inserted, at the
second an ending item.
"""
c = lydocument.cursor(cursor)
if cursor.hasSelection():
partial = ly.document.INSIDE
else:
# just select until the end of the current line
c.select_end_of_block()
partial = ly.document.OUTSIDE
items = list(ly.rhythm.music_items(c, partial=partial))
if cursor.hasSelection():
del items[1:-1]
else:
del items[2:]
positions = []
for i in items:
c = QTextCursor(cursor.document())
c.setPosition(i.end)
positions.append(c)
return positions
_arpeggioTypes = {
'arpeggio_normal': '\\arpeggioNormal',
'arpeggio_arrow_up': '\\arpeggioArrowUp',
'arpeggio_arrow_down': '\\arpeggioArrowDown',
'arpeggio_bracket': '\\arpeggioBracket',
'arpeggio_parenthesis': '\\arpeggioParenthesis',
}
_glissandoStyles = {
'glissando_normal': '',
'glissando_dashed': 'dashed-line',
'glissando_dotted': 'dotted-line',
'glissando_zigzag': 'zigzag',
'glissando_trill': 'trill',
}
|