]> sigrok.org Git - pulseview.git/blame - pv/view/cursor.cpp
Added Bool property and bound to SR_CONF_RLE
[pulseview.git] / pv / view / cursor.cpp
CommitLineData
cabce982
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include "cursor.h"
22
3a6fe081 23#include "ruler.h"
cabce982
JH
24#include "view.h"
25
26#include <QBrush>
27#include <QPainter>
34c1ef02 28#include <QPointF>
cabce982
JH
29#include <QRect>
30#include <QRectF>
31
34c1ef02
JH
32#include <stdio.h>
33
34#include <extdef.h>
35
cabce982
JH
36namespace pv {
37namespace view {
38
39const QColor Cursor::LineColour(32, 74, 135);
40const QColor Cursor::FillColour(52, 101, 164);
41const QColor Cursor::HighlightColour(83, 130, 186);
42const QColor Cursor::TextColour(Qt::white);
43
44const int Cursor::Size = 12;
45const int Cursor::Offset = 1;
46
34c1ef02
JH
47const int Cursor::ArrowSize = 4;
48
cabce982
JH
49Cursor::Cursor(const View &view, double time) :
50 TimeMarker(view, LineColour, time)
51{
52}
53
ca4ec3ea 54QRectF Cursor::get_label_rect(const QRect &rect) const
cabce982
JH
55{
56 const float x = (_time - _view.offset()) / _view.scale();
34c1ef02
JH
57
58 const QSizeF label_size(
59 _text_size.width() + View::LabelPadding.width() * 2,
60 _text_size.height() + View::LabelPadding.height() * 2);
61 return QRectF(x - label_size.width() / 2 - 0.5f,
62 rect.height() - label_size.height() - Offset - ArrowSize - 0.5f,
63 label_size.width() + 1, label_size.height() + 1);
ca4ec3ea
JH
64}
65
3a6fe081
JH
66void Cursor::paint_label(QPainter &p, const QRect &rect,
67 unsigned int prefix)
ca4ec3ea 68{
3a6fe081 69 compute_text_size(p, prefix);
ca4ec3ea 70 const QRectF r(get_label_rect(rect));
cabce982 71
34c1ef02
JH
72 const float h_centre = (r.left() + r.right()) / 2;
73 const QPointF points[] = {
74 r.topRight(),
75 QPointF(r.right(), r.bottom()),
76 QPointF(h_centre + ArrowSize, r.bottom()),
77 QPointF(h_centre, rect.bottom()),
78 QPointF(h_centre - ArrowSize, r.bottom()),
79 QPointF(r.left(), r.bottom()),
80 r.topLeft()
81 };
82
83 const QPointF highlight_points[] = {
84 QPointF(r.right() - 1, r.top() + 1),
85 QPointF(r.right() - 1, r.bottom() - 1),
86 QPointF(h_centre + ArrowSize - 1, r.bottom() - 1),
87 QPointF(h_centre, rect.bottom() - 1),
88 QPointF(h_centre - ArrowSize + 1, r.bottom() - 1),
89 QPointF(r.left() + 1, r.bottom() - 1),
90 QPointF(r.left() + 1, r.top() + 1),
91 };
92
34c1ef02
JH
93 p.setPen(Qt::transparent);
94 p.setBrush(FillColour);
95 p.drawPolygon(points, countof(points));
cabce982
JH
96
97 p.setPen(HighlightColour);
34c1ef02
JH
98 p.setBrush(Qt::transparent);
99 p.drawPolygon(highlight_points, countof(highlight_points));
100
101 p.setPen(LineColour);
102 p.setBrush(Qt::transparent);
103 p.drawPolygon(points, countof(points));
104
105 p.setPen(TextColour);
3a6fe081
JH
106 p.drawText(r, Qt::AlignCenter | Qt::AlignVCenter,
107 Ruler::format_time(_time, prefix, 2));
34c1ef02
JH
108}
109
3a6fe081 110void Cursor::compute_text_size(QPainter &p, unsigned int prefix)
34c1ef02 111{
3a6fe081
JH
112 _text_size = p.boundingRect(QRectF(), 0,
113 Ruler::format_time(_time, prefix, 2)).size();
cabce982
JH
114}
115
116} // namespace view
117} // namespace pv