PulseView  unreleased development snapshot
A Qt-based sigrok GUI
subwindowbase.hpp
Go to the documentation of this file.
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_SUBWINDOWS_SUBWINDOWBASE_HPP
21 #define PULSEVIEW_PV_SUBWINDOWS_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 
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 
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  virtual int minimum_width() const;
80 
81 public Q_SLOTS:
82  virtual void on_signals_changed();
83 
84 protected:
86 
87  unordered_set< shared_ptr<data::SignalBase> > signalbases_;
88 };
89 
90 } // namespace subwindows
91 } // namespace pv
92 
93 #endif // PULSEVIEW_PV_SUBWINDOWS_SUBWINDOWBASE_HPP
virtual bool has_toolbar() const
SubWindowBase(Session &session, QWidget *parent=nullptr)
unordered_set< shared_ptr< data::SignalBase > > signalbases() const
virtual QToolBar * create_toolbar(QWidget *parent) const
virtual void add_signalbase(const shared_ptr< data::SignalBase > signalbase)
unordered_set< shared_ptr< data::SignalBase > > signalbases_
virtual int minimum_width() const