]> sigrok.org Git - pulseview.git/blob - pv/views/decoder_output/view.hpp
79dfe234aac4751827d233352a8528328cf1761f
[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, QMainWindow *parent = nullptr);
39
40         ~View();
41
42         virtual ViewType get_type() const;
43
44         /**
45          * Resets the view to its default state after construction. It does however
46          * not reset the signal bases or any other connections with the session.
47          */
48         virtual void reset_view_state();
49
50         virtual void clear_signals();
51
52         virtual void clear_decode_signals();
53         virtual void add_decode_signal(shared_ptr<data::DecodeSignal> signal);
54         virtual void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
55
56         virtual void save_settings(QSettings &settings) const;
57         virtual void restore_settings(QSettings &settings);
58
59 private Q_SLOTS:
60         void on_signal_name_changed();
61
62 };
63
64 } // namespace decoder_output
65 } // namespace views
66 } // namespace pv
67
68 #endif // PULSEVIEW_PV_VIEWS_DECODEROUTPUT_VIEW_HPP