Revision: 1537
http://sourceforge.net/p/canorus/code/1537
Author: matevz
Date: 2019-01-05 15:42:26 +0000 (Sat, 05 Jan 2019)
Log Message:
-----------
Add breath articulation sign (Feature #29)
Modified Paths:
--------------
trunk/src/score/articulation.cpp
trunk/src/score/articulation.h
Modified: trunk/src/score/articulation.cpp
===================================================================
--- trunk/src/score/articulation.cpp 2018-11-02 07:44:47 UTC (rev 1536)
+++ trunk/src/score/articulation.cpp 2019-01-05 15:42:26 UTC (rev 1537)
@@ -1,5 +1,5 @@
/*!
- Copyright (c) 2007, Matevž Jekovec, Canorus development team
+ Copyright (c) 2007-2019, Matevž Jekovec, Canorus development team
All Rights Reserved. See AUTHORS for a complete list of authors.
Licensed under the GNU GENERAL PUBLIC LICENSE. See LICENSE.GPL for details.
@@ -50,7 +50,9 @@
return "Tenuto";
case Portato:
return "Portato";
- case UpBow:
+ case Breath:
+ return "Breath";
+ case UpBow:
return "UpBow";
case DownBow:
return "DownBow";
@@ -115,7 +117,10 @@
if ( s=="Portato" )
return Portato;
else
- if ( s=="UpBow" )
+ if ( s=="Breath" )
+ return Breath;
+ else
+ if ( s=="UpBow" )
return UpBow;
else
if ( s=="DownBow" )
Modified: trunk/src/score/articulation.h
===================================================================
--- trunk/src/score/articulation.h 2018-11-02 07:44:47 UTC (rev 1536)
+++ trunk/src/score/articulation.h 2019-01-05 15:42:26 UTC (rev 1537)
@@ -22,6 +22,7 @@
Staccato,
Tenuto,
Portato,
+ Breath,
UpBow,
DownBow,
Flageolet,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|