]> sigrok.org Git - pulseview.git/blame - pv/views/trace/logicsignal.hpp
Fix compiler warnings
[pulseview.git] / pv / views / trace / logicsignal.hpp
CommitLineData
28a4c9c5 1/*
b3f22de0 2 * This file is part of the PulseView project.
28a4c9c5
JH
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
28a4c9c5
JH
18 */
19
f4e57597
SA
20#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_LOGICSIGNAL_HPP
21#define PULSEVIEW_PV_VIEWS_TRACEVIEW_LOGICSIGNAL_HPP
640d091b 22
0f1f98fe 23#include <QCache>
3b2ead4f 24#include <QColor>
526c8c00 25#include <QDebug>
a2b2b65e 26#include <QSpinBox>
0f1f98fe 27
2acdb232 28#include "signal.hpp"
28a4c9c5 29
f9abf97e 30#include <memory>
28a4c9c5 31
6f925ba9
UH
32using std::pair;
33using std::shared_ptr;
34using std::vector;
35
0f1f98fe 36class QIcon;
767281c8
JH
37class QToolBar;
38
e8d00928 39namespace sigrok {
da5e6727 40class TriggerMatchType;
e8d00928
ML
41}
42
51e77110
JH
43namespace pv {
44
da30ecb7
JH
45namespace devices {
46class Device;
47}
48
1b1ec774
JH
49namespace data {
50class Logic;
51}
28a4c9c5 52
f4e57597 53namespace views {
1573bf16 54namespace trace {
8d634081 55
28a4c9c5
JH
56class LogicSignal : public Signal
57{
b08d7222
JH
58 Q_OBJECT
59
a8fd2759 60public:
17d94d7c 61 static const float Oversampling;
131e8012 62
641574bc
SA
63 static const QColor EdgeColor;
64 static const QColor HighColor;
65 static const QColor LowColor;
66 static const QColor SamplingPointColor;
131e8012 67
641574bc 68 static const QColor SignalColors[10];
3e46726a 69
641574bc 70 static QColor TriggerMarkerBackgroundColor;
ddfda54d
JH
71 static const int TriggerMarkerPadding;
72 static const char* TriggerMarkerIcons[8];
73
2b81ae46 74 LogicSignal(pv::Session &session,
6f925ba9
UH
75 shared_ptr<devices::Device> device,
76 shared_ptr<data::SignalBase> base);
28a4c9c5 77
c6246dc5 78 virtual ~LogicSignal() = default;
f459c540 79
6f925ba9 80 shared_ptr<pv::data::SignalData> data() const;
9a0cd293 81
6f925ba9 82 shared_ptr<pv::data::Logic> logic_data() const;
e0fc5810 83
a2b2b65e
SA
84 virtual void save_settings(QSettings &settings) const;
85 virtual void restore_settings(QSettings &settings);
86
a5d93c27
JH
87 /**
88 * Computes the vertical extents of the contents of this row item.
89 * @return A pair containing the minimum and maximum y-values.
90 */
6f925ba9 91 pair<int, int> v_extents() const;
a5d93c27 92
fe08b6e8
JH
93 /**
94 * Paints the mid-layer of the signal with a QPainter
95 * @param p the QPainter to paint into.
3eb29afd 96 * @param pp the painting parameters object to paint with..
223d0c37 97 */
60938e04 98 void paint_mid(QPainter &p, ViewItemPaintParams &pp);
e3f65ace 99
ddfda54d
JH
100 /**
101 * Paints the foreground layer of the signal with a QPainter
102 * @param p the QPainter to paint into.
3eb29afd 103 * @param pp the painting parameters object to paint with.
223d0c37 104 */
60938e04 105 virtual void paint_fore(QPainter &p, ViewItemPaintParams &pp);
ddfda54d 106
eeceee99
SA
107 /**
108 * Determines the closest level change (i.e. edge) to a given sample, which
109 * is useful for e.g. the "snap to edge" functionality.
110 *
111 * @param sample_pos Sample to use
112 * @return The changes left and right of the given position
113 */
114 virtual vector<data::LogicSegment::EdgePair> get_nearest_level_changes(uint64_t sample_pos);
b4bc9b55 115
2858b391 116private:
f4270878 117 void paint_caps(QPainter &p, QLineF *const lines,
6f925ba9 118 vector< pair<int64_t, bool> > &edges,
131e8012 119 bool level, double samples_per_pixel, double pixels_offset,
ce6e73a8 120 float x_offset, float y_offset);
131e8012 121
7daebd05
SA
122 shared_ptr<pv::data::LogicSegment> get_logic_segment_to_paint() const;
123
767281c8
JH
124 void init_trigger_actions(QWidget *parent);
125
6f925ba9 126 const vector<int32_t> get_trigger_types() const;
c063290a 127 QAction* action_from_trigger_type(const sigrok::TriggerMatchType *type);
aa5e9140
JH
128 const sigrok::TriggerMatchType* trigger_type_from_action(
129 QAction *action);
767281c8 130 void populate_popup_form(QWidget *parent, QFormLayout *form);
640bd149 131 void modify_trigger();
b08d7222 132
0f1f98fe 133 static const QIcon* get_icon(const char *path);
ddfda54d 134 static const QPixmap* get_pixmap(const char *path);
0f1f98fe 135
e9213170 136private Q_SLOTS:
3b2ead4f
SA
137 void on_setting_changed(const QString &key, const QVariant &value);
138
b1e8c93d 139 void on_trigger();
b08d7222 140
a2b2b65e
SA
141 void on_signal_height_changed(int height);
142
28a4c9c5 143private:
303d6ea6 144 int signal_height_;
3b2ead4f
SA
145 QColor high_fill_color_;
146 bool show_sampling_points_, fill_high_areas_;
303d6ea6 147
6f925ba9 148 shared_ptr<pv::devices::Device> device_;
8dbbc7f0 149
a2b2b65e
SA
150 QSpinBox *signal_height_sb_;
151
8dbbc7f0 152 const sigrok::TriggerMatchType *trigger_match_;
2795de2e 153 const vector<int32_t> trigger_types_;
8dbbc7f0
JH
154 QToolBar *trigger_bar_;
155 QAction *trigger_none_;
156 QAction *trigger_rising_;
157 QAction *trigger_high_;
158 QAction *trigger_falling_;
159 QAction *trigger_low_;
160 QAction *trigger_change_;
0f1f98fe
JH
161
162 static QCache<QString, const QIcon> icon_cache_;
ddfda54d 163 static QCache<QString, const QPixmap> pixmap_cache_;
28a4c9c5 164};
51e77110 165
1573bf16 166} // namespace trace
f4e57597 167} // namespace views
51e77110 168} // namespace pv
640d091b 169
f4e57597 170#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_LOGICSIGNAL_HPP