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
|
// -*- c-basic-offset: 4 -*-
/*
Rosegarden-4
A sequencer and musical notation editor.
This program is Copyright 2000-2005
Guillaume Laurent <glaurent@telegraph-road.org>,
Chris Cannam <cannam@all-day-breakfast.com>,
Richard Bown <bownie@bownie.com>
The moral right of the authors to claim authorship of this work
has been asserted.
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 <qpainter.h>
#include "textruler.h"
#include "colours.h"
#include "rosestrings.h"
#include "rosedebug.h"
#include "Event.h"
#include "Segment.h"
#include "NotationTypes.h"
#include "RulerScale.h"
using Rosegarden::RulerScale;
using Rosegarden::Segment;
using Rosegarden::Event;
using Rosegarden::Text;
using Rosegarden::String;
using Rosegarden::timeT;
TextRuler::TextRuler(RulerScale *rulerScale,
Segment *segment,
int height,
QWidget *parent,
const char *name)
: QWidget(parent, name),
m_height(height),
m_currentXOffset(0),
m_width(-1),
m_segment(segment),
m_rulerScale(rulerScale),
m_font("helvetica", 12),
m_fontMetrics(m_font)
{
m_mySegmentMaybe = (m_segment->getComposition() != 0);
setBackgroundColor(Rosegarden::GUIPalette::getColour(Rosegarden::GUIPalette::TextRulerBackground));
m_font.setPixelSize(10);
}
TextRuler::~TextRuler()
{
if (m_mySegmentMaybe && !m_segment->getComposition()) {
delete m_segment;
}
}
void
TextRuler::slotScrollHoriz(int x)
{
int w = width(), h = height();
int dx = x - (-m_currentXOffset);
m_currentXOffset = -x;
if (dx > w*3/4 || dx < -w*3/4) {
update();
return;
}
if (dx > 0) { // moving right, so the existing stuff moves left
bitBlt(this, 0, 0, this, dx, 0, w-dx, h);
repaint(w-dx, 0, dx, h);
} else { // moving left, so the existing stuff moves right
bitBlt(this, -dx, 0, this, 0, 0, w+dx, h);
repaint(0, 0, -dx, h);
}
}
QSize
TextRuler::sizeHint() const
{
double width =
m_rulerScale->getBarPosition(m_rulerScale->getLastVisibleBar()) +
m_rulerScale->getBarWidth(m_rulerScale->getLastVisibleBar());
QSize res(std::max(int(width), m_width), m_height);
return res;
}
QSize
TextRuler::minimumSizeHint() const
{
double firstBarWidth = m_rulerScale->getBarWidth(0);
QSize res = QSize(int(firstBarWidth), m_height);
return res;
}
void
TextRuler::paintEvent(QPaintEvent* e)
{
QPainter paint(this);
paint.setPen(Rosegarden::GUIPalette::getColour(Rosegarden::GUIPalette::TextRulerForeground));
paint.setClipRegion(e->region());
paint.setClipRect(e->rect().normalize());
QRect clipRect = paint.clipRegion().boundingRect();
timeT from = m_rulerScale->getTimeForX
(clipRect.x() - m_currentXOffset - 100);
timeT to = m_rulerScale->getTimeForX
(clipRect.x() + clipRect.width() - m_currentXOffset + 100);
for (Segment::iterator i = m_segment->findTime(from);
i != m_segment->findTime(to) && i != m_segment->end(); ++i) {
if (!(*i)->isa(Text::EventType)) continue;
std::string text;
if (!(*i)->get<String>(Text::TextPropertyName, text)) {
RG_DEBUG
<< "Warning: TextRuler::paintEvent: No text in text event"
<< endl;
continue;
}
QRect bounds = m_fontMetrics.boundingRect(strtoqstr(text));
double x = m_rulerScale->getXForTime((*i)->getAbsoluteTime()) +
m_currentXOffset - bounds.width()/2;
int y = height()/2 + bounds.height()/2;
paint.drawText(static_cast<int>(x), y, strtoqstr(text));
}
}
|