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