]> sigrok.org Git - pulseview.git/blame_incremental - pv/views/trace/signal.hpp
Remove signal scale handle
[pulseview.git] / pv / views / trace / signal.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, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_SIGNAL_HPP
21#define PULSEVIEW_PV_VIEWS_TRACEVIEW_SIGNAL_HPP
22
23#include <memory>
24
25#include <QComboBox>
26#include <QWidgetAction>
27
28#include <cstdint>
29
30#include "trace.hpp"
31#include "viewitemowner.hpp"
32
33using std::shared_ptr;
34
35namespace pv {
36
37class Session;
38
39namespace data {
40class SignalBase;
41class SignalData;
42}
43
44namespace views {
45namespace trace {
46
47class Signal : public Trace, public ViewItemOwner
48{
49 Q_OBJECT
50
51protected:
52 Signal(pv::Session &session, shared_ptr<data::SignalBase> channel);
53
54public:
55 /**
56 * Sets the name of the signal.
57 */
58 virtual void set_name(QString name);
59
60 virtual shared_ptr<pv::data::SignalData> data() const = 0;
61
62 /**
63 * Returns true if the trace is visible and enabled.
64 */
65 bool enabled() const;
66
67 shared_ptr<data::SignalBase> base() const;
68
69 virtual void save_settings(QSettings &settings) const;
70
71 virtual void restore_settings(QSettings &settings);
72
73 void paint_back(QPainter &p, ViewItemPaintParams &pp);
74
75 virtual void populate_popup_form(QWidget *parent, QFormLayout *form);
76
77 QMenu* create_context_menu(QWidget *parent);
78
79 void delete_pressed();
80
81protected Q_SLOTS:
82 virtual void on_name_changed(const QString &text);
83
84 void on_disable();
85
86 void on_enabled_changed(bool enabled);
87
88protected:
89 pv::Session &session_;
90
91 QComboBox *name_widget_;
92};
93
94} // namespace trace
95} // namespace views
96} // namespace pv
97
98#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_SIGNAL_HPP