Move DecodeChannel from data:: to data::decoder::
[pulseview.git] / pv / views / trace / decodetrace.hpp
blob3a61c31d8833448ea638114e20c1a5a79bd05516
1 /*
2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
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/>.
20 #ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP
21 #define PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP
23 #include "trace.hpp"
25 #include <list>
26 #include <map>
27 #include <memory>
28 #include <vector>
30 #include <QColor>
31 #include <QComboBox>
32 #include <QPushButton>
33 #include <QSignalMapper>
34 #include <QTimer>
36 #include <pv/binding/decoder.hpp>
37 #include <pv/data/decode/decoder.hpp>
38 #include <pv/data/decode/annotation.hpp>
39 #include <pv/data/decode/row.hpp>
40 #include <pv/data/signalbase.hpp>
42 using std::list;
43 using std::map;
44 using std::pair;
45 using std::shared_ptr;
46 using std::vector;
48 struct srd_channel;
49 struct srd_decoder;
51 namespace pv {
53 class Session;
55 namespace data {
56 struct DecodeChannel;
57 class DecodeSignal;
59 namespace decode {
60 class Decoder;
62 } // namespace data
64 namespace widgets {
65 class DecoderGroupBox;
68 namespace views {
69 namespace trace {
71 class DecodeTrace : public Trace
73 Q_OBJECT
75 private:
76 static const QColor ErrorBgColor;
77 static const QColor NoDecodeColor;
79 static const int ArrowSize;
80 static const double EndCapWidth;
81 static const int RowTitleMargin;
82 static const int DrawPadding;
84 static const int MaxTraceUpdateRate;
86 public:
87 DecodeTrace(pv::Session &session, shared_ptr<data::SignalBase> signalbase,
88 int index);
90 ~DecodeTrace();
92 bool enabled() const;
94 shared_ptr<data::SignalBase> base() const;
96 /**
97 * Computes the vertical extents of the contents of this row item.
98 * @return A pair containing the minimum and maximum y-values.
100 pair<int, int> v_extents() const;
103 * Paints the background layer of the trace with a QPainter
104 * @param p the QPainter to paint into.
105 * @param pp the painting parameters object to paint with..
107 void paint_back(QPainter &p, ViewItemPaintParams &pp);
110 * Paints the mid-layer of the trace with a QPainter
111 * @param p the QPainter to paint into.
112 * @param pp the painting parameters object to paint with.
114 void paint_mid(QPainter &p, ViewItemPaintParams &pp);
117 * Paints the foreground layer of the trace with a QPainter
118 * @param p the QPainter to paint into.
119 * @param pp the painting parameters object to paint with.
121 void paint_fore(QPainter &p, ViewItemPaintParams &pp);
123 void populate_popup_form(QWidget *parent, QFormLayout *form);
125 QMenu* create_header_context_menu(QWidget *parent);
127 virtual QMenu* create_view_context_menu(QWidget *parent, QPoint &click_pos);
129 void delete_pressed();
131 private:
132 void draw_annotations(vector<pv::data::decode::Annotation> annotations,
133 QPainter &p, int h, const ViewItemPaintParams &pp, int y,
134 QColor row_color, int row_title_width);
136 void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p,
137 int h, const ViewItemPaintParams &pp, int y,
138 QColor row_color, int row_title_width) const;
140 void draw_annotation_block(qreal start, qreal end,
141 pv::data::decode::Annotation::Class ann_class, bool use_ann_format,
142 QPainter &p, int h, int y, QColor row_color) const;
144 void draw_instant(const pv::data::decode::Annotation &a, QPainter &p,
145 int h, qreal x, int y) const;
147 void draw_range(const pv::data::decode::Annotation &a, QPainter &p,
148 int h, qreal start, qreal end, int y, const ViewItemPaintParams &pp,
149 int row_title_width) const;
151 void draw_error(QPainter &p, const QString &message,
152 const ViewItemPaintParams &pp);
154 void draw_unresolved_period(QPainter &p, int h, int left,
155 int right) const;
157 pair<double, double> get_pixels_offset_samples_per_pixel() const;
160 * Determines the start and end sample for a given pixel range.
161 * @param x_start the X coordinate of the start sample in the view
162 * @param x_end the X coordinate of the end sample in the view
163 * @return Returns a pair containing the start sample and the end
164 * sample that correspond to the start and end coordinates.
166 pair<uint64_t, uint64_t> get_view_sample_range(int x_start, int x_end) const;
168 QColor get_row_color(int row_index) const;
169 QColor get_annotation_color(QColor row_color, int annotation_index) const;
171 int get_row_at_point(const QPoint &point);
173 const QString get_annotation_at_point(const QPoint &point);
175 void update_stack_button();
177 void create_decoder_form(int index,
178 shared_ptr<pv::data::decode::Decoder> &dec,
179 QWidget *parent, QFormLayout *form);
181 QComboBox* create_channel_selector(QWidget *parent,
182 const data::decode::DecodeChannel *ch);
183 QComboBox* create_channel_selector_init_state(QWidget *parent,
184 const data::decode::DecodeChannel *ch);
186 void export_annotations(vector<data::decode::Annotation> *annotations) const;
188 public:
189 virtual void hover_point_changed(const QPoint &hp);
191 private Q_SLOTS:
192 void on_setting_changed(const QString &key, const QVariant &value);
194 void on_new_annotations();
195 void on_delayed_trace_update();
196 void on_decode_reset();
197 void on_decode_finished();
198 void on_pause_decode();
200 void on_delete();
202 void on_channel_selected(int);
204 void on_channels_updated();
206 void on_init_state_changed(int);
208 void on_stack_decoder(srd_decoder *decoder);
210 void on_delete_decoder(int index);
212 void on_show_hide_decoder(int index);
214 void on_copy_annotation_to_clipboard();
216 void on_export_row();
217 void on_export_all_rows();
218 void on_export_row_with_cursor();
219 void on_export_all_rows_with_cursor();
220 void on_export_row_from_here();
221 void on_export_all_rows_from_here();
223 private:
224 pv::Session &session_;
225 shared_ptr<data::DecodeSignal> decode_signal_;
227 vector<data::decode::Row> visible_rows_;
228 bool always_show_all_rows_;
230 map<QComboBox*, uint16_t> channel_id_map_; // channel selector -> decode channel ID
231 map<QComboBox*, uint16_t> init_state_map_; // init state selector -> decode channel ID
232 list< shared_ptr<pv::binding::Decoder> > bindings_;
234 data::decode::Row *selected_row_;
235 pair<uint64_t, uint64_t> selected_sample_range_;
237 vector<pv::widgets::DecoderGroupBox*> decoder_forms_;
238 QPushButton* stack_button_;
240 map<data::decode::Row, int> row_title_widths_;
241 int row_height_, max_visible_rows_;
243 int min_useful_label_width_;
245 QSignalMapper delete_mapper_, show_hide_mapper_;
247 QTimer delayed_trace_updater_;
250 } // namespace trace
251 } // namespace views
252 } // namespace pv
254 #endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_DECODETRACE_HPP