]> sigrok.org Git - pulseview.git/blame_incremental - pv/views/trace/cursorpair.hpp
Implement expansion marker animation and its infrastructure
[pulseview.git] / pv / views / trace / 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, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_CURSORPAIR_HPP
21#define PULSEVIEW_PV_VIEWS_TRACEVIEW_CURSORPAIR_HPP
22
23#include "cursor.hpp"
24#include "pv/globalsettings.hpp"
25
26#include <memory>
27
28#include <QColor>
29#include <QPainter>
30#include <QRect>
31
32using std::pair;
33using std::shared_ptr;
34
35class QPainter;
36
37namespace pv {
38namespace views {
39namespace trace {
40
41class View;
42
43class CursorPair : public TimeItem, public GlobalSettingsInterface
44{
45 Q_OBJECT
46
47private:
48 static const int DeltaPadding;
49
50public:
51 /**
52 * Constructor.
53 * @param view A reference to the view that owns this cursor pair.
54 */
55 CursorPair(View &view);
56
57 ~CursorPair();
58
59 /**
60 * Returns true if the item is visible and enabled.
61 */
62 bool enabled() const override;
63
64 /**
65 * Returns a pointer to the first cursor.
66 */
67 shared_ptr<Cursor> first() const;
68
69 /**
70 * Returns a pointer to the second cursor.
71 */
72 shared_ptr<Cursor> second() const;
73
74 /**
75 * Sets the time of the marker.
76 */
77 void set_time(const pv::util::Timestamp& time) override;
78
79 virtual const pv::util::Timestamp time() const override;
80
81 float get_x() const override;
82
83 virtual const pv::util::Timestamp delta(const pv::util::Timestamp& other) const override;
84
85 QPoint drag_point(const QRect &rect) const override;
86
87 pv::widgets::Popup* create_popup(QWidget *parent) override;
88
89 QRectF label_rect(const QRectF &rect) const override;
90
91 /**
92 * Paints the marker's label to the ruler.
93 * @param p The painter to draw with.
94 * @param rect The rectangle of the ruler client area.
95 * @param hover true if the label is being hovered over by the mouse.
96 */
97 void paint_label(QPainter &p, const QRect &rect, bool hover) override;
98
99 /**
100 * Paints the background layer of the item with a QPainter
101 * @param p the QPainter to paint into.
102 * @param pp the painting parameters object to paint with.
103 */
104 void paint_back(QPainter &p, ViewItemPaintParams &pp) override;
105
106 /**
107 * Constructs the string to display.
108 */
109 QString format_string(int max_width = 0, std::function<double(const QString&)> query_size
110 = [](const QString& s) -> double { (void)s; return 0; });
111
112 pair<float, float> get_cursor_offsets() const;
113
114 virtual void on_setting_changed(const QString &key, const QVariant &value) override;
115
116public Q_SLOTS:
117 void on_hover_point_changed(const QWidget* widget, const QPoint &hp);
118
119private:
120 QString format_string_sub(int time_precision, int freq_precision, bool show_unit = true);
121
122private:
123 shared_ptr<Cursor> first_, second_;
124 QColor fill_color_;
125
126 QSizeF text_size_;
127 QRectF label_area_;
128 bool label_incomplete_;
129};
130
131} // namespace trace
132} // namespace views
133} // namespace pv
134
135#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_CURSORPAIR_HPP