PulseView  unreleased development snapshot
A Qt-based sigrok GUI
signal.hpp
Go to the documentation of this file.
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_TRACE_SIGNAL_HPP
21 #define PULSEVIEW_PV_VIEWS_TRACE_SIGNAL_HPP
22 
23 #include <memory>
24 
25 #include <QComboBox>
26 #include <QString>
27 #include <QVariant>
28 #include <QWidgetAction>
29 
30 #include <cstdint>
31 
32 #include <pv/data/logicsegment.hpp>
33 
34 #include "trace.hpp"
35 #include "viewitemowner.hpp"
36 
37 using std::shared_ptr;
38 
39 namespace pv {
40 
41 class Session;
42 
43 namespace data {
44 class SignalBase;
45 class SignalData;
46 }
47 
48 namespace views {
49 namespace trace {
50 
60 class Signal : public Trace, public ViewItemOwner
61 {
62  Q_OBJECT
63 
64 protected:
65  Signal(pv::Session &session, shared_ptr<data::SignalBase> signal);
66 
67 public:
71  virtual void set_name(QString name);
72 
80  virtual vector<data::LogicSegment::EdgePair> get_nearest_level_changes(uint64_t sample_pos) = 0;
81 
85  bool enabled() const;
86 
87  shared_ptr<data::SignalBase> base() const;
88 
89  virtual void save_settings(QSettings &settings) const;
90  virtual std::map<QString, QVariant> save_settings() const;
91 
92  virtual void restore_settings(QSettings &settings);
93  virtual void restore_settings(std::map<QString, QVariant> settings);
94 
95  void paint_back(QPainter &p, ViewItemPaintParams &pp);
96 
97  virtual void populate_popup_form(QWidget *parent, QFormLayout *form);
98 
99  QMenu* create_header_context_menu(QWidget *parent);
100 
101  void delete_pressed();
102 
103 protected Q_SLOTS:
104  virtual void on_name_changed(const QString &text);
105 
106  void on_disable();
107 
108  void on_enabled_changed(bool enabled);
109 
110 protected:
112 
113  QComboBox *name_widget_;
114 };
115 
116 } // namespace trace
117 } // namespace views
118 } // namespace pv
119 
120 #endif // PULSEVIEW_PV_VIEWS_TRACE_SIGNAL_HPP
QComboBox * name_widget_
Definition: signal.hpp:113
static std::string data()
Definition: exprtk.hpp:39024
pv::Session & session_
Definition: signal.hpp:111