MuseScore/libmscore/page.h
ws ec3be9a99a Replacd integer midi tick values by fractions.
- tick names a position on the time axis
- tick is always a Fraction()
- only Measure() and Segment() (and Tuplet?) have a tick value
- tick() for an generic element return only a sensible value if isMeasure() or isSegment() or isSegment(parent())

- "ticks" names a duration stored in a Fraction()
- the tick value for an Segment is relative to its measure

- rename "duration" to "ticks"
- rename afrac() to tick()
- rename rfrac() to rtick()
- rename some variables, changing "fraction" into "tick"
  (example: actualFraction() into actualTicks())

- Lyrics ticks are written as Fraction, on read if xmlreader sees a "/" it reads a fraction
  else midi ticks for backwards compatibility
2019-02-18 11:46:05 +01:00

83 lines
2.6 KiB
C++

//=============================================================================
// 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 __PAGE_H__
#define __PAGE_H__
#include "config.h"
#include "element.h"
#include "bsp.h"
namespace Ms {
class System;
class Text;
class Measure;
class XmlWriter;
class Score;
class MeasureBase;
//---------------------------------------------------------
// @@ Page
// @P pagenumber int (read only)
//---------------------------------------------------------
class Page final : public Element {
QList<System*> _systems;
int _no; // page number
#ifdef USE_BSP
BspTree bspTree;
void doRebuildBspTree();
#endif
bool bspTreeValid;
QString replaceTextMacros(const QString&) const;
void drawHeaderFooter(QPainter*, int area, const QString&) const;
public:
Page(Score*);
~Page();
virtual Page* clone() const { return new Page(*this); }
virtual ElementType type() const { return ElementType::PAGE; }
const QList<System*>& systems() const { return _systems; }
QList<System*>& systems() { return _systems; }
System* system(int idx) { return _systems[idx]; }
virtual void write(XmlWriter&) const;
virtual void read(XmlReader&);
void appendSystem(System* s);
int no() const { return _no; }
void setNo(int n) { _no = n; }
bool isOdd() const;
qreal tm() const; // margins in pixel
qreal bm() const;
qreal lm() const;
qreal rm() const;
virtual void draw(QPainter*) const override;
virtual void scanElements(void* data, void (*func)(void*, Element*), bool all=true) override;
QList<Element*> items(const QRectF& r);
QList<Element*> items(const QPointF& p);
void rebuildBspTree() { bspTreeValid = false; }
QPointF pagePos() const { return QPointF(); } ///< position in page coordinates
QList<Element*> elements(); ///< list of visible elements
QRectF tbbox(); // tight bounding box, excluding white space
Fraction endTick() const;
};
} // namespace Ms
#endif