]> sigrok.org Git - pulseview.git/blame_incremental - pv/views/viewbase.hpp
TabularDecView: Remove unnecessary stuff
[pulseview.git] / pv / views / viewbase.hpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 * Copyright (C) 2016 Soeren Apel <soeren@apelpie.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef PULSEVIEW_PV_VIEWS_VIEWBASE_HPP
22#define PULSEVIEW_PV_VIEWS_VIEWBASE_HPP
23
24#include <cstdint>
25#include <memory>
26#include <unordered_set>
27#include <vector>
28
29#include <QMainWindow>
30#include <QTimer>
31#include <QWidget>
32
33#include <pv/data/signalbase.hpp>
34#include <pv/util.hpp>
35
36#ifdef ENABLE_DECODE
37#include <pv/data/decodesignal.hpp>
38#endif
39
40using std::shared_ptr;
41using std::vector;
42
43namespace pv {
44
45class Session;
46
47namespace view {
48class DecodeTrace;
49class Signal;
50}
51
52namespace views {
53
54// When adding an entry here, don't forget to update ViewTypeNames as well
55enum ViewType {
56 ViewTypeTrace,
57#ifdef ENABLE_DECODE
58 ViewTypeDecoderBinary,
59 ViewTypeTabularDecoder,
60#endif
61 ViewTypeCount // Indicates how many view types there are, must always be last
62};
63
64extern const char* ViewTypeNames[ViewTypeCount];
65
66class ViewBase : public QWidget
67{
68 Q_OBJECT
69
70public:
71 static const int MaxViewAutoUpdateRate;
72
73public:
74 explicit ViewBase(Session &session, bool is_main_view = false, QMainWindow *parent = nullptr);
75
76 virtual ViewType get_type() const = 0;
77 bool is_main_view() const;
78
79 /**
80 * Resets the view to its default state after construction. It does however
81 * not reset the signal bases or any other connections with the session.
82 */
83 virtual void reset_view_state();
84
85 Session& session();
86 const Session& session() const;
87
88 virtual void clear_signals();
89
90 /**
91 * Returns the signal bases contained in this view.
92 */
93 vector< shared_ptr<data::SignalBase> > signalbases() const;
94
95 virtual void clear_signalbases();
96
97 virtual void add_signalbase(const shared_ptr<data::SignalBase> signalbase);
98
99#ifdef ENABLE_DECODE
100 virtual void clear_decode_signals();
101
102 virtual void add_decode_signal(shared_ptr<data::DecodeSignal> signal);
103
104 virtual void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
105#endif
106
107 virtual void save_settings(QSettings &settings) const;
108 virtual void restore_settings(QSettings &settings);
109
110 virtual void focus_on_range(uint64_t start_sample, uint64_t end_sample);
111
112public Q_SLOTS:
113 virtual void trigger_event(int segment_id, util::Timestamp location);
114 virtual void signals_changed();
115 virtual void capture_state_updated(int state);
116 virtual void on_new_segment(int new_segment_id);
117 virtual void on_segment_completed(int new_segment_id);
118 virtual void perform_delayed_view_update();
119
120private Q_SLOTS:
121 void on_samples_added(uint64_t segment_id, uint64_t start_sample,
122 uint64_t end_sample);
123
124 void on_data_updated();
125
126protected:
127 Session &session_;
128
129 const bool is_main_view_;
130
131 util::TimeUnit time_unit_;
132
133 vector< shared_ptr<data::SignalBase> > signalbases_;
134#ifdef ENABLE_DECODE
135 vector< shared_ptr<data::DecodeSignal> > decode_signals_;
136#endif
137
138 /// The ID of the currently displayed segment
139 uint32_t current_segment_;
140
141 QTimer delayed_view_updater_;
142};
143
144} // namespace views
145} // namespace pv
146
147#endif // PULSEVIEW_PV_VIEWS_VIEWBASE_HPP