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