MuseScore/libmscore/synthesizerstate.h

60 lines
1.6 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__
class Xml;
class XmlReader;
#include <list>
//---------------------------------------------------------
// 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>() {}
};
//---------------------------------------------------------
// SynthesizerState
//---------------------------------------------------------
class SynthesizerState : public std::list<SynthesizerGroup> {
public:
SynthesizerState() : std::list<SynthesizerGroup>() {}
void write(Xml&) const;
void read(XmlReader&);
};
#endif