]> sigrok.org Git - pulseview.git/blame - pv/views/decoder_output/view.hpp
clang-tidy and clazy proposals
[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
03408f5f 23#include <QAction>
bdbc561f 24#include <QComboBox>
560f8377 25#include <QStackedWidget>
03408f5f 26#include <QToolButton>
bdbc561f 27
2bdc5796 28#include <pv/views/viewbase.hpp>
4b97fe09 29#include <pv/data/decodesignal.hpp>
2bdc5796 30
560f8377
SA
31#include "QHexView.hpp"
32
2bdc5796
SA
33namespace pv {
34
35class Session;
36
37namespace views {
38
39namespace decoder_output {
40
03408f5f
SA
41// When adding an entry here, don't forget to update SaveTypeNames as well
42enum SaveType {
43 SaveTypeBinary,
d5645564
SA
44 SaveTypeHexDumpPlain,
45 SaveTypeHexDumpWithOffset,
46 SaveTypeHexDumpComplete,
03408f5f
SA
47 SaveTypeCount // Indicates how many save types there are, must always be last
48};
49
50extern const char* SaveTypeNames[SaveTypeCount];
51
52
2bdc5796
SA
53class View : public ViewBase
54{
55 Q_OBJECT
56
57public:
a24412db 58 explicit View(Session &session, bool is_main_view=false, QMainWindow *parent = nullptr);
2bdc5796 59
db298158
SA
60 virtual ViewType get_type() const;
61
2bdc5796
SA
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
2bdc5796
SA
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
4b97fe09 75private:
03408f5f 76 void reset_data();
4b97fe09
SA
77 void update_data();
78
13b726cd 79 void save_data() const;
d5645564 80 void save_data_as_hex_dump(bool with_offset=false, bool with_ascii=false) const;
13b726cd 81
2bdc5796 82private Q_SLOTS:
e77de61f 83 void on_selected_decoder_changed(int index);
b2b18d3a 84 void on_selected_class_changed(int index);
bdbc561f 85 void on_signal_name_changed(const QString &name);
b2b18d3a 86 void on_new_binary_data(unsigned int segment_id, void* decoder, unsigned int bin_class_id);
e77de61f
SA
87
88 void on_decoder_stacked(void* decoder);
89 void on_decoder_removed(void* decoder);
2bdc5796 90
03408f5f
SA
91 void on_actionSave_triggered(QAction* action = nullptr);
92
516d2128
SA
93 virtual void perform_delayed_view_update();
94
bdbc561f 95private:
6961eab0
SA
96 QWidget* parent_;
97
e77de61f 98 QComboBox *decoder_selector_, *format_selector_, *class_selector_;
560f8377
SA
99 QStackedWidget *stacked_widget_;
100 QHexView *hex_view_;
4b97fe09 101
03408f5f
SA
102 QToolButton* save_button_;
103 QAction* save_action_;
104
4b97fe09 105 data::DecodeSignal *signal_;
e77de61f 106 const data::decode::Decoder *decoder_;
ac9494ef 107 uint32_t bin_class_id_;
03408f5f 108 bool binary_data_exists_;
2bdc5796
SA
109};
110
111} // namespace decoder_output
112} // namespace views
113} // namespace pv
114
115#endif // PULSEVIEW_PV_VIEWS_DECODEROUTPUT_VIEW_HPP