]> sigrok.org Git - pulseview.git/blame_incremental - pv/views/trace/logicsignal.hpp
Typo fix: treshold -> threshold
[pulseview.git] / pv / views / trace / logicsignal.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_LOGICSIGNAL_HPP
21#define PULSEVIEW_PV_VIEWS_TRACEVIEW_LOGICSIGNAL_HPP
22
23#include <QCache>
24#include <QSpinBox>
25
26#include "signal.hpp"
27
28#include <memory>
29
30using std::pair;
31using std::shared_ptr;
32using std::vector;
33
34class QIcon;
35class QToolBar;
36
37namespace sigrok {
38class TriggerMatchType;
39}
40
41namespace pv {
42
43namespace devices {
44class Device;
45}
46
47namespace data {
48class Logic;
49}
50
51namespace views {
52namespace trace {
53
54class LogicSignal : public Signal
55{
56 Q_OBJECT
57
58public:
59 static const float Oversampling;
60
61 static const QColor EdgeColour;
62 static const QColor HighColour;
63 static const QColor LowColour;
64 static const QColor SamplingPointColour;
65
66 static const QColor SignalColours[10];
67
68 static QColor TriggerMarkerBackgroundColour;
69 static const int TriggerMarkerPadding;
70 static const char* TriggerMarkerIcons[8];
71
72 LogicSignal(pv::Session &session,
73 shared_ptr<devices::Device> device,
74 shared_ptr<data::SignalBase> base);
75
76 virtual ~LogicSignal() = default;
77
78 shared_ptr<pv::data::SignalData> data() const;
79
80 shared_ptr<pv::data::Logic> logic_data() const;
81
82 virtual void save_settings(QSettings &settings) const;
83 virtual void restore_settings(QSettings &settings);
84
85 /**
86 * Computes the vertical extents of the contents of this row item.
87 * @return A pair containing the minimum and maximum y-values.
88 */
89 pair<int, int> v_extents() const;
90
91 /**
92 * Returns the offset to show the drag handle.
93 */
94 int scale_handle_offset() const;
95
96 /**
97 * Handles the scale handle being dragged to an offset.
98 * @param offset the offset the scale handle was dragged to.
99 */
100 void scale_handle_dragged(int offset);
101
102 /**
103 * Paints the mid-layer of the signal with a QPainter
104 * @param p the QPainter to paint into.
105 * @param pp the painting parameters object to paint with..
106 */
107 void paint_mid(QPainter &p, ViewItemPaintParams &pp);
108
109 /**
110 * Paints the foreground layer of the signal with a QPainter
111 * @param p the QPainter to paint into.
112 * @param pp the painting parameters object to paint with.
113 */
114 virtual void paint_fore(QPainter &p, ViewItemPaintParams &pp);
115
116private:
117 void paint_caps(QPainter &p, QLineF *const lines,
118 vector< pair<int64_t, bool> > &edges,
119 bool level, double samples_per_pixel, double pixels_offset,
120 float x_offset, float y_offset);
121
122 void init_trigger_actions(QWidget *parent);
123
124 const vector<int32_t> get_trigger_types() const;
125 QAction* action_from_trigger_type(const sigrok::TriggerMatchType *type);
126 const sigrok::TriggerMatchType* trigger_type_from_action(
127 QAction *action);
128 void populate_popup_form(QWidget *parent, QFormLayout *form);
129 void modify_trigger();
130
131 static const QIcon* get_icon(const char *path);
132 static const QPixmap* get_pixmap(const char *path);
133
134private Q_SLOTS:
135 void on_trigger();
136
137 void on_signal_height_changed(int height);
138
139private:
140 int signal_height_;
141
142 shared_ptr<pv::devices::Device> device_;
143
144 QSpinBox *signal_height_sb_;
145
146 const sigrok::TriggerMatchType *trigger_match_;
147 QToolBar *trigger_bar_;
148 QAction *trigger_none_;
149 QAction *trigger_rising_;
150 QAction *trigger_high_;
151 QAction *trigger_falling_;
152 QAction *trigger_low_;
153 QAction *trigger_change_;
154
155 static QCache<QString, const QIcon> icon_cache_;
156 static QCache<QString, const QPixmap> pixmap_cache_;
157};
158
159} // namespace trace
160} // namespace views
161} // namespace pv
162
163#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_LOGICSIGNAL_HPP