📄 matrixelement.cpp
字号:
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: *//* Rosegarden A MIDI and audio sequencer and musical notation editor. This program is Copyright 2000-2007 Guillaume Laurent <glaurent@telegraph-road.org>, Chris Cannam <cannam@all-day-breakfast.com>, Richard Bown <richard.bown@ferventsoftware.com> The moral rights of Guillaume Laurent, Chris Cannam, and Richard Bown to claim authorship of this work have been asserted. Other copyrights also apply to some parts of this work. Please see the AUTHORS file and individual file headers for details. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. See the file COPYING included with this distribution for more information.*/#include "MatrixElement.h"#include "misc/Debug.h"#include "base/Event.h"#include "base/NotationTypes.h"#include "base/ViewElement.h"#include "gui/general/GUIPalette.h"#include "QCanvasMatrixDiamond.h"#include "QCanvasMatrixRectangle.h"#include <qbrush.h>#include <qcanvas.h>#include <qcolor.h>namespace Rosegarden{MatrixElement::MatrixElement(Event *event, bool drum) : ViewElement(event), m_canvasRect(drum ? new QCanvasMatrixDiamond(*this, 0) : new QCanvasMatrixRectangle(*this, 0)), m_overlapRectangles(NULL){ // MATRIX_DEBUG << "new MatrixElement " // << this << " wrapping " << event << endl;}MatrixElement::~MatrixElement(){ // MATRIX_DEBUG << "MatrixElement " << this << "::~MatrixElement() wrapping " // << event() << endl; m_canvasRect->hide(); delete m_canvasRect; removeOverlapRectangles();}void MatrixElement::setCanvas(QCanvas* c){ if (!m_canvasRect->canvas()) { m_canvasRect->setCanvas(c); // We set this by velocity now (matrixstaff.cpp) // //m_canvasRect->setBrush(RosegardenGUIColours::MatrixElementBlock); m_canvasRect->setPen(GUIPalette::getColour(GUIPalette::MatrixElementBorder)); m_canvasRect->show(); }}bool MatrixElement::isNote() const{ return event()->isa(Note::EventType);}void MatrixElement::drawOverlapRectangles(){ if (m_overlapRectangles) removeOverlapRectangles(); QRect elRect = m_canvasRect->rect(); QCanvasItemList itemList = m_canvasRect->canvas()->collisions(elRect); QCanvasItemList::Iterator it; MatrixElement* mel = 0; for (it = itemList.begin(); it != itemList.end(); ++it) { QCanvasMatrixRectangle *mRect = 0; if ((mRect = dynamic_cast<QCanvasMatrixRectangle*>(*it))) { // Element does'nt collide with itself if (mRect == m_canvasRect) continue; QRect rect = mRect->rect() & elRect; if (!rect.isEmpty()) { if (!m_overlapRectangles) { m_overlapRectangles = new OverlapRectangles(); } QCanvasRectangle * overlap = new QCanvasRectangle(rect, m_canvasRect->canvas()); overlap->setBrush(GUIPalette::getColour(GUIPalette::MatrixOverlapBlock)); overlap->setZ(getCanvasZ() + 1); overlap->show(); m_overlapRectangles->push_back(overlap); } } }}void MatrixElement::redrawOverlaps(QRect rect){ QCanvasItemList itemList = m_canvasRect->canvas()->collisions(rect); QCanvasItemList::Iterator it; MatrixElement* mel = 0; for (it = itemList.begin(); it != itemList.end(); ++it) { QCanvasMatrixRectangle *mRect = 0; if ((mRect = dynamic_cast<QCanvasMatrixRectangle*>(*it))) { mRect->getMatrixElement().drawOverlapRectangles(); } }}void MatrixElement::removeOverlapRectangles(){ if (!m_overlapRectangles) return; OverlapRectangles::iterator it; for (it = m_overlapRectangles->begin(); it != m_overlapRectangles->end(); ++it) { (*it)->hide(); delete *it; } delete m_overlapRectangles; m_overlapRectangles = NULL;}bool MatrixElement::getVisibleRectangle(QRect &rectangle){ if (m_canvasRect && m_canvasRect->isVisible()) { rectangle = m_canvasRect->rect(); return true; } return false;}}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -