]> sigrok.org Git - pulseview.git/blob - pv/views/decoder_output/view.hpp
a780c2f374d505834298f3a196757d23ef61a12a
[pulseview.git] / pv / views / decoder_output / view.hpp
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2019 Soeren Apel <soeren@apelpie.net>
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_DECODEROUTPUT_VIEW_HPP
21 #define PULSEVIEW_PV_VIEWS_DECODEROUTPUT_VIEW_HPP
22
23 #include <pv/views/viewbase.hpp>
24
25 namespace pv {
26
27 class Session;
28
29 namespace views {
30
31 namespace decoder_output {
32
33 class View : public ViewBase
34 {
35         Q_OBJECT
36
37 public:
38         explicit View(Session &session, bool is_main_view=false, QWidget *parent = nullptr);
39
40         ~View();
41
42         /**
43          * Resets the view to its default state after construction. It does however
44          * not reset the signal bases or any other connections with the session.
45          */
46         virtual void reset_view_state();
47
48         virtual void clear_signals();
49
50         virtual void clear_decode_signals();
51         virtual void add_decode_signal(shared_ptr<data::DecodeSignal> signal);
52         virtual void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
53
54         virtual void save_settings(QSettings &settings) const;
55         virtual void restore_settings(QSettings &settings);
56
57 private Q_SLOTS:
58         void on_signal_name_changed();
59
60 };
61
62 } // namespace decoder_output
63 } // namespace views
64 } // namespace pv
65
66 #endif // PULSEVIEW_PV_VIEWS_DECODEROUTPUT_VIEW_HPP