summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/matrix/MatrixElement.cpp
blob: c706c8752aa1d72ade9570e756679ef6259136cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/* -*- 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-2008
        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 <tqbrush.h>
#include <tqcanvas.h>
#include <tqcolor.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(TQCanvas* 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();

    TQRect elRect = m_canvasRect->rect();
    QCanvasItemList
          itemList = m_canvasRect->canvas()->collisions(elRect);
    TQCanvasItemList::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;

            TQRect rect = mRect->rect() & elRect;
            if (!rect.isEmpty()) {
                if (!m_overlapRectangles) {
                    m_overlapRectangles = new OverlapRectangles();
                }

                TQCanvasRectangle *
                    overlap = new TQCanvasRectangle(rect, m_canvasRect->canvas());
                overlap->setBrush(GUIPalette::getColour(GUIPalette::MatrixOverlapBlock));
                overlap->setZ(getCanvasZ() + 1);
                overlap->show();
                m_overlapRectangles->push_back(overlap);
            }
        }
    }
}

void MatrixElement::redrawOverlaps(TQRect rect)
{
    QCanvasItemList
          itemList = m_canvasRect->canvas()->collisions(rect);
    TQCanvasItemList::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(TQRect &rectangle)
{
    if (m_canvasRect && m_canvasRect->isVisible()) {
        rectangle = m_canvasRect->rect();
        return true;
    }
    return false;
}


}