MuseScore/libmscore/velo.h

55 lines
1.4 KiB
C
Raw Normal View History

2012-05-26 14:26:10 +02:00
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2009-2011 Werner Schweer
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2
// as published by the Free Software Foundation and appearing in
// the file LICENCE.GPL
//=============================================================================
#ifndef __VELO_H__
#define __VELO_H__
/**
\file
Definition of classes VeloList.
*/
2013-05-13 18:49:17 +02:00
namespace Ms {
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
/// VeloEvent
/// item in VeloList
//---------------------------------------------------------
2014-05-25 18:26:06 +02:00
enum class VeloType : char { FIX, RAMP };
2012-05-26 14:26:10 +02:00
struct VeloEvent {
VeloType type;
char val;
VeloEvent() {}
VeloEvent(VeloType t, char v) : type(t), val(v) {}
};
//---------------------------------------------------------
/// VeloList
/// List of note velocity changes
//---------------------------------------------------------
class VeloList : public QMap<int, VeloEvent> {
public:
VeloList() {}
int velo(int tick) const;
int nextVelo(int tick) const;
void setVelo(int tick, VeloEvent velo);
void setVelo(int tick, int velocity);
};
2013-05-13 18:49:17 +02:00
} // namespace Ms
2012-05-26 14:26:10 +02:00
#endif