2012-05-26 14:26:10 +02:00
|
|
|
//=============================================================================
|
|
|
|
// MuseScore
|
|
|
|
// Music Composition & Notation
|
|
|
|
// $Id: staff.h 5149 2011-12-29 08:38:43Z wschweer $
|
|
|
|
//
|
|
|
|
// 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 __STAFF_H__
|
|
|
|
#define __STAFF_H__
|
|
|
|
|
|
|
|
/**
|
|
|
|
\file
|
|
|
|
Definition of class Staff.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "mscore.h"
|
|
|
|
#include "key.h"
|
|
|
|
#include "velo.h"
|
|
|
|
#include "pitch.h"
|
|
|
|
#include "cleflist.h"
|
2012-08-16 11:09:36 +02:00
|
|
|
#include "stafftype.h"
|
2012-05-26 14:26:10 +02:00
|
|
|
|
|
|
|
class Instrument;
|
2012-08-12 16:08:58 +02:00
|
|
|
class InstrumentTemplate;
|
2012-05-26 14:26:10 +02:00
|
|
|
class Xml;
|
|
|
|
class Part;
|
|
|
|
class Score;
|
|
|
|
class KeyList;
|
|
|
|
class StaffType;
|
|
|
|
class StaffTypeTablature;
|
|
|
|
class Staff;
|
|
|
|
class Tablature;
|
|
|
|
class ClefList;
|
|
|
|
struct ClefTypeList;
|
|
|
|
class Segment;
|
|
|
|
class Clef;
|
|
|
|
class TimeSig;
|
|
|
|
|
|
|
|
//---------------------------------------------------------
|
|
|
|
// LinkedStaves
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
class LinkedStaves {
|
|
|
|
QList<Staff*> _staves;
|
|
|
|
|
|
|
|
public:
|
|
|
|
LinkedStaves() {}
|
|
|
|
QList<Staff*>& staves() { return _staves; }
|
|
|
|
const QList<Staff*>& staves() const { return _staves; }
|
|
|
|
void add(Staff*);
|
|
|
|
void remove(Staff*);
|
|
|
|
bool isEmpty() const { return _staves.isEmpty(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
//---------------------------------------------------------
|
|
|
|
// BracketItem
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
struct BracketItem {
|
|
|
|
BracketType _bracket;
|
|
|
|
int _bracketSpan;
|
|
|
|
|
|
|
|
BracketItem() {
|
|
|
|
_bracket = NO_BRACKET;
|
|
|
|
_bracketSpan = 0;
|
|
|
|
}
|
|
|
|
BracketItem(BracketType a, int b) {
|
|
|
|
_bracket = a;
|
|
|
|
_bracketSpan = b;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
//---------------------------------------------------------
|
2012-07-11 21:29:42 +02:00
|
|
|
// @@ Staff
|
2012-07-25 11:49:34 +02:00
|
|
|
/// Global staff data not directly related to drawing.
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2012-07-06 14:21:05 +02:00
|
|
|
class Staff : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
2012-05-26 14:26:10 +02:00
|
|
|
Score* _score;
|
|
|
|
Part* _part;
|
2012-09-20 11:35:34 +02:00
|
|
|
int _rstaff; ///< Index in Part.
|
2012-05-26 14:26:10 +02:00
|
|
|
|
|
|
|
ClefTypeList _initialClef; // used by new score wizard
|
|
|
|
QList<Clef*> clefs;
|
2012-09-20 11:35:34 +02:00
|
|
|
|
2012-05-26 14:26:10 +02:00
|
|
|
QList<TimeSig*> timesigs;
|
|
|
|
|
|
|
|
KeyList* _keymap;
|
|
|
|
QList <BracketItem> _brackets;
|
|
|
|
int _barLineSpan; ///< 0 - no bar line, 1 - span this staff, ...
|
2012-10-14 00:35:11 +02:00
|
|
|
int _barLineFrom; ///< line of start staff to draw the barline from (0 = staff top line, ...)
|
|
|
|
int _barLineTo; ///< line of end staff to draw the bar line to (0= staff top line, ...)
|
2012-05-26 14:26:10 +02:00
|
|
|
bool _small;
|
|
|
|
bool _invisible;
|
|
|
|
bool _updateKeymap;
|
|
|
|
|
2012-09-20 11:35:34 +02:00
|
|
|
qreal _userDist; ///< user edited extra distance
|
|
|
|
|
2012-05-26 14:26:10 +02:00
|
|
|
StaffType* _staffType;
|
|
|
|
|
|
|
|
LinkedStaves* _linkedStaves;
|
|
|
|
|
|
|
|
QMap<int,int> _channelList[VOICES];
|
|
|
|
|
|
|
|
VeloList _velocities; ///< cached value
|
|
|
|
PitchList _pitchOffsets; ///< cached value
|
|
|
|
|
|
|
|
public:
|
2012-07-06 14:21:05 +02:00
|
|
|
Staff(Score* = 0);
|
2012-05-26 14:26:10 +02:00
|
|
|
Staff(Score*, Part*, int);
|
|
|
|
~Staff();
|
|
|
|
void init(const InstrumentTemplate*, int);
|
|
|
|
|
|
|
|
bool isTop() const { return _rstaff == 0; }
|
|
|
|
QString partName() const;
|
|
|
|
int rstaff() const { return _rstaff; }
|
|
|
|
int idx() const;
|
|
|
|
void setRstaff(int n) { _rstaff = n; }
|
2013-01-11 18:10:18 +01:00
|
|
|
void read(XmlReader&);
|
|
|
|
void read114(XmlReader&, ClefList&);
|
2012-05-26 14:26:10 +02:00
|
|
|
void write(Xml& xml) const;
|
|
|
|
Part* part() const { return _part; }
|
|
|
|
void setPart(Part* p) { _part = p; }
|
|
|
|
|
|
|
|
BracketType bracket(int idx) const;
|
|
|
|
int bracketSpan(int idx) const;
|
|
|
|
void setBracket(int idx, BracketType val);
|
|
|
|
void setBracketSpan(int idx, int val);
|
|
|
|
int bracketLevels() const { return _brackets.size(); }
|
|
|
|
void addBracket(BracketItem);
|
|
|
|
QList <BracketItem> brackets() const { return _brackets; }
|
|
|
|
void cleanupBrackets();
|
|
|
|
|
|
|
|
ClefTypeList clefTypeList(int tick) const;
|
|
|
|
ClefType clef(int tick) const;
|
|
|
|
ClefType clef(Segment*) const;
|
|
|
|
void addClef(Clef*);
|
|
|
|
void removeClef(Clef*);
|
|
|
|
void setInitialClef(const ClefTypeList& cl) { _initialClef = cl; }
|
|
|
|
void setInitialClef(ClefType ct) { _initialClef = ClefTypeList(ct, ct); }
|
|
|
|
ClefTypeList initialClef() const { return _initialClef; }
|
|
|
|
|
|
|
|
void addTimeSig(TimeSig*);
|
|
|
|
void removeTimeSig(TimeSig*);
|
|
|
|
Fraction timeStretch(int tick) const;
|
|
|
|
TimeSig* timeSig(int tick) const;
|
|
|
|
|
|
|
|
KeyList* keymap() const { return _keymap; }
|
|
|
|
KeySigEvent key(int tick) const;
|
|
|
|
void setKey(int tick, int st);
|
|
|
|
void setKey(int tick, const KeySigEvent& st);
|
|
|
|
void removeKey(int tick);
|
|
|
|
|
2012-08-01 22:15:58 +02:00
|
|
|
bool show() const;
|
2012-05-26 14:26:10 +02:00
|
|
|
bool slashStyle() const;
|
|
|
|
bool small() const { return _small; }
|
|
|
|
void setSmall(bool val) { _small = val; }
|
|
|
|
bool invisible() const { return _invisible; }
|
|
|
|
void setInvisible(bool val) { _invisible = val; }
|
|
|
|
void setSlashStyle(bool val);
|
|
|
|
int lines() const;
|
|
|
|
void setLines(int);
|
2012-10-14 00:35:11 +02:00
|
|
|
qreal lineDistance() const;
|
2012-05-26 14:26:10 +02:00
|
|
|
int barLineSpan() const { return _barLineSpan; }
|
2012-10-14 00:35:11 +02:00
|
|
|
int barLineFrom() const { return _barLineFrom; }
|
|
|
|
int barLineTo() const { return _barLineTo; }
|
2012-05-26 14:26:10 +02:00
|
|
|
void setBarLineSpan(int val) { _barLineSpan = val; }
|
2012-10-14 00:35:11 +02:00
|
|
|
void setBarLineFrom(int val) { _barLineFrom = val; }
|
|
|
|
void setBarLineTo(int val) { _barLineTo = val; }
|
2012-05-26 14:26:10 +02:00
|
|
|
Score* score() const { return _score; }
|
|
|
|
qreal mag() const;
|
|
|
|
qreal height() const;
|
|
|
|
qreal spatium() const;
|
|
|
|
int channel(int tick, int voice) const;
|
|
|
|
QMap<int,int>* channelList(int voice) { return &_channelList[voice]; }
|
|
|
|
|
|
|
|
StaffType* staffType() const { return _staffType; }
|
|
|
|
void setStaffType(StaffType* st);
|
2012-08-16 11:09:36 +02:00
|
|
|
StaffGroup staffGroup() const { return _staffType->group(); }
|
|
|
|
bool isTabStaff() const { return staffGroup() == TAB_STAFF; }
|
|
|
|
bool isDrumStaff() const { return staffGroup() == PERCUSSION_STAFF; }
|
2012-05-26 14:26:10 +02:00
|
|
|
|
|
|
|
bool updateKeymap() const { return _updateKeymap; }
|
|
|
|
void setUpdateKeymap(bool v) { _updateKeymap = v; }
|
|
|
|
VeloList& velocities() { return _velocities; }
|
|
|
|
PitchList& pitchOffsets() { return _pitchOffsets; }
|
|
|
|
|
|
|
|
LinkedStaves* linkedStaves() const { return _linkedStaves; }
|
|
|
|
void setLinkedStaves(LinkedStaves* l) { _linkedStaves = l; }
|
|
|
|
void linkTo(Staff* staff);
|
|
|
|
bool primaryStaff() const;
|
|
|
|
qreal userDist() const { return _userDist; }
|
|
|
|
void setUserDist(qreal val) { _userDist = val; }
|
|
|
|
void spatiumChanged(qreal /*oldValue*/, qreal /*newValue*/);
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|