]> sigrok.org Git - pulseview.git/blob - pv/views/decoder_output/view.hpp
DecoderOutput: Add selector box and fix signal handling
[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 <QComboBox>
24
25 #include <pv/views/viewbase.hpp>
26
27 namespace pv {
28
29 class Session;
30
31 namespace views {
32
33 namespace decoder_output {
34
35 class View : public ViewBase
36 {
37         Q_OBJECT
38
39 public:
40         explicit View(Session &session, bool is_main_view=false, QMainWindow *parent = nullptr);
41
42         ~View();
43
44         virtual ViewType get_type() const;
45
46         /**
47          * Resets the view to its default state after construction. It does however
48          * not reset the signal bases or any other connections with the session.
49          */
50         virtual void reset_view_state();
51
52         virtual void clear_signals();
53
54         virtual void clear_decode_signals();
55         virtual void add_decode_signal(shared_ptr<data::DecodeSignal> signal);
56         virtual void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
57
58         virtual void save_settings(QSettings &settings) const;
59         virtual void restore_settings(QSettings &settings);
60
61 private Q_SLOTS:
62         void on_signal_name_changed(const QString &name);
63
64 private:
65         QComboBox *signal_selector_;
66 };
67
68 } // namespace decoder_output
69 } // namespace views
70 } // namespace pv
71
72 #endif // PULSEVIEW_PV_VIEWS_DECODEROUTPUT_VIEW_HPP