]> sigrok.org Git - pulseview.git/blame_incremental - pv/views/decoder_output/view.hpp
Simplify QHexView interfaces
[pulseview.git] / pv / views / decoder_output / view.hpp
... / ...
CommitLineData
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 <QComboBox>
24#include <QStackedWidget>
25
26#include <pv/views/viewbase.hpp>
27
28#include "QHexView.hpp"
29
30namespace pv {
31
32class Session;
33
34namespace views {
35
36namespace decoder_output {
37
38class View : public ViewBase
39{
40 Q_OBJECT
41
42public:
43 explicit View(Session &session, bool is_main_view=false, QMainWindow *parent = nullptr);
44
45 ~View();
46
47 virtual ViewType get_type() const;
48
49 /**
50 * Resets the view to its default state after construction. It does however
51 * not reset the signal bases or any other connections with the session.
52 */
53 virtual void reset_view_state();
54
55 virtual void clear_signals();
56
57 virtual void clear_decode_signals();
58 virtual void add_decode_signal(shared_ptr<data::DecodeSignal> signal);
59 virtual void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
60
61 virtual void save_settings(QSettings &settings) const;
62 virtual void restore_settings(QSettings &settings);
63
64private Q_SLOTS:
65 void on_signal_name_changed(const QString &name);
66
67private:
68 QComboBox *signal_selector_, *format_selector_;
69 QStackedWidget *stacked_widget_;
70 QHexView *hex_view_;
71};
72
73} // namespace decoder_output
74} // namespace views
75} // namespace pv
76
77#endif // PULSEVIEW_PV_VIEWS_DECODEROUTPUT_VIEW_HPP