MuseScore/libmscore/page.h
2020-03-27 10:01:06 +02:00

84 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();
Page* clone() const override { return new Page(*this); }
ElementType type() const override { return ElementType::PAGE; }
const QList<System*>& systems() const { return _systems; }
QList<System*>& systems() { return _systems; }
System* system(int idx) { return _systems[idx]; }
void write(XmlWriter&) const override;
void read(XmlReader&) override;
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;
void draw(QPainter*) const override;
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 override { 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