]> sigrok.org Git - pulseview.git/blob - pv/views/decoder_output/view.hpp
ece85ad65835f45a5d83a29ece14f8eb97515ae6
[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 <QAction>
24 #include <QComboBox>
25 #include <QStackedWidget>
26 #include <QToolButton>
27
28 #include <pv/views/viewbase.hpp>
29 #include <pv/data/decodesignal.hpp>
30
31 #include "QHexView.hpp"
32
33 namespace pv {
34
35 class Session;
36
37 namespace views {
38
39 namespace decoder_output {
40
41 // When adding an entry here, don't forget to update SaveTypeNames as well
42 enum SaveType {
43         SaveTypeBinary,
44         SaveTypeHexDump,
45         SaveTypeCount  // Indicates how many save types there are, must always be last
46 };
47
48 extern const char* SaveTypeNames[SaveTypeCount];
49
50
51 class View : public ViewBase
52 {
53         Q_OBJECT
54
55 public:
56         explicit View(Session &session, bool is_main_view=false, QMainWindow *parent = nullptr);
57
58         ~View();
59
60         virtual ViewType get_type() const;
61
62         /**
63          * Resets the view to its default state after construction. It does however
64          * not reset the signal bases or any other connections with the session.
65          */
66         virtual void reset_view_state();
67
68         virtual void clear_decode_signals();
69         virtual void add_decode_signal(shared_ptr<data::DecodeSignal> signal);
70         virtual void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
71
72         virtual void save_settings(QSettings &settings) const;
73         virtual void restore_settings(QSettings &settings);
74
75 private:
76         void reset_data();
77         void update_data();
78
79 private Q_SLOTS:
80         void on_selected_decoder_changed(int index);
81         void on_selected_class_changed(int index);
82         void on_signal_name_changed(const QString &name);
83         void on_new_binary_data(unsigned int segment_id, void* decoder, unsigned int bin_class_id);
84
85         void on_decoder_stacked(void* decoder);
86         void on_decoder_removed(void* decoder);
87
88         void on_actionSave_triggered(QAction* action = nullptr);
89
90         virtual void perform_delayed_view_update();
91
92 private:
93         QWidget* parent_;
94
95         QComboBox *decoder_selector_, *format_selector_, *class_selector_;
96         QStackedWidget *stacked_widget_;
97         QHexView *hex_view_;
98
99         QToolButton* save_button_;
100         QAction* save_action_;
101
102         data::DecodeSignal *signal_;
103         const data::decode::Decoder *decoder_;
104         uint32_t bin_class_id_;
105         bool binary_data_exists_;
106 };
107
108 } // namespace decoder_output
109 } // namespace views
110 } // namespace pv
111
112 #endif // PULSEVIEW_PV_VIEWS_DECODEROUTPUT_VIEW_HPP