]> sigrok.org Git - pulseview.git/blame_incremental - pv/view/logicsignal.h
Probes popup now live applies properly
[pulseview.git] / pv / view / logicsignal.h
... / ...
CommitLineData
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_H
22#define PULSEVIEW_PV_VIEW_LOGICSIGNAL_H
23
24#include "signal.h"
25
26#include <boost/shared_ptr.hpp>
27
28class QToolBar;
29
30namespace pv {
31
32namespace data {
33class Logic;
34}
35
36namespace view {
37
38class LogicSignal : public Signal
39{
40 Q_OBJECT
41
42private:
43 static const float Oversampling;
44
45 static const QColor EdgeColour;
46 static const QColor HighColour;
47 static const QColor LowColour;
48
49 static const QColor SignalColours[10];
50
51public:
52 LogicSignal(pv::SigSession &session, sr_probe *const probe,
53 boost::shared_ptr<pv::data::Logic> data);
54
55 virtual ~LogicSignal();
56
57 boost::shared_ptr<pv::data::Logic> data() const;
58
59 /**
60 * Paints the background layer of the signal with a QPainter
61 * @param p the QPainter to paint into.
62 * @param left the x-coordinate of the left edge of the signal.
63 * @param right the x-coordinate of the right edge of the signal.
64 **/
65 void paint_back(QPainter &p, int left, int right);
66
67 /**
68 * Paints the mid-layer of the signal with a QPainter
69 * @param p the QPainter to paint into.
70 * @param left the x-coordinate of the left edge of the signal.
71 * @param right the x-coordinate of the right edge of the signal.
72 **/
73 void paint_mid(QPainter &p, int left, int right);
74
75private:
76
77 void paint_caps(QPainter &p, QLineF *const lines,
78 std::vector< std::pair<int64_t, bool> > &edges,
79 bool level, double samples_per_pixel, double pixels_offset,
80 float x_offset, float y_offset);
81
82 void init_trigger_actions(QWidget *parent);
83
84 void populate_popup_form(QWidget *parent, QFormLayout *form);
85
86 void add_trigger_action(const char *trig_types, char type,
87 QAction *action);
88
89 void update_trigger_actions();
90
91 void set_trigger(char type);
92
93private slots:
94 void on_trigger_none();
95 void on_trigger_rising();
96 void on_trigger_high();
97 void on_trigger_falling();
98 void on_trigger_low();
99 void on_trigger_change();
100
101private:
102 boost::shared_ptr<pv::data::Logic> _data;
103
104 QToolBar *_trigger_bar;
105 QAction *_trigger_none;
106 QAction *_trigger_rising;
107 QAction *_trigger_high;
108 QAction *_trigger_falling;
109 QAction *_trigger_low;
110 QAction *_trigger_change;
111};
112
113} // namespace view
114} // namespace pv
115
116#endif // PULSEVIEW_PV_VIEW_LOGICSIGNAL_H