]> sigrok.org Git - pulseview.git/blob - pv/view/logicsignal.hpp
LogicSignal: Added set_logic_data
[pulseview.git] / pv / view / 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, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #ifndef PULSEVIEW_PV_VIEW_LOGICSIGNAL_HPP
22 #define PULSEVIEW_PV_VIEW_LOGICSIGNAL_HPP
23
24 #include <QCache>
25
26 #include "signal.hpp"
27
28 #include <memory>
29
30 class QIcon;
31 class QToolBar;
32
33 namespace sigrok {
34         class Device;
35         class TriggerMatchType;
36 }
37
38 namespace pv {
39
40 namespace data {
41 class Logic;
42 }
43
44 namespace view {
45
46 class LogicSignal : public Signal
47 {
48         Q_OBJECT
49
50 private:
51         static const int SignalHeight;
52         static const int SignalMargin;
53
54         static const float Oversampling;
55
56         static const QColor EdgeColour;
57         static const QColor HighColour;
58         static const QColor LowColour;
59
60         static const QColor SignalColours[10];
61
62         static QColor TriggerMarkerBackgroundColour;
63         static const int TriggerMarkerPadding;
64         static const char* TriggerMarkerIcons[8];
65
66 public:
67         LogicSignal(pv::Session &session,
68                 std::shared_ptr<sigrok::Device> device,
69                 std::shared_ptr<sigrok::Channel> channel,
70                 std::shared_ptr<pv::data::Logic> data);
71
72         virtual ~LogicSignal();
73
74         std::shared_ptr<pv::data::SignalData> data() const;
75
76         std::shared_ptr<pv::data::Logic> logic_data() const;
77
78         void set_logic_data(std::shared_ptr<pv::data::Logic> data);
79
80         /**
81          * Computes the vertical extents of the contents of this row item.
82          * @return A pair containing the minimum and maximum y-values.
83          */
84         std::pair<int, int> v_extents() const;
85
86         /**
87          * Paints the background layer of the signal with a QPainter
88          * @param p the QPainter to paint into.
89          * @param pp the painting parameters object to paint with..
90          **/
91         void paint_back(QPainter &p, const ViewItemPaintParams &pp);
92
93         /**
94          * Paints the mid-layer of the signal with a QPainter
95          * @param p the QPainter to paint into.
96          * @param pp the painting parameters object to paint with..
97          **/
98         void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
99
100         /**
101          * Paints the foreground layer of the signal with a QPainter
102          * @param p the QPainter to paint into.
103          * @param pp the painting parameters object to paint with.
104          **/
105         virtual void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
106
107 private:
108         void paint_caps(QPainter &p, QLineF *const lines,
109                 std::vector< std::pair<int64_t, bool> > &edges,
110                 bool level, double samples_per_pixel, double pixels_offset,
111                 float x_offset, float y_offset);
112
113         void init_trigger_actions(QWidget *parent);
114
115         const std::vector<int32_t> get_trigger_types() const;
116         QAction* action_from_trigger_type(
117                 const sigrok::TriggerMatchType *match);
118         const sigrok::TriggerMatchType* trigger_type_from_action(
119                 QAction *action);
120         void populate_popup_form(QWidget *parent, QFormLayout *form);
121         void modify_trigger();
122
123         static const QIcon* get_icon(const char *path);
124         static const QPixmap* get_pixmap(const char *path);
125
126 private Q_SLOTS:
127         void on_trigger();
128
129 private:
130         std::shared_ptr<sigrok::Device> device_;
131         std::shared_ptr<pv::data::Logic> data_;
132
133         const sigrok::TriggerMatchType *trigger_match_;
134         QToolBar *trigger_bar_;
135         QAction *trigger_none_;
136         QAction *trigger_rising_;
137         QAction *trigger_high_;
138         QAction *trigger_falling_;
139         QAction *trigger_low_;
140         QAction *trigger_change_;
141
142         static QCache<QString, const QIcon> icon_cache_;
143         static QCache<QString, const QPixmap> pixmap_cache_;
144 };
145
146 } // namespace view
147 } // namespace pv
148
149 #endif // PULSEVIEW_PV_VIEW_LOGICSIGNAL_HPP