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