]> sigrok.org Git - pulseview.git/blame - pv/view/logicsignal.hpp
LogicSignal: Tidied up forward declarations
[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
JH
34class Device;
35class TriggerMatchType;
e8d00928
ML
36}
37
51e77110
JH
38namespace pv {
39
1b1ec774
JH
40namespace data {
41class Logic;
42}
28a4c9c5 43
8d634081
JH
44namespace view {
45
28a4c9c5
JH
46class LogicSignal : public Signal
47{
b08d7222
JH
48 Q_OBJECT
49
131e8012 50private:
a5d93c27
JH
51 static const int SignalHeight;
52 static const int SignalMargin;
53
17d94d7c 54 static const float Oversampling;
131e8012 55
64b60583
JH
56 static const QColor EdgeColour;
57 static const QColor HighColour;
58 static const QColor LowColour;
131e8012 59
299d0e75 60 static const QColor SignalColours[10];
3e46726a 61
ddfda54d
JH
62 static QColor TriggerMarkerBackgroundColour;
63 static const int TriggerMarkerPadding;
64 static const char* TriggerMarkerIcons[8];
65
28a4c9c5 66public:
2b81ae46 67 LogicSignal(pv::Session &session,
b86aa8f4 68 std::shared_ptr<sigrok::Device> device,
e8d00928 69 std::shared_ptr<sigrok::Channel> channel,
f9abf97e 70 std::shared_ptr<pv::data::Logic> data);
28a4c9c5 71
f459c540
JH
72 virtual ~LogicSignal();
73
f9abf97e 74 std::shared_ptr<pv::data::SignalData> data() const;
9a0cd293 75
f9abf97e 76 std::shared_ptr<pv::data::Logic> logic_data() const;
e0fc5810 77
8e097c27
JH
78 void set_logic_data(std::shared_ptr<pv::data::Logic> data);
79
a5d93c27
JH
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
3b18c57d 86 /**
fe08b6e8 87 * Paints the background layer of the signal with a QPainter
64b60583 88 * @param p the QPainter to paint into.
3eb29afd 89 * @param pp the painting parameters object to paint with..
3b18c57d 90 **/
5b5fa4da 91 void paint_back(QPainter &p, const ViewItemPaintParams &pp);
fe08b6e8
JH
92
93 /**
94 * Paints the mid-layer of the signal with a QPainter
95 * @param p the QPainter to paint into.
3eb29afd 96 * @param pp the painting parameters object to paint with..
fe08b6e8 97 **/
5b5fa4da 98 void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
e3f65ace 99
ddfda54d
JH
100 /**
101 * Paints the foreground layer of the signal with a QPainter
102 * @param p the QPainter to paint into.
3eb29afd 103 * @param pp the painting parameters object to paint with.
ddfda54d 104 **/
5b5fa4da 105 virtual void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
ddfda54d 106
2858b391 107private:
f4270878 108 void paint_caps(QPainter &p, QLineF *const lines,
131e8012
JH
109 std::vector< std::pair<int64_t, bool> > &edges,
110 bool level, double samples_per_pixel, double pixels_offset,
ce6e73a8 111 float x_offset, float y_offset);
131e8012 112
767281c8
JH
113 void init_trigger_actions(QWidget *parent);
114
77817b43 115 const std::vector<int32_t> get_trigger_types() const;
aa5e9140
JH
116 QAction* action_from_trigger_type(
117 const sigrok::TriggerMatchType *match);
118 const sigrok::TriggerMatchType* trigger_type_from_action(
119 QAction *action);
767281c8 120 void populate_popup_form(QWidget *parent, QFormLayout *form);
640bd149 121 void modify_trigger();
b08d7222 122
0f1f98fe 123 static const QIcon* get_icon(const char *path);
ddfda54d 124 static const QPixmap* get_pixmap(const char *path);
0f1f98fe 125
e9213170 126private Q_SLOTS:
b1e8c93d 127 void on_trigger();
b08d7222 128
28a4c9c5 129private:
8dbbc7f0
JH
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_;
0f1f98fe
JH
141
142 static QCache<QString, const QIcon> icon_cache_;
ddfda54d 143 static QCache<QString, const QPixmap> pixmap_cache_;
28a4c9c5 144};
51e77110 145
8d634081 146} // namespace view
51e77110 147} // namespace pv
640d091b 148
7a01bd36 149#endif // PULSEVIEW_PV_VIEW_LOGICSIGNAL_HPP