]> sigrok.org Git - pulseview.git/blame_incremental - pv/views/trace/trace.hpp
Allow for a context menu in the view area
[pulseview.git] / pv / views / trace / trace.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_TRACE_HPP
21#define PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACE_HPP
22
23#include <QColor>
24#include <QPainter>
25#include <QPen>
26#include <QRect>
27#include <QString>
28
29#include <cstdint>
30
31#include "tracetreeitem.hpp"
32
33#include <pv/globalsettings.hpp>
34#include "pv/data/signalbase.hpp"
35
36using std::shared_ptr;
37
38class QFormLayout;
39
40namespace pv {
41
42namespace data {
43class SignalBase;
44}
45
46namespace widgets {
47class Popup;
48}
49
50namespace views {
51namespace trace {
52
53/**
54 * The Trace class represents a @ref TraceTreeItem which occupies some vertical
55 * space on the canvas and spans across its entire width, essentially showing
56 * a time series of values, events, objects or similar. While easily confused
57 * with @ref Signal, the difference is that Trace may represent anything that
58 * can be drawn, not just numeric values. One example is a @ref DecodeTrace.
59 *
60 * For this reason, Trace is more generic and contains properties and helpers
61 * that benefit any kind of time series items.
62 */
63class Trace : public TraceTreeItem, public GlobalSettingsInterface
64{
65 Q_OBJECT
66
67public:
68 /**
69 * Allowed values for the multi-segment display mode.
70 *
71 * Note: Consider these locations when updating the list:
72 * *
73 * @ref View::set_segment_display_mode
74 * @ref View::on_segment_changed
75 * @ref AnalogSignal::get_analog_segment_to_paint
76 * @ref AnalogSignal::get_logic_segment_to_paint
77 * @ref LogicSignal::get_logic_segment_to_paint
78 * @ref StandardBar
79 */
80 enum SegmentDisplayMode {
81 ShowLastSegmentOnly = 1,
82 ShowLastCompleteSegmentOnly,
83 ShowSingleSegmentOnly,
84 ShowAllSegments,
85 ShowAccumulatedIntensity
86 };
87
88private:
89 static const QPen AxisPen;
90 static const int LabelHitPadding;
91
92 static const QColor BrightGrayBGColor;
93 static const QColor DarkGrayBGColor;
94
95protected:
96 Trace(shared_ptr<data::SignalBase> channel);
97 ~Trace();
98
99public:
100 /**
101 * Returns the underlying SignalBase instance.
102 */
103 shared_ptr<data::SignalBase> base() const;
104
105 /**
106 * Configures the segment display mode to use.
107 */
108 virtual void set_segment_display_mode(SegmentDisplayMode mode);
109
110 virtual void on_setting_changed(const QString &key, const QVariant &value);
111
112 /**
113 * Paints the signal label.
114 * @param p the QPainter to paint into.
115 * @param rect the rectangle of the header area.
116 * @param hover true if the label is being hovered over by the mouse.
117 */
118 virtual void paint_label(QPainter &p, const QRect &rect, bool hover);
119
120 virtual QMenu* create_context_menu(QWidget *parent);
121
122 pv::widgets::Popup* create_popup(QWidget *parent);
123
124 /**
125 * Computes the outline rectangle of a label.
126 * @param rect the rectangle of the header area.
127 * @return Returns the rectangle of the signal label.
128 */
129 QRectF label_rect(const QRectF &rect) const;
130
131 /**
132 * Computes the outline rectangle of the viewport hit-box.
133 * @param rect the rectangle of the viewport area.
134 * @return Returns the rectangle of the hit-box.
135 * @remarks The default implementation returns an empty hit-box.
136 */
137 virtual QRectF hit_box_rect(const ViewItemPaintParams &pp) const;
138
139 void set_current_segment(const int segment);
140
141 int get_current_segment() const;
142
143 virtual void hover_point_changed(const QPoint &hp);
144
145protected:
146 /**
147 * Paints the background layer of the signal with a QPainter.
148 * @param p The QPainter to paint into.
149 * @param pp The painting parameters object to paint with.
150 */
151 virtual void paint_back(QPainter &p, ViewItemPaintParams &pp);
152
153 /**
154 * Paints a zero axis across the viewport.
155 * @param p the QPainter to paint into.
156 * @param pp the painting parameters object to paint with.
157 * @param y the y-offset of the axis.
158 */
159 void paint_axis(QPainter &p, ViewItemPaintParams &pp, int y);
160
161 /**
162 * Draw a hover marker under the cursor position.
163 * @param p The painter to draw into.
164 */
165 void paint_hover_marker(QPainter &p);
166
167 void add_color_option(QWidget *parent, QFormLayout *form);
168
169 void create_popup_form();
170
171 virtual void populate_popup_form(QWidget *parent, QFormLayout *form);
172
173protected Q_SLOTS:
174 virtual void on_name_changed(const QString &text);
175
176 virtual void on_color_changed(const QColor &color);
177
178 void on_popup_closed();
179
180private Q_SLOTS:
181 void on_nameedit_changed(const QString &name);
182
183 void on_coloredit_changed(const QColor &color);
184
185protected:
186 shared_ptr<data::SignalBase> base_;
187 QPen axis_pen_;
188
189 SegmentDisplayMode segment_display_mode_;
190 bool show_hover_marker_;
191
192 /// The ID of the currently displayed segment
193 int current_segment_;
194
195private:
196 pv::widgets::Popup *popup_;
197 QFormLayout *popup_form_;
198};
199
200} // namespace trace
201} // namespace views
202} // namespace pv
203
204#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACE_HPP