]> sigrok.org Git - pulseview.git/blob - pv/subwindows/subwindowbase.hpp
47b8ce392c925cbcdda15fa96821eb6828a2d227
[pulseview.git] / pv / subwindows / subwindowbase.hpp
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
20 #ifndef PULSEVIEW_PV_SUBWINDOWBASE_HPP
21 #define PULSEVIEW_PV_SUBWINDOWBASE_HPP
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
36 using std::shared_ptr;
37 using std::unordered_set;
38
39 namespace pv {
40
41 class Session;
42
43 namespace subwindows {
44
45 enum SubWindowType {
46         SubWindowTypeDecoderSelector,
47 };
48
49 class SubWindowBase : public QWidget
50 {
51         Q_OBJECT
52
53 public:
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
79 public Q_SLOTS:
80         virtual void on_signals_changed();
81
82 protected:
83         Session &session_;
84
85         unordered_set< shared_ptr<data::SignalBase> > signalbases_;
86 };
87
88 } // namespace subwindows
89 } // namespace pv
90
91 #endif // PULSEVIEW_PV_SUBWINDOWBASE_HPP