1596 lines
58 KiB
C++
1596 lines
58 KiB
C++
//=============================================================================
|
|
// MuseScore
|
|
// Music Composition & Notation
|
|
// $Id: palette.cpp 5576 2012-04-24 19:15:22Z wschweer $
|
|
//
|
|
// Copyright (C) 2011 Werner Schweer 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 2
|
|
// as published by the Free Software Foundation and appearing in
|
|
// the file LICENSE.GPL
|
|
//=============================================================================
|
|
|
|
#include "palette.h"
|
|
#include "musescore.h"
|
|
#include "libmscore/element.h"
|
|
#include "libmscore/style.h"
|
|
#include "globals.h"
|
|
#include "libmscore/sym.h"
|
|
#include "libmscore/symbol.h"
|
|
#include "libmscore/score.h"
|
|
#include "libmscore/image.h"
|
|
#include "libmscore/xml.h"
|
|
#include "scoreview.h"
|
|
#include "libmscore/note.h"
|
|
#include "libmscore/chord.h"
|
|
#include "libmscore/clef.h"
|
|
#include "libmscore/segment.h"
|
|
#include "libmscore/measure.h"
|
|
#include "libmscore/staff.h"
|
|
#include "libmscore/system.h"
|
|
#include "libmscore/page.h"
|
|
#include "libmscore/keysig.h"
|
|
#include "libmscore/timesig.h"
|
|
#include "preferences.h"
|
|
#include "seq.h"
|
|
#include "libmscore/part.h"
|
|
#include "libmscore/textline.h"
|
|
#include "libmscore/measure.h"
|
|
#include "libmscore/icon.h"
|
|
#include "libmscore/mscore.h"
|
|
#include "libmscore/imageStore.h"
|
|
#include "thirdparty/qzip/qzipreader_p.h"
|
|
#include "thirdparty/qzip/qzipwriter_p.h"
|
|
#include "libmscore/slur.h"
|
|
#include "paletteBoxButton.h"
|
|
|
|
namespace Ms {
|
|
|
|
PaletteCell::~PaletteCell()
|
|
{
|
|
delete element;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// needsStaff
|
|
// should a staff been drawn if e is used as icon in
|
|
// a palette
|
|
//---------------------------------------------------------
|
|
|
|
static bool needsStaff(Element* e)
|
|
{
|
|
if (e == 0)
|
|
return false;
|
|
switch(e->type()) {
|
|
case Element::Type::CHORD:
|
|
case Element::Type::BAR_LINE:
|
|
case Element::Type::CLEF:
|
|
case Element::Type::KEYSIG:
|
|
case Element::Type::TIMESIG:
|
|
case Element::Type::REST:
|
|
case Element::Type::BAGPIPE_EMBELLISHMENT:
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// Palette
|
|
//---------------------------------------------------------
|
|
|
|
Palette::Palette(QWidget* parent)
|
|
: QWidget(parent)
|
|
{
|
|
extraMag = 1.0 * guiScaling;
|
|
currentIdx = -1;
|
|
dragIdx = -1;
|
|
selectedIdx = -1;
|
|
_yOffset = 0.0;
|
|
setGrid(50, 60);
|
|
_drawGrid = false;
|
|
_selectable = false;
|
|
setMouseTracking(true);
|
|
setReadOnly(false);
|
|
setSystemPalette(false);
|
|
_moreElements = false;
|
|
setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Ignored);
|
|
}
|
|
|
|
Palette::~Palette()
|
|
{
|
|
foreach(PaletteCell* cell, cells)
|
|
delete cell;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// resizeEvent
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::resizeEvent(QResizeEvent* e)
|
|
{
|
|
setFixedHeight(heightForWidth(e->size().width()));
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// setMoreElements
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::setMoreElements(bool val)
|
|
{
|
|
_moreElements = val;
|
|
if (val && (cells.isEmpty() || cells.back()->tag != "ShowMore")) {
|
|
PaletteCell* cell = new PaletteCell;
|
|
cell->name = "Show More";
|
|
cell->tag = "ShowMore";
|
|
cells.append(cell);
|
|
}
|
|
else if (!val && !cells.isEmpty() && (cells.last()->tag == "ShowMore") ) {
|
|
PaletteCell* cell = cells.takeLast();
|
|
delete cell;
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// setSystemPalette
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::setSystemPalette(bool val)
|
|
{
|
|
_systemPalette = val;
|
|
if (val)
|
|
setReadOnly(true);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// setReadOnly
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::setReadOnly(bool val)
|
|
{
|
|
_readOnly = val;
|
|
setAcceptDrops(!val);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// setMag
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::setMag(qreal val)
|
|
{
|
|
extraMag = val * guiScaling;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// contextMenuEvent
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::contextMenuEvent(QContextMenuEvent* event)
|
|
{
|
|
int i = idx(event->pos());
|
|
if (i == -1) {
|
|
// palette context menu
|
|
QMenu menu;
|
|
QAction* moreAction = menu.addAction(tr("More Elements..."));
|
|
moreAction->setEnabled(_moreElements);
|
|
QAction* action = menu.exec(mapToGlobal(event->pos()));
|
|
if (action == moreAction)
|
|
emit displayMore(_name);
|
|
return;
|
|
}
|
|
|
|
QMenu menu;
|
|
QAction* clearAction = menu.addAction(tr("Clear"));
|
|
QAction* contextAction = menu.addAction(tr("Properties..."));
|
|
clearAction->setEnabled(!_readOnly);
|
|
contextAction->setEnabled(!_readOnly);
|
|
QAction* moreAction = menu.addAction(tr("More Elements..."));
|
|
moreAction->setEnabled(_moreElements);
|
|
|
|
if (cells[i] && cells[i]->readOnly)
|
|
clearAction->setEnabled(false);
|
|
|
|
QAction* action = menu.exec(mapToGlobal(event->pos()));
|
|
|
|
if (action == clearAction) {
|
|
PaletteCell* cell = cells[i];
|
|
if (cell)
|
|
delete cell;
|
|
cells[i] = 0;
|
|
emit changed();
|
|
}
|
|
else if (action == contextAction) {
|
|
PaletteCell* c = cells[i];
|
|
if (c == 0)
|
|
return;
|
|
PaletteCellProperties props(c);
|
|
if (props.exec()) {
|
|
emit changed();
|
|
}
|
|
}
|
|
else if (moreAction && (action == moreAction))
|
|
emit displayMore(_name);
|
|
|
|
bool sizeChanged = false;
|
|
while (!cells.isEmpty() && cells.back() == 0) {
|
|
cells.removeLast();
|
|
sizeChanged = true;
|
|
}
|
|
if (sizeChanged) {
|
|
setFixedHeight(heightForWidth(width()));
|
|
updateGeometry();
|
|
}
|
|
update();
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// setGrid
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::setGrid(int hh, int vv)
|
|
{
|
|
hgrid = hh * guiScaling;
|
|
vgrid = vv * guiScaling;
|
|
QSize s(hgrid, vgrid);
|
|
setSizeIncrement(s);
|
|
setBaseSize(s);
|
|
setMinimumSize(s);
|
|
updateGeometry();
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// element
|
|
//---------------------------------------------------------
|
|
|
|
Element* Palette::element(int idx)
|
|
{
|
|
if (idx < size() && cells[idx])
|
|
return cells[idx]->element;
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// contentsMousePressEvent
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::mousePressEvent(QMouseEvent* ev)
|
|
{
|
|
dragStartPosition = ev->pos();
|
|
dragIdx = idx(dragStartPosition);
|
|
if (dragIdx == -1)
|
|
return;
|
|
if (_selectable) {
|
|
if (dragIdx != selectedIdx) {
|
|
update(idxRect(dragIdx) | idxRect(selectedIdx));
|
|
selectedIdx = dragIdx;
|
|
}
|
|
emit boxClicked(dragIdx);
|
|
}
|
|
PaletteCell* cell = cells[dragIdx];
|
|
if (cell && (cell->tag == "ShowMore"))
|
|
emit displayMore(_name);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// applyDrop
|
|
//---------------------------------------------------------
|
|
|
|
static void applyDrop(Score* score, ScoreView* viewer, Element* target, Element* e, QPointF pt = QPointF())
|
|
{
|
|
DropData dropData;
|
|
dropData.view = viewer;
|
|
dropData.pos = pt.isNull() ? target->pagePos() : pt;
|
|
dropData.dragOffset = QPointF();
|
|
dropData.modifiers = 0;
|
|
dropData.element = e;
|
|
|
|
if (target->acceptDrop(dropData)) {
|
|
Element* ne = e->clone();
|
|
ne->setScore(score);
|
|
|
|
dropData.element = ne;
|
|
ne = target->drop(dropData);
|
|
if (ne)
|
|
score->select(ne, SelectType::SINGLE, 0);
|
|
viewer->setDropTarget(0); // acceptDrop sets dropTarget
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// mouseDoubleClickEvent
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::mouseDoubleClickEvent(QMouseEvent* ev)
|
|
{
|
|
if (_disableDoubleClick)
|
|
return;
|
|
int i = idx(ev->pos());
|
|
if (i == -1)
|
|
return;
|
|
Score* score = mscore->currentScore();
|
|
if (score == 0)
|
|
return;
|
|
const Selection& sel = score->selection();
|
|
if (sel.isNone())
|
|
return;
|
|
|
|
Element* element = 0;
|
|
if (i < size() && cells[i])
|
|
element = cells[i]->element;
|
|
if (element == 0)
|
|
return;
|
|
|
|
ScoreView* viewer = mscore->currentScoreView();
|
|
if (viewer->mscoreState() != STATE_EDIT
|
|
&& viewer->mscoreState() != STATE_LYRICS_EDIT
|
|
&& viewer->mscoreState() != STATE_HARMONY_FIGBASS_EDIT
|
|
&& viewer->mscoreState() != STATE_TEXT_EDIT) { // Already in startCmd in this case
|
|
score->startCmd();
|
|
}
|
|
if (sel.isList()) {
|
|
ChordRest* cr1 = sel.firstChordRest();
|
|
ChordRest* cr2 = sel.lastChordRest();
|
|
bool addSingle = false; // add a single line only
|
|
if (cr1 && cr2 == cr1) {
|
|
// one chordrest selected, ok to add line
|
|
addSingle = true;
|
|
}
|
|
else if (sel.elements().size() == 2 && cr1 && cr2 && cr1 != cr2) {
|
|
// two chordrests selected
|
|
// must be on same staff in order to add line, except for slur
|
|
if (element->type() == Element::Type::SLUR || cr1->staffIdx() == cr2->staffIdx())
|
|
addSingle = true;
|
|
}
|
|
if (viewer->mscoreState() == STATE_NOTE_ENTRY_DRUM && element->type() == Element::Type::CHORD) {
|
|
// use input position rather than selection if possible
|
|
Element* e = score->inputState().cr();
|
|
if (!e)
|
|
e = sel.elements().first();
|
|
if (e) {
|
|
// get note if selection was full chord
|
|
if (e->type() == Element::Type::CHORD)
|
|
e = static_cast<Chord*>(e)->upNote();
|
|
// use voice of element being added to (otherwise we can might corrupt the measure)
|
|
element->setTrack(e->voice());
|
|
applyDrop(score, viewer, e, element);
|
|
// continue in same track
|
|
score->inputState().setTrack(e->track());
|
|
}
|
|
else
|
|
qDebug("nowhere to place drum note");
|
|
}
|
|
else if (element->type() == Element::Type::SLUR && addSingle) {
|
|
viewer->cmdAddSlur();
|
|
}
|
|
else if (element->isSLine() && element->type() != Element::Type::GLISSANDO && addSingle) {
|
|
Segment* startSegment = cr1->segment();
|
|
Segment* endSegment = cr2->segment();
|
|
if (element->type() == Element::Type::PEDAL && cr2 != cr1)
|
|
endSegment = endSegment->nextCR(cr2->track());
|
|
// TODO - handle cross-voice selections
|
|
int idx = cr1->staffIdx();
|
|
Spanner* spanner = static_cast<Spanner*>(element->clone());
|
|
spanner->setScore(score);
|
|
score->cmdAddSpanner(spanner, idx, startSegment, endSegment);
|
|
}
|
|
else {
|
|
for (Element* e : sel.elements())
|
|
applyDrop(score, viewer, e, element);
|
|
}
|
|
}
|
|
else if (sel.isRange()) {
|
|
if (element->type() == Element::Type::BAR_LINE
|
|
|| element->type() == Element::Type::MARKER
|
|
|| element->type() == Element::Type::JUMP
|
|
|| element->type() == Element::Type::SPACER
|
|
|| element->type() == Element::Type::LAYOUT_BREAK
|
|
|| element->type() == Element::Type::VBOX
|
|
|| element->type() == Element::Type::HBOX
|
|
|| element->type() == Element::Type::TBOX
|
|
|| element->type() == Element::Type::MEASURE
|
|
|| element->type() == Element::Type::BRACKET
|
|
|| (element->type() == Element::Type::ICON
|
|
&& (static_cast<Icon*>(element)->iconType() == IconType::VFRAME
|
|
|| static_cast<Icon*>(element)->iconType() == IconType::HFRAME
|
|
|| static_cast<Icon*>(element)->iconType() == IconType::TFRAME
|
|
|| static_cast<Icon*>(element)->iconType() == IconType::MEASURE
|
|
|| static_cast<Icon*>(element)->iconType() == IconType::BRACKETS))) {
|
|
Measure* last = sel.endSegment() ? sel.endSegment()->measure() : nullptr;
|
|
for (Measure* m = sel.startSegment()->measure(); m; m = m->nextMeasureMM()) {
|
|
QRectF r = m->staffabbox(sel.staffStart());
|
|
QPointF pt(r.x() + r.width() * .5, r.y() + r.height() * .5);
|
|
pt += m->system()->page()->pos();
|
|
applyDrop(score, viewer, m, element, pt);
|
|
if (m == last)
|
|
break;
|
|
}
|
|
}
|
|
else if (element->type() == Element::Type::CLEF
|
|
|| element->type() == Element::Type::KEYSIG
|
|
|| element->type() == Element::Type::TIMESIG) {
|
|
Measure* m1 = sel.startSegment()->measure();
|
|
Measure* m2 = sel.endSegment() ? sel.endSegment()->measure() : nullptr;
|
|
if (m2 == m1 && sel.startSegment()->rtick() == 0)
|
|
m2 = nullptr; // don't restore original if one full measure selected
|
|
else if (m2)
|
|
m2 = m2->nextMeasureMM();
|
|
// for clefs, apply to each staff separately
|
|
// otherwise just apply to top staff
|
|
int staffIdx1 = sel.staffStart();
|
|
int staffIdx2 = element->type() == Element::Type::CLEF ? sel.staffEnd() : staffIdx1 + 1;
|
|
for (int i = staffIdx1; i < staffIdx2; ++i) {
|
|
// for clefs, use mid-measure changes if appropriate
|
|
Element* e1 = nullptr;
|
|
Element* e2 = nullptr;
|
|
// use mid-measure clef changes as appropriate
|
|
if (element->type() == Element::Type::CLEF) {
|
|
if (sel.startSegment()->segmentType() == Segment::Type::ChordRest && sel.startSegment()->rtick() != 0) {
|
|
ChordRest* cr = static_cast<ChordRest*>(sel.startSegment()->nextChordRest(i * VOICES));
|
|
if (cr && cr->isChord())
|
|
e1 = static_cast<Chord*>(cr)->upNote();
|
|
else
|
|
e1 = cr;
|
|
}
|
|
if (sel.endSegment() && sel.endSegment()->segmentType() == Segment::Type::ChordRest) {
|
|
ChordRest* cr = static_cast<ChordRest*>(sel.endSegment()->nextChordRest(i * VOICES));
|
|
if (cr && cr->isChord())
|
|
e2 = static_cast<Chord*>(cr)->upNote();
|
|
else
|
|
e2 = cr;
|
|
}
|
|
}
|
|
if (m2 || e2) {
|
|
// restore original clef/keysig/timesig
|
|
Staff* staff = score->staff(i);
|
|
int tick1 = sel.startSegment()->tick();
|
|
Element* oelement = nullptr;
|
|
switch (element->type()) {
|
|
case Element::Type::CLEF:
|
|
{
|
|
Clef* oclef = new Clef(score);
|
|
oclef->setClefType(staff->clef(tick1));
|
|
oelement = oclef;
|
|
break;
|
|
}
|
|
case Element::Type::KEYSIG:
|
|
{
|
|
KeySig* okeysig = new KeySig(score);
|
|
okeysig->setKeySigEvent(staff->keySigEvent(tick1));
|
|
if (!score->styleB(StyleIdx::concertPitch) && !okeysig->isCustom() && !okeysig->isAtonal()) {
|
|
Interval v = staff->part()->instrument(tick1)->transpose();
|
|
if (!v.isZero()) {
|
|
Key k = okeysig->key();
|
|
okeysig->setKey(transposeKey(k, v));
|
|
}
|
|
}
|
|
oelement = okeysig;
|
|
break;
|
|
}
|
|
case Element::Type::TIMESIG:
|
|
{
|
|
TimeSig* otimesig = new TimeSig(score);
|
|
otimesig->setFrom(staff->timeSig(tick1));
|
|
oelement = otimesig;
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
if (oelement) {
|
|
if (e2) {
|
|
applyDrop(score, viewer, e2, oelement);
|
|
}
|
|
else {
|
|
QRectF r = m2->staffabbox(i);
|
|
QPointF pt(r.x() + r.width() * .5, r.y() + r.height() * .5);
|
|
pt += m2->system()->page()->pos();
|
|
applyDrop(score, viewer, m2, oelement, pt);
|
|
}
|
|
delete oelement;
|
|
}
|
|
}
|
|
// apply new clef/keysig/timesig
|
|
if (e1) {
|
|
applyDrop(score, viewer, e1, element);
|
|
}
|
|
else {
|
|
QRectF r = m1->staffabbox(i);
|
|
QPointF pt(r.x() + r.width() * .5, r.y() + r.height() * .5);
|
|
pt += m1->system()->page()->pos();
|
|
applyDrop(score, viewer, m1, element, pt);
|
|
}
|
|
}
|
|
}
|
|
else if (element->type() == Element::Type::SLUR) {
|
|
viewer->cmdAddSlur();
|
|
}
|
|
else if (element->isSLine() && element->type() != Element::Type::GLISSANDO) {
|
|
Segment* startSegment = sel.startSegment();
|
|
Segment* endSegment = sel.endSegment();
|
|
int endStaff = sel.staffEnd();
|
|
for (int i = sel.staffStart(); i < endStaff; ++i) {
|
|
Spanner* spanner = static_cast<Spanner*>(element->clone());
|
|
spanner->setScore(score);
|
|
score->cmdAddSpanner(spanner, i, startSegment, endSegment);
|
|
}
|
|
}
|
|
else {
|
|
int track1 = sel.staffStart() * VOICES;
|
|
int track2 = sel.staffEnd() * VOICES;
|
|
Segment* startSegment = sel.startSegment();
|
|
Segment* endSegment = sel.endSegment(); //keep it, it could change during the loop
|
|
for (Segment* s = startSegment; s && s != endSegment; s = s->next1()) {
|
|
for (int track = track1; track < track2; ++track) {
|
|
Element* e = s->element(track);
|
|
if (e == 0)
|
|
continue;
|
|
if (e->type() == Element::Type::CHORD) {
|
|
Chord* chord = static_cast<Chord*>(e);
|
|
for (Note* n : chord->notes())
|
|
applyDrop(score, viewer, n, element);
|
|
}
|
|
else {
|
|
// do not apply articulation to barline in a range selection
|
|
if(e->type() != Element::Type::BAR_LINE || element->type() != Element::Type::ARTICULATION)
|
|
applyDrop(score, viewer, e, element);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
qDebug("unknown selection state");
|
|
if (viewer->mscoreState() != STATE_EDIT
|
|
&& viewer->mscoreState() != STATE_LYRICS_EDIT
|
|
&& viewer->mscoreState() != STATE_HARMONY_FIGBASS_EDIT
|
|
&& viewer->mscoreState() != STATE_TEXT_EDIT) { //Already in startCmd mode in this case
|
|
score->endCmd();
|
|
if (viewer->mscoreState() == STATE_NOTE_ENTRY_DRUM)
|
|
viewer->moveCursor();
|
|
}
|
|
mscore->endCmd();
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// idx
|
|
//---------------------------------------------------------
|
|
|
|
int Palette::idx(const QPoint& p) const
|
|
{
|
|
if (columns() == 0)
|
|
return -1;
|
|
int rightBorder = width() % hgrid;
|
|
int hhgrid = hgrid + (rightBorder / columns());
|
|
|
|
int x = p.x();
|
|
int y = p.y();
|
|
|
|
int row = y / vgrid;
|
|
int col = x / hhgrid;
|
|
|
|
int nc = columns();
|
|
if (col > nc)
|
|
return -1;
|
|
|
|
int idx = row * nc + col;
|
|
if (idx < 0 || idx >= cells.size())
|
|
return -1;
|
|
return idx;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// idxRect
|
|
//---------------------------------------------------------
|
|
|
|
QRect Palette::idxRect(int i)
|
|
{
|
|
if (i == -1)
|
|
return QRect();
|
|
if (columns() == 0)
|
|
return QRect();
|
|
|
|
int rightBorder = width() % hgrid;
|
|
int hhgrid = hgrid + (rightBorder / columns());
|
|
|
|
int cc = i % columns();
|
|
int cr = i / columns();
|
|
return QRect(cc * hhgrid, cr * vgrid, hhgrid, vgrid);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// mouseMoveEvent
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::mouseMoveEvent(QMouseEvent* ev)
|
|
{
|
|
if ((currentIdx != -1) && (dragIdx == currentIdx) && (ev->buttons() & Qt::LeftButton)
|
|
&& (ev->pos() - dragStartPosition).manhattanLength() > QApplication::startDragDistance()) {
|
|
PaletteCell* cell = cells[currentIdx];
|
|
if (cell && cell->element) {
|
|
QDrag* drag = new QDrag(this);
|
|
QMimeData* mimeData = new QMimeData;
|
|
Element* el = cell->element;
|
|
qreal mag = PALETTE_SPATIUM * extraMag / gscore->spatium();
|
|
QPointF spos = QPointF(dragStartPosition) / mag;
|
|
spos -= QPointF(cells[currentIdx]->x, cells[currentIdx]->y);
|
|
|
|
// DEBUG:
|
|
spos.setX(0.0);
|
|
mimeData->setData(mimeSymbolFormat, el->mimeData(spos));
|
|
drag->setMimeData(mimeData);
|
|
|
|
dragSrcIdx = currentIdx;
|
|
emit startDragElement(el);
|
|
if (_readOnly) {
|
|
drag->start(Qt::CopyAction);
|
|
}
|
|
else {
|
|
/*Qt::DropAction action = */
|
|
drag->start(Qt::DropActions(Qt::CopyAction | Qt::MoveAction));
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
QRect r;
|
|
if (currentIdx != -1)
|
|
r = idxRect(currentIdx);
|
|
currentIdx = idx(ev->pos());
|
|
if (currentIdx != -1) {
|
|
if (cells[currentIdx] == 0)
|
|
currentIdx = -1;
|
|
else
|
|
r |= idxRect(currentIdx);
|
|
}
|
|
update(r);
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// leaveEvent
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::leaveEvent(QEvent*)
|
|
{
|
|
if (currentIdx != -1) {
|
|
QRect r = idxRect(currentIdx);
|
|
currentIdx = -1;
|
|
update(r);
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// append
|
|
// append element to palette
|
|
//---------------------------------------------------------
|
|
|
|
PaletteCell* Palette::append(Element* s, const QString& name, QString tag, qreal mag)
|
|
{
|
|
if (s == 0) {
|
|
cells.append(0);
|
|
return 0;
|
|
}
|
|
PaletteCell* cell = new PaletteCell;
|
|
int idx;
|
|
if (_moreElements) {
|
|
cells.insert(cells.size() - 1, cell);
|
|
idx = cells.size() - 2;
|
|
}
|
|
else {
|
|
cells.append(cell);
|
|
idx = cells.size() - 1;
|
|
}
|
|
PaletteCell* pc = add(idx, s, name, tag, mag);
|
|
setFixedHeight(heightForWidth(width()));
|
|
updateGeometry();
|
|
return pc;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// add
|
|
//---------------------------------------------------------
|
|
|
|
PaletteCell* Palette::add(int idx, Element* s, const QString& name, QString tag, qreal mag)
|
|
{
|
|
if (s) {
|
|
s->setPos(0.0, 0.0);
|
|
s->setUserOff(QPointF());
|
|
s->setReadPos(QPointF());
|
|
}
|
|
|
|
PaletteCell* cell = new PaletteCell;
|
|
if (idx < cells.size()) {
|
|
delete cells[idx];
|
|
}
|
|
else {
|
|
for (int i = cells.size(); i <= idx; ++i)
|
|
cells.append(0);
|
|
}
|
|
cells[idx] = cell;
|
|
cell->element = s;
|
|
cell->name = name;
|
|
cell->tag = tag;
|
|
cell->drawStaff = needsStaff(s);
|
|
cell->xoffset = 0;
|
|
cell->yoffset = 0;
|
|
cell->mag = mag;
|
|
cell->readOnly = false;
|
|
update();
|
|
if (s && s->type() == Element::Type::ICON) {
|
|
Icon* icon = static_cast<Icon*>(s);
|
|
connect(getAction(icon->action()), SIGNAL(toggled(bool)), SLOT(actionToggled(bool)));
|
|
}
|
|
updateGeometry();
|
|
return cell;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// paintPaletteElement
|
|
//---------------------------------------------------------
|
|
|
|
static void paintPaletteElement(void* data, Element* e)
|
|
{
|
|
QPainter* p = static_cast<QPainter*>(data);
|
|
p->save();
|
|
p->translate(e->pos());
|
|
e->draw(p);
|
|
p->restore();
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// paintEvent
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::paintEvent(QPaintEvent* /*event*/)
|
|
{
|
|
qreal _spatium = gscore->spatium();
|
|
qreal mag = PALETTE_SPATIUM * extraMag / _spatium;
|
|
gscore->setSpatium(SPATIUM20);
|
|
|
|
QPainter p(this);
|
|
p.setRenderHint(QPainter::Antialiasing, true);
|
|
|
|
QColor bgColor(0xf6, 0xf0, 0xda);
|
|
if (preferences.fgUseColor)
|
|
bgColor = preferences.fgColor;
|
|
#if 1
|
|
p.setBrush(bgColor);
|
|
p.drawRoundedRect(0, 0, width(), height(), 2, 2);
|
|
#else
|
|
p.fillRect(event->rect(), QColor(0xf6, 0xf0, 0xda));
|
|
#endif
|
|
//
|
|
// draw grid
|
|
//
|
|
if (columns() == 0)
|
|
return;
|
|
int rightBorder = width() % hgrid;
|
|
int hhgrid = hgrid + (rightBorder / columns());
|
|
|
|
if (_drawGrid) {
|
|
p.setPen(Qt::gray);
|
|
for (int row = 1; row < rows(); ++row) {
|
|
int x2 = row < rows()-1 ? columns() * hhgrid : width();
|
|
int y = row * vgrid;
|
|
p.drawLine(0, y, x2, y);
|
|
}
|
|
for (int column = 1; column < columns(); ++column) {
|
|
int x = hhgrid * column;
|
|
p.drawLine(x, 0, x, rows() * vgrid);
|
|
}
|
|
}
|
|
|
|
qreal dy = lrint(2 * PALETTE_SPATIUM * extraMag);
|
|
|
|
//
|
|
// draw symbols
|
|
//
|
|
|
|
// QPen pen(palette().color(QPalette::Normal, QPalette::Text));
|
|
QPen pen(Qt::black);
|
|
pen.setWidthF(MScore::defaultStyle()->value(StyleIdx::staffLineWidth).toDouble() * PALETTE_SPATIUM * extraMag);
|
|
|
|
for (int idx = 0; idx < cells.size(); ++idx) {
|
|
int yoffset = gscore->spatium() * _yOffset;
|
|
QRect r = idxRect(idx);
|
|
QRect rShift = r.translated(0, yoffset);
|
|
p.setPen(pen);
|
|
QColor c(MScore::selectColor[0]);
|
|
if (idx == selectedIdx) {
|
|
c.setAlpha(100);
|
|
p.fillRect(r, c);
|
|
}
|
|
else if (idx == currentIdx) {
|
|
c.setAlpha(50);
|
|
p.fillRect(r, c);
|
|
}
|
|
if (cells.isEmpty() || cells[idx] == 0)
|
|
continue;
|
|
|
|
QString tag = cells[idx]->tag;
|
|
if (!tag.isEmpty()) {
|
|
p.setPen(Qt::darkGray);
|
|
QFont f(p.font());
|
|
f.setPointSize(12);
|
|
p.setFont(f);
|
|
if (tag == "ShowMore")
|
|
p.drawText(idxRect(idx), Qt::AlignCenter, "???");
|
|
else
|
|
p.drawText(rShift, Qt::AlignLeft | Qt::AlignTop, tag);
|
|
}
|
|
|
|
p.setPen(pen);
|
|
|
|
Element* el = cells[idx]->element;
|
|
if (el == 0)
|
|
continue;
|
|
bool drawStaff = cells[idx]->drawStaff;
|
|
if (el->type() == Element::Type::ICON) {
|
|
int x = rShift.x();
|
|
int y = rShift.y();
|
|
Icon* _icon = static_cast<Icon*>(el);
|
|
QIcon icon = _icon->icon();
|
|
static const int border = 2;
|
|
int size = (hhgrid < vgrid ? hhgrid : vgrid) - 2 * border;
|
|
QPixmap pm(icon.pixmap(size, QIcon::Normal, QIcon::On));
|
|
p.drawPixmap(x + (hhgrid - size) / 2, y + (vgrid - size) / 2, pm);
|
|
}
|
|
else {
|
|
int row = idx / columns();
|
|
int column = idx % columns();
|
|
|
|
el->layout();
|
|
el->setPos(0.0, 0.0);
|
|
|
|
qreal cellMag = cells[idx]->mag * mag;
|
|
if (drawStaff) {
|
|
qreal y = r.y() + vgrid * .5 - dy + _yOffset * _spatium * cellMag;
|
|
qreal x = r.x() + 3;
|
|
qreal w = hhgrid - 6;
|
|
for (int i = 0; i < 5; ++i) {
|
|
qreal yy = y + PALETTE_SPATIUM * i * extraMag;
|
|
p.drawLine(QLineF(x, yy, x + w, yy));
|
|
}
|
|
}
|
|
p.save();
|
|
p.scale(cellMag, cellMag);
|
|
|
|
double gw = hhgrid / cellMag;
|
|
double gh = vgrid / cellMag;
|
|
double gx = column * gw + cells[idx]->xoffset * _spatium;
|
|
double gy = row * gh + cells[idx]->yoffset * _spatium;
|
|
|
|
double sw = el->width();
|
|
double sh = el->height();
|
|
double sy;
|
|
|
|
if (drawStaff)
|
|
sy = gy + gh * .5 - 2.0 * _spatium;
|
|
else
|
|
sy = gy + (gh - sh) * .5 - el->bbox().y();
|
|
double sx = gx + (gw - sw) * .5 - el->bbox().x();
|
|
|
|
sy += _yOffset * _spatium;
|
|
|
|
p.translate(sx, sy);
|
|
cells[idx]->x = sx;
|
|
cells[idx]->y = sy;
|
|
|
|
QColor color;
|
|
if (idx != selectedIdx) {
|
|
// show voice colors for notes
|
|
if (el->type() == Element::Type::CHORD) {
|
|
Chord* c = static_cast<Chord*>(el);
|
|
for (Note* n : c->notes())
|
|
n->setSelected(true);
|
|
color = el->curColor();
|
|
}
|
|
else
|
|
color = palette().color(QPalette::Normal, QPalette::Text);
|
|
}
|
|
else
|
|
color = palette().color(QPalette::Normal, QPalette::HighlightedText);
|
|
|
|
p.setPen(QPen(color));
|
|
el->scanElements(&p, paintPaletteElement);
|
|
p.restore();
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// event
|
|
//---------------------------------------------------------
|
|
|
|
bool Palette::event(QEvent* ev)
|
|
{
|
|
if (columns() && (ev->type() == QEvent::ToolTip)) {
|
|
int rightBorder = width() % hgrid;
|
|
int hhgrid = hgrid + (rightBorder / columns());
|
|
QHelpEvent* he = (QHelpEvent*)ev;
|
|
int x = he->pos().x();
|
|
int y = he->pos().y();
|
|
|
|
int row = y / vgrid;
|
|
int col = x / hhgrid;
|
|
|
|
if (row < 0 || row >= rows())
|
|
return false;
|
|
if (col < 0 || col >= columns())
|
|
return false;
|
|
int idx = row * columns() + col;
|
|
if (idx >= cells.size())
|
|
return false;
|
|
if (cells[idx] == 0)
|
|
return false;
|
|
QToolTip::showText(he->globalPos(),
|
|
qApp->translate("Palette", cells[idx]->name.toUtf8()), this);
|
|
return false;
|
|
}
|
|
return QWidget::event(ev);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// dragEnterEvent
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::dragEnterEvent(QDragEnterEvent* event)
|
|
{
|
|
const QMimeData* data = event->mimeData();
|
|
if (data->hasUrls()) {
|
|
QList<QUrl>ul = event->mimeData()->urls();
|
|
QUrl u = ul.front();
|
|
if (MScore::debugMode) {
|
|
qDebug("dragEnterEvent: Url: %s", qPrintable(u.toString()));
|
|
qDebug(" scheme <%s> path <%s>", qPrintable(u.scheme()), qPrintable(u.path()));
|
|
}
|
|
if (u.scheme() == "file") {
|
|
QFileInfo fi(u.path());
|
|
QString suffix(fi.suffix().toLower());
|
|
if (suffix == "svg"
|
|
|| suffix == "jpg"
|
|
|| suffix == "jpeg"
|
|
|| suffix == "png"
|
|
) {
|
|
event->acceptProposedAction();
|
|
}
|
|
}
|
|
}
|
|
else if (data->hasFormat(mimeSymbolFormat))
|
|
event->acceptProposedAction();
|
|
else {
|
|
if (MScore::debugMode) {
|
|
qDebug("dragEnterEvent: formats:");
|
|
foreach(const QString& s, event->mimeData()->formats())
|
|
qDebug(" %s", s.toLatin1().data());
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// dragMoveEvent
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::dragMoveEvent(QDragMoveEvent* ev)
|
|
{
|
|
ev->acceptProposedAction();
|
|
int i = idx(ev->pos());
|
|
if (i == -1)
|
|
return;
|
|
|
|
int n = cells.size();
|
|
int ii = i;
|
|
for (; ii < n; ++ii) {
|
|
if (cells[ii] == 0)
|
|
break;
|
|
}
|
|
if (ii == n)
|
|
return;
|
|
|
|
QRect r;
|
|
if (currentIdx != -1)
|
|
r = idxRect(currentIdx);
|
|
update(r | idxRect(ii));
|
|
currentIdx = ii;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// dropEvent
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::dropEvent(QDropEvent* event)
|
|
{
|
|
Element* e = 0;
|
|
QString name;
|
|
|
|
const QMimeData* data = event->mimeData();
|
|
if (data->hasUrls()) {
|
|
QList<QUrl>ul = event->mimeData()->urls();
|
|
QUrl u = ul.front();
|
|
if (u.scheme() == "file") {
|
|
QFileInfo fi(u.path());
|
|
Image* s = new Image(gscore);
|
|
QString filePath(u.toLocalFile());
|
|
s->load(filePath);
|
|
e = s;
|
|
QFileInfo f(filePath);
|
|
name = f.completeBaseName();
|
|
}
|
|
}
|
|
else if (data->hasFormat(mimeSymbolFormat)) {
|
|
QByteArray data(event->mimeData()->data(mimeSymbolFormat));
|
|
XmlReader xml(data);
|
|
QPointF dragOffset;
|
|
Fraction duration;
|
|
Element::Type type = Element::readType(xml, &dragOffset, &duration);
|
|
|
|
if (type == Element::Type::SYMBOL) {
|
|
Symbol* symbol = new Symbol(gscore);
|
|
symbol->read(xml);
|
|
e = symbol;
|
|
}
|
|
else {
|
|
e = Element::create(type, gscore);
|
|
if (e) {
|
|
e->read(xml);
|
|
if (e->type() == Element::Type::TEXTLINE
|
|
|| e->type() == Element::Type::HAIRPIN
|
|
|| e->type() == Element::Type::VOLTA
|
|
|| e->type() == Element::Type::OTTAVA
|
|
|| e->type() == Element::Type::PEDAL
|
|
|| e->type() == Element::Type::TRILL
|
|
) {
|
|
SLine* tl = static_cast<SLine*>(e);
|
|
tl->setLen(gscore->spatium() * 7);
|
|
tl->setTrack(0);
|
|
}
|
|
else if (e->type() == Element::Type::SLUR || e->type() == Element::Type::TIE) {
|
|
SlurTie* st = static_cast<SlurTie*>(e);
|
|
st->setTrack(0);
|
|
}
|
|
else if (e->type() == Element::Type::ICON) {
|
|
Icon* i = static_cast<Icon*>(e);
|
|
const QByteArray& action = i->action();
|
|
if (!action.isEmpty()) {
|
|
const Shortcut* s = Shortcut::getShortcut(action);
|
|
if (s) {
|
|
QAction* a = s->action();
|
|
QIcon icon(a->icon());
|
|
i->setAction(action, icon);
|
|
}
|
|
}
|
|
}
|
|
// else if (e->type() == Element::Type::KEYSIG) {
|
|
// KeySig* k = static_cast<KeySig*>(e);
|
|
// }
|
|
}
|
|
}
|
|
}
|
|
if (e == 0)
|
|
return;
|
|
e->setSelected(false);
|
|
bool ok = false;
|
|
if (event->source() == this) {
|
|
int i = idx(event->pos());
|
|
if (i == -1) {
|
|
cells.append(cells[dragSrcIdx]);
|
|
cells[dragSrcIdx] = 0;
|
|
ok = true;
|
|
}
|
|
else if (dragSrcIdx != i) {
|
|
PaletteCell* c = cells[dragSrcIdx];
|
|
cells[dragSrcIdx] = cells[i];
|
|
cells[i] = c;
|
|
delete e;
|
|
ok = true;
|
|
}
|
|
update(idxRect(i) | idxRect(dragSrcIdx));
|
|
event->setDropAction(Qt::MoveAction);
|
|
}
|
|
else {
|
|
int i = idx(event->pos());
|
|
if (i == -1 || cells[i] != 0)
|
|
append(e, name);
|
|
else
|
|
add(i, e, name);
|
|
ok = true;
|
|
}
|
|
if (ok) {
|
|
event->acceptProposedAction();
|
|
while (!cells.isEmpty() && cells.back() == 0) {
|
|
cells.removeLast();
|
|
}
|
|
setFixedHeight(heightForWidth(width()));
|
|
updateGeometry();
|
|
update();
|
|
emit changed();
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// write
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::write(Xml& xml) const
|
|
{
|
|
xml.stag(QString("Palette name=\"%1\"").arg(Xml::xmlString(_name)));
|
|
xml.tag("gridWidth", hgrid / guiScaling);
|
|
xml.tag("gridHeight", vgrid / guiScaling);
|
|
xml.tag("mag", extraMag / guiScaling);
|
|
if (_drawGrid)
|
|
xml.tag("grid", _drawGrid);
|
|
|
|
xml.tag("moreElements", _moreElements);
|
|
if (_yOffset != 0.0)
|
|
xml.tag("yoffset", _yOffset);
|
|
|
|
int n = cells.size();
|
|
for (int i = 0; i < n; ++i) {
|
|
if (cells[i] && cells[i]->tag == "ShowMore")
|
|
continue;
|
|
if (cells[i] == 0 || cells[i]->element == 0) {
|
|
xml.tagE("Cell");
|
|
continue;
|
|
}
|
|
if (!cells[i]->name.isEmpty())
|
|
xml.stag(QString("Cell name=\"%1\"").arg(Xml::xmlString(cells[i]->name)));
|
|
else
|
|
xml.stag("Cell");
|
|
if (cells[i]->drawStaff)
|
|
xml.tag("staff", cells[i]->drawStaff);
|
|
if (cells[i]->xoffset)
|
|
xml.tag("xoffset", cells[i]->xoffset);
|
|
if (cells[i]->yoffset)
|
|
xml.tag("yoffset", cells[i]->yoffset);
|
|
if (!cells[i]->tag.isEmpty())
|
|
xml.tag("tag", cells[i]->tag);
|
|
if (cells[i]->mag != 1.0)
|
|
xml.tag("mag", cells[i]->mag);
|
|
cells[i]->element->write(xml);
|
|
xml.etag();
|
|
}
|
|
xml.etag();
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// read
|
|
// return false on error
|
|
//---------------------------------------------------------
|
|
|
|
bool Palette::read(QFile* qf)
|
|
{
|
|
XmlReader e(qf);
|
|
while (e.readNextStartElement()) {
|
|
if (e.name() == "museScore") {
|
|
QString version = e.attribute("version");
|
|
QStringList sl = version.split('.');
|
|
int versionId = sl[0].toInt() * 100 + sl[1].toInt();
|
|
gscore->setMscVersion(versionId);
|
|
|
|
while (e.readNextStartElement()) {
|
|
const QStringRef& tag(e.name());
|
|
if (tag == "Palette") {
|
|
QString name = e.attribute("name");
|
|
setName(name);
|
|
read(e);
|
|
}
|
|
else
|
|
e.unknown();
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// read
|
|
//---------------------------------------------------------
|
|
|
|
bool Palette::read(const QString& p)
|
|
{
|
|
QString path(p);
|
|
if (!path.endsWith(".mpal"))
|
|
path += ".mpal";
|
|
|
|
MQZipReader f(path);
|
|
if (!f.exists()) {
|
|
qDebug("palette <%s> not found", qPrintable(path));
|
|
return false;
|
|
}
|
|
clear();
|
|
|
|
QByteArray ba = f.fileData("META-INF/container.xml");
|
|
|
|
XmlReader e(ba);
|
|
// extract first rootfile
|
|
QString rootfile = "";
|
|
QList<QString> images;
|
|
while (e.readNextStartElement()) {
|
|
if (e.name() != "container") {
|
|
e.unknown();
|
|
break;;
|
|
}
|
|
while (e.readNextStartElement()) {
|
|
if (e.name() != "rootfiles") {
|
|
e.unknown();
|
|
break;
|
|
}
|
|
while (e.readNextStartElement()) {
|
|
const QStringRef& tag(e.name());
|
|
|
|
if (tag == "rootfile") {
|
|
if (rootfile.isEmpty())
|
|
rootfile = e.attribute("full-path");
|
|
e.readNext();
|
|
}
|
|
else if (tag == "file")
|
|
images.append(e.readElementText());
|
|
else
|
|
e.unknown();
|
|
}
|
|
}
|
|
}
|
|
//
|
|
// load images
|
|
//
|
|
foreach(const QString& s, images)
|
|
imageStore.add(s, f.fileData(s));
|
|
|
|
if (rootfile.isEmpty()) {
|
|
qDebug("can't find rootfile in: %s", qPrintable(path));
|
|
return false;
|
|
}
|
|
|
|
ba = f.fileData(rootfile);
|
|
e.clear();
|
|
e.addData(ba);
|
|
while (e.readNextStartElement()) {
|
|
if (e.name() == "museScore") {
|
|
QString version = e.attribute("version");
|
|
QStringList sl = version.split('.');
|
|
int versionId = sl[0].toInt() * 100 + sl[1].toInt();
|
|
gscore->setMscVersion(versionId);
|
|
|
|
while (e.readNextStartElement()) {
|
|
if (e.name() == "Palette") {
|
|
QString name = e.attribute("name");
|
|
setName(name);
|
|
read(e);
|
|
}
|
|
else
|
|
e.unknown();
|
|
}
|
|
}
|
|
else
|
|
e.unknown();
|
|
}
|
|
return true;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// writeFailed
|
|
//---------------------------------------------------------
|
|
|
|
static void writeFailed(const QString& path)
|
|
{
|
|
QString s = qApp->translate("Palette", "Writing Palette File\n%1\nfailed: ");
|
|
QMessageBox::critical(mscore, qApp->translate("Palette", "MuseScore: Writing Palette File"), s.arg(path));
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// write
|
|
// write as compressed zip file and include
|
|
// images as needed
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::write(const QString& p)
|
|
{
|
|
QSet<ImageStoreItem*> images;
|
|
int n = cells.size();
|
|
for (int i = 0; i < n; ++i) {
|
|
if (cells[i] == 0 || cells[i]->element == 0 || cells[i]->element->type() != Element::Type::IMAGE)
|
|
continue;
|
|
images.insert(static_cast<Image*>(cells[i]->element)->storeItem());
|
|
}
|
|
|
|
QString path(p);
|
|
if (!path.endsWith(".mpal"))
|
|
path += ".mpal";
|
|
|
|
MQZipWriter f(path);
|
|
// f.setCompressionPolicy(QZipWriter::NeverCompress);
|
|
f.setCreationPermissions(
|
|
QFile::ReadOwner | QFile::WriteOwner | QFile::ExeOwner
|
|
| QFile::ReadUser | QFile::WriteUser | QFile::ExeUser
|
|
| QFile::ReadGroup | QFile::WriteGroup | QFile::ExeGroup
|
|
| QFile::ReadOther | QFile::WriteOther | QFile::ExeOther);
|
|
|
|
if (f.status() != MQZipWriter::NoError) {
|
|
writeFailed(path);
|
|
return;
|
|
}
|
|
QBuffer cbuf;
|
|
cbuf.open(QIODevice::ReadWrite);
|
|
Xml xml(&cbuf);
|
|
xml.header();
|
|
xml.stag("container");
|
|
xml.stag("rootfiles");
|
|
xml.stag(QString("rootfile full-path=\"%1\"").arg(Xml::xmlString("palette.xml")));
|
|
xml.etag();
|
|
foreach (ImageStoreItem* ip, images) {
|
|
QString path = QString("Pictures/") + ip->hashName();
|
|
xml.tag("file", path);
|
|
}
|
|
xml.etag();
|
|
xml.etag();
|
|
cbuf.seek(0);
|
|
//f.addDirectory("META-INF");
|
|
//f.addDirectory("Pictures");
|
|
f.addFile("META-INF/container.xml", cbuf.data());
|
|
|
|
// save images
|
|
foreach(ImageStoreItem* ip, images) {
|
|
QString path = QString("Pictures/") + ip->hashName();
|
|
f.addFile(path, ip->buffer());
|
|
}
|
|
{
|
|
QBuffer cbuf;
|
|
cbuf.open(QIODevice::ReadWrite);
|
|
Xml xml(&cbuf);
|
|
xml.header();
|
|
xml.stag("museScore version=\"" MSC_VERSION "\"");
|
|
write(xml);
|
|
xml.etag();
|
|
cbuf.close();
|
|
f.addFile("palette.xml", cbuf.data());
|
|
}
|
|
f.close();
|
|
if (f.status() != MQZipWriter::NoError)
|
|
writeFailed(path);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// read
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::read(XmlReader& e)
|
|
{
|
|
while (e.readNextStartElement()) {
|
|
const QStringRef& t(e.name());
|
|
if (t == "gridWidth")
|
|
hgrid = e.readDouble() * guiScaling;
|
|
else if (t == "gridHeight")
|
|
vgrid = e.readDouble() * guiScaling;
|
|
else if (t == "mag")
|
|
extraMag = e.readDouble() * guiScaling;
|
|
else if (t == "grid")
|
|
_drawGrid = e.readInt();
|
|
else if (t == "moreElements")
|
|
setMoreElements(e.readInt());
|
|
else if (t == "yoffset")
|
|
_yOffset = e.readDouble();
|
|
else if (t == "drumPalette") // obsolete
|
|
e.skipCurrentElement();
|
|
else if (t == "Cell") {
|
|
PaletteCell* cell = new PaletteCell;
|
|
cell->name = e.attribute("name");
|
|
bool add = true;
|
|
while (e.readNextStartElement()) {
|
|
const QStringRef& t(e.name());
|
|
if (t == "staff")
|
|
cell->drawStaff = e.readInt();
|
|
else if (t == "xoffset")
|
|
cell->xoffset = e.readDouble();
|
|
else if (t == "yoffset")
|
|
cell->yoffset = e.readDouble();
|
|
else if (t == "mag")
|
|
cell->mag = e.readDouble();
|
|
else if (t == "tag")
|
|
cell->tag = e.readElementText();
|
|
else {
|
|
cell->element = Element::name2Element(t, gscore);
|
|
if (cell->element == 0) {
|
|
e.unknown();
|
|
delete cell;
|
|
return;
|
|
}
|
|
else {
|
|
cell->element->read(e);
|
|
if (cell->element->type() == Element::Type::ICON) {
|
|
Icon* icon = static_cast<Icon*>(cell->element);
|
|
QAction* ac = getAction(icon->action());
|
|
if (ac) {
|
|
QIcon qicon(ac->icon());
|
|
icon->setAction(icon->action(), qicon);
|
|
}
|
|
else {
|
|
add = false; // action is not valid, don't add it to the palette.
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (add) {
|
|
int idx = _moreElements ? cells.size() - 1 : cells.size();
|
|
cells.insert(idx, cell);
|
|
}
|
|
}
|
|
else
|
|
e.unknown();
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// clear
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::clear()
|
|
{
|
|
foreach(PaletteCell* cell, cells)
|
|
delete cell;
|
|
cells.clear();
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// rows
|
|
//---------------------------------------------------------
|
|
|
|
int Palette::rows() const
|
|
{
|
|
int c = columns();
|
|
if (c == 0)
|
|
return 0;
|
|
return (cells.size() + c - 1) / c;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// heightForWidth
|
|
//---------------------------------------------------------
|
|
|
|
int Palette::heightForWidth(int w) const
|
|
{
|
|
int c = w / hgrid;
|
|
if (c <= 0)
|
|
c = 1;
|
|
int size = cells.size();
|
|
if (_moreElements)
|
|
size += 1;
|
|
int rows = (size + c - 1) / c;
|
|
if (rows <= 0)
|
|
rows = 1;
|
|
qreal mag = PALETTE_SPATIUM * extraMag;
|
|
int h = lrint(_yOffset * 2 * mag);
|
|
return rows * vgrid + h;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// sizeHint
|
|
//---------------------------------------------------------
|
|
|
|
QSize Palette::sizeHint() const
|
|
{
|
|
int h = heightForWidth(width());
|
|
return QSize((width() / hgrid) * hgrid, h);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// actionToggled
|
|
//---------------------------------------------------------
|
|
|
|
void Palette::actionToggled(bool /*val*/)
|
|
{
|
|
selectedIdx = -1;
|
|
int nn = cells.size();
|
|
for (int n = 0; n < nn; ++n) {
|
|
Element* e = cells[n]->element;
|
|
if (e && e->type() == Element::Type::ICON) {
|
|
QAction* a = getAction(static_cast<Icon*>(e)->action());
|
|
if (a->isChecked()) {
|
|
selectedIdx = n;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
update();
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// PaletteProperties
|
|
//---------------------------------------------------------
|
|
|
|
PaletteProperties::PaletteProperties(Palette* p, QWidget* parent)
|
|
: QDialog(parent)
|
|
{
|
|
palette = p;
|
|
setupUi(this);
|
|
setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
name->setText(palette->name());
|
|
cellWidth->setValue(palette->gridWidth() / guiScaling);
|
|
cellHeight->setValue(palette->gridHeight() / guiScaling);
|
|
showGrid->setChecked(palette->drawGrid());
|
|
moreElements->setChecked(palette->moreElements());
|
|
elementOffset->setValue(palette->yOffset());
|
|
mag->setValue(palette->mag() / guiScaling);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// accept
|
|
//---------------------------------------------------------
|
|
|
|
void PaletteProperties::accept()
|
|
{
|
|
palette->setName(name->text());
|
|
palette->setGrid(cellWidth->value(), cellHeight->value());
|
|
palette->setDrawGrid(showGrid->isChecked());
|
|
palette->setMoreElements(moreElements->isChecked());
|
|
palette->setYOffset(elementOffset->value());
|
|
palette->setMag(mag->value());
|
|
palette->emitChanged();
|
|
QDialog::accept();
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// PaletteCellProperties
|
|
//---------------------------------------------------------
|
|
|
|
PaletteCellProperties::PaletteCellProperties(PaletteCell* p, QWidget* parent)
|
|
: QDialog(parent)
|
|
{
|
|
cell = p;
|
|
setupUi(this);
|
|
setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
xoffset->setValue(cell->xoffset);
|
|
yoffset->setValue(cell->yoffset);
|
|
scale->setValue(cell->mag);
|
|
drawStaff->setChecked(cell->drawStaff);
|
|
name->setText(p->name);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// accept
|
|
//---------------------------------------------------------
|
|
|
|
void PaletteCellProperties::accept()
|
|
{
|
|
cell->xoffset = xoffset->value();
|
|
cell->yoffset = yoffset->value();
|
|
cell->mag = scale->value();
|
|
cell->name = name->text();
|
|
cell->drawStaff = drawStaff->isChecked();
|
|
QDialog::accept();
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// PaletteScrollArea
|
|
//---------------------------------------------------------
|
|
|
|
PaletteScrollArea::PaletteScrollArea(Palette* w, QWidget* parent)
|
|
: QScrollArea(parent)
|
|
{
|
|
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
|
|
setWidget(w);
|
|
setWidgetResizable(false);
|
|
_restrictHeight = true;
|
|
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// resizeEvent
|
|
//---------------------------------------------------------
|
|
|
|
void PaletteScrollArea::resizeEvent(QResizeEvent* re)
|
|
{
|
|
QScrollArea::resizeEvent(re); // necessary?
|
|
|
|
Palette* palette = static_cast<Palette*>(widget());
|
|
int h = palette->heightForWidth(width());
|
|
palette->resize(QSize(width() - 6, h));
|
|
if (_restrictHeight) {
|
|
setMaximumHeight(h+6);
|
|
}
|
|
}
|
|
}
|
|
|
|
|