]> sigrok.org Git - pulseview.git/blame - pv/views/decoder_output/view.hpp
DecoderOutput: Add selector box and fix signal handling
[pulseview.git] / pv / views / decoder_output / view.hpp
CommitLineData
2bdc5796
SA
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
bdbc561f
SA
23#include <QComboBox>
24
2bdc5796
SA
25#include <pv/views/viewbase.hpp>
26
27namespace pv {
28
29class Session;
30
31namespace views {
32
33namespace decoder_output {
34
35class View : public ViewBase
36{
37 Q_OBJECT
38
39public:
a24412db 40 explicit View(Session &session, bool is_main_view=false, QMainWindow *parent = nullptr);
2bdc5796
SA
41
42 ~View();
43
db298158
SA
44 virtual ViewType get_type() const;
45
2bdc5796
SA
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
61private Q_SLOTS:
bdbc561f 62 void on_signal_name_changed(const QString &name);
2bdc5796 63
bdbc561f
SA
64private:
65 QComboBox *signal_selector_;
2bdc5796
SA
66};
67
68} // namespace decoder_output
69} // namespace views
70} // namespace pv
71
72#endif // PULSEVIEW_PV_VIEWS_DECODEROUTPUT_VIEW_HPP