MuseScore/libmscore/part.h

134 lines
4.4 KiB
C
Raw Normal View History

2012-05-26 14:26:10 +02:00
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2002-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 __PART_H__
#define __PART_H__
#include "mscore.h"
#include "instrument.h"
#include "text.h"
2013-05-13 18:49:17 +02:00
namespace Ms {
2012-05-26 14:26:10 +02:00
class Xml;
class Staff;
class Score;
class InstrumentTemplate;
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
2012-07-11 21:29:42 +02:00
// @@ Part
// @P partName QString name of the part, used in the mixer
// @P show bool check/set whether or not a part is shown
// @P longName QString
// @P shortName QString
// @P volume int
// @P mute bool
2014-08-18 10:12:50 +02:00
// @P endTrack int (read only)
// @P startTrack int (read only)
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
class Part : public QObject, public ScoreElement {
2012-07-06 14:21:05 +02:00
Q_OBJECT
2012-09-20 11:35:34 +02:00
Q_PROPERTY(QString partName READ partName WRITE setPartName)
Q_PROPERTY(bool show READ show WRITE setShow)
2014-03-03 17:24:28 +01:00
Q_PROPERTY(QString longName READ longName WRITE setLongName)
Q_PROPERTY(QString shortName READ shortName WRITE setShortName)
Q_PROPERTY(int volume READ volume WRITE setVolume)
Q_PROPERTY(bool mute READ mute WRITE setMute)
Q_PROPERTY(int endTrack READ endTrack)
Q_PROPERTY(int startTrack READ startTrack)
Q_PROPERTY(int midiProgram READ midiProgram)
Q_PROPERTY(QString instrumentId READ instrumentId)
2012-09-20 11:35:34 +02:00
2012-05-26 14:26:10 +02:00
QString _partName; ///< used in tracklist (mixer)
InstrumentList _instrList;
QList<Staff*> _staves;
QString _id; ///< used for MusicXml import
bool _show; ///< show part in partitur if true
public:
2012-07-06 14:21:05 +02:00
Part(Score* = 0);
2012-05-26 14:26:10 +02:00
void initFromInstrTemplate(const InstrumentTemplate*);
2013-01-11 18:10:18 +01:00
void read(XmlReader&);
2013-01-24 09:46:28 +01:00
void read114(XmlReader&);
2012-05-26 14:26:10 +02:00
void write(Xml& xml) const;
2014-08-11 15:25:55 +02:00
2012-05-26 14:26:10 +02:00
int nstaves() const { return _staves.size(); }
QList<Staff*>* staves() { return &_staves; }
const QList<Staff*>* staves() const { return &_staves; }
Staff* staff(int idx) const;
void setId(const QString& s) { _id = s; }
QString id() const { return _id; }
int startTrack() const;
int endTrack() const;
QString longName(int tick = -1) const;
QString shortName(int tick = -1) const;
QString instrumentName(int tick = -1) const;
QString instrumentId(int tick = -1) const;
2012-05-26 14:26:10 +02:00
const QList<StaffName>& longNames(int tick = -1) const { return instr(tick)->longNames(); }
const QList<StaffName>& shortNames(int tick = -1) const { return instr(tick)->shortNames(); }
2012-05-26 14:26:10 +02:00
void setLongNames(QList<StaffName>& s, int tick = -1);
void setShortNames(QList<StaffName>& s, int tick = -1);
2012-05-26 14:26:10 +02:00
void setLongName(const QString& s);
void setShortName(const QString& s);
void setStaves(int);
int volume() const;
void setVolume(int volume);
bool mute() const;
void setMute(bool mute);
2014-08-11 15:25:55 +02:00
2012-05-26 14:26:10 +02:00
int reverb() const;
void setReverb(int);
2012-05-26 14:26:10 +02:00
int chorus() const;
void setChorus(int);
2012-05-26 14:26:10 +02:00
int pan() const;
void setPan(int pan);
int midiProgram() const;
void setMidiProgram(int, int bank = 0);
int midiChannel() const;
int midiPort() const;
2012-05-26 14:26:10 +02:00
void setMidiChannel(int) const;
2014-08-11 15:25:55 +02:00
void insertStaff(Staff*, int idx);
2012-05-26 14:26:10 +02:00
void removeStaff(Staff*);
bool show() const { return _show; }
void setShow(bool val) { _show = val; }
2012-05-26 14:26:10 +02:00
Instrument* instr(int tick = -1);
const Instrument* instr(int tick = -1) const;
void setInstrument(const Instrument&, int tick = -1);
2012-05-26 14:26:10 +02:00
void removeInstrument(int tick);
QString partName() const { return _partName; }
void setPartName(const QString& s) { _partName = s; }
InstrumentList* instrList() { return &_instrList; }
QVariant getProperty(P_ID) const override;
bool setProperty(P_ID, const QVariant&) override;
2012-05-26 14:26:10 +02:00
};
2013-05-13 18:49:17 +02:00
} // namespace Ms
2012-05-26 14:26:10 +02:00
#endif