Exemplo n.º 1
0
Marker::Marker(Score* s)
   : Text(SubStyle::REPEAT_LEFT, s)
      {
      _markerType = Type::FINE;
      setFlags(ElementFlag::MOVABLE | ElementFlag::SELECTABLE | ElementFlag::ON_STAFF);
      setLayoutToParentWidth(true);
      }
Exemplo n.º 2
0
Jump::Jump(Score* s)
   : Text(SubStyle::REPEAT_RIGHT, s)
      {
      setFlags(ElementFlag::MOVABLE | ElementFlag::SELECTABLE);
      setLayoutToParentWidth(true);
      _playRepeats = false;
      }
Exemplo n.º 3
0
Jump::Jump(Score* s)
   : Text(s)
      {
      setFlags(ElementFlag::MOVABLE | ElementFlag::SELECTABLE);
      setTextStyleType(TextStyleType::REPEAT_RIGHT);
      setLayoutToParentWidth(true);
      }
Exemplo n.º 4
0
Jump::Jump(Score* s)
   : TextBase(s, Tid::REPEAT_RIGHT, ElementFlag::MOVABLE | ElementFlag::SYSTEM)
      {
      initElementStyle(&jumpStyle);
      setLayoutToParentWidth(true);
      _playRepeats = false;
      }