]> sigrok.org Git - pulseview.git/blame - pv/view/logicsignal.hpp
TraceTreeItem: Separated from RowItem
[pulseview.git] / pv / view / logicsignal.hpp
CommitLineData
28a4c9c5 1/*
b3f22de0 2 * This file is part of the PulseView project.
28a4c9c5
JH
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
7a01bd36
JH
21#ifndef PULSEVIEW_PV_VIEW_LOGICSIGNAL_HPP
22#define PULSEVIEW_PV_VIEW_LOGICSIGNAL_HPP
640d091b 23
0f1f98fe
JH
24#include <QCache>
25
2acdb232 26#include "signal.hpp"
28a4c9c5 27
f9abf97e 28#include <memory>
28a4c9c5 29
0f1f98fe 30class QIcon;
767281c8
JH
31class QToolBar;
32
e8d00928 33namespace sigrok {
da5e6727 34class TriggerMatchType;
e8d00928
ML
35}
36
51e77110
JH
37namespace pv {
38
da30ecb7
JH
39namespace devices {
40class Device;
41}
42
1b1ec774
JH
43namespace data {
44class Logic;
45}
28a4c9c5 46
8d634081
JH
47namespace view {
48
28a4c9c5
JH
49class LogicSignal : public Signal
50{
b08d7222
JH
51 Q_OBJECT
52
131e8012 53private:
a5d93c27
JH
54 static const int SignalHeight;
55 static const int SignalMargin;
56
17d94d7c 57 static const float Oversampling;
131e8012 58
64b60583
JH
59 static const QColor EdgeColour;
60 static const QColor HighColour;
61 static const QColor LowColour;
131e8012 62
299d0e75 63 static const QColor SignalColours[10];
3e46726a 64
ddfda54d
JH
65 static QColor TriggerMarkerBackgroundColour;
66 static const int TriggerMarkerPadding;
67 static const char* TriggerMarkerIcons[8];
68
28a4c9c5 69public:
2b81ae46 70 LogicSignal(pv::Session &session,
da30ecb7 71 std::shared_ptr<devices::Device> device,
e8d00928 72 std::shared_ptr<sigrok::Channel> channel,
f9abf97e 73 std::shared_ptr<pv::data::Logic> data);
28a4c9c5 74
f459c540
JH
75 virtual ~LogicSignal();
76
f9abf97e 77 std::shared_ptr<pv::data::SignalData> data() const;
9a0cd293 78
f9abf97e 79 std::shared_ptr<pv::data::Logic> logic_data() const;
e0fc5810 80
8e097c27
JH
81 void set_logic_data(std::shared_ptr<pv::data::Logic> data);
82
a5d93c27
JH
83 /**
84 * Computes the vertical extents of the contents of this row item.
85 * @return A pair containing the minimum and maximum y-values.
86 */
87 std::pair<int, int> v_extents() const;
88
3b18c57d 89 /**
fe08b6e8 90 * Paints the background layer of the signal with a QPainter
64b60583 91 * @param p the QPainter to paint into.
3eb29afd 92 * @param pp the painting parameters object to paint with..
3b18c57d 93 **/
5b5fa4da 94 void paint_back(QPainter &p, const ViewItemPaintParams &pp);
fe08b6e8
JH
95
96 /**
97 * Paints the mid-layer of the signal with a QPainter
98 * @param p the QPainter to paint into.
3eb29afd 99 * @param pp the painting parameters object to paint with..
fe08b6e8 100 **/
5b5fa4da 101 void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
e3f65ace 102
ddfda54d
JH
103 /**
104 * Paints the foreground layer of the signal with a QPainter
105 * @param p the QPainter to paint into.
3eb29afd 106 * @param pp the painting parameters object to paint with.
ddfda54d 107 **/
5b5fa4da 108 virtual void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
ddfda54d 109
2858b391 110private:
f4270878 111 void paint_caps(QPainter &p, QLineF *const lines,
131e8012
JH
112 std::vector< std::pair<int64_t, bool> > &edges,
113 bool level, double samples_per_pixel, double pixels_offset,
ce6e73a8 114 float x_offset, float y_offset);
131e8012 115
767281c8
JH
116 void init_trigger_actions(QWidget *parent);
117
77817b43 118 const std::vector<int32_t> get_trigger_types() const;
aa5e9140
JH
119 QAction* action_from_trigger_type(
120 const sigrok::TriggerMatchType *match);
121 const sigrok::TriggerMatchType* trigger_type_from_action(
122 QAction *action);
767281c8 123 void populate_popup_form(QWidget *parent, QFormLayout *form);
640bd149 124 void modify_trigger();
b08d7222 125
0f1f98fe 126 static const QIcon* get_icon(const char *path);
ddfda54d 127 static const QPixmap* get_pixmap(const char *path);
0f1f98fe 128
e9213170 129private Q_SLOTS:
b1e8c93d 130 void on_trigger();
b08d7222 131
28a4c9c5 132private:
da30ecb7 133 std::shared_ptr<pv::devices::Device> device_;
8dbbc7f0
JH
134 std::shared_ptr<pv::data::Logic> data_;
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_;
0f1f98fe
JH
144
145 static QCache<QString, const QIcon> icon_cache_;
ddfda54d 146 static QCache<QString, const QPixmap> pixmap_cache_;
28a4c9c5 147};
51e77110 148
8d634081 149} // namespace view
51e77110 150} // namespace pv
640d091b 151
7a01bd36 152#endif // PULSEVIEW_PV_VIEW_LOGICSIGNAL_HPP