MuseScore/src/engraving/libmscore/box.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

194 lines
6.8 KiB
C
Raw Normal View History

/*
* SPDX-License-Identifier: GPL-3.0-only
* MuseScore-CLA-applies
*
* MuseScore
* Music Composition & Notation
*
* Copyright (C) 2021 MuseScore BVBA and others
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2012-05-26 14:26:10 +02:00
#ifndef __BOX_H__
#define __BOX_H__
/**
\file
Definition of HBox and VBox classes.
*/
#include "measurebase.h"
2017-01-18 22:41:58 +01:00
#include "property.h"
2013-05-13 18:49:17 +02:00
namespace Ms {
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
2012-07-25 11:49:34 +02:00
// @@ Box
/// virtual base class for frames "boxes"
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
class Box : public MeasureBase
{
Spatium _boxWidth { Spatium(0) }; // only valid for HBox
Spatium _boxHeight { Spatium(0) }; // only valid for VBox
qreal _topGap { 0.0 }; // distance from previous system (left border for hbox)
2018-03-27 15:36:00 +02:00
// initialized with Sid::systemFrameDistance
qreal _bottomGap { 0.0 }; // distance to next system (right border for hbox)
2018-03-27 15:36:00 +02:00
// initialized with Sid::frameSystemDistance
qreal _leftMargin { 0.0 };
qreal _rightMargin { 0.0 }; // inner margins in metric mm
qreal _topMargin { 0.0 };
qreal _bottomMargin { 0.0 };
bool _isAutoSizeEnabled { true };
2020-05-26 15:54:26 +02:00
2012-05-26 14:26:10 +02:00
public:
2021-08-30 11:17:45 +02:00
Box(const ElementType& type, System* parent);
2021-09-02 15:26:45 +02:00
void scanElements(void* data, void (* func)(void*, EngravingItem*), bool all=true) override;
virtual void draw(mu::draw::Painter*) const override;
virtual bool isEditable() const override { return true; }
2020-05-26 15:54:26 +02:00
2017-03-31 13:03:15 +02:00
virtual bool edit(EditData&) override;
2017-08-16 11:21:59 +02:00
virtual void startEditDrag(EditData&) override;
2017-03-31 13:03:15 +02:00
virtual void editDrag(EditData&) override;
virtual void endEdit(EditData&) override;
2020-05-26 15:54:26 +02:00
virtual void layout() override;
2016-11-19 11:51:21 +01:00
virtual void write(XmlWriter&) const override;
virtual void write(XmlWriter& xml, int, bool, bool) const override { write(xml); }
2016-11-19 11:51:21 +01:00
virtual void writeProperties(XmlWriter&) const override;
2014-10-16 11:56:06 +02:00
virtual bool readProperties(XmlReader&) override;
virtual void read(XmlReader&) override;
2017-03-31 13:03:15 +02:00
virtual bool acceptDrop(EditData&) const override;
2021-09-02 15:26:45 +02:00
virtual EngravingItem* drop(EditData&) override;
virtual void add(EngravingItem* e) override;
2020-05-26 15:54:26 +02:00
2021-06-07 19:25:41 +02:00
mu::RectF contentRect() const;
2012-05-26 14:26:10 +02:00
Spatium boxWidth() const { return _boxWidth; }
void setBoxWidth(Spatium val) { _boxWidth = val; }
Spatium boxHeight() const { return _boxHeight; }
void setBoxHeight(Spatium val) { _boxHeight = val; }
qreal leftMargin() const { return _leftMargin; }
qreal rightMargin() const { return _rightMargin; }
qreal topMargin() const { return _topMargin; }
qreal bottomMargin() const { return _bottomMargin; }
void setLeftMargin(qreal val) { _leftMargin = val; }
void setRightMargin(qreal val) { _rightMargin = val; }
void setTopMargin(qreal val) { _topMargin = val; }
void setBottomMargin(qreal val) { _bottomMargin = val; }
qreal topGap() const { return _topGap; }
void setTopGap(qreal val) { _topGap = val; }
qreal bottomGap() const { return _bottomGap; }
void setBottomGap(qreal val) { _bottomGap = val; }
bool isAutoSizeEnabled() const { return _isAutoSizeEnabled; }
void setAutoSizeEnabled(const bool val) { _isAutoSizeEnabled = val; }
void copyValues(Box* origin);
2020-05-26 15:54:26 +02:00
mu::engraving::PropertyValue getProperty(Pid propertyId) const override;
bool setProperty(Pid propertyId, const mu::engraving::PropertyValue&) override;
mu::engraving::PropertyValue propertyDefault(Pid) const override;
QString accessibleExtraInfo() const override;
2020-05-26 15:54:26 +02:00
// TODO: add a grip for moving the entire box
EditBehavior normalModeEditBehavior() const override { return EditBehavior::Edit; }
int gripsCount() const override { return 1; }
Grip initialEditModeGrip() const override { return Grip::START; }
Grip defaultGrip() const override { return Grip::START; }
2021-06-07 19:25:41 +02:00
std::vector<mu::PointF> gripsPositions(const EditData&) const override { return { mu::PointF() }; } // overriden in descendants
2012-05-26 14:26:10 +02:00
};
//---------------------------------------------------------
2012-07-25 11:49:34 +02:00
// @@ HBox
/// horizontal frame
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
2018-03-22 09:51:50 +01:00
class HBox final : public Box
{
bool _createSystemHeader { true };
2012-05-26 14:26:10 +02:00
public:
2021-08-30 11:17:45 +02:00
HBox(System* parent);
2016-03-30 22:33:04 +02:00
virtual ~HBox() {}
2012-05-26 14:26:10 +02:00
2020-03-25 15:06:32 +01:00
HBox* clone() const override { return new HBox(*this); }
2012-05-26 14:26:10 +02:00
2020-03-25 15:06:32 +01:00
void layout() override;
void writeProperties(XmlWriter&) const override;
bool readProperties(XmlReader&) override;
2021-06-07 19:25:41 +02:00
mu::RectF drag(EditData&) override;
2020-03-25 15:06:32 +01:00
void endEditDrag(EditData&) override;
2012-05-26 14:26:10 +02:00
void layout2();
2020-03-25 15:06:32 +01:00
bool isMovable() const override;
void computeMinWidth() override;
bool createSystemHeader() const { return _createSystemHeader; }
void setCreateSystemHeader(bool val) { _createSystemHeader = val; }
mu::engraving::PropertyValue getProperty(Pid propertyId) const override;
bool setProperty(Pid propertyId, const mu::engraving::PropertyValue&) override;
mu::engraving::PropertyValue propertyDefault(Pid) const override;
2021-06-07 19:25:41 +02:00
std::vector<mu::PointF> gripsPositions(const EditData&) const override;
2012-05-26 14:26:10 +02:00
};
//---------------------------------------------------------
2012-07-25 11:49:34 +02:00
// @@ VBox
/// vertical frame
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
class VBox : public Box
{
public:
2021-08-30 11:17:45 +02:00
VBox(const ElementType& type, System* parent);
VBox(System* parent);
2016-03-30 22:33:04 +02:00
virtual ~VBox() {}
2012-05-26 14:26:10 +02:00
2020-03-25 15:06:32 +01:00
VBox* clone() const override { return new VBox(*this); }
qreal minHeight() const;
qreal maxHeight() const;
mu::engraving::PropertyValue getProperty(Pid propertyId) const override;
2020-03-25 15:06:32 +01:00
void layout() override;
2012-05-26 14:26:10 +02:00
void startEditDrag(EditData&) override;
2021-06-07 19:25:41 +02:00
std::vector<mu::PointF> gripsPositions(const EditData&) const override;
private:
void adjustLayoutWithoutImages();
2012-05-26 14:26:10 +02:00
};
//---------------------------------------------------------
2012-07-25 11:49:34 +02:00
// @@ FBox
/// frame containing fret diagrams
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
class FBox : public VBox
{
public:
2021-08-30 11:17:45 +02:00
FBox(System* parent)
: VBox(ElementType::FBOX, parent) {}
2016-03-30 22:33:04 +02:00
virtual ~FBox() {}
2012-05-26 14:26:10 +02:00
2020-03-25 15:06:32 +01:00
FBox* clone() const override { return new FBox(*this); }
2013-05-13 18:49:17 +02:00
2020-03-25 15:06:32 +01:00
void layout() override;
2021-09-02 15:26:45 +02:00
void add(EngravingItem*) override;
2020-05-26 15:54:26 +02:00
};
2013-05-13 18:49:17 +02:00
} // namespace Ms
2012-05-26 14:26:10 +02:00
#endif