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