Browse Source

update noteheads and flags svg

master
Nils 2 years ago
parent
commit
ff6cb42377
  1. 23
      qtgui/items.py
  2. 16156
      qtgui/resources.py
  3. 40
      qtgui/resources/svg/flag128.svg
  4. 42
      qtgui/resources/svg/flag128i.svg
  5. 42
      qtgui/resources/svg/flag16.svg
  6. 40
      qtgui/resources/svg/flag16i.svg
  7. 42
      qtgui/resources/svg/flag32.svg
  8. 44
      qtgui/resources/svg/flag32i.svg
  9. 44
      qtgui/resources/svg/flag64.svg
  10. 40
      qtgui/resources/svg/flag64i.svg
  11. 42
      qtgui/resources/svg/flag8.svg
  12. 45
      qtgui/resources/svg/flag8i.svg
  13. 44
      qtgui/resources/svg/noteheadsBlack.svg
  14. 40
      qtgui/resources/svg/noteheadsBrevis.svg
  15. 42
      qtgui/resources/svg/noteheadsHalf.svg
  16. 44
      qtgui/resources/svg/noteheadsLonga.svg
  17. 42
      qtgui/resources/svg/noteheadsMaxima.svg
  18. 46
      qtgui/resources/svg/noteheadsWhole.svg

23
qtgui/items.py

@ -277,7 +277,7 @@ class GuiNote(QtWidgets.QGraphicsItem):
self.noteExportObject = noteExportObject
#self.noteHead = GuiNote.noteheads[noteExportObject["notehead"]]()
self.noteHead = self.createNoteheadGraphicsItem(noteExportObject["notehead"])
self.noteHead.setPos(0, constantsAndConfigs.stafflineGap * noteExportObject["dotOnLine"] / 2)
self.noteHead.setPos(0, constantsAndConfigs.stafflineGap * noteExportObject["dotOnLine"] / 2 - self.noteHead.boundingRect().height()/2)
self.noteHead.setParentItem(self)
#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
@ -296,9 +296,9 @@ class GuiNote(QtWidgets.QGraphicsItem):
upper, lower = noteExportObject["tuplet"]
tuplet = GuiTupletNumber(upper, lower)
if directionRightAndUpwards:
tuplet.setPos(3, -6)
tuplet.setPos(3, -1.5*constantsAndConfigs.stafflineGap)
else:
tuplet.setPos(3, 6)
tuplet.setPos(3, 1.5*constantsAndConfigs.stafflineGap)
tuplet.setParentItem(self.noteHead)
if noteExportObject["durationKeyword"]:
@ -465,17 +465,19 @@ class GuiChord(GuiItem):
#For beam groups the length is different for each member because they get shorter/longer with each ascending/descending note
if stemOrBeam and stemOrBeam[2] > 0:
self.directionRightAndUpwards = False
self.directionRightAndUpwards = False #low notes
stemYOffset = 2
else:
self.directionRightAndUpwards = True
self.directionRightAndUpwards = True #high notes
stemYOffset = -2
#Stem - Both for groups and standalone.
if stemOrBeam: #may be an empty tuple for whole notes and brevis
line = QtWidgets.QGraphicsLineItem(QtCore.QLineF(0, constantsAndConfigs.stafflineGap * stemOrBeam[1]/2, 0, 0)) #x1, y1, x2, y2
line = QtWidgets.QGraphicsLineItem(QtCore.QLineF(0, constantsAndConfigs.stafflineGap * stemOrBeam[1]/2 , 0, 0)) #x1, y1, x2, y2
line.setPen(GuiChord.stemPen)
self.stem = line #store as persistent item. Otherwise qt will delete it.
line.setParentItem(self)
line.setPos(constantsAndConfigs.magicPixel + stemOrBeam[2]*3, constantsAndConfigs.stafflineGap * stemOrBeam[0] / 2) #stem[2] is left/-1 or right/1 shifting. #4 is the middle
line.setPos(constantsAndConfigs.magicPixel + stemOrBeam[2]*3, constantsAndConfigs.stafflineGap * stemOrBeam[0] / 2 + stemYOffset) #stem[2] is left/-1 or right/1 shifting. #4 is the middle
#Flags
if not self.staticItem["beam"] and self.staticItem["flag"]:
@ -483,7 +485,12 @@ class GuiChord(GuiItem):
flag = GuiChord.flags[self.staticItem["flag"]]() #the graphic.
flag.setParentItem(self)
self.flag = flag #store as persistent item. Otherwise qt will delete it.
flag.setPos(self.stem.pos().x(), self.stem.line().p1().y() + self.stem.pos().y()) #we already know where the stem-line is.
if self.directionRightAndUpwards: #high notes?
#self.stem.line().p1().y() are internal local coordinates to the line. It's basically the length
flag.setPos(self.stem.pos().x(), self.stem.line().p1().y() + self.stem.pos().y() - flag.boundingRect().height())
else:
flag.setPos(self.stem.pos().x(), self.stem.line().p1().y() + self.stem.pos().y()) #we already know where the stem-line is.
#Check if this item is the start or end of a beam group and mark it with a textitem (lilypond syntax [ ])
if self.staticItem["beamGroup"]:

16156
qtgui/resources.py

File diff suppressed because it is too large

40
qtgui/resources/svg/flag128.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="33.075001"
width="7.0776367"
id="svg4340"
inkscape:version="0.91 r13725"
sodipodi:docname="flag128.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="flag128.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="metadata4348">
<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="1918"
inkscape:window-height="2118"
id="namedview4344"
showgrid="false"
inkscape:zoom="15.104"
inkscape:cx="16.260679"
inkscape:cy="996.73672"
inkscape:cx="17.180879"
inkscape:cy="1006.9187"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg4340" />
inkscape:current-layer="svg4340"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="flags.d7"
d="m 6.6777542,21.597775 c 0,-0.675 -0.2,-1.275 -0.5,-1.8 0.175,-0.675 0.3,-1.375 0.3,-2.075 0,-0.75 -0.2,-1.425 -0.5,-2.025 0.175,-0.85 0.3,-1.7 0.3,-2.55 0,-0.925 -0.25,-1.75 -0.65,-2.525 0.05,-0.7999999 0.075,-1.6249999 0.075,-2.4249999 0,-0.925 -0.225,-1.7749997 -0.575,-2.5749997 0.05,-0.775 0.05,-1.55 0.05,-2.325 0,-4.7750002 -5.22499996,-7.9750002 -5.22499996,-12.7500002 l 0,-0.225 -0.35,0 0,31.2499998 0.35,0 0,-3.75 c 2.49999996,0.375 5.74999996,1.5 5.74999996,3.775 0,0.425 -0.15,0.875 -0.15,1.3 0,0.3 0.275,0.5 0.55,0.5 0.65,0 0.575,-1.2 0.575,-1.8 z M -0.04724576,-4.4522247 c 1.84999996,2.0999999 4.27499996,4.97500008 4.27499996,7.7500001 0,0.225 -0.025,0.475 -0.025,0.7 -1.7,-2.55 -4.24999996,-4.82499998 -4.24999996,-7.9500001 l 0,-0.5 z m 0,5.5000001 c 2.04999996,1.825 4.77499996,4.425 4.77499996,7.1499997 l 0,1 c -1.875,-2.425 -4.77499996,-4.4499997 -4.77499996,-7.6249997 l 0,-0.525 z m 0,5.5249997 c 2.29999996,1.55 5.34999996,3.8499999 5.34999996,6.5749999 0,0.45 -0.025,0.9 -0.1,1.35 -1.9,-2.375 -5.24999996,-4.1 -5.24999996,-7.2999999 l 0,-0.625 z m 0,5.6249999 c 2.39999996,1.125 5.54999996,2.975 5.54999996,5.525 0,0.375 -0.05,0.725 -0.125,1.1 -1.95,-1.925 -5.42499996,-3.05 -5.42499996,-6 l 0,-0.625 z"
d="m 7.075,31.275 c 0,-0.675 -0.2,-1.275 -0.5,-1.8 0.175,-0.675 0.3,-1.375 0.3,-2.075 0,-0.75 -0.2,-1.425 -0.5,-2.025 0.175,-0.85 0.3,-1.7 0.3,-2.55 0,-0.925 -0.25,-1.75 -0.65,-2.525 C 6.075,19.5 6.1,18.675 6.1,17.875 6.1,16.95 5.875,16.1 5.525,15.3 5.575,14.525 5.575,13.75 5.575,12.975 5.575,8.2 0.35,5 0.35,0.225 V 0 H 0 V 31.25 H 0.35 V 27.5 c 2.5,0.375 5.75,1.5 5.75,3.775 0,0.425 -0.15,0.875 -0.15,1.3 0,0.3 0.275,0.5 0.55,0.5 0.65,0 0.575,-1.2 0.575,-1.8 z M 0.35,5.2250001 C 2.2,7.325 4.625,10.2 4.625,12.975 4.625,13.2 4.6,13.45 4.6,13.675 2.9,11.125 0.35,8.8500002 0.35,5.7250001 Z m 0,5.4999999 c 2.05,1.825 4.775,4.425 4.775,7.15 v 1 C 3.25,16.45 0.35,14.425 0.35,11.25 Z m 0,5.525 c 2.3,1.55 5.35,3.85 5.35,6.575 0,0.45 -0.025,0.9 -0.1,1.35 -1.9,-2.375 -5.25,-4.1 -5.25,-7.3 z m 0,5.625 C 2.75,23 5.9,24.85 5.9,27.4 5.9,27.775 5.85,28.125 5.775,28.5 3.825,26.575 0.35,25.45 0.35,22.5 Z"
id="path4342"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

42
qtgui/resources/svg/flag128i.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="39.325001"
width="5.5749998"
id="svg4350"
inkscape:version="0.91 r13725"
sodipodi:docname="flag128i.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="flag128i.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="metadata4358">
<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="1918"
inkscape:window-height="2118"
id="namedview4354"
showgrid="false"
inkscape:zoom="42.720563"
inkscape:cx="15.615802"
inkscape:cy="989.49518"
inkscape:window-x="1920"
inkscape:window-y="30"
inkscape:cx="16.139769"
inkscape:cy="1004.446"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg4350" />
inkscape:current-layer="svg4350"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="flags.u7"
d="m 0.02297803,19.218031 0,-0.475 c 0,-2.85 2.17499997,-5 3.67499997,-7.375 0.1,0.4 0.15,0.825 0.15,1.225 0,2.425 -2.175,4.85 -3.82499997,6.625 z m 0,5.325 c 0,-4.45 4.79999997,-7.5 4.79999997,-11.95 0,-0.825 -0.15,-1.625 -0.45,-2.4 0.425,-0.9000004 0.7,-1.8250004 0.7,-2.85 0,-1.025 -0.25,-2.0499996 -0.7,-2.9749996 0.425,-0.875 0.7,-1.8000004 0.7,-2.8250004 0,-1.02500002 -0.25,-2.05000002 -0.7,-2.975 0.425,-0.875 0.7,-1.825 0.7,-2.85 0,-0.875 -0.325,-1.725 -0.85,-2.425 0.6,-1.05 1.025,-2.125 1.025,-3.375 0,-1.525 -0.4,-3.025 -1.05,-4.425 -0.1,-0.175 -0.275,-0.275 -0.45,-0.275 -0.3,0 -0.6,0.25 -0.525,0.625 0.65,1.275 1.05,2.65 1.05,4.075 0,2.375 -2.425,4.55 -4.24999997,6.075 l 0,-2.7 -0.35,0 0,31.25 0.35,0 z m 0,-11.125 0,-0.5 c 0,-2.875 2.22499997,-5.05 3.72499997,-7.4499996 0.225,0.5999996 0.35,1.2249996 0.35,1.8749996 0,2.3249996 -2.325,4.525 -4.07499997,6.075 z m 0,-5.8 0,-0.5 c 0,-2.8749996 2.22499997,-5.05 3.72499997,-7.45000002 0.225,0.6 0.35,1.225 0.35,1.87500002 0,2.3250004 -2.325,4.525 -4.07499997,6.075 z m 0,-5.825 0,-0.5 c 0,-2.775 2.09999997,-4.85 3.62499997,-7.125 0.275,0.475 0.45,1 0.45,1.55 0,2.325 -2.325,4.52499998 -4.07499997,6.075 z"
d="m 0.35,34 v -0.475 c 0,-2.85 2.175,-5 3.675,-7.375 0.1,0.4 0.15,0.825 0.15,1.225 C 4.175,29.8 2,32.225 0.35,34 Z m 0,5.325 c 0,-4.45 4.8,-7.5 4.8,-11.95 C 5.15,26.55 5,25.75 4.7,24.975 5.125,24.075 5.4,23.15 5.4,22.125 5.4,21.1 5.15,20.075 4.7,19.15 5.125,18.275 5.4,17.35 5.4,16.325 5.4,15.3 5.15,14.275 4.7,13.35 5.125,12.475 5.4,11.525 5.4,10.5 5.4,9.625 5.075,8.775 4.55,8.075 5.15,7.025 5.575,5.95 5.575,4.7 5.575,3.175 5.175,1.675 4.525,0.275 4.425,0.1 4.25,0 4.075,0 3.775,0 3.475,0.25 3.55,0.625 4.2,1.9 4.6,3.275 4.6,4.7 4.6,7.075 2.175,9.25 0.35,10.775 v -2.7 H 0 v 31.25 z m 0,-11.125 v -0.5 c 0,-2.875 2.225,-5.05 3.725,-7.45 0.225,0.6 0.35,1.225 0.35,1.875 0,2.325 -2.325,4.525 -4.075,6.075 z m 0,-5.8 v -0.5 c 0,-2.875 2.225,-5.05 3.725,-7.45 0.225,0.6 0.35,1.225 0.35,1.875 0,2.325 -2.325,4.525 -4.075,6.075 z m 0,-5.825 v -0.5 c 0,-2.775 2.1,-4.85 3.625,-7.125 0.275,0.475 0.45,1 0.45,1.55 0,2.325 -2.325,4.525 -4.075,6.075 z"
id="path4352"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

42
qtgui/resources/svg/flag16.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="18.825001"
width="7.0749998"
id="svg3346"
inkscape:version="0.48.4 r9939"
sodipodi:docname="flags.d4.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="flag16.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="metadata3354">
<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="namedview3350"
showgrid="false"
inkscape:zoom="4"
inkscape:cx="-57.95172"
inkscape:cy="1005.6643"
inkscape:window-x="1920"
inkscape:window-y="18"
inkscape:cx="-58.875"
inkscape:cy="1006.625"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3346" />
inkscape:current-layer="svg3346"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="flags.d4"
d="m 0.35,5 c 2.325,1.325 5.4,3.375 5.4,6 0,0.625 -0.125,1.25 -0.35,1.825 C 3.4,10.55 0.35,8.75 0.35,5.625 V 5 z m 6.725,11.625 c 0,-1.1 -0.4,-2.05 -0.975,-2.9 C 6.5,12.875 6.725,11.95 6.725,11 6.725,6.45 0.35,4.55 0.35,0 H 0 v 12.5 h 0.35 v -1.875 c 2.475,1.275 5.75,3.3 5.75,6 C 6.1,17.175 5.975,17.7 5.775,18.2 5.7,18.575 6,18.825 6.3,18.825 c 0.7,0 0.775,-1.6 0.775,-2.2 z"
d="m 0.35,5 c 2.325,1.325 5.4,3.375 5.4,6 0,0.625 -0.125,1.25 -0.35,1.825 C 3.4,10.55 0.35,8.75 0.35,5.625 Z m 6.725,11.625 c 0,-1.1 -0.4,-2.05 -0.975,-2.9 C 6.5,12.875 6.725,11.95 6.725,11 6.725,6.45 0.35,4.55 0.35,0 H 0 v 12.5 h 0.35 v -1.875 c 2.475,1.275 5.75,3.3 5.75,6 C 6.1,17.175 5.975,17.7 5.775,18.2 5.7,18.575 6,18.825 6.3,18.825 c 0.7,0 0.775,-1.6 0.775,-2.2 z"
id="path3348"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

40
qtgui/resources/svg/flag16i.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="18.825001"
width="7.0749998"
id="svg3346"
inkscape:version="0.91 r13725"
sodipodi:docname="flag16i.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="flag16i.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="metadata3354">
<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="namedview3350"
showgrid="false"
inkscape:zoom="16"
inkscape:cx="12.060729"
inkscape:cy="1000.4471"
inkscape:cx="12.78125"
inkscape:cy="1008.9062"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3346" />
inkscape:current-layer="svg3346"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="flags.d4"
d="m -0.10266511,5.7253201 c 2.32499981,-1.325 5.39999981,-3.375 5.39999981,-5.99999995 0,-0.62499998 -0.125,-1.24999995 -0.35,-1.82499995 -2,2.27499996 -5.04999981,4.0749999 -5.04999981,7.1999999 l 0,0.625 z m 6.72499981,-11.625 c 0,1.1 -0.4,2.05 -0.975,2.9 0.4,0.85 0.625,1.7750001 0.625,2.72500005 0,4.54999995 -6.37499981,6.44999995 -6.37499981,11.00000085 l -0.35,0 0,-12.5000008 0.35,0 0,1.87499996 C 2.3723347,-1.1746798 5.6473347,-3.1996799 5.6473347,-5.8996799 c 0,-0.55 -0.125,-1.075 -0.325,-1.575 -0.075,-0.375 0.225,-0.625 0.525,-0.625 0.7,0 0.775,1.6 0.775,2.2 z"
d="m 0.35,13.825 c 2.3249998,-1.325 5.3999998,-3.375 5.3999998,-6 0,-0.6249999 -0.125,-1.2499999 -0.35,-1.8249999 C 3.3999998,8.2750001 0.35,10.075 0.35,13.2 Z M 7.0749998,2.2 c 0,1.1 -0.4,2.05 -0.975,2.9 0.4,0.85 0.625,1.7750001 0.625,2.725 0,4.55 -6.3749998,6.45 -6.3749998,11.000001 H 0 V 6.3250001 h 0.35 v 1.875 C 2.8249998,6.9250001 6.0999998,4.9 6.0999998,2.2 c 0,-0.55 -0.125,-1.075 -0.325,-1.575 -0.075,-0.375 0.225,-0.625 0.525,-0.625 0.7,0 0.775,1.6 0.775,2.2 z"
id="path3348"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

42
qtgui/resources/svg/flag32.svg

@ -1,14 +1,37 @@
<?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"
id="svg3858"
width="1000.0"
height="1000.0"
version="1.1">
width="7.0749998"
height="24.325001"
version="1.1"
sodipodi:docname="flag32.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="namedview31"
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="506.35593"
inkscape:window-width="1920"
inkscape:window-height="2120"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3858" />
<metadata
id="metadata3866">
<rdf:RDF>
@ -17,7 +40,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>
@ -25,6 +47,6 @@
id="defs3864" />
<path
id="path3860"
d="m 0.35,5.2917931 c 2.25,1.425 5.225,3.575 5.225,6.1749999 0,0.475 -0.125,0.95 -0.3,1.375 C 3.35,10.566793 0.35,8.7667931 0.35,5.6667931 l 0,-0.375 z M 7.075,22.191793 c 0,-1.1 -0.375,-2.025 -0.95,-2.875 0.475,-0.85 0.75,-1.775 0.75,-2.75 0,-1.075 -0.375,-2 -0.925,-2.85 0.375,-0.7 0.6,-1.475 0.6,-2.25 0,-4.6249999 -6.2,-6.7999999 -6.2,-11.4249999 l -0.35,0 0,18.7499999 0.35,0 0,-2.25 c 2.475,1.15 5.75,3.025 5.75,5.65 0,0.55 -0.125,1.05 -0.325,1.55 -0.075,0.375 0.225,0.625 0.525,0.625 0.7,0 0.775,-1.575 0.775,-2.175 z m -6.725,-11.275 c 2.4,1.175 5.55,3.075 5.55,5.65 0,0.675 -0.175,1.3 -0.45,1.9 -2,-2.275 -5.1,-4.05 -5.1,-7.175 l 0,-0.375 z"
d="m 0.35,5.25 c 2.25,1.425 5.225,3.575 5.225,6.175 0,0.475 -0.125,0.95 -0.3,1.375 C 3.35,10.525 0.35,8.725 0.35,5.625 Z m 6.725,16.9 c 0,-1.1 -0.375,-2.025 -0.95,-2.875 0.475,-0.85 0.75,-1.775 0.75,-2.75 0,-1.075 -0.375,-2 -0.925,-2.85 0.375,-0.7 0.6,-1.475 0.6,-2.25 C 6.55,6.8 0.35,4.625 0.35,0 H 0 V 18.75 H 0.35 V 16.5 C 2.825,17.65 6.1,19.525 6.1,22.15 6.1,22.7 5.975,23.2 5.775,23.7 5.7,24.075 6,24.325 6.3,24.325 7,24.325 7.075,22.75 7.075,22.15 Z M 0.35,10.875 c 2.4,1.175 5.55,3.075 5.55,5.65 0,0.675 -0.175,1.3 -0.45,1.9 -2,-2.275 -5.1,-4.05 -5.1,-7.175 z"
glyph-name="flags.d5" />
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

44
qtgui/resources/svg/flag32i.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="26.825001"
width="5.5749998"
id="svg4021"
inkscape:version="0.91 r13725"
sodipodi:docname="flag32i.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="flag32i.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="metadata4029">
<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="namedview4025"
showgrid="false"
inkscape:zoom="30.208"
inkscape:cx="-5.1876193"
inkscape:cy="993.98106"
inkscape:window-x="1920"
inkscape:window-y="1080"
inkscape:zoom="7.552"
inkscape:cx="43.895657"
inkscape:cy="98.053496"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg4021" />
inkscape:current-layer="svg4021"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="flags.u5"
d="m 0.01896186,10.917929 0,-0.1 c 0,-2.8500006 2.20000004,-5.0000007 3.70000004,-7.3500007 0.075,0.3 0.125,0.6 0.125,0.925 0,2.4000001 -2.175,4.7750005 -3.82500004,6.5250007 z m 0,5.325 c 0,-4.425 4.80000004,-7.4250002 4.80000004,-11.8500007 0,-0.7 -0.15,-1.4 -0.45,-2.05 0.425,-0.875 0.7,-1.80000009 0.7,-2.82500011 0,-0.89999989 -0.2,-1.77499989 -0.575,-2.59999979 0.45,-0.875 0.75,-1.8250001 0.75,-2.8500001 0,-1.525 -0.4,-3 -1.05,-4.3749993 -0.1,-0.175 -0.275,-0.275 -0.45,-0.275 -0.3,0 -0.6,0.25 -0.525,0.6249993 0.65,1.25 1.05,2.625 1.05,4.025 0,2.3500001 -2.425,4.5 -4.25000004,5.99999989 l 0,-2.57499989 -0.35,0 0,18.7500007 0.35,0 z m 0,-10.7500007 0,-0.125 c 0,-2.875 2.27500004,-4.97500009 3.82500004,-7.35 0.15,0.475 0.25,0.99999991 0.25,1.49999989 0,2.30000011 -2.325,4.45000011 -4.07500004,5.97500011 z"
d="m 0.35,21.5 v -0.1 c 0,-2.850001 2.2,-5.000001 3.7,-7.350001 0.075,0.3 0.125,0.6 0.125,0.925 C 4.175,17.374999 2,19.75 0.35,21.5 Z m 0,5.325 c 0,-4.425 4.8,-7.425 4.8,-11.850001 0,-0.7 -0.15,-1.4 -0.45,-2.05 0.425,-0.875 0.7,-1.8 0.7,-2.825 0,-0.8999997 -0.2,-1.7749997 -0.575,-2.5999996 0.45,-0.875 0.75,-1.8250001 0.75,-2.8500001 0,-1.525 -0.4,-3 -1.05,-4.3749993 C 4.425,0.1 4.25,0 4.075,0 c -0.3,0 -0.6,0.25 -0.525,0.6249993 0.65,1.25 1.05,2.625 1.05,4.025 0,2.3500001 -2.425,4.5 -4.25,5.9999997 V 8.0749993 H 0 V 26.825 Z m 0,-10.750001 v -0.125 c 0,-2.875 2.275,-4.975 3.825,-7.3499997 0.15,0.475 0.25,0.9999999 0.25,1.4999997 0,2.3 -2.325,4.45 -4.075,5.975 z"
id="path4023"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

44
qtgui/resources/svg/flag64.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="27.450001"
width="7.0776367"
id="svg3868"
inkscape:version="0.91 r13725"
sodipodi:docname="flag64.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="flag64.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="metadata3876">
<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="1918"
inkscape:window-height="2118"
id="namedview3872"
showgrid="false"
inkscape:zoom="21.360282"
inkscape:cx="20.305445"
inkscape:cy="1013.4566"
inkscape:window-x="1920"
inkscape:window-y="30"
inkscape:zoom="0.118"
inkscape:cx="1775.4237"
inkscape:cy="572.03389"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg3868" />
inkscape:current-layer="svg3868"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="flags.d6"
d="m 6.1854986,20.324093 c 0,-0.675 -0.2,-1.25 -0.5,-1.775 0.175,-0.675 0.3,-1.4 0.3,-2.1 0,-0.75 -0.2,-1.425 -0.5,-2.025 0.175,-0.85 0.3,-1.7 0.3,-2.55 0,-0.925 -0.25,-1.75 -0.65,-2.5249998 0.05,-0.8 0.075,-1.625 0.075,-2.425 0,-4.7000004 -5.74999998,-7.45000037 -5.74999998,-12.1500003 l 0,-0.1 -0.35,0 0,25.0000001 0.35,0 0,-3.125 c 2.49999998,0.375 5.74999998,1.5 5.74999998,3.775 0,0.425 -0.15,0.875 -0.15,1.3 0,0.3 0.275,0.5 0.55,0.5 0.65,0 0.575,-1.2 0.575,-1.8 z M -0.53950138,-0.22590717 C 1.5104986,1.5990928 4.2354986,4.1990928 4.2354986,6.9240932 l 0,1 c -1.875,-2.4250007 -4.77499998,-4.4500004 -4.77499998,-7.62500037 l 0,-0.525 z m 0,5.52499967 c 2.29999998,1.550001 5.34999998,3.8500007 5.34999998,6.5750005 0,0.45 -0.025,0.9 -0.1,1.35 -1.9,-2.375 -5.24999998,-4.0999998 -5.24999998,-7.2999995 l 0,-0.625001 z m 0,5.6250005 c 2.39999998,1.125 5.54999998,2.975 5.54999998,5.525 0,0.375 -0.05,0.725 -0.125,1.1 -1.95,-1.925 -5.42499998,-3.05 -5.42499998,-6 l 0,-0.625 z"
d="m 7.075,25.65 c 0,-0.675 -0.2,-1.25 -0.5,-1.775 0.175,-0.675 0.3,-1.4 0.3,-2.1 0,-0.75 -0.2,-1.425 -0.5,-2.025 0.175,-0.85 0.3,-1.7 0.3,-2.55 0,-0.925 -0.25,-1.75 -0.65,-2.525 C 6.075,13.875 6.1,13.05 6.1,12.25 6.1,7.5499999 0.35,4.7999999 0.35,0.1 V 0 H 0 v 25 h 0.35 v -3.125 c 2.5,0.375 5.75,1.5 5.75,3.775 0,0.425 -0.15,0.875 -0.15,1.3 0,0.3 0.275,0.5 0.55,0.5 0.65,0 0.575,-1.2 0.575,-1.8 z M 0.35,5.0999999 c 2.05,1.825 4.775,4.425 4.775,7.1500001 v 1 C 3.25,10.825 0.35,8.7999999 0.35,5.6249999 Z m 0,5.5250001 c 2.3,1.550001 5.35,3.85 5.35,6.575 0,0.45 -0.025,0.9 -0.1,1.35 -1.9,-2.375 -5.25,-4.1 -5.25,-7.299999 z m 0,5.625 c 2.4,1.125 5.55,2.975 5.55,5.525 0,0.375 -0.05,0.725 -0.125,1.1 -1.95,-1.925 -5.425,-3.05 -5.425,-6 z"
id="path3870"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

40
qtgui/resources/svg/flag64i.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="33.075001"
width="5.5749998"
id="svg4188"
inkscape:version="0.91 r13725"
sodipodi:docname="flag64i.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="flag64i.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="metadata4196">
<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="namedview4192"
showgrid="false"
inkscape:zoom="30.208"
inkscape:cx="-6.5278404"
inkscape:cy="999.41198"
inkscape:cx="-6.1738612"
inkscape:cy="1010.0801"
inkscape:window-x="0"
inkscape:window-y="1080"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg4188" />
inkscape:current-layer="svg4188"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="flags.u6"
d="m -0.04724576,17.153445 0,-0.3 c 0,-2.875 2.19999996,-5.05 3.69999996,-7.4500001 0.1,0.325 0.125,0.6750001 0.125,1.0250001 0,2.45 -2.175,4.925 -3.82499996,6.725 z m 0,5.325 c 0,-4.475 4.79999996,-7.575 4.79999996,-12.05 0,-0.7500001 -0.15,-1.4750001 -0.45,-2.1750001 0.425,-0.9 0.7,-1.8500002 0.7,-2.8750002 0,-0.975 -0.25,-1.925 -0.7,-2.775 0.425,-0.9 0.7,-1.82500001 0.7,-2.85000001 0,-0.82499999 -0.325,-1.59999999 -0.85,-2.22499999 0.6,-1.05 1.025,-2.15 1.025,-3.4 0,-1.55 -0.4,-3.05 -1.05,-4.4499997 -0.1,-0.175 -0.275,-0.275 -0.45,-0.275 -0.3,0 -0.6,0.25 -0.525,0.6249997 0.65,1.275 1.05,2.675 1.05,4.1 0,2.375 -2.425,4.625 -4.24999996,6.17499999 l 0,-2.82499999 -0.35,0 0,25.0000003 0.35,0 z m 0,-10.95 0,-0.3 c 0,-2.9250001 2.24999996,-5.1250003 3.74999996,-7.5500003 0.225,0.525 0.325,1.125 0.325,1.7 0,2.3500002 -2.325,4.5750002 -4.07499996,6.1500003 z m 0,-5.6000003 0,-0.325 c 0,-2.8 2.14999996,-4.92500001 3.67499996,-7.225 0.275,0.4 0.4,0.87499999 0.4,1.37499999 0,2.35000001 -2.325,4.60000001 -4.07499996,6.17500001 z"
d="m 0.35,27.75 v -0.3 c 0,-2.875 2.2,-5.05 3.7,-7.45 0.1,0.325 0.125,0.675 0.125,1.025 0,2.45 -2.175,4.925 -3.825,6.725 z m 0,5.325 C 0.35,28.6 5.15,25.5 5.15,21.025 5.15,20.275 5,19.55 4.7,18.85 5.125,17.95 5.4,17 5.4,15.975 5.4,15 5.15,14.05 4.7,13.2 5.125,12.3 5.4,11.375 5.4,10.35 5.4,9.5249997 5.075,8.7499997 4.55,8.1249997 c 0.6,-1.05 1.025,-2.15 1.025,-3.4 0,-1.55 -0.4,-3.05 -1.05,-4.4499997 C 4.425,0.1 4.25,0 4.075,0 c -0.3,0 -0.6,0.25 -0.525,0.6249997 0.65,1.275 1.05,2.675 1.05,4.1 0,2.375 -2.425,4.625 -4.25,6.1750003 V 8.0749997 H 0 V 33.075 Z m 0,-10.95 v -0.3 c 0,-2.925 2.25,-5.125 3.75,-7.55 0.225,0.525 0.325,1.125 0.325,1.7 0,2.35 -2.325,4.575 -4.075,6.15 z m 0,-5.6 V 16.2 c 0,-2.8 2.15,-4.925 3.675,-7.2250003 0.275,0.4 0.4,0.875 0.4,1.3750003 0,2.35 -2.325,4.6 -4.075,6.175 z"
id="path4190"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

42
qtgui/resources/svg/flag8.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="svg2">
width="7.0749998"
height="18.075001"
id="svg2"
sodipodi:docname="flag8.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="namedview52"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="3.776"
inkscape:cx="34.825212"
inkscape:cy="37.473517"
inkscape:window-width="1920"
inkscape:window-height="2120"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg2" />
<metadata
id="metadata10">
<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="defs8" />
<path
d="M 0.35,6.25 C 2.825,7.725 6.1,10 6.1,12.825 c 0,1.625 -0.525,3.225 -1.35,4.625 -0.075,0.375 0.225,0.625 0.525,0.625 0.175,0 0.35,-0.1 0.45,-0.275 0.825,-1.525 1.35,-3.225 1.35,-4.975 C 7.075,7.7 0.35,5.125 0.35,0 H 0 v 6.25 h 0.35 z"
d="M 0.35,6.25 C 2.825,7.725 6.1,10 6.1,12.825 c 0,1.625 -0.525,3.225 -1.35,4.625 -0.075,0.375 0.225,0.625 0.525,0.625 0.175,0 0.35,-0.1 0.45,-0.275 0.825,-1.525 1.35,-3.225 1.35,-4.975 C 7.075,7.7 0.35,5.125 0.35,0 H 0 v 6.25 z"
id="path4" />
</svg>

Before

Width:  |  Height:  |  Size: 1009 B

After

Width:  |  Height:  |  Size: 1.7 KiB

45
qtgui/resources/svg/flag8i.svg

@ -1,18 +1,19 @@
<?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="18.075001"
width="7.0750003"
id="svg2"
inkscape:version="0.48.4 r9939"
sodipodi:docname="flag8i.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="flag8i.svg"
viewBox="0 0 7.075 18.075"
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="metadata10">
<rdf:RDF>
@ -21,7 +22,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 +36,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="namedview6"
showgrid="false"
inkscape:zoom="21.360282"
inkscape:cx="22.411917"
inkscape:cy="995.91989"
inkscape:window-x="1920"
inkscape:window-y="18"
inkscape:zoom="12.911479"
inkscape:cx="-11.114141"
inkscape:cy="14.28961"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg2" />
inkscape:current-layer="svg2"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="flags.d3"
d="M -0.07134228,-0.07030621 C 2.4036578,-1.5453063 5.6786578,-3.8203063 5.6786578,-6.6453063 c 0,-1.6250005 -0.525,-3.2250004 -1.35,-4.6250007 -0.075,-0.375 0.225,-0.625 0.525,-0.625 0.175,0 0.35,0.1 0.45,0.275 0.825,1.525 1.35,3.2250002 1.35,4.9750007 0,5.125 -6.72500008,7.7000001 -6.72500008,12.825 h -0.35 v -6.24999991 h 0.35 z"
d="m 0.35,11.825001 c 2.4750001,-1.475 5.7500001,-3.75 5.7500001,-6.575 0,-1.625001 -0.525,-3.225001 -1.35,-4.625001 -0.075,-0.375 0.225,-0.625 0.525,-0.625 0.175,0 0.35,0.1 0.45,0.275 0.825,1.525 1.35,3.225 1.35,4.975001 0,5.125 -6.7250001,7.7 -6.7250001,12.825 H 0 v -6.25 z"
id="path4"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

44
qtgui/resources/svg/noteheadsBlack.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="8.2250004"
height="6.8000002"
id="svg2983"
inkscape:version="0.48.4 r9939"
sodipodi:docname="noteheadsBlack.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="noteheadsBlack.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="15.104"
inkscape:cx="3.0502115"
inkscape:cy="993.27007"
inkscape:window-x="1920"
inkscape:window-y="18"
inkscape:zoom="0.944"
inkscape:cx="289.72458"
inkscape:cy="976.16525"
inkscape:window-x="0"
inkscape:window-y="1090"
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,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="defs2989" />
<path
d="m 5.3351694,-3.4 c 1.325,0 2.625,0.65 2.625,2.15 0,1.775 -1.425,3.05 -2.6,3.75 -0.9,0.55 -1.95,0.9 -3,0.9 -1.3249999,0 -2.62499991,-0.65 -2.62499991,-2.15 0,-1.775 1.45000001,-3.05 2.62499991,-3.75 0.9,-0.55 1.925,-0.9 2.975,-0.9 z"
d="m 5.5999999,0 c 1.325,0 2.625,0.65 2.625,2.15 0,1.775 -1.425,3.05 -2.6,3.75 -0.9,0.55 -1.95,0.9 -3,0.9 C 1.3,6.8 0,6.15 0,4.65 0,2.875 1.45,1.6 2.6249999,0.9 c 0.9,-0.55 1.925,-0.9 2.975,-0.9 z"
id="path2985"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

40
qtgui/resources/svg/noteheadsBrevis.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="9.1499996"
width="12.5"
id="svg5210"
inkscape:version="0.91 r13725"
sodipodi:docname="noteheadsBrevis.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="noteheadsBrevis.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="metadata5218">
<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="1048"
id="namedview5214"
showgrid="false"
inkscape:zoom="1.888"
inkscape:cx="202.48505"
inkscape:cy="782.26312"
inkscape:cx="204.18432"
inkscape:cy="788.40042"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg5210" />
inkscape:current-layer="svg5210"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="noteheads.sM1neomensural"
d="m 1.3,-0.8 9.9,0 c 0.3,0 0.55,0.225 0.55,0.525 l 0,0.55 c 0,0.3 -0.25,0.525 -0.55,0.525 l -9.9,0 C 1,0.8 0.75,0.575 0.75,0.275 l 0,-0.55 C 0.75,-0.575 1,-0.8 1.3,-0.8 Z m 9.9,-2.6 -9.9,0 C 0.95,-3.4 0.75,-3.8 0.75,-4.2 0.75,-4.45 0.575,-4.575 0.375,-4.575 0.175,-4.575 0,-4.45 0,-4.2 L 0,4.2 C 0,4.45 0.175,4.575 0.375,4.575 0.575,4.575 0.75,4.45 0.75,4.2 0.75,3.8 0.95,3.4 1.3,3.4 l 9.9,0 c 0.35,0 0.55,0.4 0.55,0.8 0,0.25 0.175,0.375 0.375,0.375 0.2,0 0.375,-0.125 0.375,-0.375 l 0,-8.4 c 0,-0.25 -0.175,-0.375 -0.375,-0.375 -0.2,0 -0.375,0.125 -0.375,0.375 0,0.4 -0.2,0.8 -0.55,0.8 z"
d="m 1.3,3.775 h 9.9 c 0.3,0 0.55,0.225 0.55,0.525 v 0.55 c 0,0.3 -0.25,0.525 -0.55,0.525 H 1.3 C 1,5.375 0.75,5.15 0.75,4.85 V 4.3 C 0.75,4 1,3.775 1.3,3.775 Z m 9.9,-2.6 H 1.3 c -0.35,0 -0.55,-0.4 -0.55,-0.8 C 0.75,0.125 0.575,0 0.375,0 0.175,0 0,0.125 0,0.375 v 8.4 c 0,0.25 0.175,0.375 0.375,0.375 0.2,0 0.375,-0.125 0.375,-0.375 0,-0.4 0.2,-0.8 0.55,-0.8 h 9.9 c 0.35,0 0.55,0.4 0.55,0.8 0,0.25 0.175,0.375 0.375,0.375 0.2,0 0.375,-0.125 0.375,-0.375 v -8.4 C 12.5,0.125 12.325,0 12.125,0 c -0.2,0 -0.375,0.125 -0.375,0.375 0,0.4 -0.2,0.8 -0.55,0.8 z"
id="path5212"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

42
qtgui/resources/svg/noteheadsHalf.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="svg2">
width="8.6499996"
height="6.8000002"
id="svg2"
sodipodi:docname="noteheadsHalf.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="namedview16"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="10.680141"
inkscape:cx="36.188662"
inkscape:cy="32.724288"
inkscape:window-width="1920"
inkscape:window-height="1050"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg2" />
<metadata
id="metadata10">
<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="defs8" />
<path
d="m 7.95,-1.675 c 0,-0.625 -0.525,-1.05 -1.075,-1.05 -0.1,0 -0.225,0.025 -0.325,0.05 C 5.775,-2.45 4.575,-1.65 3.625,-1.05 2.675,-0.45 1.5,0.325 0.975,0.95 0.8,1.15 0.7,1.425 0.7,1.675 c 0,0.625 0.525,1.05 1.075,1.05 0.1,0 0.2,-0.025 0.3,-0.05 C 2.85,2.45 4.05,1.65 5,1.05 5.95,0.45 7.15,-0.325 7.675,-0.95 7.85,-1.15 7.95,-1.425 7.95,-1.675 z M 6.675,-3.4 c 1.1,0 1.975,0.5 1.975,1.7 0,0.475 -0.15,0.95 -0.3,1.425 C 8.025,0.65 7.55,1.55 6.725,2.1 5.375,3 3.85,3.4 1.975,3.4 0.875,3.4 0,2.9 0,1.7 0,1.225 0.15,0.75 0.3,0.275 0.625,-0.65 1.075,-1.55 1.9,-2.1 3.25,-3 4.8,-3.4 6.675,-3.4 z"
d="M 7.95,1.725 C 7.95,1.1 7.425,0.675 6.875,0.675 6.775,0.675 6.65,0.7 6.55,0.725 5.775,0.95 4.575,1.75 3.625,2.35 2.675,2.95 1.5,3.725 0.975,4.35 0.8,4.55 0.7,4.825 0.7,5.075 c 0,0.625 0.525,1.05 1.075,1.05 0.1,0 0.2,-0.025 0.3,-0.05 C 2.85,5.85 4.05,5.05 5,4.45 5.95,3.85 7.15,3.075 7.675,2.45 7.85,2.25 7.95,1.975 7.95,1.725 Z M 6.675,0 C 7.775,0 8.65,0.5 8.65,1.7 8.65,2.175 8.5,2.65 8.35,3.125 8.025,4.05 7.55,4.95 6.725,5.5 5.375,6.4 3.85,6.8 1.975,6.8 0.875,6.8 0,6.3 0,5.1 0,4.625 0.15,4.15 0.3,3.675 0.625,2.75 1.075,1.85 1.9,1.3 3.25,0.4 4.8,0 6.675,0 Z"
id="path4" />
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

44
qtgui/resources/svg/noteheadsLonga.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="15.475"
width="12.95"
id="svg5230"
inkscape:version="0.91 r13725"
sodipodi:docname="noteheadsLonga.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="noteheadsLonga.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="metadata5238">
<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="692"
id="namedview5234"
showgrid="false"
inkscape:zoom="21.360282"
inkscape:cx="21.508575"
inkscape:cy="996.82559"
inkscape:window-x="1920"
inkscape:window-y="30"
inkscape:zoom="0.11313708"
inkscape:cx="9780.1707"
inkscape:cy="4317.7708"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg5230" />
inkscape:current-layer="svg5230"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="noteheads.sM2neomensural"
d="m 1.2531841,-0.773 9.8999999,0 c 0.3,0 0.55,0.22500003 0.55,0.52500003 l 0,0.55 c 0,0.3 -0.25,0.525 -0.55,0.525 l -9.8999999,0 c -0.29999996,0 -0.54999996,-0.225 -0.54999996,-0.525 l 0,-0.55 c 0,-0.3 0.25,-0.52500003 0.54999996,-0.52500003 z m 9.8999999,-2.6 -9.8999999,0 c -0.34999996,0 -0.54999996,-0.4 -0.54999996,-0.8 0,-0.25 -0.175,-0.375 -0.375,-0.375 -0.2,0 -0.375,0.125 -0.375,0.375 l 0,8.4 c 0,0.25 0.175,0.375 0.375,0.375 0.2,0 0.375,-0.125 0.375,-0.375 0,-0.4 0.2,-0.8 0.54999996,-0.8 l 9.8999999,0 c 0.35,0 0.55,0.4 0.55,0.8 0,0.25 0.175,0.375 0.375,0.375 0.2,0 0.375,-0.125 0.375,-0.375 l 0,-8.4 c 0.175,-2.075 0.45,-4.2 0.45,-6.275 0,-0.3 -0.225,-0.425 -0.45,-0.425 -0.225,0 -0.425,0.125 -0.45,0.425 l -0.3,6.25 0,0.025 c 0,0.4 -0.2,0.8 -0.55,0.8 z"
d="m 1.3,10.1 h 9.9 c 0.3,0 0.55,0.225 0.55,0.525 v 0.55 c 0,0.3 -0.25,0.525 -0.55,0.525 H 1.3 C 1,11.7 0.75,11.475 0.75,11.175 v -0.55 C 0.75,10.325 1,10.1 1.3,10.1 Z M 11.2,7.5 H 1.3 C 0.95,7.5 0.75,7.1 0.75,6.7 0.75,6.45 0.575,6.325 0.375,6.325 0.175,6.325 0,6.45 0,6.7 v 8.4 c 0,0.25 0.175,0.375 0.375,0.375 0.2,0 0.375,-0.125 0.375,-0.375 0,-0.4 0.2,-0.8 0.55,-0.8 h 9.9 c 0.35,0 0.55,0.4 0.55,0.8 0,0.25 0.175,0.375 0.375,0.375 0.2,0 0.375,-0.125 0.375,-0.375 V 6.7 C 12.675,4.625 12.95,2.5 12.95,0.425 12.95,0.125 12.725,0 12.5,0 12.275,0 12.075,0.125 12.05,0.425 l -0.3,6.25 V 6.7 c 0,0.4 -0.2,0.8 -0.55,0.8 z"
id="path5232"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

42
qtgui/resources/svg/noteheadsMaxima.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="15.474999"
width="16.700001"
id="svg5250"
inkscape:version="0.91 r13725"
sodipodi:docname="noteheadsMaxima.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="noteheadsMaxima.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="metadata5258">
<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="692"
id="namedview5254"
showgrid="false"
inkscape:zoom="22.627417"
inkscape:cx="12.473326"
inkscape:cy="990.46191"
inkscape:zoom="4"
inkscape:cx="-9.125"
inkscape:cy="-3.875"
inkscape:window-x="0"
inkscape:window-y="1080"
inkscape:window-y="20"
inkscape:window-maximized="0"
inkscape:current-layer="svg5250" />
inkscape:current-layer="svg5250"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<path
glyph-name="noteheads.sM3neomensural"
d="m 1.3,-0.81694176 13.65,0 c 0.3,0 0.55,0.22500002 0.55,0.52500002 l 0,0.55 c 0,0.3 -0.25,0.525 -0.55,0.525 l -13.65,0 c -0.3,0 -0.55,-0.225 -0.55,-0.525 l 0,-0.55 c 0,-0.3 0.25,-0.52500002 0.55,-0.52500002 z m 13.65,-2.60000004 -13.65,0 c -0.35,0 -0.55,-0.4 -0.55,-0.8 0,-0.25 -0.175,-0.375 -0.375,-0.375 -0.2,0 -0.375,0.125 -0.375,0.375 l 0,8.4 c 0,0.25 0.175,0.375 0.375,0.375 0.2,0 0.375,-0.125 0.375,-0.375 0,-0.4 0.2,-0.8 0.55,-0.8 l 13.65,0 c 0.35,0 0.55,0.4 0.55,0.8 0,0.25 0.175,0.375 0.375,0.375 0.2,0 0.375,-0.125 0.375,-0.375 l 0,-8.4 c 0.175,-2.075 0.45,-4.2 0.45,-6.2749992 0,-0.3 -0.225,-0.425 -0.45,-0.425 -0.225,0 -0.425,0.125 -0.45,0.425 l -0.3,6.2499992 0,0.025 c 0,0.4 -0.2,0.8 -0.55,0.8 z"
d="m 1.3,10.099999 h 13.65 c 0.3,0 0.55,0.225 0.55,0.525 v 0.55 c 0,0.3 -0.25,0.525 -0.55,0.525 H 1.3 c -0.3,0 -0.55,-0.225 -0.55,-0.525 v -0.55 c 0,-0.3 0.25,-0.525 0.55,-0.525 z M 14.95,7.4999992 H 1.3 c -0.35,0 -0.55,-0.4 -0.55,-0.8 0,-0.25 -0.175,-0.375 -0.375,-0.375 -0.2,0 -0.375,0.125 -0.375,0.375 v 8.3999998 c 0,0.25 0.175,0.375 0.375,0.375 0.2,0 0.375,-0.125 0.375,-0.375 0,-0.4 0.2,-0.8 0.55,-0.8 h 13.65 c 0.35,0 0.55,0.4 0.55,0.8 0,0.25 0.175,0.375 0.375,0.375 0.2,0 0.375,-0.125 0.375,-0.375 V 6.6999992 c 0.175,-2.075 0.45,-4.2 0.45,-6.2749992 C 16.7,0.125 16.475,0 16.25,0 16.025,0 15.825,0.125 15.8,0.425 l -0.3,6.2499992 v 0.025 c 0,0.4 -0.2,0.8 -0.55,0.8 z"
id="path5252"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

46
qtgui/resources/svg/noteheadsWhole.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="9.5216446"
height="6.8000002"
id="svg3460"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="noteheadsWhole.svg">
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="noteheadsWhole.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="2300"
inkscape:window-height="1046"
inkscape:window-width="3838"
inkscape:window-height="2118"
id="namedview6"
showgrid="false"
inkscape:zoom="60.416"
inkscape:cx="4.3972899"
inkscape:cy="1001.3557"
inkscape:window-x="1536"
inkscape:window-y="1080"
inkscape:zoom="10.680141"
inkscape:cx="27.106384"
inkscape:cy="-22.143903"
inkscape:window-x="0"
inkscape:window-y="20"
inkscape:window-maximized="1"
inkscape:current-layer="svg3460" />
inkscape:current-layer="svg3460"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<metadata
id="metadata3468">
<rdf:RDF>
@ -43,15 +46,14 @@
<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="defs3466" />
<path
d="m 4.1294803,-2.85 c -0.9502635,0 -1.3493743,1.05 -1.3493743,2.2 0,1.975 1.140316,3.5 2.6417331,3.5 0.9502644,0 1.3303694,-1.05 1.3303694,-2.2 0,-1.975 -1.1213111,-3.5 -2.6227282,-3.5 z M 9.5269793,0 c 0,1.075 -0.6461797,1.875 -1.3873858,2.4 -1.0262849,0.725 -2.2046116,1 -3.3639334,1 C 3.6163383,3.4 2.4190059,3.125 1.392721,2.4 0.65151479,1.875 0.00533505,1.075 0.00533505,0 c 0,-1.075 0.64617974,-1.875 1.38738595,-2.4 1.0262849,-0.725 2.2236173,-1 3.3829391,-1 1.1593218,0 2.3376485,0.275 3.3639334,1 0.7412061,0.525 1.3873858,1.325 1.3873858,2.4 z"
d="m 4.1241452,0.55 c -0.9502634,0 -1.3493742,1.05 -1.3493742,2.2 0,1.975 1.140316,3.5 2.641733,3.5 0.9502644,0 1.3303694,-1.05 1.3303694,-2.2 0,-1.975 -1.1213111,-3.5 -2.6227282,-3.5 z M 9.5216443,3.4 c 0,1.075 -0.6461797,1.875 -1.3873858,2.4 -1.026285,0.725 -2.2046117,1 -3.3639335,1 C 3.6110033,6.8 2.4136709,6.525 1.387386,5.8 0.64617974,5.275 0,4.475 0,3.4 0,2.325 0.64617974,1.525 1.387386,1 2.4136709,0.275 3.6110033,0 4.770325,0 5.9296468,0 7.1079735,0.275 8.1342585,1 8.8754646,1.525 9.5216443,2.325 9.5216443,3.4 Z"
id="path3462"
inkscape:connector-curvature="0"
style="stroke-width:0.95385909" />
style="stroke-width:0.953859" />
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Loading…
Cancel
Save