]> sigrok.org Git - pulseview.git/blame_incremental - pv/view/cursorpair.hpp
MainWindow: Fix session error slot declaration
[pulseview.git] / pv / view / cursorpair.hpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2013 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#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_CURSORPAIR_HPP
22#define PULSEVIEW_PV_VIEWS_TRACEVIEW_CURSORPAIR_HPP
23
24#include "cursor.hpp"
25
26#include <memory>
27
28#include <QPainter>
29
30class QPainter;
31
32namespace pv {
33namespace views {
34namespace TraceView {
35
36class CursorPair : public TimeItem
37{
38private:
39 static const int DeltaPadding;
40 static const QColor ViewportFillColour;
41
42public:
43 /**
44 * Constructor.
45 * @param view A reference to the view that owns this cursor pair.
46 */
47 CursorPair(View &view);
48
49public:
50 /**
51 * Returns true if the item is visible and enabled.
52 */
53 bool enabled() const override;
54
55 /**
56 * Returns a pointer to the first cursor.
57 */
58 std::shared_ptr<Cursor> first() const;
59
60 /**
61 * Returns a pointer to the second cursor.
62 */
63 std::shared_ptr<Cursor> second() const;
64
65 /**
66 * Sets the time of the marker.
67 */
68 void set_time(const pv::util::Timestamp& time) override;
69
70 float get_x() const override;
71
72 QPoint point(const QRect &rect) const override;
73
74 pv::widgets::Popup* create_popup(QWidget *parent) override;
75
76public:
77 QRectF label_rect(const QRectF &rect) const override;
78
79 /**
80 * Paints the marker's label to the ruler.
81 * @param p The painter to draw with.
82 * @param rect The rectangle of the ruler client area.
83 * @param hover true if the label is being hovered over by the mouse.
84 */
85 void paint_label(QPainter &p, const QRect &rect, bool hover) override;
86
87 /**
88 * Paints the background layer of the item with a QPainter
89 * @param p the QPainter to paint into.
90 * @param pp the painting parameters object to paint with.
91 */
92 void paint_back(QPainter &p, const ViewItemPaintParams &pp) override;
93
94 /**
95 * Constructs the string to display.
96 */
97 QString format_string();
98
99 void compute_text_size(QPainter &p);
100
101 std::pair<float, float> get_cursor_offsets() const;
102
103private:
104 std::shared_ptr<Cursor> first_, second_;
105
106 QSizeF text_size_;
107};
108
109} // namespace TraceView
110} // namespace views
111} // namespace pv
112
113#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_CURSORPAIR_HPP