]> sigrok.org Git - pulseview.git/blob - pv/view/tracegroup.cpp
TraceGroup: Added skeleton
[pulseview.git] / pv / view / tracegroup.cpp
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
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, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #include <assert.h>
22
23 #include <algorithm>
24
25 #include "tracegroup.h"
26
27 using std::shared_ptr;
28
29 namespace pv {
30 namespace view {
31
32 TraceGroup::~TraceGroup()
33 {
34         _owner = nullptr;
35         clear_child_items();
36 }
37
38 bool TraceGroup::enabled() const
39 {
40         return std::any_of(child_items().begin(), child_items().end(),
41                 [](const shared_ptr<RowItem> &r) { return r->enabled(); });
42 }
43
44 pv::SigSession& TraceGroup::session()
45 {
46         assert(_owner);
47         return _owner->session();
48 }
49
50 const pv::SigSession& TraceGroup::session() const
51 {
52         assert(_owner);
53         return _owner->session();
54 }
55
56 pv::view::View* TraceGroup::view()
57 {
58         assert(_owner);
59         return _owner->view();
60 }
61
62 const pv::view::View* TraceGroup::view() const
63 {
64         assert(_owner);
65         return _owner->view();
66 }
67
68 void TraceGroup::paint_label(QPainter &p, int right, bool hover)
69 {
70         (void)p;
71         (void)right;
72         (void)hover;
73 }
74
75 QRectF TraceGroup::label_rect(int right)
76 {
77         (void)right;
78         return QRectF();
79 }
80
81 bool TraceGroup::pt_in_label_rect(int left, int right, const QPoint &point)
82 {
83         (void)left;
84         (void)right;
85         (void)point;
86
87         return false;
88 }
89
90 QMenu* TraceGroup::create_context_menu(QWidget *parent)
91 {
92         (void)parent;
93
94         return NULL;
95 }
96
97 pv::widgets::Popup* TraceGroup::create_popup(QWidget *parent)
98 {
99         (void)parent;
100         return NULL;
101 }
102
103 int TraceGroup::owner_v_offset() const
104 {
105         return v_offset() + _owner->owner_v_offset();
106 }
107
108 void TraceGroup::update_viewport()
109 {
110         if (_owner)
111                 _owner->update_viewport();
112 }
113
114 } // namespace view
115 } // namespace pv