MuseScore/libmscore/synthesizerstate.h

71 lines
1.9 KiB
C
Raw Normal View History

//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2012 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 __SYNTHESIZERSTATE_H__
#define __SYNTHESIZERSTATE_H__
2013-05-13 18:49:17 +02:00
#include <list>
namespace Ms {
2016-11-19 11:51:21 +01:00
class XmlWriter;
class XmlReader;
//---------------------------------------------------------
// IdValue
//---------------------------------------------------------
struct IdValue {
int id;
QString data;
IdValue() {}
IdValue(int _id, const QString& _data) : id(_id), data(_data) {}
};
//---------------------------------------------------------
// SynthesizerGroup
//---------------------------------------------------------
class SynthesizerGroup : public std::list<IdValue> {
QString _name;
public:
const QString& name() const { return _name; }
void setName(const QString& s) { _name = s; }
SynthesizerGroup() : std::list<IdValue>() {}
SynthesizerGroup(const char* n, std::list<IdValue> l) : std::list<IdValue>(l), _name(n) {}
};
//---------------------------------------------------------
// SynthesizerState
//---------------------------------------------------------
class SynthesizerState : public std::list<SynthesizerGroup> {
public:
SynthesizerState(std::initializer_list<SynthesizerGroup> l) {
insert(end(), l.begin(), l.end());
}
SynthesizerState() : std::list<SynthesizerGroup>() {}
2016-11-19 11:51:21 +01:00
void write(XmlWriter&) const;
void read(XmlReader&);
};
2013-05-13 18:49:17 +02:00
} // namespace Ms
#endif