]> sigrok.org Git - pulseview.git/blame - pv/subwindows/subwindowbase.hpp
Session: Fix issue #67 by improving error handling
[pulseview.git] / pv / subwindows / subwindowbase.hpp
CommitLineData
97378470
SA
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2018 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_SUBWINDOWS_SUBWINDOWBASE_HPP
21#define PULSEVIEW_PV_SUBWINDOWS_SUBWINDOWBASE_HPP
97378470
SA
22
23#include <cstdint>
24#include <memory>
25#include <unordered_set>
26
27#include <QToolBar>
28#include <QWidget>
29
30#include <pv/data/signalbase.hpp>
31
32#ifdef ENABLE_DECODE
33#include <pv/data/decodesignal.hpp>
34#endif
35
36using std::shared_ptr;
37using std::unordered_set;
38
39namespace pv {
40
41class Session;
42
43namespace subwindows {
44
45enum SubWindowType {
46 SubWindowTypeDecoderSelector,
47};
48
49class SubWindowBase : public QWidget
50{
51 Q_OBJECT
52
53public:
54 explicit SubWindowBase(Session &session, QWidget *parent = nullptr);
55
56 virtual bool has_toolbar() const;
57 virtual QToolBar* create_toolbar(QWidget *parent) const;
58
59 Session& session();
60 const Session& session() const;
61
62 /**
63 * Returns the signal bases contained in this view.
64 */
65 unordered_set< shared_ptr<data::SignalBase> > signalbases() const;
66
67 virtual void clear_signalbases();
68
69 virtual void add_signalbase(const shared_ptr<data::SignalBase> signalbase);
70
71#ifdef ENABLE_DECODE
72 virtual void clear_decode_signals();
73
74 virtual void add_decode_signal(shared_ptr<data::DecodeSignal> signal);
75
76 virtual void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
77#endif
78
c52493c9
SA
79 virtual int minimum_width() const;
80
97378470
SA
81public Q_SLOTS:
82 virtual void on_signals_changed();
83
84protected:
85 Session &session_;
86
87 unordered_set< shared_ptr<data::SignalBase> > signalbases_;
88};
89
90} // namespace subwindows
91} // namespace pv
92
8845be3c 93#endif // PULSEVIEW_PV_SUBWINDOWS_SUBWINDOWBASE_HPP