]> sigrok.org Git - pulseview.git/blame_incremental - pv/views/trace/decodetrace.hpp
Disable antialiasing on high-DPI displays
[pulseview.git] / pv / views / trace / decodetrace.hpp
... / ...
CommitLineData
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, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP
21#define PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP
22
23#include "trace.hpp"
24
25#include <list>
26#include <map>
27#include <memory>
28#include <vector>
29
30#include <QColor>
31#include <QComboBox>
32#include <QSignalMapper>
33#include <QTimer>
34
35#include <pv/binding/decoder.hpp>
36#include <pv/data/decode/annotation.hpp>
37#include <pv/data/decode/row.hpp>
38#include <pv/data/signalbase.hpp>
39
40using std::list;
41using std::map;
42using std::pair;
43using std::shared_ptr;
44using std::vector;
45
46struct srd_channel;
47struct srd_decoder;
48
49namespace pv {
50
51class Session;
52
53namespace data {
54struct DecodeChannel;
55class DecodeSignal;
56
57namespace decode {
58class Decoder;
59}
60} // namespace data
61
62namespace widgets {
63class DecoderGroupBox;
64}
65
66namespace views {
67namespace trace {
68
69class DecodeTrace : public Trace
70{
71 Q_OBJECT
72
73private:
74 static const QColor ErrorBgColor;
75 static const QColor NoDecodeColor;
76
77 static const int ArrowSize;
78 static const double EndCapWidth;
79 static const int RowTitleMargin;
80 static const int DrawPadding;
81
82 static const int MaxTraceUpdateRate;
83
84public:
85 DecodeTrace(pv::Session &session, shared_ptr<data::SignalBase> signalbase,
86 int index);
87
88 bool enabled() const;
89
90 shared_ptr<data::SignalBase> base() const;
91
92 /**
93 * Computes the vertical extents of the contents of this row item.
94 * @return A pair containing the minimum and maximum y-values.
95 */
96 pair<int, int> v_extents() const;
97
98 /**
99 * Paints the background layer of the trace with a QPainter
100 * @param p the QPainter to paint into.
101 * @param pp the painting parameters object to paint with..
102 */
103 void paint_back(QPainter &p, ViewItemPaintParams &pp);
104
105 /**
106 * Paints the mid-layer of the trace with a QPainter
107 * @param p the QPainter to paint into.
108 * @param pp the painting parameters object to paint with.
109 */
110 void paint_mid(QPainter &p, ViewItemPaintParams &pp);
111
112 /**
113 * Paints the foreground layer of the trace with a QPainter
114 * @param p the QPainter to paint into.
115 * @param pp the painting parameters object to paint with.
116 */
117 void paint_fore(QPainter &p, ViewItemPaintParams &pp);
118
119 void populate_popup_form(QWidget *parent, QFormLayout *form);
120
121 QMenu* create_header_context_menu(QWidget *parent);
122
123 virtual QMenu* create_view_context_menu(QWidget *parent, QPoint &click_pos);
124
125 void delete_pressed();
126
127private:
128 void draw_annotations(vector<pv::data::decode::Annotation> annotations,
129 QPainter &p, int h, const ViewItemPaintParams &pp, int y,
130 QColor row_color, int row_title_width);
131
132 void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p,
133 int h, const ViewItemPaintParams &pp, int y,
134 QColor row_color, int row_title_width) const;
135
136 void draw_annotation_block(qreal start, qreal end,
137 pv::data::decode::Annotation::Class ann_class, bool use_ann_format,
138 QPainter &p, int h, int y, QColor row_color) const;
139
140 void draw_instant(const pv::data::decode::Annotation &a, QPainter &p,
141 int h, qreal x, int y) const;
142
143 void draw_range(const pv::data::decode::Annotation &a, QPainter &p,
144 int h, qreal start, qreal end, int y, const ViewItemPaintParams &pp,
145 int row_title_width) const;
146
147 void draw_error(QPainter &p, const QString &message,
148 const ViewItemPaintParams &pp);
149
150 void draw_unresolved_period(QPainter &p, int h, int left,
151 int right) const;
152
153 pair<double, double> get_pixels_offset_samples_per_pixel() const;
154
155 /**
156 * Determines the start and end sample for a given pixel range.
157 * @param x_start the X coordinate of the start sample in the view
158 * @param x_end the X coordinate of the end sample in the view
159 * @return Returns a pair containing the start sample and the end
160 * sample that correspond to the start and end coordinates.
161 */
162 pair<uint64_t, uint64_t> get_view_sample_range(int x_start, int x_end) const;
163
164 QColor get_row_color(int row_index) const;
165 QColor get_annotation_color(QColor row_color, int annotation_index) const;
166
167 int get_row_at_point(const QPoint &point);
168
169 const QString get_annotation_at_point(const QPoint &point);
170
171 void create_decoder_form(int index,
172 shared_ptr<pv::data::decode::Decoder> &dec,
173 QWidget *parent, QFormLayout *form);
174
175 QComboBox* create_channel_selector(QWidget *parent,
176 const data::DecodeChannel *ch);
177 QComboBox* create_channel_selector_init_state(QWidget *parent,
178 const data::DecodeChannel *ch);
179
180 void export_annotations(vector<data::decode::Annotation> *annotations) const;
181
182public:
183 virtual void hover_point_changed(const QPoint &hp);
184
185private Q_SLOTS:
186 void on_new_annotations();
187 void on_delayed_trace_update();
188 void on_decode_reset();
189 void on_decode_finished();
190 void on_pause_decode();
191
192 void on_delete();
193
194 void on_channel_selected(int);
195
196 void on_channels_updated();
197
198 void on_init_state_changed(int);
199
200 void on_stack_decoder(srd_decoder *decoder);
201
202 void on_delete_decoder(int index);
203
204 void on_show_hide_decoder(int index);
205
206 void on_export_row();
207 void on_export_all_rows();
208 void on_export_row_with_cursor();
209 void on_export_all_rows_with_cursor();
210 void on_export_row_from_here();
211 void on_export_all_rows_from_here();
212
213private:
214 pv::Session &session_;
215 shared_ptr<data::DecodeSignal> decode_signal_;
216
217 vector<data::decode::Row> visible_rows_;
218
219 map<QComboBox*, uint16_t> channel_id_map_; // channel selector -> decode channel ID
220 map<QComboBox*, uint16_t> init_state_map_; // init state selector -> decode channel ID
221 list< shared_ptr<pv::binding::Decoder> > bindings_;
222
223 data::decode::Row *selected_row_;
224 pair<uint64_t, uint64_t> selected_sample_range_;
225
226 vector<pv::widgets::DecoderGroupBox*> decoder_forms_;
227
228 map<data::decode::Row, int> row_title_widths_;
229 int row_height_, max_visible_rows_;
230
231 int min_useful_label_width_;
232
233 QSignalMapper delete_mapper_, show_hide_mapper_;
234
235 QTimer delayed_trace_updater_;
236};
237
238} // namespace trace
239} // namespace views
240} // namespace pv
241
242#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP