MuseScore/libmscore/page.h

184 lines
6.9 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 __PAGE_H__
#define __PAGE_H__
#include "config.h"
2012-05-26 14:26:10 +02:00
#include "element.h"
#include "bsp.h"
2013-05-13 18:49:17 +02:00
namespace Ms {
2012-05-26 14:26:10 +02:00
class System;
class Text;
class Measure;
class Xml;
class Score;
class MeasureBase;
//---------------------------------------------------------
// PaperSize
//---------------------------------------------------------
struct PaperSize {
const char* name;
qreal w, h; // size in inch
2012-07-25 11:49:34 +02:00
PaperSize(const char* n, qreal wi, qreal hi)
: name(n), w(wi), h(hi) {}
2012-05-26 14:26:10 +02:00
};
extern const PaperSize* getPaperSize(const QString&);
extern const PaperSize* getPaperSize(const qreal wi, const qreal hi);
//---------------------------------------------------------
2012-07-11 21:29:42 +02:00
// @@ PageFormat
// @P evenBottomMargin float
// @P evenLeftMargin float
// @P eventTopMargin float
// @P oddBottomMargin float
// @P oddLeftMargin float
// @P oddTopMargin float
// @P printableWidth float
// @P size size paper size in inch
// @P twosided bool
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
2015-05-13 08:53:51 +02:00
#ifdef SCRIPT_INTERFACE
2012-07-06 14:21:05 +02:00
class PageFormat : public QObject {
Q_OBJECT
Q_PROPERTY(qreal evenBottomMargin READ evenBottomMargin WRITE setEvenBottomMargin)
2012-07-12 11:36:01 +02:00
Q_PROPERTY(qreal evenLeftMargin READ evenLeftMargin WRITE setEvenLeftMargin )
2012-07-12 12:00:31 +02:00
Q_PROPERTY(qreal evenTopMargin READ evenTopMargin WRITE setEvenTopMargin )
2012-07-12 11:36:01 +02:00
Q_PROPERTY(qreal oddBottomMargin READ oddBottomMargin WRITE setOddBottomMargin )
Q_PROPERTY(qreal oddLeftMargin READ oddLeftMargin WRITE setOddLeftMargin )
Q_PROPERTY(qreal oddTopMargin READ oddTopMargin WRITE setOddTopMargin )
Q_PROPERTY(qreal printableWidth READ printableWidth WRITE setPrintableWidth )
Q_PROPERTY(QSizeF size READ size WRITE setSize)
2012-07-12 11:36:01 +02:00
Q_PROPERTY(bool twosided READ twosided WRITE setTwosided )
2015-05-13 08:53:51 +02:00
#else
class PageFormat {
#endif
2012-07-06 14:21:05 +02:00
2012-05-26 14:26:10 +02:00
QSizeF _size;
qreal _printableWidth; // _width - left margin - right margin
qreal _evenLeftMargin; // values in inch
qreal _oddLeftMargin;
qreal _evenTopMargin;
qreal _evenBottomMargin;
qreal _oddTopMargin;
qreal _oddBottomMargin;
bool _twosided;
public:
PageFormat();
const QSizeF& size() const { return _size; } // size in inch
qreal width() const { return _size.width(); }
qreal height() const { return _size.height(); }
void setSize(const QSizeF& s) { _size = s; }
2012-07-06 14:21:05 +02:00
void copy(const PageFormat&);
2012-05-26 14:26:10 +02:00
QString name() const;
void read(XmlReader&, Score* s = 0);
2012-05-26 14:26:10 +02:00
void write(Xml&) const;
qreal evenLeftMargin() const { return _evenLeftMargin; }
qreal oddLeftMargin() const { return _oddLeftMargin; }
qreal evenTopMargin() const { return _evenTopMargin; }
qreal evenBottomMargin() const { return _evenBottomMargin; }
qreal oddTopMargin() const { return _oddTopMargin; }
qreal oddBottomMargin() const { return _oddBottomMargin; }
qreal printableWidth() const { return _printableWidth; }
void setEvenLeftMargin(qreal val) { _evenLeftMargin = val; }
void setOddLeftMargin(qreal val) { _oddLeftMargin = val; }
void setEvenTopMargin(qreal val) { _evenTopMargin = val; }
void setEvenBottomMargin(qreal val) { _evenBottomMargin = val; }
void setOddTopMargin(qreal val) { _oddTopMargin = val; }
void setOddBottomMargin(qreal val) { _oddBottomMargin = val; }
void setPrintableWidth(qreal val) { _printableWidth = val; }
bool twosided() const { return _twosided; }
void setTwosided(bool val) { _twosided = val; }
// convenience functions
qreal evenRightMargin() const { return _size.width() - _printableWidth - _evenLeftMargin; }
qreal oddRightMargin() const { return _size.width() - _printableWidth - _oddLeftMargin; }
const PaperSize* paperSize() const { return getPaperSize(_size.width(), _size.height()); }
void setSize(const PaperSize* size);
};
//---------------------------------------------------------
2012-07-25 11:49:34 +02:00
// @@ Page
// @P pagenumber int (read only)
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
class Page : public Element {
Q_OBJECT
2012-07-25 11:49:34 +02:00
Q_PROPERTY(int pagenumber READ no)
2012-05-26 14:26:10 +02:00
QList<System*> _systems;
int _no; // page number
#ifdef USE_BSP
BspTree bspTree;
void doRebuildBspTree();
#endif
bool bspTreeValid;
QString replaceTextMacros(const QString&) const;
2014-06-06 12:40:22 +02:00
void drawHeaderFooter(QPainter*, int area, const QString&) const;
2012-05-26 14:26:10 +02:00
public:
Page(Score*);
~Page();
2016-01-04 14:48:58 +01:00
virtual Page* clone() const { return new Page(*this); }
virtual Element::Type type() const { return Element::Type::PAGE; }
const QList<System*>& systems() const { return _systems; }
QList<System*>& systems() { return _systems; }
2016-03-02 13:20:19 +01:00
System* system(int idx) { return _systems[idx]; }
2012-05-26 14:26:10 +02:00
virtual void layout();
virtual void write(Xml&) const;
2013-01-11 18:10:18 +01:00
virtual void read(XmlReader&);
2012-05-26 14:26:10 +02:00
void appendSystem(System* s);
int no() const { return _no; }
2016-03-24 12:39:18 +01:00
void setNo(int n) { _no = n; }
2012-05-26 14:26:10 +02:00
bool isOdd() const;
qreal tm() const; // margins in pixel
qreal bm() const;
qreal lm() const;
qreal rm() const;
virtual void draw(QPainter*) const;
virtual void scanElements(void* data, void (*func)(void*, Element*), bool all=true);
QList<Element*> items(const QRectF& r);
QList<Element*> items(const QPointF& p);
2012-05-26 14:26:10 +02:00
void rebuildBspTree() { bspTreeValid = false; }
QPointF pagePos() const { return QPointF(); } ///< position in page coordinates
QList<System*> searchSystem(const QPointF& pos) const;
Measure* searchMeasure(const QPointF& p) const;
MeasureBase* pos2measure(const QPointF&, int* staffIdx, int* pitch,
Segment**, QPointF* offset) const;
2016-03-24 12:39:18 +01:00
QList<Element*> elements(); ///< list of visible elements
QRectF tbbox(); // tight bounding box, excluding white space
2016-03-18 09:29:16 +01:00
int endTick() const;
2012-05-26 14:26:10 +02:00
};
extern const PaperSize paperSizes[];
2013-05-13 18:49:17 +02:00
} // namespace Ms
2012-05-26 14:26:10 +02:00
#endif