]> sigrok.org Git - pulseview.git/blame - pv/views/decoder_output/view.hpp
DecodeSignal: Fix race condition
[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 23#include <QComboBox>
560f8377 24#include <QStackedWidget>
bdbc561f 25
2bdc5796 26#include <pv/views/viewbase.hpp>
4b97fe09 27#include <pv/data/decodesignal.hpp>
2bdc5796 28
560f8377
SA
29#include "QHexView.hpp"
30
2bdc5796
SA
31namespace pv {
32
33class Session;
34
35namespace views {
36
37namespace decoder_output {
38
39class View : public ViewBase
40{
41 Q_OBJECT
42
43public:
a24412db 44 explicit View(Session &session, bool is_main_view=false, QMainWindow *parent = nullptr);
2bdc5796
SA
45
46 ~View();
47
db298158
SA
48 virtual ViewType get_type() const;
49
2bdc5796
SA
50 /**
51 * Resets the view to its default state after construction. It does however
52 * not reset the signal bases or any other connections with the session.
53 */
54 virtual void reset_view_state();
55
56 virtual void clear_signals();
57
58 virtual void clear_decode_signals();
59 virtual void add_decode_signal(shared_ptr<data::DecodeSignal> signal);
60 virtual void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
61
62 virtual void save_settings(QSettings &settings) const;
63 virtual void restore_settings(QSettings &settings);
64
4b97fe09
SA
65private:
66 void update_data();
67
2bdc5796 68private Q_SLOTS:
4b97fe09 69 void on_selected_signal_changed(int index);
bdbc561f 70 void on_signal_name_changed(const QString &name);
4b97fe09 71 void on_new_binary_data(unsigned int segment_id);
2bdc5796 72
bdbc561f 73private:
861ab3a4 74 QComboBox *signal_selector_, *format_selector_;
560f8377
SA
75 QStackedWidget *stacked_widget_;
76 QHexView *hex_view_;
4b97fe09
SA
77
78 data::DecodeSignal *signal_;
79
80 QByteArray *merged_data_;
2bdc5796
SA
81};
82
83} // namespace decoder_output
84} // namespace views
85} // namespace pv
86
87#endif // PULSEVIEW_PV_VIEWS_DECODEROUTPUT_VIEW_HPP