]> sigrok.org Git - pulseview.git/blame - pv/views/viewbase.cpp
MainBar: Style fixes
[pulseview.git] / pv / views / viewbase.cpp
CommitLineData
f4e57597
SA
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
efdec55a 18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
f4e57597
SA
19 */
20
21#ifdef ENABLE_DECODE
22#include <libsigrokdecode/libsigrokdecode.h>
23#endif
24
25#include <libsigrokcxx/libsigrokcxx.hpp>
26
27#include "pv/session.hpp"
28#include "pv/util.hpp"
8c339741 29#include "pv/data/segment.hpp"
f4e57597
SA
30
31using std::shared_ptr;
32
33namespace pv {
34namespace views {
35
5ed05b69
SA
36const int ViewBase::MaxViewAutoUpdateRate = 25; // No more than 25 Hz
37
143d322d
SA
38ViewBase::ViewBase(Session &session, bool is_main_view, QWidget *parent) :
39 session_(session),
8c339741 40 is_main_view_(is_main_view),
ffc00fdd 41 ruler_shift_(0),
8c339741 42 current_segment_(0)
f4e57597
SA
43{
44 (void)parent;
45
46 connect(&session_, SIGNAL(signals_changed()),
47 this, SLOT(signals_changed()));
48 connect(&session_, SIGNAL(capture_state_changed(int)),
49 this, SLOT(capture_state_updated(int)));
4e86ec70
SA
50 connect(&session_, SIGNAL(new_segment(int)),
51 this, SLOT(on_new_segment(int)));
5ed05b69
SA
52
53 connect(&delayed_view_updater_, SIGNAL(timeout()),
54 this, SLOT(perform_delayed_view_update()));
55 delayed_view_updater_.setSingleShot(true);
56 delayed_view_updater_.setInterval(1000 / MaxViewAutoUpdateRate);
f4e57597
SA
57}
58
59Session& ViewBase::session()
60{
61 return session_;
62}
63
64const Session& ViewBase::session() const
65{
66 return session_;
67}
68
69void ViewBase::clear_signals()
70{
71}
72
5ed05b69
SA
73unordered_set< shared_ptr<data::SignalBase> > ViewBase::signalbases() const
74{
75 return signalbases_;
76}
77
78void ViewBase::clear_signalbases()
79{
80 for (shared_ptr<data::SignalBase> signalbase : signalbases_) {
81 disconnect(signalbase.get(), SIGNAL(samples_cleared()),
82 this, SLOT(on_data_updated()));
7f894d95
SA
83 disconnect(signalbase.get(), SIGNAL(samples_added(uint64_t, uint64_t, uint64_t)),
84 this, SLOT(on_samples_added(uint64_t, uint64_t, uint64_t)));
5ed05b69
SA
85 }
86
87 signalbases_.clear();
88}
89
90void ViewBase::add_signalbase(const shared_ptr<data::SignalBase> signalbase)
91{
92 signalbases_.insert(signalbase);
93
94 connect(signalbase.get(), SIGNAL(samples_cleared()),
95 this, SLOT(on_data_updated()));
7f894d95
SA
96 connect(signalbase.get(), SIGNAL(samples_added(uint64_t, uint64_t, uint64_t)),
97 this, SLOT(on_samples_added(uint64_t, uint64_t, uint64_t)));
5ed05b69
SA
98}
99
f4e57597
SA
100#ifdef ENABLE_DECODE
101void ViewBase::clear_decode_signals()
102{
103}
104
ad908057 105void ViewBase::add_decode_signal(shared_ptr<data::DecodeSignal> signal)
f4e57597 106{
ad908057 107 (void)signal;
f4e57597
SA
108}
109
ad908057 110void ViewBase::remove_decode_signal(shared_ptr<data::DecodeSignal> signal)
f4e57597 111{
ad908057 112 (void)signal;
f4e57597
SA
113}
114#endif
115
116void ViewBase::save_settings(QSettings &settings) const
117{
118 (void)settings;
119}
120
121void ViewBase::restore_settings(QSettings &settings)
122{
123 (void)settings;
124}
125
7ea2a4ff 126void ViewBase::trigger_event(int segment_id, util::Timestamp location)
f4e57597 127{
7ea2a4ff 128 (void)segment_id;
f4e57597
SA
129 (void)location;
130}
131
132void ViewBase::signals_changed()
133{
134}
135
4e86ec70
SA
136void ViewBase::on_new_segment(int new_segment_id)
137{
138 (void)new_segment_id;
139}
140
558ad6ce
SA
141void ViewBase::on_segment_completed(int new_segment_id)
142{
143 (void)new_segment_id;
144}
145
f4e57597
SA
146void ViewBase::capture_state_updated(int state)
147{
148 (void)state;
149}
150
5ed05b69
SA
151void ViewBase::perform_delayed_view_update()
152{
153}
154
7f894d95 155void ViewBase::on_samples_added(uint64_t segment_id, uint64_t start_sample,
8c339741
SA
156 uint64_t end_sample)
157{
158 (void)start_sample;
159 (void)end_sample;
160
7f894d95 161 if (segment_id != current_segment_)
8c339741
SA
162 return;
163
164 if (!delayed_view_updater_.isActive())
165 delayed_view_updater_.start();
166}
167
5ed05b69 168void ViewBase::on_data_updated()
f4e57597 169{
5ed05b69
SA
170 if (!delayed_view_updater_.isActive())
171 delayed_view_updater_.start();
f4e57597
SA
172}
173
870ea3db 174} // namespace views
f4e57597 175} // namespace pv