]> sigrok.org Git - pulseview.git/blame - pv/views/decoder_binary/view.hpp
Session: Fix issue #67 by improving error handling
[pulseview.git] / pv / views / decoder_binary / 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
8845be3c
UH
20#ifndef PULSEVIEW_PV_VIEWS_DECODER_BINARY_VIEW_HPP
21#define PULSEVIEW_PV_VIEWS_DECODER_BINARY_VIEW_HPP
2bdc5796 22
03408f5f 23#include <QAction>
bdbc561f 24#include <QComboBox>
560f8377 25#include <QStackedWidget>
03408f5f 26#include <QToolButton>
bdbc561f 27
978dbc9a
SA
28#include "pv/metadata_obj.hpp"
29#include "pv/views/viewbase.hpp"
30#include "pv/data/decodesignal.hpp"
2bdc5796 31
560f8377
SA
32#include "QHexView.hpp"
33
2bdc5796
SA
34namespace pv {
35
36class Session;
37
38namespace views {
39
121307b3 40namespace decoder_binary {
2bdc5796 41
03408f5f
SA
42// When adding an entry here, don't forget to update SaveTypeNames as well
43enum SaveType {
44 SaveTypeBinary,
d5645564
SA
45 SaveTypeHexDumpPlain,
46 SaveTypeHexDumpWithOffset,
47 SaveTypeHexDumpComplete,
03408f5f
SA
48 SaveTypeCount // Indicates how many save types there are, must always be last
49};
50
51extern const char* SaveTypeNames[SaveTypeCount];
52
53
978dbc9a 54class View : public ViewBase, public MetadataObjObserverInterface
2bdc5796
SA
55{
56 Q_OBJECT
57
58public:
a24412db 59 explicit View(Session &session, bool is_main_view=false, QMainWindow *parent = nullptr);
978dbc9a 60 ~View();
2bdc5796 61
db298158
SA
62 virtual ViewType get_type() const;
63
2bdc5796
SA
64 /**
65 * Resets the view to its default state after construction. It does however
66 * not reset the signal bases or any other connections with the session.
67 */
68 virtual void reset_view_state();
69
2bdc5796
SA
70 virtual void clear_decode_signals();
71 virtual void add_decode_signal(shared_ptr<data::DecodeSignal> signal);
72 virtual void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
73
74 virtual void save_settings(QSettings &settings) const;
75 virtual void restore_settings(QSettings &settings);
76
4b97fe09 77private:
03408f5f 78 void reset_data();
4b97fe09
SA
79 void update_data();
80
13b726cd 81 void save_data() const;
d5645564 82 void save_data_as_hex_dump(bool with_offset=false, bool with_ascii=false) const;
13b726cd 83
2bdc5796 84private Q_SLOTS:
e77de61f 85 void on_selected_decoder_changed(int index);
b2b18d3a 86 void on_selected_class_changed(int index);
bdbc561f 87 void on_signal_name_changed(const QString &name);
b2b18d3a 88 void on_new_binary_data(unsigned int segment_id, void* decoder, unsigned int bin_class_id);
e77de61f
SA
89
90 void on_decoder_stacked(void* decoder);
91 void on_decoder_removed(void* decoder);
2bdc5796 92
03408f5f
SA
93 void on_actionSave_triggered(QAction* action = nullptr);
94
978dbc9a
SA
95 virtual void on_metadata_object_changed(MetadataObject* obj,
96 MetadataValueType value_type);
97
516d2128
SA
98 virtual void perform_delayed_view_update();
99
bdbc561f 100private:
6961eab0
SA
101 QWidget* parent_;
102
e77de61f 103 QComboBox *decoder_selector_, *format_selector_, *class_selector_;
560f8377
SA
104 QStackedWidget *stacked_widget_;
105 QHexView *hex_view_;
4b97fe09 106
03408f5f
SA
107 QToolButton* save_button_;
108 QAction* save_action_;
109
4b97fe09 110 data::DecodeSignal *signal_;
e77de61f 111 const data::decode::Decoder *decoder_;
ac9494ef 112 uint32_t bin_class_id_;
03408f5f 113 bool binary_data_exists_;
2bdc5796
SA
114};
115
121307b3 116} // namespace decoder_binary
2bdc5796
SA
117} // namespace views
118} // namespace pv
119
8845be3c 120#endif // PULSEVIEW_PV_VIEWS_DECODER_BINARY_VIEW_HPP