Browse Source

overhaul svg items and positions

master
Nils 2 years ago
parent
commit
214e26a84a
  1. 3
      CHANGELOG
  2. 8
      engine/api.py
  3. 50
      qtgui/items.py
  4. 8
      qtgui/menu.py
  5. 12225
      qtgui/resources.py
  6. 1
      qtgui/resources/resources.qrc
  7. 42
      qtgui/resources/svg/accidentalsDoublesharp.svg
  8. 43
      qtgui/resources/svg/accidentalsFlat.svg
  9. 42
      qtgui/resources/svg/accidentalsFlatFlat.svg
  10. 42
      qtgui/resources/svg/accidentalsNatural.svg
  11. 42
      qtgui/resources/svg/accidentalsSharp.svg
  12. 48
      qtgui/resources/svg/blockEnd.svg
  13. 40
      qtgui/resources/svg/clefAlto.svg
  14. 42
      qtgui/resources/svg/clefBass.svg
  15. 42
      qtgui/resources/svg/clefBass_8.svg
  16. 42
      qtgui/resources/svg/clefPercussion.svg
  17. 44
      qtgui/resources/svg/clefTreble.svg
  18. 44
      qtgui/resources/svg/clefTreble^8.svg
  19. 44
      qtgui/resources/svg/clefTreble_8.svg
  20. 47
      qtgui/resources/svg/dot.svg
  21. 62
      qtgui/resources/svg/numbers.svg
  22. 54
      qtgui/resources/svg/rest1.svg
  23. 42
      qtgui/resources/svg/rest128.svg
  24. 42
      qtgui/resources/svg/rest16.svg
  25. 54
      qtgui/resources/svg/rest2.svg
  26. 42
      qtgui/resources/svg/rest32.svg
  27. 42
      qtgui/resources/svg/rest4.svg
  28. 42
      qtgui/resources/svg/rest64.svg
  29. 44
      qtgui/resources/svg/rest8.svg
  30. 44
      qtgui/resources/svg/restBrevis.svg
  31. 44
      qtgui/resources/svg/restLonga.svg
  32. 42
      qtgui/resources/svg/restMaxima.svg
  33. 42
      qtgui/resources/svg/scriptsStaccato.svg
  34. 57
      qtgui/resources/svg/scriptsTenuto.svg

3
CHANGELOG

@ -32,9 +32,12 @@ Metronome audio outputs now use real metronome name, not only pretty name
Use lilypond title as jack pretty client name, if provided (needs libcalfbox-lss 1.1.0)
Add preview image to Lilypond properties and metadata
More information about the cursor and position in the status bar
Fix all drawn items to properly work with high zoom-out levels. Side effect: slightly better performance.
Better alignment for all drawn items.
Fix drawing of ties and staccato dots.
Fix ledger lines of added chord notes
## 2022-04-15 2.0.3
Use the new systewide library libcalfbox-lss instead of providing our own. This lib is now a dependency.
https://git.laborejo.org/lss/libcalfbox-lss

8
engine/api.py

@ -31,7 +31,7 @@ from typing import Iterable, Callable, Tuple
from template.calfbox import cbox
import template.engine.api #we need direct access to the module to inject data in the provided structures. but we also need the functions directly. next line:
from template.engine.api import *
from template.engine.duration import DB, DL, D1, D2, D4, D8, D16, D32, D64, D128, D256, D512, D1024, D_DEFAULT, D_STACCATO, D_TENUTO, D_TIE
from template.engine.duration import DM, DB, DL, D1, D2, D4, D8, D16, D32, D64, D128, D256, D512, D1024, D_DEFAULT, D_STACCATO, D_TENUTO, D_TIE
import template.engine.pitch as pitchmath
from template.helper import flatList, EndlessGenerator
@ -1806,6 +1806,12 @@ def insertRest64():
insertRest(D64)
def insertRest128():
insertRest(D128)
def insertRestBrevis():
insertRest(DB)
def insertRestLonga():
insertRest(DL)
def insertRestMaxima():
insertRest(DM)
def insertMultiMeasureRest(numberOfMeasures):
"""MultiMeasureRests get calculated on export"""

50
qtgui/items.py

@ -69,12 +69,22 @@ class GuiTieCurveGraphicsItem(QtWidgets.QGraphicsPathItem):
self.draw()
class GuiPositionMarker(QtWidgets.QGraphicsRectItem):
def __init__(self, height, position = 1):
class GuiPositionMarkerOld(QtWidgets.QGraphicsRectItem):
def __init__(self, height=3, position = -3): #4, -2 looks like a barline
"""A simple position marker that connects an annotation above a staff with the staff.
Height and position are calculated in stafflines/gaps"""
super().__init__(-2, position*constantsAndConfigs.stafflineGap, 1, height * constantsAndConfigs.stafflineGap) #x,y, w, h
self.setBrush(QtCore.Qt.black)
#self.setBrush(QtCore.Qt.black) #no effect. Should be pen.
class GuiPositionMarker(QtWidgets.QGraphicsSimpleTextItem):
def __init__(self):
"""A simple position marker that connects an annotation above a staff with the staff.
Height and position are calculated in stafflines/gaps"""
super().__init__("") #unicode long arrow U+27F6
self.setRotation(90)
self.setScale(1.5)
self.setBrush(QtCore.Qt.darkRed)
self.setTransform(QtGui.QTransform.fromTranslate(6, -24), True) #shift
class GuiTupletNumber(QtWidgets.QGraphicsItem):
"""The baseline is the scene Position.
@ -272,7 +282,7 @@ class GuiNote(QtWidgets.QGraphicsItem):
#Ledger lines need to be done in the chord to not be redundant and work for multiple notes.
if noteExportObject["accidental"]: #0 means no difference to keysig
self.accidental = self.createAccidentalGraphicsItem(noteExportObject["accidental"])
self.accidental.setPos(0, constantsAndConfigs.stafflineGap * noteExportObject["dotOnLine"] / 2)
self.accidental.setPos(-1*self.accidental.boundingRect().width()-2, constantsAndConfigs.stafflineGap * noteExportObject["dotOnLine"] / 2 - self.accidental.boundingRect().height()/2) #-height is simply the svg offset
self.accidental.setParentItem(self)
for dot in range(noteExportObject["dots"]):
@ -296,11 +306,11 @@ class GuiNote(QtWidgets.QGraphicsItem):
#width = self.noteHead.boundingRect().width() #1000 !? Weird svg.
#setPos is relative to noteHead.
if directionRightAndUpwards and noteExportObject["durationKeyword"]==api.D_STACCATO:
if directionRightAndUpwards:
#self.durationKeywordGlyph.setScale(-1) #doesn't work because center of rotation is somehwere at pixel 1000!!
self.durationKeywordGlyph.setPos(4, -1*constantsAndConfigs.stafflineGap) #x should be the width of the notehead.
self.durationKeywordGlyph.setPos(0, -1*constantsAndConfigs.stafflineGap) #x should be the width of the notehead.
else:
self.durationKeywordGlyph.setPos(4, constantsAndConfigs.stafflineGap-1)
self.durationKeywordGlyph.setPos(0, constantsAndConfigs.stafflineGap-1)
self.durationKeywordGlyph.setParentItem(self.noteHead)
@ -317,7 +327,8 @@ class GuiNote(QtWidgets.QGraphicsItem):
durationKeywords = { #0 is default and has no markers.
api.D_STACCATO : lambda noteExportObject: QtSvg.QGraphicsSvgItem(":svg/scriptsStaccato.svg"),
api.D_TENUTO : lambda noteExportObject: QtWidgets.QGraphicsSimpleTextItem("-"), #TODO: tenuto svg glyph with same position as the others.
#api.D_TENUTO : lambda noteExportObject: QtWidgets.QGraphicsSimpleTextItem("-"), #TODO: tenuto svg glyph with same position as the others.
api.D_TENUTO : lambda noteExportObject: QtSvg.QGraphicsSvgItem(":svg/scriptsTenuto.svg"),
api.D_TIE : lambda noteExportObject: GuiTieCurveGraphicsItem(noteExportObject),
}
@ -606,6 +617,7 @@ class GuiRest(GuiItem):
def createGraphicItemsFromData(self):
self.glyph = GuiRest.rests[self.staticItem["rest"]]()
self.glyph.setY(-1*constantsAndConfigs.stafflineGap)
self.glyph.setParentItem(self)
for dot in range(self.staticItem["dots"]):
@ -664,15 +676,16 @@ class GuiClef(GuiItem):
def createGraphicItemsFromData(self):
self.glyph = GuiClef.clefs[self.staticItem["clef"]]()
self.glyph.setParentItem(self)
self.glyph.setPos(-5, -5 * constantsAndConfigs.stafflineGap)
self.glyph.setScale(0.5)
self.glyph.setPos(-1*self.glyph.boundingRect().width()/2, -1 * self.glyph.boundingRect().height()/2 - 3.5*constantsAndConfigs.stafflineGap)
#self.text = QtWidgets.QGraphicsSimpleTextItem(self.staticItem["clef"].title())
#self.text.setParentItem(self)
#self.text.setPos(0, -5 * constantsAndConfigs.stafflineGap)
self.marker = GuiPositionMarker(-5)
self.marker = GuiPositionMarker()
self.marker.setParentItem(self)
self.marker.setPos(0,0)
self.marker.setPos(0, 0)
clefs = { #QGraphicsItems can only be used once so we have to save a class constructor here instead of an instance.
"treble" : lambda: QtSvg.QGraphicsSvgItem(":svg/clefTreble.svg"),
@ -686,6 +699,8 @@ class GuiClef(GuiItem):
}
class GuiTimeSignature(GuiItem):
"""leave this in the code because of the cool svg subrender feature"""
def __init__(self, staticItem):
raise Exception("Don't use this item. It will be deleted in future versions. Use a Metrical Instruction")
super().__init__(staticItem)
@ -722,9 +737,6 @@ class GuiMetricalInstruction(GuiItem):
if staticItem["oneMeasureInTicks"] == 0:
#Basically just a manual barline
displayString = "X"
markerPosition = -2
markerHeight = 4
else:
#Format the Tree of Instructions
realTree = eval(staticItem["treeOfInstructions"])
@ -736,18 +748,15 @@ class GuiMetricalInstruction(GuiItem):
if onlyTopLevelElements:
r = r.replace(",", "")
displayString = "Metrical " + r
markerPosition = -2
markerHeight = 4
displayString = "M " + r
#A metrical instruction is by definition at the beginning of a measure
#We therefore need to place the text above the barnumber
self.text = QtWidgets.QGraphicsSimpleTextItem(displayString)
self.text.setParentItem(self)
self.text.setPos(0, -7 * constantsAndConfigs.stafflineGap)
self.text.setPos(-6, -7 * constantsAndConfigs.stafflineGap) #by definition the metrical sig is in the same position as the measure number. Shift high up
self.marker = GuiPositionMarker(markerHeight, markerPosition)
self.marker = GuiPositionMarker()
self.marker.setParentItem(self)
self.marker.setPos(0,0)
@ -781,6 +790,7 @@ class GuiBlockEndMarker(GuiItem):
def __init__(self, staticItem):
super(GuiBlockEndMarker, self).__init__(staticItem)
self.glyph = QtSvg.QGraphicsSvgItem(":svg/blockEnd.svg")
self.glyph.setPos(-2, -1*self.glyph.boundingRect().height()/2)
self.createGraphicItemsFromData()
def createGraphicItemsFromData(self):

8
qtgui/menu.py

@ -345,10 +345,10 @@ class MenuActionDatabase(object):
self.mainWindow.ui.actionShift_modal4 : api.insertRest8,
self.mainWindow.ui.actionShift_modal5 : api.insertRest16,
self.mainWindow.ui.actionShift_modal6 : api.insertRest32,
#self.mainWindow.ui.actionShift_modal7 : api.insertRestBrevis,
#self.mainWindow.ui.actionShift_modal8 : api.insertRestLonga,
#self.mainWindow.ui.actionShift_modal7 : api.insertRest64,
#self.mainWindow.ui.actionShift_modal8 : api.insertRest128,
self.mainWindow.ui.actionShift_modal7 : api.insertRest64,
self.mainWindow.ui.actionShift_modal8 : api.insertRestBrevis,
self.mainWindow.ui.actionShift_modal9 : api.insertRestLonga,
self.mainWindow.ui.actionShift_modal0 : api.insertRestMaxima,
}
#These are available in CC Edit Mode, Note Edit mode etc.

12225
qtgui/resources.py

File diff suppressed because it is too large

1
qtgui/resources/resources.qrc

@ -47,5 +47,6 @@
<file>svg/restLonga.svg</file>
<file>svg/restMaxima.svg</file>
<file>svg/scriptsStaccato.svg</file>
<file>svg/scriptsTenuto.svg</file>
</qresource>
</RCC>

42
qtgui/resources/svg/accidentalsDoublesharp.svg

@ -2,19 +2,19 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="1000"
height="1000"
width="6.6500001"
height="6.6500001"
id="svg3079"
inkscape:version="0.48.4 r9939"
sodipodi:docname="accidentalsDoublesharp.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="accidentalsDoublesharp.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -24,19 +24,22 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1041"
inkscape:window-width="1918"
inkscape:window-height="2118"
id="namedview3152"
showgrid="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="21.360282"
inkscape:cx="-6.5567979"
inkscape:cy="1003.856"
inkscape:window-x="1920"
inkscape:window-y="18"
inkscape:cx="0.28089517"
inkscape:cy="1007.2198"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3079" />
inkscape:current-layer="svg3079"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata3087">
<rdf:RDF>
@ -45,14 +48,13 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3085" />
<path
d="m -2.8851159,0.00621828 c 0.575,0.575 1.45,0.7 2.27500001,0.7 0.1,0 0.2,0.1 0.2,0.2 l 0.225,2.22500002 c 0,0.1 -0.075,0.2 -0.175,0.2 h -0.025 l -2.22500001,-0.225 c -0.1,0 -0.2,-0.1 -0.2,-0.2 0,-0.825 -0.125,-1.7 -0.7,-2.27500002 -0.575,0.57500002 -0.7,1.45000002 -0.7,2.27500002 0,0.1 -0.1,0.2 -0.2,0.2 l -2.225,0.225 h -0.025 c -0.1,0 -0.175,-0.1 -0.175,-0.2 l 0.225,-2.22500002 c 0,-0.1 0.1,-0.2 0.2,-0.2 0.825,0 1.7,-0.125 2.275,-0.7 -0.575,-0.575 -1.45,-0.7 -2.275,-0.7 -0.1,0 -0.2,-0.1 -0.2,-0.2 l -0.225,-2.22499998 c 0,-0.1 0.075,-0.2 0.175,-0.2 h 0.025 l 2.225,0.225 c 0.1,0 0.2,0.1 0.2,0.2 0,0.825 0.125,1.7 0.7,2.27499998 0.575,-0.57499998 0.7,-1.44999998 0.7,-2.27499998 0,-0.1 0.1,-0.2 0.2,-0.2 l 2.22500001,-0.225 h 0.025 c 0.1,0 0.175,0.1 0.175,0.2 l -0.225,2.22499998 c 0,0.1 -0.1,0.2 -0.2,0.2 -0.82500001,0 -1.70000001,0.125 -2.27500001,0.7 z"
d="m 3.95,3.325 c 0.575,0.575 1.45,0.7 2.275,0.7 0.1,0 0.2,0.1 0.2,0.2 L 6.65,6.45 c 0,0.1 -0.075,0.2 -0.175,0.2 H 6.45 L 4.225,6.425 c -0.1,0 -0.2,-0.1 -0.2,-0.2 0,-0.825 -0.125,-1.7 -0.7,-2.275 -0.575,0.575 -0.7,1.45 -0.7,2.275 0,0.1 -0.1,0.2 -0.2,0.2 L 0.2,6.65 H 0.175 C 0.075,6.65 0,6.55 0,6.45 L 0.225,4.225 c 0,-0.1 0.1,-0.2 0.2,-0.2 0.825,0 1.7,-0.125 2.275,-0.7 -0.575,-0.575 -1.45,-0.7 -2.275,-0.7 -0.1,0 -0.2,-0.1 -0.2,-0.2 L 0,0.2 C 0,0.1 0.075,0 0.175,0 H 0.2 l 2.225,0.225 c 0.1,0 0.2,0.1 0.2,0.2 0,0.825 0.125,1.7 0.7,2.275 0.575,-0.575 0.7,-1.45 0.7,-2.275 0,-0.1 0.1,-0.2 0.2,-0.2 L 6.45,0 H 6.475 C 6.575,0 6.65,0.1 6.65,0.2 L 6.425,2.425 c 0,0.1 -0.1,0.2 -0.2,0.2 -0.825,0 -1.7,0.125 -2.275,0.7 z"
id="path3081"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

43
qtgui/resources/svg/accidentalsFlat.svg

@ -2,15 +2,39 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="1000"
height="1000"
id="svg3089">
width="6.625"
height="23.511999"
id="svg3089"
sodipodi:docname="accidentalsFlat.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
viewBox="0 0 6.0227273 21.374545"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview17"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="15.104"
inkscape:cx="32.607256"
inkscape:cy="10.030456"
inkscape:window-width="3838"
inkscape:window-height="2118"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="1"
inkscape:current-layer="svg3089" />
<metadata
id="metadata3097">
<rdf:RDF>
@ -19,13 +43,12 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3095" />
<path
d="m -5.1059322,-0.78771185 -0.025,1.725 c 0,0.10000005 -0.025,0.17499995 -0.025,0.27499995 0,0.55 0.05,1.1 0.1,1.65 1.15,-0.95 2.4,-1.99999995 2.4,-3.47499995 0,-0.85000005 -0.35,-1.72500005 -1.1,-1.72500005 -0.775,0 -1.325,0.725 -1.35,1.55000005 z m -0.975,4.49999995 -0.275,-14.9750001 c 0.2,-0.1 0.4,-0.175 0.625,-0.175 0.225,0 0.425,0.075 0.625,0.175 l -0.15,8.7250001 c 0.65,-0.475 1.4,-0.75 2.2,-0.75 1.325,0 2.32499998,1.15 2.32499998,2.50000005 0,2.04999995 -2.24999998,2.94999995 -3.82499998,4.22499995 -0.35,0.275 -0.55,0.8 -1,0.8 -0.3,0 -0.525,-0.225 -0.525,-0.525 z"
d="m 1.25,10.65 -0.025,1.725 c 0,0.1 -0.025,0.175 -0.025,0.275 0,0.55 0.05,1.1 0.1,1.65 1.15,-0.95 2.4,-2 2.4,-3.475 C 3.7,9.975 3.35,9.1 2.6,9.1 1.825,9.1 1.275,9.825 1.25,10.65 Z M 0.275,15.15 0,0.175 C 0.2,0.075 0.4,0 0.625,0 0.85,0 1.05,0.075 1.25,0.175 L 1.1,8.9 C 1.75,8.425 2.5,8.15 3.3,8.15 c 1.325,0 2.325,1.15 2.325,2.5 0,2.05 -2.25,2.95 -3.825,4.225 -0.35,0.275 -0.55,0.8 -1,0.8 -0.3,0 -0.525,-0.225 -0.525,-0.525 z"
id="path3091" />
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

42
qtgui/resources/svg/accidentalsFlatFlat.svg

@ -2,15 +2,38 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="1000"
height="1000"
id="svg3099">
width="9.6749992"
height="23.511999"
id="svg3099"
sodipodi:docname="accidentalsFlatFlat.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview11"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="5.3400704"
inkscape:cx="50.842026"
inkscape:cy="19.381767"
inkscape:window-width="3838"
inkscape:window-height="2118"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="1"
inkscape:current-layer="svg3099" />
<metadata
id="metadata3107">
<rdf:RDF>
@ -19,13 +42,12 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3105" />
<path
d="m -4.9290784,-0.22494702 -0.025,1.72500002 v 0.275 c 0,0.55 0.05,1.1 0.1,1.65 1.125,-0.925 2.225,-2.025 2.225,-3.47500002 0,-0.85 -0.3,-1.72499998 -1.025,-1.72499998 -0.75,0 -1.25,0.75 -1.275,1.54999998 z m -0.95,4.50000002 -0.05,-2.65 c -0.7,0.875 -1.775,1.575 -2.625,2.375 -0.3,0.275 -0.45,0.8 -0.875,0.8 -0.3,0 -0.525,-0.225 -0.525,-0.525 l -0.2749996,-14.975 c 0.2,-0.1 0.3999996,-0.175 0.6249996,-0.175 0.225,0 0.425,0.075 0.625,0.175 l -0.15,8.725 c 0.45,-0.475 1.05,-0.75 1.7,-0.75 0.55,0 1.05,0.225 1.425,0.575 l -0.175,-8.55 c 0.2,-0.1 0.4,-0.175 0.625,-0.175 0.225,0 0.45,0.075 0.65,0.175 l -0.175,8.725 c 0.6,-0.475 1.375,-0.75 2.15,-0.75 1.35,0 2.37499997,1.125 2.37499997,2.47499998 0,2.05000002 -2.24999997,2.95000002 -3.82499997,4.25000002 -0.35,0.275 -0.525,0.8 -0.975,0.8 -0.3,0 -0.525,-0.225 -0.525,-0.525 z m -3.3,-4.50000002 -0.025,1.72500002 v 0.275 c 0,0.575 0.025,1.125 0.1,1.7 1,-0.95 1.8,-2.15 1.8,-3.52500002 0,-0.825 -0.15,-1.72499998 -0.85,-1.72499998 -0.675,0 -1,0.77499998 -1.025,1.54999998 z"
d="m 5.2999996,10.65 -0.025,1.725 v 0.275 c 0,0.55 0.05,1.1 0.1,1.65 1.125,-0.925 2.225,-2.025 2.225,-3.475 0,-0.85 -0.3,-1.725 -1.025,-1.725 -0.75,0 -1.25,0.75 -1.275,1.55 z m -0.95,4.5 -0.05,-2.65 c -0.7,0.875 -1.775,1.575 -2.625,2.375 -0.3,0.275 -0.45,0.8 -0.875,0.8 -0.3,0 -0.525,-0.225 -0.525,-0.525 L 0,0.175 C 0.2,0.075 0.3999996,0 0.6249996,0 c 0.225,0 0.425,0.075 0.625,0.175 l -0.15,8.725 c 0.45,-0.475 1.05,-0.75 1.7,-0.75 0.55,0 1.05,0.225 1.425,0.575 l -0.175,-8.55 c 0.2,-0.1 0.4,-0.175 0.625,-0.175 0.225,0 0.45,0.075 0.65,0.175 l -0.175,8.725 c 0.6,-0.475 1.375,-0.75 2.15,-0.75 1.35,0 2.375,1.125 2.375,2.475 0,2.05 -2.25,2.95 -3.825,4.25 -0.35,0.275 -0.525,0.8 -0.975,0.8 -0.3,0 -0.525,-0.225 -0.525,-0.525 z m -3.3,-4.5 -0.025,1.725 v 0.275 c 0,0.575 0.025,1.125 0.1,1.7 1,-0.95 1.8,-2.15 1.8,-3.525 0,-0.825 -0.15,-1.725 -0.85,-1.725 -0.675,0 -1,0.775 -1.025,1.55 z"
id="path3101" />
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

42
qtgui/resources/svg/accidentalsNatural.svg

@ -2,15 +2,38 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="1000"
height="1000"
id="svg3109">
width="4.5"
height="19.050001"
id="svg3109"
sodipodi:docname="accidentalsNatural.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview23"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="0.472"
inkscape:cx="205.50847"
inkscape:cy="306.14407"
inkscape:window-width="3838"
inkscape:window-height="2118"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="1"
inkscape:current-layer="svg3109" />
<metadata
id="metadata3117">
<rdf:RDF>
@ -19,13 +42,12 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3115" />
<path
d="m -5.0561131,-8.8814055 c 0.175,-0.1 0.4,-0.15 0.6,-0.15 0.2,0 0.4,0.05 0.575,0.15 l -0.05,4.375 2.725,-0.425 c 0.025,0 0.05,-0.025 0.075,-0.025 0.22499998,0 0.42499998,0.2 0.42499998,0.425 l 0.15,14.4 c -0.175,0.1 -0.375,0.1500005 -0.57499998,0.1500005 -0.2,0 -0.4,-0.05 -0.575,-0.1500005 l 0.05,-4.375 -2.75,0.425 c -0.025,0 -0.025,0.025 -0.05,0.025 -0.225,0 -0.425,-0.2 -0.425,-0.425 z m 3.425,11.85 0.05,-5.325 -2.375,0.375 -0.075,5.325 z"
d="M 0,0.15 C 0.175,0.05 0.4,0 0.6,0 0.8,0 1,0.05 1.175,0.15 L 1.125,4.525 3.85,4.1 C 3.875,4.1 3.9,4.075 3.925,4.075 4.15,4.075 4.35,4.275 4.35,4.5 L 4.5,18.9 C 4.325,19 4.125,19.050001 3.925,19.050001 3.725,19.050001 3.525,19 3.35,18.9 L 3.4,14.525 0.65,14.95 c -0.025,0 -0.025,0.025 -0.05,0.025 -0.225,0 -0.425,-0.2 -0.425,-0.425 z M 3.425,12 3.475,6.675 1.1,7.05 1.025,12.375 Z"
id="path3111" />
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

42
qtgui/resources/svg/accidentalsSharp.svg

@ -2,15 +2,38 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="1000"
height="1000"
id="svg3119">
width="6.875"
height="18.75"
id="svg3119"
sodipodi:docname="accidentalsSharp.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="2.6700352"
inkscape:cx="154.30508"
inkscape:cy="124.90472"
inkscape:window-width="3838"
inkscape:window-height="2118"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="1"
inkscape:current-layer="svg3119" />
<metadata
id="metadata3127">
<rdf:RDF>
@ -19,13 +42,12 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3125" />
<path
d="m -3.1102814,7.8941649 c 0,0.225 -0.2,0.425 -0.425,0.425 -0.225,0 -0.425,-0.2 -0.425,-0.425 v -3.775 l -2.175,0.775 v 4.05 c 0,0.225 -0.2,0.425 -0.425,0.425 -0.225,0 -0.425,-0.2 -0.425,-0.425 v -3.75 l -0.975,0.325 c -0.25,0.1 -0.525,-0.1 -0.525,-0.375 v -1.6 c 0,-0.175 0.125,-0.325 0.275,-0.375 l 1.225,-0.45 v -4.1 l -0.975,0.35 c -0.25,0.1 -0.525,-0.1 -0.525,-0.375 v -1.625 c 0,-0.175 0.125,-0.325 0.275,-0.375 l 1.225,-0.425 v -4.075 c 0,-0.225 0.2,-0.425 0.425,-0.425 0.225,0 0.425,0.2 0.425,0.425 v 3.775 l 2.175,-0.775 v -4.05 c 0,-0.225 0.2,-0.425 0.425,-0.425 0.225,0 0.425,0.2 0.425,0.425 v 3.75 l 0.975,-0.325 c 0.25,-0.1 0.525,0.1 0.525,0.375 v 1.6 c 0,0.175 -0.125,0.325 -0.275,0.375 l -1.225,0.45 v 4.1 l 0.975,-0.35 c 0.25,-0.10000003 0.525,0.1 0.525,0.375 v 1.625 c 0,0.175 -0.125,0.325 -0.275,0.375 l -1.225,0.425 v 4.075 z m -0.85,-10.325 -2.175,0.75 v 4.1 l 2.175,-0.75 v -4.1 z"
d="M 5.375,17.275 C 5.375,17.5 5.175,17.7 4.95,17.7 4.725,17.7 4.525,17.5 4.525,17.275 V 13.5 L 2.35,14.275 v 4.05 C 2.35,18.55 2.15,18.75 1.925,18.75 1.7,18.75 1.5,18.55 1.5,18.325 v -3.75 L 0.525,14.9 C 0.275,15 0,14.8 0,14.525 v -1.6 C 0,12.75 0.125,12.6 0.275,12.55 L 1.5,12.1 V 8 L 0.525,8.35 C 0.275,8.45 0,8.25 0,7.975 V 6.35 C 0,6.175 0.125,6.025 0.275,5.975 L 1.5,5.55 V 1.475 C 1.5,1.25 1.7,1.05 1.925,1.05 2.15,1.05 2.35,1.25 2.35,1.475 V 5.25 L 4.525,4.475 V 0.425 C 4.525,0.2 4.725,0 4.95,0 5.175,0 5.375,0.2 5.375,0.425 v 3.75 L 6.35,3.85 c 0.25,-0.1 0.525,0.1 0.525,0.375 v 1.6 C 6.875,6 6.75,6.15 6.6,6.2 L 5.375,6.65 v 4.1 L 6.35,10.4 c 0.25,-0.1 0.525,0.1 0.525,0.375 V 12.4 c 0,0.175 -0.125,0.325 -0.275,0.375 L 5.375,13.2 Z M 4.525,6.95 2.35,7.7 v 4.1 l 2.175,-0.75 z"
id="path3121" />
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

48
qtgui/resources/svg/blockEnd.svg

@ -2,19 +2,19 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="1000"
height="1000"
width="4.4419622"
height="36.648594"
id="svg2983"
inkscape:version="0.48.4 r9939"
sodipodi:docname="blockEnd.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="blockEnd.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -24,17 +24,20 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1041"
inkscape:window-width="1918"
inkscape:window-height="1048"
id="namedview6"
showgrid="false"
inkscape:zoom="5.3400704"
inkscape:cx="38.564766"
inkscape:cy="991.52484"
inkscape:window-x="1920"
inkscape:window-y="18"
inkscape:cx="43.351488"
inkscape:cy="-3.6516373"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg2983" />
inkscape:current-layer="svg2983"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata2991">
<rdf:RDF>
@ -43,19 +46,18 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs2989" />
<g
style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:'8-bit Limit O BRK';-inkscape-font-specification:'8-bit Limit O BRK'"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:'8-bit Limit O BRK';-inkscape-font-specification:'8-bit Limit O BRK';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
id="text3739"
transform="translate(-21.441665,14.887444)">
transform="translate(-16.838215,32.964486)">
<path
style="font-family:Weaver BRK;-inkscape-font-specification:Weaver BRK"
d="m 18.672839,2.0041092 c -1.322345,0.6647453 0.790324,1.2148069 0.4,1.68 -1.028292,-0.1592025 -2.57358,-1.0672435 -2.161251,-2.3568777 0.434484,-1.28467025 1.799339,-1.70810589 2.728749,-2.525623 0.679559,-1.0330742 -1.37363,-1.1629705 -1.6975,-2.0474988 -1.653642,-1.8371378 -1.335186,-4.7724653 0.236598,-6.5454613 0.668094,-1.0097804 1.786598,-1.9215544 1.670902,-3.2445334 -0.178193,-1.328826 -1.67418,-1.706435 -2.259999,-2.792499 -1.307455,-1.913446 -0.800868,-4.545484 0.677962,-6.201455 0.691388,-1.024751 1.898427,-2.037182 1.514536,-3.406034 -0.28034,-1.302195 -1.780879,-1.330998 -2.559529,-2.168906 -0.944276,-0.978102 0.08241,-2.306564 0.974974,-2.876951 0.552029,-0.423496 1.238397,-0.71126 1.662056,-1.269145 -0.04247,-0.498496 -1.736153,-1.491798 -0.380468,-1.139698 1.390055,0.323352 2.475516,1.947527 1.211093,3.102816 -0.68667,0.807696 -1.84437,1.086223 -2.445624,1.97438 0.614331,1.086295 2.27534,1.568388 2.681248,2.97547 0.855506,1.943791 0.05183,4.151103 -1.269251,5.671197 -0.675445,0.946203 -1.759067,1.937177 -1.334498,3.220829 0.363918,1.186901 1.751495,1.546678 2.289998,2.629998 1.247926,1.914606 0.597913,4.4632023 -0.821624,6.091878 -0.69617,1.014488 -1.903797,2.0291078 -1.468374,3.3981151 0.232542,0.9701739 1.190962,1.2868291 1.98578,1.6656237 1.352963,0.5470348 1.089858,2.30978451 0.04713,3.04146834 C 19.795663,1.2565791 19.233737,1.6297264 18.67284,2.0041092 z"
style="font-family:'Weaver BRK';-inkscape-font-specification:'Weaver BRK'"
d="m 18.672839,2.0041092 c -1.322345,0.6647453 0.790324,1.2148069 0.4,1.68 -1.028292,-0.1592025 -2.57358,-1.0672435 -2.161251,-2.3568777 0.434484,-1.28467025 1.799339,-1.70810589 2.728749,-2.525623 0.679559,-1.0330742 -1.37363,-1.1629705 -1.6975,-2.0474988 -1.653642,-1.8371378 -1.335186,-4.7724653 0.236598,-6.5454613 0.668094,-1.0097804 1.786598,-1.9215544 1.670902,-3.2445334 -0.178193,-1.328826 -1.67418,-1.706435 -2.259999,-2.792499 -1.307455,-1.913446 -0.800868,-4.545484 0.677962,-6.201455 0.691388,-1.024751 1.898427,-2.037182 1.514536,-3.406034 -0.28034,-1.302195 -1.780879,-1.330998 -2.559529,-2.168906 -0.944276,-0.978102 0.08241,-2.306564 0.974974,-2.876951 0.552029,-0.423496 1.238397,-0.71126 1.662056,-1.269145 -0.04247,-0.498496 -1.736153,-1.491798 -0.380468,-1.139698 1.390055,0.323352 2.475516,1.947527 1.211093,3.102816 -0.68667,0.807696 -1.84437,1.086223 -2.445624,1.97438 0.614331,1.086295 2.27534,1.568388 2.681248,2.97547 0.855506,1.943791 0.05183,4.151103 -1.269251,5.671197 -0.675445,0.946203 -1.759067,1.937177 -1.334498,3.220829 0.363918,1.186901 1.751495,1.546678 2.289998,2.629998 1.247926,1.914606 0.597913,4.4632023 -0.821624,6.091878 -0.69617,1.014488 -1.903797,2.0291078 -1.468374,3.3981151 0.232542,0.9701739 1.190962,1.2868291 1.98578,1.6656237 1.352963,0.5470348 1.089858,2.30978451 0.04713,3.04146834 C 19.795663,1.2565791 19.233737,1.6297264 18.67284,2.0041092 Z"
id="path3746"
inkscape:connector-curvature="0" />
</g>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

40
qtgui/resources/svg/clefAlto.svg

@ -1,18 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
height="1000.0"
width="1000.0"
height="25"
width="16.924999"
id="svg4485"
inkscape:version="0.91 r13725"
sodipodi:docname="clefViola.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="clefAlto.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata4493">
<rdf:RDF>
@ -21,7 +21,6 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
@ -36,20 +35,23 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1046"
inkscape:window-width="1918"
inkscape:window-height="2118"
id="namedview4489"
showgrid="false"
inkscape:zoom="5.3400704"
inkscape:cx="107.42526"
inkscape:cy="1052.8645"
inkscape:cx="108.8937"
inkscape:cy="33.051999"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg4485" />
inkscape:current-layer="svg4485"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="clefs.C"
d="m 7.8,0 c 0,-0.825 0.175,-1.85 1.15,-1.85 0.725,0 1.425,0.725 2.2,0.725 3.075,0 5.775,-2.175 5.775,-5.125 0,-4.25 -2.375,-6.25 -6.725,-6.25 -2.075,0 -3.85,1.55 -3.85,3.575 0,1.05 0.875,1.925 1.925,1.925 1.05,0 1.925,-0.875 1.925,-1.925 0,-1 -1.275,-0.925 -1.275,-1.925 0,-0.6 0.625,-1 1.275,-1 2.925,0 3.525,2.275 3.525,5.6 0,2.625 -0.3,4.5 -2.575,4.5 C 9.3,-1.75 8.1,-3.6 8.1,-5.575 8.1,-5.8 7.95,-5.9 7.8,-5.9 c -0.15,0 -0.325,0.1 -0.325,0.325 0,1.925 -0.775,3.75 -2.1,5.125 l 0,-11.85 c 0,-0.1 -0.1,-0.2 -0.2,-0.2 l -0.55,0 c -0.1,0 -0.2,0.1 -0.2,0.2 l 0,24.6 c 0,0.1 0.1,0.2 0.2,0.2 l 0.55,0 c 0.1,0 0.2,-0.1 0.2,-0.2 l 0,-11.85 c 1.325,1.375 2.1,3.2 2.1,5.125 C 7.475,5.8 7.65,5.9 7.8,5.9 7.95,5.9 8.1,5.8 8.1,5.575 8.1,3.6 9.3,1.75 11.15,1.75 c 2.275,0 2.575,1.875 2.575,4.5 0,3.325 -0.6,5.6 -3.525,5.6 -0.65,0 -1.275,-0.4 -1.275,-1 0,-1 1.275,-0.925 1.275,-1.925 C 10.2,7.875 9.325,7 8.275,7 7.225,7 6.35,7.875 6.35,8.925 c 0,2.025 1.775,3.575 3.85,3.575 4.35,0 6.725,-2 6.725,-6.25 0,-2.95 -2.7,-5.125 -5.775,-5.125 -0.775,0 -1.475,0.725 -2.2,0.725 C 7.975,1.85 7.8,0.825 7.8,0 Z m -4.55,-12.5 -3.05,0 c -0.1,0 -0.2,0.1 -0.2,0.2 l 0,24.6 c 0,0.1 0.1,0.2 0.2,0.2 l 3.05,0 c 0.1,0 0.2,-0.1 0.2,-0.2 l 0,-24.6 c 0,-0.1 -0.1,-0.2 -0.2,-0.2 z"
d="m 7.8,12.5 c 0,-0.825 0.175,-1.85 1.15,-1.85 0.725,0 1.425,0.725 2.2,0.725 3.075,0 5.775,-2.175 5.775,-5.125 C 16.925,2 14.55,0 10.2,0 8.125,0 6.35,1.55 6.35,3.575 6.35,4.625 7.225,5.5 8.275,5.5 9.325,5.5 10.2,4.625 10.2,3.575 c 0,-1 -1.275,-0.925 -1.275,-1.925 0,-0.6 0.625,-1 1.275,-1 2.925,0 3.525,2.275 3.525,5.6 0,2.625 -0.3,4.5 -2.575,4.5 C 9.3,10.75 8.1,8.9 8.1,6.925 8.1,6.7 7.95,6.6 7.8,6.6 7.65,6.6 7.475,6.7 7.475,6.925 c 0,1.925 -0.775,3.75 -2.1,5.125 V 0.2 C 5.375,0.1 5.275,0 5.175,0 h -0.55 c -0.1,0 -0.2,0.1 -0.2,0.2 v 24.6 c 0,0.1 0.1,0.2 0.2,0.2 h 0.55 c 0.1,0 0.2,-0.1 0.2,-0.2 V 12.95 c 1.325,1.375 2.1,3.2 2.1,5.125 0,0.225 0.175,0.325 0.325,0.325 0.15,0 0.3,-0.1 0.3,-0.325 0,-1.975 1.2,-3.825 3.05,-3.825 2.275,0 2.575,1.875 2.575,4.5 0,3.325 -0.6,5.6 -3.525,5.6 -0.65,0 -1.275,-0.4 -1.275,-1 0,-1 1.275,-0.925 1.275,-1.925 0,-1.05 -0.875,-1.925 -1.925,-1.925 -1.05,0 -1.925,0.875 -1.925,1.925 0,2.025 1.775,3.575 3.85,3.575 4.35,0 6.725,-2 6.725,-6.25 0,-2.95 -2.7,-5.125 -5.775,-5.125 -0.775,0 -1.475,0.725 -2.2,0.725 C 7.975,14.35 7.8,13.325 7.8,12.5 Z M 3.25,0 H 0.2 C 0.1,0 0,0.1 0,0.2 V 24.8 C 0,24.9 0.1,25 0.2,25 h 3.05 c 0.1,0 0.2,-0.1 0.2,-0.2 V 0.2 C 3.45,0.1 3.35,0 3.25,0 Z"
id="path4487"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

42
qtgui/resources/svg/clefBass.svg

@ -2,19 +2,19 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="1000"
height="1000"
width="16.775"
height="19.300001"
id="svg3169"
inkscape:version="0.48.4 r9939"
sodipodi:docname="clefBass.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="clefBass.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -24,17 +24,20 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="956"
inkscape:window-height="1041"
inkscape:window-width="1918"
inkscape:window-height="692"
id="namedview3018"
showgrid="false"
inkscape:zoom="17.830405"
inkscape:cx="22.422317"
inkscape:cy="987.38096"
inkscape:window-x="2880"
inkscape:window-y="18"
inkscape:cx="22.685968"
inkscape:cy="7.8797986"
inkscape:window-x="0"
inkscape:window-y="734"
inkscape:window-maximized="0"
inkscape:current-layer="svg3169" />
inkscape:current-layer="svg3169"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata3177">
<rdf:RDF>
@ -43,14 +46,13 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3175" />
<path
d="m 14.175,-3.1509855 c 0,-0.725 0.575,-1.3000001 1.3,-1.3000001 0.725,0 1.3,0.5750001 1.3,1.3000001 0,0.725 -0.575,1.2999999 -1.3,1.2999999 -0.725,0 -1.3,-0.5749999 -1.3,-1.2999999 z m 0,-6.2500001 c 0,-0.7250004 0.575,-1.3000004 1.3,-1.3000004 0.725,0 1.3,0.575 1.3,1.3000004 0,0.725 -0.575,1.3 -1.3,1.3 -0.725,0 -1.3,-0.575 -1.3,-1.3 z M 6.1,-12.800986 c 4.275,0 7.3,2.15 7.3,6.2000004 0,6.57500003 -6.6,10.375 -12.925,13.025 -0.05,0.05 -0.125,0.075 -0.2,0.075 -0.15,0 -0.275,-0.125 -0.275,-0.275 0,-0.075 0.025,-0.15 0.075,-0.2 5.075,-2.95 10.375,-6.62499997 10.375,-12.35 0,-3.025 -1.6,-5.9250004 -4.35,-5.9250004 -1.975,0 -3.45,1.425 -4.1,3.3250004 0.35,-0.2 0.7,-0.325 1.075,-0.325 1.375,0 2.5,1.125 2.5,2.5 0,1.45 -1.1,2.6750001 -2.5,2.6750001 -1.5,0 -2.8,-1.2000001 -2.8,-2.6750001 0,-3.3000004 2.575,-6.0500004 5.825,-6.0500004 z"
d="m 14.175,9.6500005 c 0,-0.725 0.575,-1.3000001 1.3,-1.3000001 0.725,0 1.3,0.5750001 1.3,1.3000001 0,0.7250005 -0.575,1.2999995 -1.3,1.2999995 -0.725,0 -1.3,-0.574999 -1.3,-1.2999995 z m 0,-6.2500001 C 14.175,2.675 14.75,2.1 15.475,2.1 c 0.725,0 1.3,0.575 1.3,1.3000004 0,0.725 -0.575,1.3 -1.3,1.3 -0.725,0 -1.3,-0.575 -1.3,-1.3 z M 6.1,0 c 4.275,0 7.3,2.15 7.3,6.2000004 C 13.4,12.775 6.8,16.575 0.475,19.225 0.425,19.275 0.35,19.3 0.275,19.3 0.125,19.3 0,19.175 0,19.025 0,18.95 0.025,18.875 0.075,18.825 5.15,15.875 10.45,12.2 10.45,6.4750004 10.45,3.4500004 8.85,0.55 6.1,0.55 4.125,0.55 2.65,1.975 2,3.8750004 c 0.35,-0.2 0.7,-0.325 1.075,-0.325 1.375,0 2.5,1.125 2.5,2.5 0,1.45 -1.1,2.6750001 -2.5,2.6750001 -1.5,0 -2.8,-1.2000001 -2.8,-2.6750001 C 0.275,2.75 2.85,0 6.1,0 Z"
id="path3171"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

42
qtgui/resources/svg/clefBass_8.svg

@ -2,19 +2,19 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="1000"
height="1000"
width="16.775"
height="27.769798"
id="svg3169"
inkscape:version="0.91 r13725"
sodipodi:docname="clefBass_8.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="clefBass_8.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -24,17 +24,20 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="2096"
inkscape:window-width="1918"
inkscape:window-height="1048"
id="namedview3018"
showgrid="false"
inkscape:zoom="4.4576013"
inkscape:cx="-25.75699"
inkscape:cy="994.59974"
inkscape:cx="-26.583804"
inkscape:cy="16.713025"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-y="1090"
inkscape:window-maximized="0"
inkscape:current-layer="svg3169" />
inkscape:current-layer="svg3169"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata3177">
<rdf:RDF>
@ -43,19 +46,18 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3175" />
<path
d="m 14.175,-3.1509855 c 0,-0.725 0.575,-1.3000001 1.3,-1.3000001 0.725,0 1.3,0.5750001 1.3,1.3000001 0,0.725 -0.575,1.2999999 -1.3,1.2999999 -0.725,0 -1.3,-0.5749999 -1.3,-1.2999999 z m 0,-6.2500001 c 0,-0.7250004 0.575,-1.3000004 1.3,-1.3000004 0.725,0 1.3,0.575 1.3,1.3000004 0,0.725 -0.575,1.3 -1.3,1.3 -0.725,0 -1.3,-0.575 -1.3,-1.3 z M 6.1,-12.800986 c 4.275,0 7.3,2.15 7.3,6.2000004 0,6.57500003 -6.6,10.375 -12.925,13.025 -0.05,0.05 -0.125,0.075 -0.2,0.075 -0.15,0 -0.275,-0.125 -0.275,-0.275 0,-0.075 0.025,-0.15 0.075,-0.2 5.075,-2.95 10.375,-6.62499997 10.375,-12.35 0,-3.025 -1.6,-5.9250004 -4.35,-5.9250004 -1.975,0 -3.45,1.425 -4.1,3.3250004 0.35,-0.2 0.7,-0.325 1.075,-0.325 1.375,0 2.5,1.125 2.5,2.5 0,1.45 -1.1,2.6750001 -2.5,2.6750001 -1.5,0 -2.8,-1.2000001 -2.8,-2.6750001 0,-3.3000004 2.575,-6.0500004 5.825,-6.0500004 z"
d="m 14.175,9.6500005 c 0,-0.725 0.575,-1.3000001 1.3,-1.3000001 0.725,0 1.3,0.5750001 1.3,1.3000001 0,0.7250005 -0.575,1.2999995 -1.3,1.2999995 -0.725,0 -1.3,-0.574999 -1.3,-1.2999995 z m 0,-6.2500001 C 14.175,2.675 14.75,2.1 15.475,2.1 c 0.725,0 1.3,0.575 1.3,1.3000004 0,0.725 -0.575,1.3 -1.3,1.3 -0.725,0 -1.3,-0.575 -1.3,-1.3 z M 6.1,0 c 4.275,0 7.3,2.15 7.3,6.2000004 C 13.4,12.775 6.8,16.575 0.475,19.225 0.425,19.275 0.35,19.3 0.275,19.3 0.125,19.3 0,19.175 0,19.025 0,18.95 0.025,18.875 0.075,18.825 5.15,15.875 10.45,12.2 10.45,6.4750004 10.45,3.4500004 8.85,0.55 6.1,0.55 4.125,0.55 2.65,1.975 2,3.8750004 c 0.35,-0.2 0.7,-0.325 1.075,-0.325 1.375,0 2.5,1.125 2.5,2.5 0,1.45 -1.1,2.6750001 -2.5,2.6750001 -1.5,0 -2.8,-1.2000001 -2.8,-2.6750001 C 0.275,2.75 2.85,0 6.1,0 Z"
id="path3171"
inkscape:connector-curvature="0" />
<path
glyph-name="eight"
d="M 9.3946774,9.6002892 C 9.9409485,9.0351814 10.411872,8.4324001 10.411872,7.6600861 c 0,-1.0548678 -1.0925423,-1.7141603 -2.2415948,-1.7141603 -0.9230094,0 -1.4692803,0.7158032 -1.4692803,1.4127695 0,0.4144124 0.1695324,0.7911509 0.5839447,1.0360309 z M 9.9032747,9.90168 c 1.0360313,0.602782 1.6011383,1.46928 1.6011383,2.39229 0,1.356258 -1.2244,2.674843 -3.4848312,2.674843 -1.7329972,0 -3.3718098,-0.998357 -3.3718098,-2.599496 0,-0.960683 0.753477,-1.619975 1.4692802,-2.279268 C 5.2882275,9.5626153 4.911489,8.7903017 4.911489,8.0368246 c 0,-1.262074 1.1302155,-2.4864742 3.2587882,-2.4864742 1.506954,0 2.9762348,0.753477 2.9762348,2.1097357 0,0.9041725 -0.602782,1.5823015 -1.2432373,2.2415939 z m -3.2587885,0.48976 c -0.6404555,0.565108 -1.2432372,1.149053 -1.2432372,1.977877 0,1.299748 1.2432372,2.203921 2.6183328,2.203921 1.0360309,0 1.6576494,-0.809988 1.6576494,-1.601139 0,-0.470923 -0.2072061,-0.960683 -0.6969662,-1.243237 z"
d="m 9.3946774,22.401275 c 0.5462711,-0.565108 1.0171946,-1.167889 1.0171946,-1.940203 0,-1.054868 -1.0925423,-1.71416 -2.2415948,-1.71416 -0.9230094,0 -1.4692803,0.715803 -1.4692803,1.412769 0,0.414413 0.1695324,0.791151 0.5839447,1.036031 z m 0.5085973,0.301391 c 1.0360313,0.602782 1.6011383,1.46928 1.6011383,2.39229 0,1.356258 -1.2244,2.674843 -3.4848312,2.674843 -1.7329972,0 -3.3718098,-0.998357 -3.3718098,-2.599496 0,-0.960683 0.753477,-1.619975 1.4692802,-2.279268 C 5.2882275,22.363601 4.911489,21.591288 4.911489,20.837811 c 0,-1.262074 1.1302155,-2.486475 3.2587882,-2.486475 1.506954,0 2.9762348,0.753477 2.9762348,2.109736 0,0.904173 -0.602782,1.582302 -1.2432373,2.241594 z m -3.2587885,0.48976 c -0.6404555,0.565108 -1.2432372,1.149053 -1.2432372,1.977877 0,1.299748 1.2432372,2.203921 2.6183328,2.203921 1.0360309,0 1.6576494,-0.809988 1.6576494,-1.601139 0,-0.470923 -0.2072061,-0.960683 -0.6969662,-1.243237 z"
id="path3728"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

42
qtgui/resources/svg/clefPercussion.svg

@ -1,18 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
height="1000.0"
width="1000.0"
height="12.5"
width="8.3000002"
id="svg3336"
inkscape:version="0.91 r13725"
sodipodi:docname="clefPercussion.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="clefPercussion.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata3344">
<rdf:RDF>
@ -21,7 +21,6 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
@ -36,20 +35,23 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="2096"
inkscape:window-width="1920"
inkscape:window-height="694"
id="namedview3340"
showgrid="false"
inkscape:zoom="1.343"
inkscape:cx="500"
inkscape:cy="619.13626"
inkscape:cx="82.278481"
inkscape:cy="33.879375"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-maximized="1"
inkscape:current-layer="svg3336" />
inkscape:window-y="734"
inkscape:window-maximized="0"
inkscape:current-layer="svg3336"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="clefs.percussion"
d="m 8.1,-6.25 -2.425,0 c -0.1,0 -0.175,0.1 -0.175,0.2 l 0,12.1 c 0,0.1 0.075,0.2 0.175,0.2 l 2.425,0 c 0.1,0 0.2,-0.1 0.2,-0.2 l 0,-12.1 c 0,-0.1 -0.1,-0.2 -0.2,-0.2 z m -5.5,0 -2.425,0 C 0.075,-6.25 0,-6.15 0,-6.05 l 0,12.1 c 0,0.1 0.075,0.2 0.175,0.2 l 2.425,0 c 0.1,0 0.2,-0.1 0.2,-0.2 l 0,-12.1 c 0,-0.1 -0.1,-0.2 -0.2,-0.2 z"
d="M 8.1,0 H 5.675 C 5.575,0 5.5,0.1 5.5,0.2 v 12.1 c 0,0.1 0.075,0.2 0.175,0.2 H 8.1 c 0.1,0 0.2,-0.1 0.2,-0.2 V 0.2 C 8.3,0.1 8.2,0 8.1,0 Z M 2.6,0 H 0.175 C 0.075,0 0,0.1 0,0.2 v 12.1 c 0,0.1 0.075,0.2 0.175,0.2 H 2.6 c 0.1,0 0.2,-0.1 0.2,-0.2 V 0.2 C 2.8,0.1 2.7,0 2.6,0 Z"
id="path3338"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

44
qtgui/resources/svg/clefTreble.svg

@ -2,19 +2,19 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="1000"
height="1000"
width="16.025"
height="47.525002"
id="svg3179"
inkscape:version="0.48.4 r9939"
sodipodi:docname="clefTreble.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="clefTreble.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -24,17 +24,20 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="956"
inkscape:window-height="1041"
inkscape:window-width="1278"
inkscape:window-height="692"
id="namedview2989"
showgrid="false"
inkscape:zoom="13.6"
inkscape:cx="23.86716"
inkscape:cy="1009.9681"
inkscape:window-x="1920"
inkscape:window-y="18"
inkscape:zoom="3.4"
inkscape:cx="2.7941176"
inkscape:cy="57.5"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3179" />
inkscape:current-layer="svg3179"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata3187">
<rdf:RDF>
@ -43,14 +46,13 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3185" />
<path
d="M 6.35,-7.5070824 C 5.5,-10.457082 5,-13.282082 5,-16.982082 c 0,-3 1.4,-5.8 3.775,-7.625 0.05,-0.05 0.125,-0.075 0.2,-0.075 0.075,0 0.15,0.025 0.2,0.075 1.9,2.25 3.575,6.6 3.575,9.625 0,3.75 -2.25,6.6749996 -4.75,9.4999996 0.55,1.8249999 1.05,3.6749999 1.525,5.5249999 h 0.15 c 3.85,0 6.35,3.175 6.35,6.4750001 0,1.8999999 -0.825,3.8250004 -2.675,5.2000004 -0.625,0.475 -1.325,0.8 -2.075,1 0,0.325 0.025,0.675 0.025,1 0,1.15 -0.025,2.3 -0.1,3.45 -0.175,3.025 -2.35,5.675 -5.35,5.675 -2.775,0 -5.05,-2.3 -5.05,-5.125 0,-1.45 1.35,-2.6 2.825,-2.6 1.35,0 2.375,1.2 2.375,2.6 0,1.3 -1.075,2.375 -2.375,2.375 -0.325,0 -0.675,-0.1 -0.975,-0.25 0.65,1.175 1.85,2 3.25,2 2.475,0 4.15,-2.3 4.3,-4.825 0.075,-1.1 0.1,-2.225 0.1,-3.325 v -0.775 c -0.65,0.1 -1.3,0.15 -1.975,0.15 -4.7,0 -8.325,-4.2750005 -8.325,-9.3000005 0,-4.525 3.35,-7.8499999 6.35,-11.2749999 z m 4.9,19.2500004 c 1.825,-0.55 3.1,-2.4250005 3.1,-4.2500005 0,-2.2499999 -1.6,-4.45 -4.2,-4.8 0.575,2.7500001 1,5.975 1.1,9.0500005 z m -2.85,0.325 c 0.625,0 1.25,-0.025 1.875,-0.125 C 10.175,8.7679175 9.7,5.4679176 9.1,2.6429175 c -2.175,0.125 -3.4,1.55 -3.4,3.1000001 0,1.125 0.65,2.2999999 2.075,3.1249999 0.1,0.1 0.175,0.225 0.175,0.35 0,0.275 -0.225,0.525 -0.5,0.525 -0.075,0 -0.15,-0.025 -0.225,-0.05 -2,-1.075 -2.9,-2.8499999 -2.9,-4.6 0,-2.25 1.525,-4.45 4.2,-4.95 -0.4,-1.6 -0.875,-3.175 -1.325,-4.7499999 -2.75,3.0999999 -5.5,6.2249999 -5.5,10.35 0,3.4499999 3.275,6.3250004 6.7,6.3250004 z m 1.775,-33.2 c -2.5,1.375 -4.05,3.975 -4.05,6.825 0,2.25 0.475,4.05 1,5.8999996 2.15,-2.5499996 3.95,-5.2249996 3.95,-8.5499996 0,-1.825 -0.2,-2.575 -0.9,-4.175 z"
d="M 6.35,17.175 C 5.5,14.225 5,11.4 5,7.7 5,4.7 6.4,1.9 8.775,0.075 8.825,0.025 8.9,0 8.975,0 c 0.075,0 0.15,0.025 0.2,0.075 1.9,2.25 3.575,6.6 3.575,9.625 0,3.75 -2.25,6.675 -4.75,9.5 0.55,1.824999 1.05,3.675 1.525,5.524999 h 0.15 c 3.85,0 6.35,3.175 6.35,6.475001 0,1.899999 -0.825,3.825 -2.675,5.2 -0.625,0.475 -1.325,0.8 -2.075,1 0,0.325 0.025,0.675 0.025,1 0,1.15 -0.025,2.3 -0.1,3.45 -0.175,3.025 -2.35,5.675 -5.35,5.675 -2.775,0 -5.05,-2.3 -5.05,-5.125 0,-1.45 1.35,-2.6 2.825,-2.6 1.35,0 2.375,1.2 2.375,2.6 0,1.3 -1.075,2.375 -2.375,2.375 -0.325,0 -0.675,-0.1 -0.975,-0.25 0.65,1.175 1.85,2 3.25,2 2.475,0 4.15,-2.3 4.3,-4.825 0.075,-1.1 0.1,-2.225 0.1,-3.325 V 37.6 C 9.65,37.7 9,37.75 8.325,37.75 3.625,37.75 0,33.475 0,28.45 0,23.925 3.35,20.6 6.35,17.175 Z m 4.9,19.25 c 1.825,-0.55 3.1,-2.425 3.1,-4.250001 0,-2.249999 -1.6,-4.45 -4.2,-4.799999 0.575,2.75 1,5.974999 1.1,9.05 z M 8.4,36.75 c 0.625,0 1.25,-0.025 1.875,-0.125 C 10.175,33.449999 9.7,30.15 9.1,27.324999 c -2.175,0.125 -3.4,1.55 -3.4,3.100001 0,1.125 0.65,2.299999 2.075,3.124999 0.1,0.1 0.175,0.225 0.175,0.35 0,0.275 -0.225,0.525 -0.5,0.525 -0.075,0 -0.15,-0.025 -0.225,-0.05 -2,-1.075001 -2.9,-2.85 -2.9,-4.600001 0,-2.25 1.525,-4.45 4.2,-4.95 -0.4,-1.6 -0.875,-3.175 -1.325,-4.749999 -2.75,3.099999 -5.5,6.224999 -5.5,10.35 0,3.45 3.275,6.325 6.7,6.325 z m 1.775,-33.2 c -2.5,1.375 -4.05,3.975 -4.05,6.825 0,2.25 0.475,4.05 1,5.9 2.15,-2.55 3.95,-5.225 3.95,-8.55 0,-1.825 -0.2,-2.575 -0.9,-4.175 z"
id="path3181"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

44
qtgui/resources/svg/clefTreble^8.svg

@ -2,19 +2,19 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="1000"
height="1000"
width="16.025"
height="59.304131"
id="svg3179"
inkscape:version="0.91 r13725"
sodipodi:docname="clefTreble^8.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="clefTreble^8.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -24,17 +24,20 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="2096"
inkscape:window-width="1918"
inkscape:window-height="1048"
id="namedview2989"
showgrid="false"
inkscape:zoom="4.8083261"
inkscape:cx="32.64208"
inkscape:cy="965.18803"
inkscape:window-x="1920"
inkscape:window-y="30"
inkscape:cx="32.963654"
inkscape:cy="31.091901"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3179" />
inkscape:current-layer="svg3179"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata3187">
<rdf:RDF>
@ -43,19 +46,18 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3185" />
<path
d="M 6.35,-7.5070824 C 5.5,-10.457082 5,-13.282082 5,-16.982082 c 0,-3 1.4,-5.8 3.775,-7.625 0.05,-0.05 0.125,-0.075 0.2,-0.075 0.075,0 0.15,0.025 0.2,0.075 1.9,2.25 3.575,6.6 3.575,9.625 0,3.75 -2.25,6.6749996 -4.75,9.4999996 0.55,1.8249999 1.05,3.6749999 1.525,5.5249999 h 0.15 c 3.85,0 6.35,3.175 6.35,6.4750001 0,1.8999999 -0.825,3.8250004 -2.675,5.2000004 -0.625,0.475 -1.325,0.8 -2.075,1 0,0.325 0.025,0.675 0.025,1 0,1.15 -0.025,2.3 -0.1,3.45 -0.175,3.025 -2.35,5.675 -5.35,5.675 -2.775,0 -5.05,-2.3 -5.05,-5.125 0,-1.45 1.35,-2.6 2.825,-2.6 1.35,0 2.375,1.2 2.375,2.6 0,1.3 -1.075,2.375 -2.375,2.375 -0.325,0 -0.675,-0.1 -0.975,-0.25 0.65,1.175 1.85,2 3.25,2 2.475,0 4.15,-2.3 4.3,-4.825 0.075,-1.1 0.1,-2.225 0.1,-3.325 v -0.775 c -0.65,0.1 -1.3,0.15 -1.975,0.15 -4.7,0 -8.325,-4.2750005 -8.325,-9.3000005 0,-4.525 3.35,-7.8499999 6.35,-11.2749999 z m 4.9,19.2500004 c 1.825,-0.55 3.1,-2.4250005 3.1,-4.2500005 0,-2.2499999 -1.6,-4.45 -4.2,-4.8 0.575,2.7500001 1,5.975 1.1,9.0500005 z m -2.85,0.325 c 0.625,0 1.25,-0.025 1.875,-0.125 C 10.175,8.7679175 9.7,5.4679176 9.1,2.6429175 c -2.175,0.125 -3.4,1.55 -3.4,3.1000001 0,1.125 0.65,2.2999999 2.075,3.1249999 0.1,0.1 0.175,0.225 0.175,0.35 0,0.275 -0.225,0.525 -0.5,0.525 -0.075,0 -0.15,-0.025 -0.225,-0.05 -2,-1.075 -2.9,-2.8499999 -2.9,-4.6 0,-2.25 1.525,-4.45 4.2,-4.95 -0.4,-1.6 -0.875,-3.175 -1.325,-4.7499999 -2.75,3.0999999 -5.5,6.2249999 -5.5,10.35 0,3.4499999 3.275,6.3250004 6.7,6.3250004 z m 1.775,-33.2 c -2.5,1.375 -4.05,3.975 -4.05,6.825 0,2.25 0.475,4.05 1,5.8999996 2.15,-2.5499996 3.95,-5.2249996 3.95,-8.5499996 0,-1.825 -0.2,-2.575 -0.9,-4.175 z"
d="m 6.35,28.954131 c -0.85,-2.95 -1.35,-5.775 -1.35,-9.475 0,-3 1.4,-5.8 3.775,-7.625 0.05,-0.05 0.125,-0.075 0.2,-0.075 0.075,0 0.15,0.025 0.2,0.075 1.9,2.25 3.575,6.6 3.575,9.625 0,3.75 -2.25,6.675 -4.75,9.5 0.55,1.824999 1.05,3.674999 1.525,5.524999 h 0.15 c 3.85,0 6.35,3.175 6.35,6.475001 0,1.899999 -0.825,3.825 -2.675,5.2 -0.625,0.475 -1.325,0.8 -2.075,1 0,0.325 0.025,0.675 0.025,1 0,1.15 -0.025,2.3 -0.1,3.45 -0.175,3.025 -2.35,5.675 -5.35,5.675 -2.775,0 -5.05,-2.3 -5.05,-5.125 0,-1.45 1.35,-2.6 2.825,-2.6 1.35,0 2.375,1.2 2.375,2.6 0,1.3 -1.075,2.375 -2.375,2.375 -0.325,0 -0.675,-0.1 -0.975,-0.25 0.65,1.175 1.85,2 3.25,2 2.475,0 4.15,-2.3 4.3,-4.825 0.075,-1.1 0.1,-2.225 0.1,-3.325 v -0.775 c -0.65,0.1 -1.3,0.15 -1.975,0.15 -4.7,0 -8.325,-4.275 -8.325,-9.300001 0,-4.525 3.35,-7.849999 6.35,-11.274999 z m 4.9,19.25 c 1.825,-0.55 3.1,-2.425001 3.1,-4.250001 0,-2.249999 -1.6,-4.45 -4.2,-4.8 0.575,2.750001 1,5.975 1.1,9.050001 z m -2.85,0.325 c 0.625,0 1.25,-0.025 1.875,-0.125 -0.1,-3.175001 -0.575,-6.475 -1.175,-9.300001 -2.175,0.125 -3.4,1.55 -3.4,3.100001 0,1.125 0.65,2.299999 2.075,3.124999 0.1,0.1 0.175,0.225 0.175,0.35 0,0.275 -0.225,0.525 -0.5,0.525 -0.075,0 -0.15,-0.025 -0.225,-0.05 -2,-1.075 -2.9,-2.849999 -2.9,-4.6 0,-2.25 1.525,-4.45 4.2,-4.95 -0.4,-1.6 -0.875,-3.175 -1.325,-4.749999 -2.75,3.099999 -5.5,6.224999 -5.5,10.35 0,3.449999 3.275,6.325 6.7,6.325 z m 1.775,-33.2 c -2.5,1.375 -4.05,3.975 -4.05,6.825 0,2.25 0.475,4.05 1,5.9 2.15,-2.55 3.95,-5.225 3.95,-8.55 0,-1.825 -0.2,-2.575 -0.9,-4.175 z"
id="path3181"
inkscape:connector-curvature="0" />
<path
glyph-name="eight"
d="m 9.8454611,-32.411274 c 0.5462709,-0.565108 1.0171939,-1.167889 1.0171939,-1.940203 0,-1.054868 -1.0925419,-1.714161 -2.2415941,-1.714161 -0.92301,0 -1.469281,0.715804 -1.469281,1.41277 0,0.414412 0.169533,0.791151 0.583945,1.036031 z m 0.5085969,0.301391 c 1.036031,0.602782 1.601138,1.46928 1.601138,2.39229 0,1.356258 -1.2244,2.674843 -3.4848311,2.674843 -1.732997,0 -3.37181,-0.998357 -3.37181,-2.599496 0,-0.960683 0.753477,-1.619975 1.469281,-2.279268 -0.828825,-0.527434 -1.205564,-1.299748 -1.205564,-2.053225 0,-1.262074 1.130216,-2.486474 3.258789,-2.486474 1.5069541,0 2.9762341,0.753477 2.9762341,2.109736 0,0.904172 -0.602782,1.582301 -1.243237,2.241594 z m -3.2587881,0.48976 c -0.640456,0.565108 -1.243238,1.149053 -1.243238,1.977877 0,1.299748 1.243238,2.203921 2.618333,2.203921 1.0360312,0 1.6576501,-0.809988 1.6576501,-1.601139 0,-0.470923 -0.2072059,-0.960683 -0.6969669,-1.243237 z"
d="M 9.8454611,4.049939 C 10.391732,3.484831 10.862655,2.88205 10.862655,2.109736 c 0,-1.054868 -1.0925419,-1.714161 -2.2415941,-1.714161 -0.92301,0 -1.469281,0.715804 -1.469281,1.41277 0,0.414412 0.169533,0.791151 0.583945,1.036031 z M 10.354058,4.35133 c 1.036031,0.602782 1.601138,1.46928 1.601138,2.39229 0,1.356258 -1.2244,2.674843 -3.4848311,2.674843 -1.732997,0 -3.37181,-0.998357 -3.37181,-2.599496 0,-0.960683 0.753477,-1.619975 1.469281,-2.279268 C 5.7390109,4.012265 5.3622719,3.239951 5.3622719,2.486474 5.3622719,1.2244 6.4924879,0 8.6210609,0 c 1.5069541,0 2.9762341,0.753477 2.9762341,2.109736 0,0.904172 -0.602782,1.582301 -1.243237,2.241594 z M 7.0952699,4.84109 c -0.640456,0.565108 -1.243238,1.149053 -1.243238,1.977877 0,1.299748 1.243238,2.203921 2.618333,2.203921 1.0360312,0 1.6576501,-0.809988 1.6576501,-1.601139 0,-0.470923 -0.2072059,-0.960683 -0.6969669,-1.243237 z"
id="path3728"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

44
qtgui/resources/svg/clefTreble_8.svg

@ -2,19 +2,19 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="1000"
height="1000"
width="16.025"
height="58.367325"
id="svg3179"
inkscape:version="0.91 r13725"
sodipodi:docname="clefTreble_8.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="clefTreble_8.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -24,17 +24,20 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="2096"
inkscape:window-width="1278"
inkscape:window-height="692"
id="namedview2989"
showgrid="false"
inkscape:zoom="4.8083261"
inkscape:cx="32.64208"
inkscape:cy="965.18803"
inkscape:window-x="1920"
inkscape:window-y="30"
inkscape:cx="32.547709"
inkscape:cy="35.875271"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3179" />
inkscape:current-layer="svg3179"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata3187">
<rdf:RDF>
@ -43,19 +46,18 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3185" />
<path
d="M 6.35,-7.5070824 C 5.5,-10.457082 5,-13.282082 5,-16.982082 c 0,-3 1.4,-5.8 3.775,-7.625 0.05,-0.05 0.125,-0.075 0.2,-0.075 0.075,0 0.15,0.025 0.2,0.075 1.9,2.25 3.575,6.6 3.575,9.625 0,3.75 -2.25,6.6749996 -4.75,9.4999996 0.55,1.8249999 1.05,3.6749999 1.525,5.5249999 h 0.15 c 3.85,0 6.35,3.175 6.35,6.4750001 0,1.8999999 -0.825,3.8250004 -2.675,5.2000004 -0.625,0.475 -1.325,0.8 -2.075,1 0,0.325 0.025,0.675 0.025,1 0,1.15 -0.025,2.3 -0.1,3.45 -0.175,3.025 -2.35,5.675 -5.35,5.675 -2.775,0 -5.05,-2.3 -5.05,-5.125 0,-1.45 1.35,-2.6 2.825,-2.6 1.35,0 2.375,1.2 2.375,2.6 0,1.3 -1.075,2.375 -2.375,2.375 -0.325,0 -0.675,-0.1 -0.975,-0.25 0.65,1.175 1.85,2 3.25,2 2.475,0 4.15,-2.3 4.3,-4.825 0.075,-1.1 0.1,-2.225 0.1,-3.325 v -0.775 c -0.65,0.1 -1.3,0.15 -1.975,0.15 -4.7,0 -8.325,-4.2750005 -8.325,-9.3000005 0,-4.525 3.35,-7.8499999 6.35,-11.2749999 z m 4.9,19.2500004 c 1.825,-0.55 3.1,-2.4250005 3.1,-4.2500005 0,-2.2499999 -1.6,-4.45 -4.2,-4.8 0.575,2.7500001 1,5.975 1.1,9.0500005 z m -2.85,0.325 c 0.625,0 1.25,-0.025 1.875,-0.125 C 10.175,8.7679175 9.7,5.4679176 9.1,2.6429175 c -2.175,0.125 -3.4,1.55 -3.4,3.1000001 0,1.125 0.65,2.2999999 2.075,3.1249999 0.1,0.1 0.175,0.225 0.175,0.35 0,0.275 -0.225,0.525 -0.5,0.525 -0.075,0 -0.15,-0.025 -0.225,-0.05 -2,-1.075 -2.9,-2.8499999 -2.9,-4.6 0,-2.25 1.525,-4.45 4.2,-4.95 -0.4,-1.6 -0.875,-3.175 -1.325,-4.7499999 -2.75,3.0999999 -5.5,6.2249999 -5.5,10.35 0,3.4499999 3.275,6.3250004 6.7,6.3250004 z m 1.775,-33.2 c -2.5,1.375 -4.05,3.975 -4.05,6.825 0,2.25 0.475,4.05 1,5.8999996 2.15,-2.5499996 3.95,-5.2249996 3.95,-8.5499996 0,-1.825 -0.2,-2.575 -0.9,-4.175 z"
d="M 6.35,17.175 C 5.5,14.225 5,11.4 5,7.7 5,4.7 6.4,1.9 8.775,0.075 8.825,0.025 8.9,0 8.975,0 c 0.075,0 0.15,0.025 0.2,0.075 1.9,2.25 3.575,6.6 3.575,9.625 0,3.75 -2.25,6.675 -4.75,9.5 0.55,1.824999 1.05,3.675 1.525,5.524999 h 0.15 c 3.85,0 6.35,3.175 6.35,6.475001 0,1.899999 -0.825,3.825 -2.675,5.2 -0.625,0.475 -1.325,0.8 -2.075,1 0,0.325 0.025,0.675 0.025,1 0,1.15 -0.025,2.3 -0.1,3.45 -0.175,3.025 -2.35,5.675 -5.35,5.675 -2.775,0 -5.05,-2.3 -5.05,-5.125 0,-1.45 1.35,-2.6 2.825,-2.6 1.35,0 2.375,1.2 2.375,2.6 0,1.3 -1.075,2.375 -2.375,2.375 -0.325,0 -0.675,-0.1 -0.975,-0.25 0.65,1.175 1.85,2 3.25,2 2.475,0 4.15,-2.3 4.3,-4.825 0.075,-1.1 0.1,-2.225 0.1,-3.325 V 37.6 C 9.65,37.7 9,37.75 8.325,37.75 3.625,37.75 0,33.475 0,28.45 0,23.925 3.35,20.6 6.35,17.175 Z m 4.9,19.25 c 1.825,-0.55 3.1,-2.425 3.1,-4.250001 0,-2.249999 -1.6,-4.45 -4.2,-4.799999 0.575,2.75 1,5.974999 1.1,9.05 z M 8.4,36.75 c 0.625,0 1.25,-0.025 1.875,-0.125 C 10.175,33.449999 9.7,30.15 9.1,27.324999 c -2.175,0.125 -3.4,1.55 -3.4,3.100001 0,1.125 0.65,2.299999 2.075,3.124999 0.1,0.1 0.175,0.225 0.175,0.35 0,0.275 -0.225,0.525 -0.5,0.525 -0.075,0 -0.15,-0.025 -0.225,-0.05 -2,-1.075001 -2.9,-2.85 -2.9,-4.600001 0,-2.25 1.525,-4.45 4.2,-4.95 -0.4,-1.6 -0.875,-3.175 -1.325,-4.749999 -2.75,3.099999 -5.5,6.224999 -5.5,10.35 0,3.45 3.275,6.325 6.7,6.325001 z m 1.775,-33.2 c -2.5,1.375 -4.05,3.975 -4.05,6.825 0,2.25 0.475,4.05 1,5.9 2.15,-2.55 3.95,-5.225 3.95,-8.55 0,-1.825 -0.2,-2.575 -0.9,-4.175 z"
id="path3181"
inkscape:connector-curvature="0" />
<path
glyph-name="eight"
d="m 9.8454611,28.31672 c 0.5462709,-0.565108 1.0171939,-1.167889 1.0171939,-1.940203 0,-1.054868 -1.0925419,-1.714161 -2.2415941,-1.714161 -0.92301,0 -1.469281,0.715804 -1.469281,1.41277 0,0.414412 0.169533,0.791151 0.583945,1.036031 z m 0.5085969,0.301391 c 1.036031,0.602782 1.601138,1.46928 1.601138,2.39229 0,1.356258 -1.2244,2.674843 -3.4848311,2.674843 -1.732997,0 -3.37181,-0.998357 -3.37181,-2.599496 0,-0.960683 0.753477,-1.619975 1.469281,-2.279268 -0.828825,-0.527434 -1.205564,-1.299748 -1.205564,-2.053225 0,-1.262074 1.130216,-2.486474 3.258789,-2.486474 1.5069541,0 2.9762341,0.753477 2.9762341,2.109736 0,0.904172 -0.602782,1.582301 -1.243237,2.241594 z m -3.2587881,0.48976 c -0.640456,0.565108 -1.243238,1.149053 -1.243238,1.977877 0,1.299748 1.243238,2.203921 2.618333,2.203921 1.0360312,0 1.6576501,-0.809988 1.6576501,-1.601139 0,-0.470923 -0.2072059,-0.960683 -0.6969669,-1.243237 z"
d="m 9.8454611,52.998802 c 0.5462709,-0.565108 1.0171939,-1.167889 1.0171939,-1.940203 0,-1.054868 -1.0925419,-1.714161 -2.2415941,-1.714161 -0.92301,0 -1.469281,0.715804 -1.469281,1.41277 0,0.414412 0.169533,0.791151 0.583945,1.036031 z m 0.5085969,0.301391 c 1.036031,0.602782 1.601138,1.46928 1.601138,2.39229 0,1.356258 -1.2244,2.674843 -3.4848311,2.674843 -1.732997,0 -3.37181,-0.998357 -3.37181,-2.599496 0,-0.960683 0.753477,-1.619975 1.469281,-2.279268 -0.828825,-0.527434 -1.205564,-1.299748 -1.205564,-2.053225 0,-1.262074 1.130216,-2.486474 3.258789,-2.486474 1.5069541,0 2.9762341,0.753477 2.9762341,2.109736 0,0.904172 -0.602782,1.582301 -1.243237,2.241594 z m -3.2587881,0.48976 c -0.640456,0.565108 -1.243238,1.149053 -1.243238,1.977877 0,1.299748 1.243238,2.203921 2.618333,2.203921 1.0360312,0 1.6576501,-0.809988 1.6576501,-1.601139 0,-0.470923 -0.2072059,-0.960683 -0.6969669,-1.243237 z"
id="path3728"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

47
qtgui/resources/svg/dot.svg

@ -1,18 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
height="1000.0"
width="1000.0"
height="3.4716392"
width="3.4716392"
id="svg3059"
inkscape:version="0.48.4 r9939"
sodipodi:docname="dots.dot.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="dot.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata3067">
<rdf:RDF>
@ -21,7 +21,6 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
@ -36,20 +35,24 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1041"
inkscape:window-width="1918"
inkscape:window-height="2118"
id="namedview3063"
showgrid="false"
inkscape:zoom="13.6"
inkscape:cx="0.36672413"
inkscape:cy="1003.307"
inkscape:window-x="1920"
inkscape:window-y="18"
inkscape:zoom="38.466609"
inkscape:cx="2.8986179"
inkscape:cy="6.6681209"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3059" />
inkscape:current-layer="svg3059"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="dots.dot"
d="m 0.79558812,0 c 0,0.8 0.62499998,1.425 1.42499998,1.425 0.8,0 1.425,-0.625 1.425,-1.425 0,-0.8 -0.625,-1.425 -1.425,-1.425 -0.8,0 -1.42499998,0.625 -1.42499998,1.425 z"
d="m 0,1.7358196 c 0,0.9744952 0.76132437,1.7358196 1.7358196,1.7358196 0.9744952,0 1.7358196,-0.7613244 1.7358196,-1.7358196 C 3.4716392,0.76132439 2.7103148,0 1.7358196,0 0.76132437,0 0,0.76132439 0,1.7358196 Z"
id="path3061"
inkscape:connector-curvature="0" />
inkscape:connector-curvature="0"
style="stroke-width:1.21812" />
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

62
qtgui/resources/svg/numbers.svg

@ -2,19 +2,19 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="1000"
height="1000"
width="109.35922"
height="12.73699"
id="svg3069"
inkscape:version="0.48.4 r9939"
sodipodi:docname="numbers.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="numbers.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -24,17 +24,20 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1041"
inkscape:window-width="1918"
inkscape:window-height="2118"
id="namedview2998"
showgrid="false"
inkscape:zoom="9.6166522"
inkscape:cx="147.1806"
inkscape:cy="974.99663"
inkscape:window-x="1920"
inkscape:window-y="18"
inkscape:zoom="2.4041631"
inkscape:cx="215.25162"
inkscape:cy="-4.7833694"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3069" />
inkscape:current-layer="svg3069"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata3077">
<rdf:RDF>
@ -43,40 +46,39 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3075" />
<path
d="m 11.745125,-0.48477158 2.725,-6.24999982 c 0.025,-0.05 0.075,-0.075 0.125,-0.075 0.075,0 0.175,0.025 0.25,0.075 0.325,0.15 0.65,0.325 1,0.325 0.35,0 0.65,-0.175 0.975,-0.325 0.025,-0.025 0.075,-0.025 0.1,-0.025 0.15,0 0.275,0.175 0.275,0.4 v 9.3999998 c 0,1.125 0.65,2.2 1.7,2.2 0.175,0 0.275,0.125 0.275,0.25 0,0.125 -0.1,0.275 -0.275,0.275 -1.025,0 -2.025,-0.325 -3.05,-0.325 -1.025,0 -2.05,0.325 -3.075,0.325 -0.175,0 -0.275,-0.15 -0.275,-0.275 0,-0.125 0.1,-0.25 0.275,-0.25 1.05,0 1.7,-1.075 1.7,-2.2 v -6.45 c 0,-0.275 -0.2,-0.425 -0.375,-0.425 -0.1,0 -0.175,0.05 -0.225,0.15 l -1.525,3.47500002 c -0.05,0.15 -0.15,0.2 -0.275,0.2 -0.175,0 -0.35,-0.125 -0.35,-0.325 0,-0.05 0,-0.1 0.025,-0.15 z"
d="M 11.745125,6.3249998 14.470125,0.075 c 0.025,-0.05 0.075,-0.075 0.125,-0.075 0.075,0 0.175,0.025 0.25,0.075 0.325,0.15 0.65,0.325 1,0.325 0.35,0 0.65,-0.175 0.975,-0.325 0.025,-0.025 0.075,-0.025 0.1,-0.025 0.15,0 0.275,0.175 0.275,0.4 v 9.3999998 c 0,1.1250002 0.65,2.2000002 1.7,2.2000002 0.175,0 0.275,0.125 0.275,0.25 0,0.125 -0.1,0.275 -0.275,0.275 -1.025,0 -2.025,-0.325 -3.05,-0.325 -1.025,0 -2.05,0.325 -3.075,0.325 -0.175,0 -0.275,-0.15 -0.275,-0.275 0,-0.125 0.1,-0.25 0.275,-0.25 1.05,0 1.7,-1.075 1.7,-2.2000002 v -6.45 c 0,-0.275 -0.2,-0.425 -0.375,-0.425 -0.1,0 -0.175,0.05 -0.225,0.15 l -1.525,3.475 c -0.05,0.15 -0.15,0.2 -0.275,0.2 -0.175,0 -0.35,-0.125 -0.35,-0.325 0,-0.05 0,-0.1 0.025,-0.15 z"
id="one" />
<path
d="m 22.701625,5.5152284 c -0.025,0.175 -0.125,0.25 -0.25,0.25 -0.125,0 -0.275,-0.075 -0.275,-0.25 0,-4.375 5.9,-4.125 5.9,-8.625 0,-1.5249998 -0.55,-3.0999998 -1.875,-3.0999998 -0.625,0 -1.2,0.35 -1.2,0.925 0,0.675 0.875,1.025 0.875,1.6999998 0,0.95 -0.775,1.725 -1.725,1.725 -0.95,0 -1.7,-0.775 -1.7,-1.725 0,-1.8749998 1.775,-3.1499998 3.75,-3.1499998 2.375,0 4.6,1.425 4.6,3.6249998 0,3.95000002 -4.05,4.00000002 -6.425,5.725 0.3,-0.075 0.6,-0.125 0.925,-0.125 0.8,0 1.675,0.25 2.525,0.825 0.575,0.4 1.225,0.625 1.75,0.625 0.5,0 0.925,-0.2 1.05,-0.7 0.025,-0.15 0.15,-0.2 0.25,-0.2 0.125,0 0.275,0.1 0.275,0.25 0,1.575 -2.125,2.475 -3.3,2.475 -0.875,0 -1.725,-0.35 -2.35,-1.05 -0.35,-0.4 -0.8,-0.575 -1.25,-0.575 -0.75,0 -1.475,0.525 -1.55,1.375 z"
d="m 22.701625,12.325 c -0.025,0.175 -0.125,0.25 -0.25,0.25 -0.125,0 -0.275,-0.075 -0.275,-0.25 0,-4.3750002 5.9,-4.1250002 5.9,-8.6250002 0,-1.5249998 -0.55,-3.0999998 -1.875,-3.0999998 -0.625,0 -1.2,0.35 -1.2,0.925 0,0.675 0.875,1.025 0.875,1.6999998 0,0.95 -0.775,1.725 -1.725,1.725 -0.95,0 -1.7,-0.775 -1.7,-1.725 0,-1.8749998 1.775,-3.1499998 3.75,-3.1499998 2.375,0 4.6,1.425 4.6,3.6249998 0,3.95 -4.05,4 -6.425,5.725 0.3,-0.075 0.6,-0.125 0.925,-0.125 0.8,0 1.675,0.25 2.525,0.8250002 0.575,0.4 1.225,0.625 1.75,0.625 0.5,0 0.925,-0.2 1.05,-0.7 0.025,-0.1500002 0.15,-0.2000002 0.25,-0.2000002 0.125,0 0.275,0.1 0.275,0.2500002 0,1.575 -2.125,2.475 -3.3,2.475 -0.875,0 -1.725,-0.35 -2.35,-1.05 -0.35,-0.4 -0.8,-0.575 -1.25,-0.575 -0.75,0 -1.475,0.525 -1.55,1.375 z"
id="two" />
<path
d="m 37.483025,-6.2097714 c -0.7,0 -1.45,0.225 -1.45,0.825 0,0.55 0.9,0.625 0.9,1.175 0,0.7999998 -0.625,1.4249998 -1.425,1.4249998 -0.8,0 -1.425,-0.625 -1.425,-1.4249998 0,-1.575 1.65,-2.525 3.4,-2.525 2.25,0 4.125,0.875 4.125,2.8749998 0,1.1 -0.075,2.075 -1.025,2.525 -0.2,0.1 -0.325,0.3 -0.325,0.50000002 0,0.2 0.125,0.4 0.325,0.5 1.025,0.475 1.375,1.44999998 1.375,2.59999998 0,2.275 -1.925,3.5 -4.375,3.5 -1.925,0 -3.775,-1.025 -3.775,-2.775 0,-0.9 0.725,-1.625 1.625,-1.625 0.9,0 1.625,0.725 1.625,1.625 0,0.625 -1,0.7 -1,1.325 0,0.65 0.775,0.925 1.525,0.925 1.25,0 1.65,-1.525 1.65,-2.975 0,-1.54999998 -0.025,-2.74999998 -1.35,-2.74999998 h -2.05 c -0.225,0 -0.325,-0.175 -0.325,-0.35 0,-0.17500002 0.1,-0.32500002 0.325,-0.32500002 h 2.05 c 1.3,0 1.35,-1.175 1.35,-2.7 0,-1.3999998 -0.45,-2.3499998 -1.75,-2.3499998 z"
d="m 37.483025,0.6 c -0.7,0 -1.45,0.225 -1.45,0.825 0,0.55 0.9,0.625 0.9,1.175 0,0.7999998 -0.625,1.4249998 -1.425,1.4249998 -0.8,0 -1.425,-0.625 -1.425,-1.4249998 0,-1.575 1.65,-2.525 3.4,-2.525 2.25,0 4.125,0.875 4.125,2.8749998 0,1.1 -0.075,2.075 -1.025,2.525 -0.2,0.1 -0.325,0.3 -0.325,0.5 0,0.2 0.125,0.4 0.325,0.5 1.025,0.475 1.375,1.45 1.375,2.6 0,2.2750002 -1.925,3.5000002 -4.375,3.5000002 -1.925,0 -3.775,-1.025 -3.775,-2.7750002 0,-0.9 0.725,-1.625 1.625,-1.625 0.9,0 1.625,0.725 1.625,1.625 0,0.6250002 -1,0.7000002 -1,1.3250002 0,0.65 0.775,0.925 1.525,0.925 1.25,0 1.65,-1.525 1.65,-2.9750002 0,-1.55 -0.025,-2.75 -1.35,-2.75 h -2.05 c -0.225,0 -0.325,-0.175 -0.325,-0.35 0,-0.175 0.1,-0.325 0.325,-0.325 h 2.05 c 1.3,0 1.35,-1.175 1.35,-2.7 C 39.233025,1.55 38.783025,0.6 37.483025,0.6 Z"
id="three" />
<path
d="m 49.439525,-2.2097716 c 0.525,-0.325 1.05,-0.675 1.425,-1.175 0.275,-0.375 0.45,-0.7999998 0.625,-1.2249998 0.1,-0.225 0.5,-0.175 0.5,0.175 v 6.3999998 h 1.7 c 0.225,0 0.325,0.175 0.325,0.35 0,0.175 -0.1,0.325 -0.325,0.325 h -1.7 v 0.4 c 0,1.125 0.65,2.2 1.7,2.2 0.175,0 0.25,0.125 0.25,0.25 0,0.125 -0.075,0.275 -0.25,0.275 -1.025,0 -2.05,-0.325 -3.075,-0.325 -1.025,0 -2.05,0.325 -3.075,0.325 -0.175,0 -0.25,-0.15 -0.25,-0.275 0,-0.125 0.075,-0.25 0.25,-0.25 1.05,0 1.7,-1.075 1.7,-2.2 v -0.4 h -4.325 c -0.525,0 -0.725,-0.325 -0.725,-0.525 0,-0.05 0.025,-0.125 0.05,-0.15 2.025,-2.39999998 3.65,-5.2 3.65,-8.3249998 0,-0.2 0.125,-0.375 0.3,-0.375 h 0.075 c 0.55,0.175 1.1,0.325 1.675,0.325 0.575,0 1.125,-0.15 1.675,-0.325 0.05,-0.025 0.05,-0.025 0.1,-0.025 0.25,0 0.4,0.25 0.275,0.4 l -7.075,8.3249998 h 4.325 v -3.675 c 0,-0.2 0.05,-0.4 0.2,-0.5 z"
d="m 49.439525,4.5999998 c 0.525,-0.325 1.05,-0.675 1.425,-1.175 0.275,-0.375 0.45,-0.7999998 0.625,-1.2249998 0.1,-0.225 0.5,-0.175 0.5,0.175 v 6.3999998 h 1.7 c 0.225,0 0.325,0.175 0.325,0.35 0,0.175 -0.1,0.325 -0.325,0.325 h -1.7 v 0.4 c 0,1.1250002 0.65,2.2000002 1.7,2.2000002 0.175,0 0.25,0.125 0.25,0.25 0,0.125 -0.075,0.275 -0.25,0.275 -1.025,0 -2.05,-0.325 -3.075,-0.325 -1.025,0 -2.05,0.325 -3.075,0.325 -0.175,0 -0.25,-0.15 -0.25,-0.275 0,-0.125 0.075,-0.25 0.25,-0.25 1.05,0 1.7,-1.075 1.7,-2.2000002 v -0.4 h -4.325 c -0.525,0 -0.725,-0.325 -0.725,-0.525 0,-0.05 0.025,-0.125 0.05,-0.15 2.025,-2.4 3.65,-5.2 3.65,-8.3249998 0,-0.2 0.125,-0.375 0.3,-0.375 h 0.075 c 0.55,0.175 1.1,0.325 1.675,0.325 0.575,0 1.125,-0.15 1.675,-0.325 0.05,-0.025 0.05,-0.025 0.1,-0.025 0.25,0 0.4,0.25 0.275,0.4 l -7.075,8.3249998 h 4.325 v -3.675 c 0,-0.2 0.05,-0.4 0.2,-0.5 z"
id="four" />
<path
d="m 57.108425,-6.7347714 c 1.125,0.2 2.275,0.325 3.425,0.325 1.15,0 2.3,-0.125 3.425,-0.325 h 0.075 c 0.275,0 0.425,0.25 0.3,0.375 -1.7,1.7 -4.175,2.175 -6.575,2.175 -0.2,0 -0.375,0.1749998 -0.375,0.3749998 v 2.7 c 0.7,-0.7 1.625,-1.175 2.6,-1.175 2.875,0 4.6,1.275 4.6,4.025 0,2.3 -2.075,4.025 -4.475,4.025 -2.05,0 -4.05,-0.95 -4.05,-2.775 0,-0.9 0.725,-1.625 1.625,-1.625 0.9,0 1.625,0.725 1.625,1.625 0,0.625 -1,0.7 -1,1.325 0,0.75 0.925,0.925 1.8,0.925 1.425,0 1.75,-1.825 1.75,-3.5 0,-1.62499998 -0.45,-3.35 -1.875,-3.35 -1.025,0 -2.075,0.35 -2.65,1.20000002 -0.075,0.1 -0.175,0.125 -0.275,0.125 -0.175,0 -0.325,-0.125 -0.325,-0.325 V -6.3597714 c 0,-0.2 0.15,-0.375 0.325,-0.375 h 0.05 z"
d="m 57.108425,0.075 c 1.125,0.2 2.275,0.325 3.425,0.325 1.15,0 2.3,-0.125 3.425,-0.325 h 0.075 c 0.275,0 0.425,0.25 0.3,0.375 -1.7,1.7 -4.175,2.175 -6.575,2.175 -0.2,0 -0.375,0.1749998 -0.375,0.3749998 v 2.7 c 0.7,-0.7 1.625,-1.175 2.6,-1.175 2.875,0 4.6,1.275 4.6,4.025 0,2.3000002 -2.075,4.0250002 -4.475,4.0250002 -2.05,0 -4.05,-0.95 -4.05,-2.7750002 0,-0.9 0.725,-1.625 1.625,-1.625 0.9,0 1.625,0.725 1.625,1.625 0,0.6250002 -1,0.7000002 -1,1.3250002 0,0.75 0.925,0.925 1.8,0.925 1.425,0 1.75,-1.825 1.75,-3.5000002 0,-1.625 -0.45,-3.35 -1.875,-3.35 -1.025,0 -2.075,0.35 -2.65,1.2 -0.075,0.1 -0.175,0.125 -0.275,0.125 -0.175,0 -0.325,-0.125 -0.325,-0.325 V 0.45 c 0,-0.2 0.15,-0.375 0.325,-0.375 z"
id="five" />
<path
d="m 71.527325,-0.60977158 c -1.4,0 -1.425,1.275 -1.425,2.92499998 0,1.65 0.025,2.925 1.425,2.925 1.45,0 1.6,-1.25 1.6,-2.925 0,-1.67499998 -0.15,-2.92499998 -1.6,-2.92499998 z m -1.425,-0.2 c 0.475,-0.175 0.925,-0.35000002 1.425,-0.35000002 2.475,0 4.175,1.15000002 4.175,3.475 0,2.325 -1.7,3.45 -4.175,3.45 -2.775,0 -4.15,-3.125 -4.15,-6.24999998 0,-3.20000002 1.725,-6.24999982 4.65,-6.24999982 1.725,0 3.4,0.95 3.4,2.525 0,0.8999998 -0.725,1.6249998 -1.625,1.6249998 -0.9,0 -1.625,-0.725 -1.625,-1.6249998 0,-0.575 0.975,-0.65 0.975,-1.225 0,-0.5 -0.575,-0.775 -1.125,-0.775 -1.75,0 -1.95,1.775 -1.95,3.7749998 0,0.55 0.025,1.075 0.025,1.62500002 z"
d="m 71.527325,6.1999998 c -1.4,0 -1.425,1.275 -1.425,2.925 0,1.6500002 0.025,2.9250002 1.425,2.9250002 1.45,0 1.6,-1.25 1.6,-2.9250002 0,-1.675 -0.15,-2.925 -1.6,-2.925 z m -1.425,-0.2 c 0.475,-0.175 0.925,-0.35 1.425,-0.35 2.475,0 4.175,1.15 4.175,3.475 0,2.3250002 -1.7,3.4500002 -4.175,3.4500002 -2.775,0 -4.15,-3.1250002 -4.15,-6.2500002 0,-3.2 1.725,-6.2499998 4.65,-6.2499998 1.725,0 3.4,0.95 3.4,2.525 0,0.8999998 -0.725,1.6249998 -1.625,1.6249998 -0.9,0 -1.625,-0.725 -1.625,-1.6249998 0,-0.575 0.975,-0.65 0.975,-1.225 0,-0.5 -0.575,-0.775 -1.125,-0.775 -1.75,0 -1.95,1.775 -1.95,3.7749998 0,0.55 0.025,1.075 0.025,1.625 z"
id="six" />
<path
d="m 79.958825,-4.7347714 c -0.75,0 -0.925,0.9999998 -0.925,1.6749998 v 2.17500002 c 0,0.225 -0.175,0.325 -0.35,0.325 -0.175,0 -0.325,-0.1 -0.325,-0.325 V -6.4847714 c 0,-0.225 0.15,-0.325 0.325,-0.325 0.175,0 0.35,0.1 0.35,0.325 v 0.35 c 0,0.225 0.25,0.45 0.325,0.35 0.475,-0.675 1.175,-1.025 1.9,-1.025 0.725,0 1.475,0.325 2.1,0.925 0.325,0.3 0.7,0.45 1.1,0.45 0.75,0 1.575,-0.475 2.1,-1.225 0.075,-0.1 0.15,-0.15 0.25,-0.15 0.175,0 0.35,0.15 0.35,0.325 0,0.05 0,0.125 -0.05,0.2 -2.1,2.9999998 -4.125,6.32499982 -4.125,9.8249998 0,0.6 0.05,1.2 0.175,1.825 0.05,0.2 -0.1,0.4 -0.275,0.4 -0.025,0 -0.075,-0.025 -0.1,-0.025 -0.575,-0.175 -1.125,-0.375 -1.725,-0.375 -0.6,0 -1.15,0.2 -1.725,0.375 -0.025,0 -0.075,0.025 -0.1,0.025 -0.2,0 -0.35,-0.2 -0.275,-0.4 1.4,-3.3 3.45,-6.24999998 5.525,-9.15 -0.525,0.3 -1.05,0.475 -1.55,0.475 -0.525,0 -1.025,-0.175 -1.475,-0.6 -0.475,-0.4499998 -1.025,-0.8249998 -1.5,-0.8249998 z"
d="m 79.958825,2.075 c -0.75,0 -0.925,0.9999998 -0.925,1.6749998 v 2.175 c 0,0.225 -0.175,0.325 -0.35,0.325 -0.175,0 -0.325,-0.1 -0.325,-0.325 V 0.325 c 0,-0.225 0.15,-0.325 0.325,-0.325 0.175,0 0.35,0.1 0.35,0.325 v 0.35 c 0,0.225 0.25,0.45 0.325,0.35 0.475,-0.675 1.175,-1.025 1.9,-1.025 0.725,0 1.475,0.325 2.1,0.925 0.325,0.3 0.7,0.45 1.1,0.45 0.75,0 1.575,-0.475 2.1,-1.225 0.075,-0.1 0.15,-0.15 0.25,-0.15 0.175,0 0.35,0.15 0.35,0.325 0,0.05 0,0.125 -0.05,0.2 -2.1,2.9999998 -4.125,6.3249998 -4.125,9.825 0,0.6 0.05,1.2 0.175,1.825 0.05,0.2 -0.1,0.4 -0.275,0.4 -0.025,0 -0.075,-0.025 -0.1,-0.025 -0.575,-0.175 -1.125,-0.375 -1.725,-0.375 -0.6,0 -1.15,0.2 -1.725,0.375 -0.025,0 -0.075,0.025 -0.1,0.025 -0.2,0 -0.35,-0.2 -0.275,-0.4 1.4,-3.3000002 3.45,-6.2500002 5.525,-9.1500002 -0.525,0.3 -1.05,0.475 -1.55,0.475 -0.525,0 -1.025,-0.175 -1.475,-0.6 C 80.983825,2.45 80.433825,2.075 79.958825,2.075 Z"
id="seven" />
<path
d="m 95.727725,-1.3597716 c 0.725,-0.75 1.35,-1.55 1.35,-2.575 0,-1.3999998 -1.45,-2.2749998 -2.975,-2.2749998 -1.225,0 -1.95,0.95 -1.95,1.875 0,0.5499998 0.225,1.0499998 0.775,1.3749998 z m 0.675,0.40000002 c 1.375,0.8 2.125,1.95 2.125,3.17499998 0,1.8 -1.625,3.55 -4.625,3.55 -2.3,0 -4.475,-1.325 -4.475,-3.45 0,-1.275 1,-2.14999998 1.95,-3.02499998 -1.1,-0.70000002 -1.6,-1.72500002 -1.6,-2.72500002 0,-1.6749998 1.5,-3.2999998 4.325,-3.2999998 2,0 3.95,1 3.95,2.7999998 0,1.2 -0.8,2.1 -1.65,2.97500002 z m -4.325,0.65 c -0.85,0.75 -1.65,1.52499998 -1.65,2.62499998 0,1.725 1.65,2.925 3.475,2.925 1.375,0 2.2,-1.075 2.2,-2.125 0,-0.625 -0.275,-1.275 -0.925,-1.65 z"
d="m 95.727725,5.4499998 c 0.725,-0.75 1.35,-1.55 1.35,-2.575 0,-1.3999998 -1.45,-2.2749998 -2.975,-2.2749998 -1.225,0 -1.95,0.95 -1.95,1.875 0,0.5499998 0.225,1.0499998 0.775,1.3749998 z m 0.675,0.4 c 1.375,0.8 2.125,1.95 2.125,3.175 0,1.8000002 -1.625,3.5500002 -4.625,3.5500002 -2.3,0 -4.475,-1.325 -4.475,-3.4500002 0,-1.275 1,-2.15 1.95,-3.025 -1.1,-0.7 -1.6,-1.725 -1.6,-2.725 0,-1.6749998 1.5,-3.2999998 4.325,-3.2999998 2,0 3.95,1 3.95,2.7999998 0,1.2 -0.8,2.1 -1.65,2.975 z m -4.325,0.65 c -0.85,0.75 -1.65,1.525 -1.65,2.625 0,1.7250002 1.65,2.9250002 3.475,2.9250002 1.375,0 2.2,-1.075 2.2,-2.1250002 0,-0.625 -0.275,-1.275 -0.925,-1.65 z"
id="eight" />
<path
d="m 105.18422,-0.35977158 c 1.40001,0 1.45001,-1.27500002 1.45001,-2.92500002 0,-1.6499998 -0.05,-2.9249998 -1.45001,-2.9249998 -1.45,0 -1.59999,1.25 -1.59999,2.9249998 0,1.675 0.15,2.92500002 1.59999,2.92500002 z m 1.45001,0.2 c -0.475,0.175 -0.95001,0.35 -1.45001,0.35 -2.47499,0 -4.15,-1.15 -4.15,-3.47500002 0,-2.3249998 1.675,-3.4499998 4.15,-3.4499998 2.77501,0 4.175,3.1249998 4.175,6.24999982 0,3.19999998 -1.75,6.24999998 -4.675,6.24999998 -1.72499,0 -3.375,-0.95 -3.375,-2.525 0,-0.9 0.725,-1.625 1.625,-1.625 0.90001,0 1.625,0.725 1.625,1.625 0,0.575 -0.97499,0.65 -0.97499,1.225 0,0.5 0.55,0.775 1.09999,0.775 1.75,0 1.95001,-1.775 1.95001,-3.775 v -1.62499998 z"
d="m 105.18422,6.4499998 c 1.40001,0 1.45001,-1.275 1.45001,-2.925 C 106.63423,1.875 106.58423,0.6 105.18422,0.6 c -1.45,0 -1.59999,1.25 -1.59999,2.9249998 0,1.675 0.15,2.925 1.59999,2.925 z m 1.45001,0.2 c -0.475,0.175 -0.95001,0.35 -1.45001,0.35 -2.47499,0 -4.15,-1.15 -4.15,-3.475 0,-2.3249998 1.675,-3.4499998 4.15,-3.4499998 2.77501,0 4.175,3.1249998 4.175,6.2499998 0,3.2 -1.75,6.2500002 -4.675,6.2500002 -1.72499,0 -3.375,-0.95 -3.375,-2.525 0,-0.9000002 0.725,-1.6250002 1.625,-1.6250002 0.90001,0 1.625,0.725 1.625,1.6250002 0,0.575 -0.97499,0.65 -0.97499,1.225 0,0.5 0.55,0.775 1.09999,0.775 1.75,0 1.95001,-1.775 1.95001,-3.7750002 z"
id="nine" />
<path
d="m 4.4749996,-5.8977814 c -1.65,0 -1.75,2.5 -1.75,4.575 v 1.00000002 1 c 0,2.07499998 0.1,4.57499998 1.75,4.57499998 1.65,0 1.775,-2.5 1.775,-4.57499998 v -1 -1.00000002 c 0,-2.075 -0.125,-4.575 -1.775,-4.575 z m 0,-0.675 c 2.875,0 4.5,3.075 4.5,6.25000002 0,3.17499998 -1.625,6.24999998 -4.5,6.24999998 C 1.6,5.9272186 0,2.8522186 0,-0.32278138 0,-3.4977814 1.6,-6.5727814 4.4749996,-6.5727814 z"
d="m 4.4749996,0.91199 c -1.65,0 -1.75,2.5 -1.75,4.575 v 1 1 c 0,2.075 0.1,4.575 1.75,4.575 1.65,0 1.775,-2.5 1.775,-4.575 v -1 -1 c 0,-2.075 -0.125,-4.575 -1.775,-4.575 z m 0,-0.675 c 2.875,0 4.5,3.075 4.5,6.25 0,3.175 -1.625,6.25 -4.5,6.25 C 1.6,12.73699 0,9.66199 0,6.48699 c 0,-3.175 1.6,-6.25 4.4749996,-6.25 z"
id="zero" />
</svg>

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

54
qtgui/resources/svg/rest1.svg

@ -2,19 +2,19 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="1000"
height="1000"
id="svg3361"
inkscape:version="0.48.4 r9939"
sodipodi:docname="rest1.svg">
width="9.375"
height="3.8999999"
id="svg3371"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="rest2.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -24,33 +24,35 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1041"
id="namedview3154"
inkscape:window-width="1918"
inkscape:window-height="2118"
id="namedview3160"
showgrid="false"
inkscape:zoom="4.8083261"
inkscape:cx="111.64752"
inkscape:cy="988.38611"
inkscape:window-x="1920"
inkscape:window-y="18"
inkscape:zoom="15.104"
inkscape:cx="15.525689"
inkscape:cy="47.636388"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3361" />
inkscape:current-layer="svg3371"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata3369">
id="metadata3379">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3367" />
id="defs3377" />
<path
d="M 10.00689,0 H 1.0318903 c -0.1,0 -0.19999997,-0.1 -0.19999997,-0.2 v -3.5 c 0,-0.1 0.1,-0.2 0.19999997,-0.2 H 10.00689 c 0.1,0 0.2,0.1 0.2,0.2 v 3.5 c 0,0.1 -0.1,0.2 -0.2,0.2 z"
id="path3363"
d="M 9.175,3.9 H 0.2 C 0.1,3.9 0,3.8 0,3.7 V 0.2 C 0,0.1 0.1,0 0.2,0 h 8.975 c 0.1,0 0.2,0.1 0.2,0.2 v 3.5 c 0,0.1 -0.1,0.2 -0.2,0.2 z"
id="path3373"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

42
qtgui/resources/svg/rest128.svg

@ -2,15 +2,38 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="1000"
height="1000"
id="svg3431">
width="10.85"
height="36.599998"
id="svg3431"
sodipodi:docname="rest128.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="0.236"
inkscape:cx="519.0678"
inkscape:cy="523.30508"
inkscape:window-width="1920"
inkscape:window-height="2120"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3431" />
<metadata
id="metadata3439">
<rdf:RDF>
@ -19,13 +42,12 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3437" />
<path
d="m 3.675,22.285593 1.525,-8.25 c -0.975,0.35 -1.975,0.65 -3.025,0.65 -1.15,0 -2.175,-0.85 -2.175,-2 0,-0.975 0.775,-1.775 1.775,-1.775 0.65,0 1.225,0.4 1.425,1 0.25,0.7 0.15,1.5 0.875,1.5 0.45,0 1.5,-1.45 1.6,-1.925 L 6.35,7.8105933 c -0.95,0.325 -1.9,0.625 -2.9,0.625 -1.15,0 -2.2,-0.85 -2.2,-2 0,-0.975 0.8,-1.775 1.8,-1.775 0.65,0 1.2,0.4 1.4,1 0.25,0.7 0.175,1.5 0.9,1.5 0.425,0 1.375,-1.4 1.45,-1.875 l 0.7,-3.7 c -0.9,0.325 -1.85,0.6 -2.8,0.6 -1.15,0 -2.175,-0.85 -2.175,-2.00000002 0,-0.975 0.775,-1.77499998 1.775,-1.77499998 0.65,0 1.225,0.4 1.425,0.99999998 0.25,0.7 0.15,1.5 0.875,1.5 0.4,0 1.275,-1.35 1.35,-1.8 l 0.7,-3.74999998 c -0.875,0.3 -1.775,0.575 -2.7,0.575 -1.15,0 -2.175,-0.85 -2.175,-2 0,-0.975 0.8,-1.775 1.8,-1.775 0.65,0 1.2,0.4 1.4,1 0.25,0.7 0.175,1.5 0.9,1.5 0.4,0 1.15,-1.325 1.225,-1.75 l 0.7,-3.7750003 c -0.825,0.3 -1.7,0.55 -2.575,0.55 -1.15,0 -2.175,-0.85 -2.175,-2 0,-0.975 0.775,-1.775 1.775,-1.775 0.65,0 1.225,0.4 1.425,1 0.25,0.7 0.15,1.5 0.875,1.5 0.4,0 0.975,-1.375 1.125,-1.75 0.1,-0.275 0.5,-0.275 0.6,0 l -5.975,35.625 c -0.175,0.15 -0.4,0.225 -0.6,0.225 -0.2,0 -0.425,-0.075 -0.6,-0.225 z"
d="M 3.675,36.375 5.2,28.125 c -0.975,0.35 -1.975,0.65 -3.025,0.65 C 1.025,28.775 0,27.925 0,26.775 0,25.8 0.775,25 1.775,25 2.425,25 3,25.4 3.2,26 c 0.25,0.7 0.15,1.5 0.875,1.5 0.45,0 1.5,-1.45 1.6,-1.925 L 6.35,21.9 c -0.95,0.325 -1.9,0.625 -2.9,0.625 -1.15,0 -2.2,-0.85 -2.2,-2 0,-0.975 0.8,-1.775 1.8,-1.775 0.65,0 1.2,0.4 1.4,1 0.25,0.7 0.175,1.5 0.9,1.5 0.425,0 1.375,-1.4 1.45,-1.875 l 0.7,-3.7 c -0.9,0.325 -1.85,0.6 -2.8,0.6 -1.15,0 -2.175,-0.85 -2.175,-2 C 2.525,13.3 3.3,12.5 4.3,12.5 c 0.65,0 1.225,0.4 1.425,1 C 5.975,14.2 5.875,15 6.6,15 7,15 7.875,13.65 7.95,13.2 L 8.65,9.4500003 C 7.775,9.7500003 6.875,10.025 5.95,10.025 4.8,10.025 3.775,9.1750003 3.775,8.0250003 c 0,-0.975 0.8,-1.775 1.8,-1.775 0.65,0 1.2,0.4 1.4,1 0.25,0.7 0.175,1.5 0.9,1.5 0.4,0 1.15,-1.325 1.225,-1.75 L 9.8,3.225 c -0.825,0.3 -1.7,0.55 -2.575,0.55 -1.15,0 -2.175,-0.85 -2.175,-2 C 5.05,0.8 5.825,0 6.825,0 7.475,0 8.05,0.4 8.25,1 8.5,1.7 8.4,2.5 9.125,2.5 c 0.4,0 0.975,-1.375 1.125,-1.75 0.1,-0.275 0.5,-0.275 0.6,0 L 4.875,36.375 c -0.175,0.15 -0.4,0.225 -0.6,0.225 -0.2,0 -0.425,-0.075 -0.6,-0.225 z"
id="path3433" />
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

42
qtgui/resources/svg/rest16.svg

@ -1,18 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
height="1000.0"
width="1000.0"
height="17.85"
width="8.125"
id="svg3401"
inkscape:version="0.48.4 r9939"
sodipodi:docname="rests.4.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="rest16.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata3409">
<rdf:RDF>
@ -21,7 +21,6 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
@ -36,20 +35,23 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1041"
inkscape:window-width="1918"
inkscape:window-height="2118"
id="namedview3405"
showgrid="false"
inkscape:zoom="2.6700352"
inkscape:cx="109.38042"
inkscape:cy="1014.0746"
inkscape:window-x="1920"
inkscape:window-y="18"
inkscape:cx="112.54533"
inkscape:cy="1026.0164"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3401" />
inkscape:current-layer="svg3401"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="rests.4"
d="M 2.4,8.7636456 4.9,0.58864559 C 4.025,0.9136455 3.1,1.1636455 2.175,1.1636455 1.025,1.1636455 0,0.31364559 0,-0.83635441 0,-1.8113544 0.775,-2.6113544 1.775,-2.6113544 c 0.65,0 1.225,0.4 1.425,1 0.25,0.69999999 0.15,1.49999999 0.875,1.49999999 0.425,0 1.425,-1.32499999 1.55,-1.74999999 l 1.175,-3.8 c -0.85,0.3 -1.75,0.575 -2.675,0.575 -1.15,0 -2.175,-0.85 -2.175,-2 0,-0.975 0.775,-1.7750001 1.775,-1.7750001 0.65,0 1.225,0.4 1.425,1.0000001 0.25,0.7 0.15,1.5 0.875,1.5 0.425,0 1.325,-1.35 1.5,-1.75 0.1,-0.2750001 0.5,-0.2750001 0.6,0 l -4.55,16.875 c -0.175,0.15 -0.375,0.225 -0.575,0.225 -0.2,0 -0.425,-0.075 -0.6,-0.225 z"
d="M 2.4,17.625 4.9,9.4500001 C 4.025,9.775 3.1,10.025 2.175,10.025 1.025,10.025 0,9.1750001 0,8.0250001 c 0,-0.975 0.775,-1.775 1.775,-1.775 0.65,0 1.225,0.4 1.425,1 0.25,0.7 0.15,1.5 0.875,1.5 0.425,0 1.425,-1.325 1.55,-1.75 l 1.175,-3.8 c -0.85,0.3 -1.75,0.575 -2.675,0.575 -1.15,0 -2.175,-0.85 -2.175,-2 C 1.95,0.8000001 2.725,0 3.725,0 4.375,0 4.95,0.4 5.15,1.0000001 c 0.25,0.7 0.15,1.5 0.875,1.5 0.425,0 1.325,-1.35 1.5,-1.75 0.1,-0.2750001 0.5,-0.2750001 0.6,0 L 3.575,17.625 C 3.4,17.775 3.2,17.85 3,17.85 2.8,17.85 2.575,17.775 2.4,17.625 Z"
id="path3403"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

54
qtgui/resources/svg/rest2.svg

@ -2,19 +2,19 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="1000"
height="1000"
id="svg3371"
inkscape:version="0.48.4 r9939"
sodipodi:docname="rest2.svg">
width="9.375"
height="7.8000002"
id="svg3361"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="rest1.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -24,33 +24,35 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1041"
id="namedview3160"
inkscape:window-width="1918"
inkscape:window-height="2118"
id="namedview3154"
showgrid="false"
inkscape:zoom="3.776"
inkscape:cx="200.7814"
inkscape:cy="1013.0608"
inkscape:window-x="1920"
inkscape:window-y="18"
inkscape:zoom="13.6"
inkscape:cx="49.669118"
inkscape:cy="47.830883"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3371" />
inkscape:current-layer="svg3361"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata3379">
id="metadata3369">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3377" />
id="defs3367" />
<path
d="m 10.234322,3.9325324 h -8.975 c -0.1,0 -0.2,-0.1 -0.2,-0.2 V 0.23253243 c 0,-0.1 0.1,-0.2 0.2,-0.2 h 8.975 c 0.1,0 0.2,0.1 0.2,0.2 V 3.7325324 c 0,0.1 -0.1,0.2 -0.2,0.2 z"
id="path3373"
d="M 9.1749997,7.9 H 0.19999997 C 0.09999997,7.9 0,7.8 0,7.7 V 4.2 C 0,4.1 0.1,4 0.19999997,4 H 9.1749997 c 0.1,0 0.2,0.1 0.2,0.2 v 3.5 c 0,0.1 -0.1,0.2 -0.2,0.2 z"
id="path3363"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

42
qtgui/resources/svg/rest32.svg

@ -2,15 +2,38 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="1000"
height="1000"
id="svg3411">
width="9.4750004"
height="24.1"
id="svg3411"
sodipodi:docname="rest32.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview27"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="0.236"
inkscape:cx="506.35593"
inkscape:cy="514.83051"
inkscape:window-width="1920"
inkscape:window-height="2120"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3411" />
<metadata
id="metadata3419">
<rdf:RDF>
@ -19,13 +42,12 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3417" />
<path
d="m 2.825,15.692393 2.15,-8.1999998 c -0.9,0.325 -1.825,0.6 -2.8,0.6 -1.15,0 -2.175,-0.85 -2.175,-2 0,-0.975 0.775,-1.775 1.775,-1.775 0.65,0 1.2,0.4 1.4,1 0.25,0.7 0.175,1.5 0.9,1.5 0.425,0 1.425,-1.35 1.55,-1.8 l 0.975,-3.75 c -0.875,0.325 -1.8,0.575 -2.725,0.575 -1.15,0 -2.175,-0.85000005 -2.175,-2.00000005 0,-0.97499995 0.8,-1.77499995 1.8,-1.77499995 0.65,0 1.2,0.4 1.4,0.99999995 0.25,0.7 0.175,1.5 0.9,1.5 0.425,0 1.35,-1.325 1.45,-1.74999995 l 1,-3.8 c -0.85,0.3 -1.75,0.575 -2.65,0.575 -1.15,0 -2.175,-0.85 -2.175,-2 0,-0.975 0.775,-1.775 1.775,-1.775 0.65,0 1.225,0.4 1.425,1 0.25,0.7 0.15,1.5 0.875,1.5 0.4,0 1.225,-1.35 1.375,-1.75 0.1,-0.275 0.5,-0.275 0.6,0 L 4,15.692393 c -0.175,0.15 -0.375,0.225 -0.575,0.225 -0.2,0 -0.425,-0.075 -0.6,-0.225 z"
d="m 2.825,23.875 2.15,-8.2 c -0.9,0.325 -1.825,0.6 -2.8,0.6 C 1.025,16.275 0,15.425 0,14.275 0,13.3 0.775,12.5 1.775,12.5 c 0.65,0 1.2,0.4 1.4,1 0.25,0.7 0.175,1.5 0.9,1.5 C 4.5,15 5.5,13.65 5.625,13.2 L 6.6,9.45 C 5.725,9.775 4.8,10.025 3.875,10.025 2.725,10.025 1.7,9.175 1.7,8.025 1.7,7.05 2.5,6.25 3.5,6.25 c 0.65,0 1.2,0.4 1.4,1 0.25,0.6999999 0.175,1.5 0.9,1.5 0.425,0 1.35,-1.3250001 1.45,-1.75 l 1,-3.8 C 7.4,3.5 6.5,3.775 5.6,3.775 4.45,3.775 3.425,2.925 3.425,1.775 3.425,0.8 4.2,0 5.2,0 c 0.65,0 1.225,0.4 1.425,1 0.25,0.7 0.15,1.5 0.875,1.5 0.4,0 1.225,-1.35 1.375,-1.75 0.1,-0.275 0.5,-0.275 0.6,0 L 4,23.875 C 3.825,24.025 3.625,24.1 3.425,24.1 3.225,24.1 3,24.025 2.825,23.875 Z"
id="path3413" />
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

42
qtgui/resources/svg/rest4.svg

@ -2,19 +2,19 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="1000"
height="1000"
width="6.5999999"
height="17.875"
id="svg3381"
inkscape:version="0.48.4 r9939"
sodipodi:docname="rest4.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="rest4.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -24,17 +24,20 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1041"
inkscape:window-width="1918"
inkscape:window-height="2118"
id="namedview3166"
showgrid="false"
inkscape:zoom="7.552"
inkscape:cx="48.972702"
inkscape:cy="1004.0443"
inkscape:window-x="1920"
inkscape:window-y="18"
inkscape:cx="47.603284"
inkscape:cy="1014.7643"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3381" />
inkscape:current-layer="svg3381"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata3389">
<rdf:RDF>
@ -43,14 +46,13 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3387" />
<path
d="m 1.7213983,2.340538 c 0,-0.65 0.25,-1 0.9,-1 0.85,0 2.125,0.375 3.25,0.925 l -3.425,-4.1 c -0.175,-0.2 -0.25,-0.425 -0.25,-0.625 0,-0.825 1.225,-1.6 2.15,-2.4 0.65,-0.55 0.975,-1.35 0.975,-2.125 0,-0.6 -0.2,-1.175 -0.6,-1.675 l -0.975,-1.15 c -0.05,-0.075 -0.075,-0.15 -0.075,-0.225 0,-0.175 0.175,-0.35 0.35,-0.35 0.075,0 0.175,0.025 0.25,0.125 l 3.8,4.55 c 0.175,0.2 0.25,0.425 0.25,0.625 0,0.825 -1.225,1.6 -2.15,2.4 -0.65,0.55 -0.975,1.35 -0.975,2.12499995 0,0.6 0.2,1.175 0.6,1.67500005 l 2.175,2.6 c 0.05,0.075 0.075,0.125 0.075,0.2 0,0.175 -0.175,0.35 -0.35,0.35 -0.075,0 -0.175,-0.025 -0.25,-0.125 -0.475,-0.55 -1.65,-1.075 -2.55,-1.075 -1,0 -1.3,0.725 -1.3,1.75 0,0.875 0.275,1.875 0.7,2.4 0.1,0.125 0,0.275 -0.125,0.275 -0.05,0 -0.1,0 -0.125,-0.05 -1.15,-1.375 -2.325,-3.75 -2.325,-5.1 z"
d="m 0,12.725 c 0,-0.65 0.25,-1 0.9,-1 0.85,0 2.125,0.375 3.25,0.925 L 0.725,8.55 C 0.55,8.35 0.475,8.125 0.475,7.925 0.475,7.1 1.7,6.325 2.625,5.525 3.275,4.975 3.6,4.175 3.6,3.4 3.6,2.8 3.4,2.225 3,1.725 L 2.025,0.575 C 1.975,0.5 1.95,0.425 1.95,0.35 1.95,0.175 2.125,0 2.3,0 2.375,0 2.475,0.025 2.55,0.125 l 3.8,4.55 C 6.525,4.875 6.6,5.1 6.6,5.3 6.6,6.125 5.375,6.9 4.45,7.7 3.8,8.25 3.475,9.05 3.475,9.8249999 3.475,10.425 3.675,11 4.075,11.5 l 2.175,2.6 c 0.05,0.075 0.075,0.125 0.075,0.2 0,0.175 -0.175,0.35 -0.35,0.35 C 5.9,14.65 5.8,14.625 5.725,14.525 5.25,13.975 4.075,13.45 3.175,13.45 c -1,0 -1.3,0.725 -1.3,1.75 0,0.875 0.275,1.875 0.7,2.4 0.1,0.125 0,0.275 -0.125,0.275 -0.05,0 -0.1,0 -0.125,-0.05 C 1.175,16.45 0,14.075 0,12.725 Z"
id="path3383"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

42
qtgui/resources/svg/rest64.svg

@ -2,15 +2,38 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="1000"
height="1000"
id="svg3421">
width="10.4"
height="30.35"
id="svg3421"
sodipodi:docname="rest64.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview38"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="2.6700352"
inkscape:cx="61.984202"
inkscape:cy="73.220008"
inkscape:window-width="1920"
inkscape:window-height="2120"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3421" />
<metadata
id="metadata3429">
<rdf:RDF>
@ -19,13 +42,12 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3427" />
<path
d="m 3.275,19.107627 1.825,-8.225 c -0.95,0.325 -1.925,0.625 -2.925,0.625 -1.15,0 -2.175,-0.85 -2.175,-1.9999998 0,-0.975 0.8,-1.775 1.8,-1.775 0.65,0 1.2,0.4 1.4,1 0.25,0.7 0.175,1.4999998 0.9,1.4999998 0.45,0 1.45,-1.3999998 1.55,-1.8749998 l 0.825,-3.7 c -0.9,0.325 -1.825,0.6 -2.8,0.6 -1.15,0 -2.175,-0.85 -2.175,-2 0,-0.975 0.775,-1.775 1.775,-1.775 0.65,0 1.225,0.4 1.425,1 0.25,0.7 0.15,1.5 0.875,1.5 0.425,0 1.35,-1.375 1.45,-1.825 l 0.85,-3.725 c -0.875,0.3 -1.775,0.57499996 -2.7,0.57499996 -1.15,0 -2.2,-0.84999996 -2.2,-1.99999996 0,-0.975 0.8,-1.775 1.8,-1.775 0.65,0 1.2,0.4 1.4,1 0.25,0.7 0.175,1.5 0.9,1.5 0.4,0 1.225,-1.325 1.325,-1.75 l 0.85,-3.775 c -0.85,0.3 -1.7,0.55 -2.6,0.55 -1.15,0 -2.175,-0.85 -2.175,-2 0,-0.9750002 0.775,-1.7750002 1.775,-1.7750002 0.65,0 1.225,0.4 1.425,1 0.25,0.7000002 0.15,1.5000002 0.875,1.5000002 0.4,0 1.1,-1.375 1.25,-1.7500002 0.1,-0.275 0.5,-0.275 0.6,0 l -5.95,29.375 c -0.175,0.15 -0.4,0.225 -0.6,0.225 -0.2,0 -0.4,-0.075 -0.575,-0.225 z"
d="M 3.275,30.125 5.1,21.9 C 4.15,22.225 3.175,22.525 2.175,22.525 1.025,22.525 0,21.675 0,20.525 0,19.55 0.8,18.75 1.8,18.75 c 0.65,0 1.2,0.4 1.4,1 0.25,0.7 0.175,1.5 0.9,1.5 0.45,0 1.45,-1.4 1.55,-1.875 l 0.825,-3.7 c -0.9,0.325 -1.825,0.6 -2.8,0.6 -1.15,0 -2.175,-0.85 -2.175,-2 C 1.5,13.3 2.275,12.5 3.275,12.5 3.925,12.5 4.5,12.9 4.7,13.5 4.95,14.2 4.85,15 5.575,15 6,15 6.925,13.625 7.025,13.175 L 7.875,9.4500002 C 7,9.7500002 6.1,10.025 5.175,10.025 c -1.15,0 -2.2,-0.8499998 -2.2,-1.9999998 0,-0.975 0.8,-1.775 1.8,-1.775 0.65,0 1.2,0.4 1.4,1 0.25,0.7 0.175,1.5 0.9,1.5 0.4,0 1.225,-1.325 1.325,-1.75 l 0.85,-3.775 c -0.85,0.3 -1.7,0.55 -2.6,0.55 -1.15,0 -2.175,-0.85 -2.175,-2 C 4.475,0.8 5.25,0 6.25,0 6.9,0 7.475,0.4 7.675,1 c 0.25,0.7000002 0.15,1.5000002 0.875,1.5000002 0.4,0 1.1,-1.375 1.25,-1.7500002 0.1,-0.275 0.5,-0.275 0.6,0 L 4.45,30.125 c -0.175,0.15 -0.4,0.225 -0.6,0.225 -0.2,0 -0.4,-0.075 -0.575,-0.225 z"
id="path3423" />
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

44
qtgui/resources/svg/rest8.svg

@ -2,19 +2,19 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="1000"
height="1000"
width="6.3000002"
height="11.6"
id="svg3391"
inkscape:version="0.48.4 r9939"
sodipodi:docname="rest8.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="rest8.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -24,17 +24,20 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1041"
inkscape:window-width="1918"
inkscape:window-height="2118"
id="namedview3172"
showgrid="false"
inkscape:zoom="21.360282"
inkscape:cx="2.1888882"
inkscape:cy="1000.2744"
inkscape:window-x="1920"
inkscape:window-y="18"
inkscape:zoom="10.680141"
inkscape:cx="-14.185206"
inkscape:cy="43.023777"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3391" />
inkscape:current-layer="svg3391"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata3399">
<rdf:RDF>
@ -43,14 +46,13 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3397" />
<path
d="m 2.5586062,5.3929035 2.9,-8.175 c -0.875,0.3 -1.75,0.575 -2.675,0.575 -1.15,0 -2.17499999,-0.85 -2.17499999,-2 0,-0.975 0.77499999,-1.775 1.77499999,-1.775 0.65,0 1.225,0.4 1.425,1 0.25,0.7 0.15,1.5 0.875,1.5 0.425,0 1.45,-1.35 1.625,-1.75 0.125,-0.275 0.5,-0.25 0.6,0 l -3.15,10.625 c -0.175,0.15 -0.4,0.225 -0.6,0.225 -0.2,0 -0.425,-0.075 -0.6,-0.225 z"
d="M 1.95,11.375 4.85,3.2 C 3.975,3.5 3.1,3.775 2.175,3.775 1.025,3.775 0,2.925 0,1.775 0,0.8 0.77499999,0 1.775,0 2.425,0 3,0.4 3.2,1 3.45,1.7 3.35,2.5 4.075,2.5 4.5,2.5 5.525,1.15 5.7,0.75 5.825,0.475 6.2,0.5 6.3,0.75 L 3.15,11.375 c -0.175,0.15 -0.4,0.225 -0.6,0.225 -0.2,0 -0.425,-0.075 -0.6,-0.225 z"
id="path3393"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

44
qtgui/resources/svg/restBrevis.svg

@ -1,18 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
height="1000.0"
width="1000.0"
height="6.75"
width="5.4749999"
id="svg3445"
inkscape:version="0.91 r13725"
sodipodi:docname="restBrevis.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="restBrevis.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata3453">
<rdf:RDF>
@ -21,7 +21,6 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@ -36,20 +35,23 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1046"
inkscape:window-width="1920"
inkscape:window-height="2120"
id="namedview3449"
showgrid="false"
inkscape:zoom="21.360282"
inkscape:cx="6.1128518"
inkscape:cy="995.35539"
inkscape:zoom="30.208"
inkscape:cx="5.313162"
inkscape:cy="25.969941"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-maximized="1"
inkscape:current-layer="svg3445" />
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3445"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="rests.M1mensural"
d="m 5.475,6.6869704 0,-6.25000004 -5.475,-0.5 0,6.25000004 z"
d="M 5.475,6.75 V 0.5 L 0,0 v 6.25 z"
id="path3447"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

44
qtgui/resources/svg/restLonga.svg

@ -1,18 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
height="1000.0"
width="1000.0"
height="13"
width="5.4749999"
id="svg3475"
inkscape:version="0.91 r13725"
sodipodi:docname="restLonga.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="restLonga.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata3483">
<rdf:RDF>
@ -21,7 +21,6 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@ -36,20 +35,23 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1046"
inkscape:window-width="1918"
inkscape:window-height="2118"
id="namedview3479"
showgrid="false"
inkscape:zoom="30.208"
inkscape:cx="8.5318575"
inkscape:cy="998.6441"
inkscape:window-x="1920"
inkscape:window-y="30"
inkscape:zoom="3.776"
inkscape:cx="-57.070974"
inkscape:cy="153.20445"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3475" />
inkscape:current-layer="svg3475"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="rests.M2mensural"
d="M 5.475,6.5 5.475,-6 0,-6.5 0,6 Z"
d="M 5.475,13 V 0.5 L 0,0 v 12.5 z"
id="path3477"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

42
qtgui/resources/svg/restMaxima.svg

@ -1,18 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
height="1000.0"
width="1000.0"
height="19.25"
width="5.4749999"
id="svg3505"
inkscape:version="0.91 r13725"
sodipodi:docname="restMaxima.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="restMaxima.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata3513">
<rdf:RDF>
@ -21,7 +21,6 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@ -36,20 +35,23 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1046"
inkscape:window-width="1918"
inkscape:window-height="2118"
id="namedview3509"
showgrid="false"
inkscape:zoom="30.208"
inkscape:cx="-8.3469377"
inkscape:cy="999.28205"
inkscape:zoom="5.3400704"
inkscape:cx="-3.6516372"
inkscape:cy="4.400691"
inkscape:window-x="0"
inkscape:window-y="1080"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3505" />
inkscape:current-layer="svg3505"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="rests.M3mensural"
d="m 5.475,12.84428 0,-18.7500003 -5.475,-0.5 0,18.7500003 z"
d="M 5.475,19.25 V 0.5 L 0,0 v 18.75 z"
id="path3507"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

42
qtgui/resources/svg/scriptsStaccato.svg

@ -2,15 +2,38 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="1000"
height="1000"
id="svg3504">
width="5"
height="2.5"
id="svg3504"
sodipodi:docname="scriptsStaccato.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="42.720563"
inkscape:cx="8.9769416"
inkscape:cy="15.905689"
inkscape:window-width="3838"
inkscape:window-height="2118"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="1"
inkscape:current-layer="svg3504" />
<metadata
id="metadata3512">
<rdf:RDF>
@ -19,13 +42,12 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3510" />
<path
d="M -1.25,0 C -1.25,0.7 -0.7,1.25 0,1.25 0.7,1.25 1.25,0.7 1.25,0 1.25,-0.7 0.7,-1.25 0,-1.25 -0.7,-1.25 -1.25,-0.7 -1.25,0 z"
d="M 2.5,1.25 C 2.5,1.95 3.05,2.5 3.75,2.5 4.45,2.5 5,1.95 5,1.25 5,0.55 4.45,0 3.75,0 3.05,0 2.5,0.55 2.5,1.25 Z"
id="path3506" />
</svg>

Before

Width:  |  Height:  |  Size: 911 B

After

Width:  |  Height:  |  Size: 1.6 KiB

57
qtgui/resources/svg/scriptsTenuto.svg

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
width="8.2990131"
height="2.5086439"
id="svg3504"
sodipodi:docname="scriptsTenuto.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="30.208"
inkscape:cx="10.113215"
inkscape:cy="14.913268"
inkscape:window-width="3838"
inkscape:window-height="2118"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="1"
inkscape:current-layer="svg3504" />
<metadata
id="metadata3512">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3510" />
<rect
style="fill:#000000;stroke:#000000;stroke-width:0.406404;stroke-linejoin:round;paint-order:fill markers stroke"
id="rect238"
width="7.8926091"
height="2.1022398"
x="0.20320199"
y="0.20320199" />
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

Loading…
Cancel
Save