]> sigrok.org Git - pulseview.git/blame - pv/view/tracegroup.h
RowItemOwner: Replaced parent notification scheme
[pulseview.git] / pv / view / tracegroup.h
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#ifndef PULSEVIEW_PV_VIEW_TRACEGROUP_H
22#define PULSEVIEW_PV_VIEW_TRACEGROUP_H
23
24#include "rowitem.h"
25#include "rowitemowner.h"
26
27namespace pv {
28namespace view {
29
30class TraceGroup : public RowItem, public RowItemOwner
31{
32 Q_OBJECT
33
b781f806
JH
34private:
35 static const int Padding;
36 static const int Width;
1dc835a4
JH
37 static const int LineThickness;
38 static const QColor LineColour;
b781f806 39
722930c1
JH
40public:
41 /**
42 * Virtual destructor
43 */
44 virtual ~TraceGroup();
45
46 /**
47 * Returns true if the item is visible and enabled.
48 */
49 bool enabled() const;
50
51 /**
52 * Returns the session of the onwer.
53 */
54 pv::SigSession& session();
55
56 /**
57 * Returns the session of the onwer.
58 */
59 const pv::SigSession& session() const;
60
61 /**
62 * Returns the view of the owner.
63 */
64 virtual pv::view::View* view();
65
66 /**
67 * Returns the view of the owner.
68 */
69 virtual const pv::view::View* view() const;
70
a5d93c27
JH
71 /**
72 * Computes the vertical extents of the contents of this row item.
73 * @return A pair containing the minimum and maximum y-values.
74 */
75 std::pair<int, int> v_extents() const;
76
722930c1
JH
77 /**
78 * Paints the signal label.
79 * @param p the QPainter to paint into.
80 * @param right the x-coordinate of the right edge of the header
81 * area.
82 * @param hover true if the label is being hovered over by the mouse.
83 */
84 void paint_label(QPainter &p, int right, bool hover);
85
86 /**
87 * Computes the outline rectangle of a label.
88 * @param right the x-coordinate of the right edge of the header
89 * area.
90 * @return Returns the rectangle of the signal label.
91 */
0067d804 92 QRectF label_rect(int right) const;
722930c1
JH
93
94 /**
95 * Determines if a point is in the header label rect.
96 * @param left the x-coordinate of the left edge of the header
97 * area.
98 * @param right the x-coordinate of the right edge of the header
99 * area.
100 * @param point the point to test.
101 */
102 bool pt_in_label_rect(int left, int right, const QPoint &point);
103
104 QMenu* create_context_menu(QWidget *parent);
105
106 pv::widgets::Popup* create_popup(QWidget *parent);
107
108 /**
109 * Returns the total vertical offset of this trace and all it's owners
110 */
111 int owner_v_offset() const;
112
32218d3e
JH
113public:
114 void appearance_changed(bool label, bool content);
115
116 void extents_changed(bool horz, bool vert);
0a51d1c1
JH
117
118private Q_SLOTS:
119 void on_ungroup();
722930c1
JH
120};
121
122} // view
123} // pv
124
125#endif // PULSEVIEW_PV_VIEW_TRACEGROUP_H