]> sigrok.org Git - pulseview.git/blame - pv/view/tracegroup.cpp
View: Removed selected_items
[pulseview.git] / pv / view / tracegroup.cpp
CommitLineData
722930c1
JH
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
27using std::shared_ptr;
28
29namespace pv {
30namespace view {
31
32TraceGroup::~TraceGroup()
33{
34 _owner = nullptr;
35 clear_child_items();
36}
37
38bool 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
44pv::SigSession& TraceGroup::session()
45{
46 assert(_owner);
47 return _owner->session();
48}
49
50const pv::SigSession& TraceGroup::session() const
51{
52 assert(_owner);
53 return _owner->session();
54}
55
56pv::view::View* TraceGroup::view()
57{
58 assert(_owner);
59 return _owner->view();
60}
61
62const pv::view::View* TraceGroup::view() const
63{
64 assert(_owner);
65 return _owner->view();
66}
67
68void TraceGroup::paint_label(QPainter &p, int right, bool hover)
69{
70 (void)p;
71 (void)right;
72 (void)hover;
73}
74
75QRectF TraceGroup::label_rect(int right)
76{
77 (void)right;
78 return QRectF();
79}
80
81bool 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
90QMenu* TraceGroup::create_context_menu(QWidget *parent)
91{
92 (void)parent;
93
94 return NULL;
95}
96
97pv::widgets::Popup* TraceGroup::create_popup(QWidget *parent)
98{
99 (void)parent;
100 return NULL;
101}
102
103int TraceGroup::owner_v_offset() const
104{
105 return v_offset() + _owner->owner_v_offset();
106}
107
108void TraceGroup::update_viewport()
109{
110 if (_owner)
111 _owner->update_viewport();
112}
113
114} // namespace view
115} // namespace pv