]> sigrok.org Git - pulseview.git/blame - pv/view/tracetreeitemowner.hpp
MainWindow: Use regular pointer for QDockWidgets
[pulseview.git] / pv / view / tracetreeitemowner.hpp
CommitLineData
18f7104f
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2014 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
f4e57597
SA
21#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACETREEITEMOWNER_HPP
22#define PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACETREEITEMOWNER_HPP
18f7104f 23
c373f828
JH
24#include "viewitemowner.hpp"
25#include "tracetreeitem.hpp"
6b715302 26
18f7104f
JH
27namespace pv {
28
2b81ae46 29class Session;
18f7104f 30
f4e57597
SA
31namespace views {
32namespace TraceView {
18f7104f 33
af503b10 34class TraceTreeItem;
18f7104f
JH
35class View;
36
c373f828 37class TraceTreeItemOwner : public ViewItemOwner
18f7104f 38{
6b715302 39public:
18f7104f
JH
40 /**
41 * Returns the view of the owner.
42 */
f4e57597 43 virtual View* view() = 0;
18f7104f
JH
44
45 /**
46 * Returns the view of the owner.
47 */
f4e57597 48 virtual const View* view() const = 0;
18f7104f 49
7ff0145f 50 virtual int owner_visual_v_offset() const = 0;
18f7104f 51
c373f828 52 /**
f4e57597 53 * Returns the session of the owner.
c373f828 54 */
f4e57597 55 virtual Session& session() = 0;
c373f828
JH
56
57 /**
58 * Returns the session of the owner.
59 */
f4e57597 60 virtual const Session& session() const = 0;
c373f828 61
3e769a37
JH
62 /**
63 * Returns the number of nested parents that this row item owner has.
64 */
65 virtual unsigned int depth() const = 0;
66
6b715302
JH
67 /**
68 * Returns a list of row items owned by this object.
69 */
70 virtual const item_list& child_items() const;
68b21a71 71
c373f828
JH
72 /**
73 * Returns a list of row items owned by this object.
74 */
75 std::vector< std::shared_ptr<TraceTreeItem> >
76 trace_tree_child_items() const;
77
68b21a71
JH
78 /**
79 * Clears the list of child items.
80 */
81 void clear_child_items();
82
83 /**
84 * Adds a child item to this object.
85 */
af503b10 86 void add_child_item(std::shared_ptr<TraceTreeItem> item);
68b21a71
JH
87
88 /**
89 * Removes a child item from this object.
90 */
af503b10 91 void remove_child_item(std::shared_ptr<TraceTreeItem> item);
18f7104f 92
c373f828 93 virtual void restack_items();
6046c19d 94
a5d93c27
JH
95 /**
96 * Computes the vertical extents of the contents of this row item owner.
97 * @return A pair containing the minimum and maximum y-values.
98 */
99 std::pair<int, int> v_extents() const;
100
ac0708fb
SA
101 /*
102 * Reassigns background color states to all its children, thereby
103 * providing them with alternating backgrounds.
5d738861 104 * @param next_bgcolour_state First brightness state to use.
ac0708fb
SA
105 * @return The next brightness state to use.
106 */
107 bool reassign_bgcolour_states(bool next_bgcolour_state);
108
32218d3e 109public:
6e2c3c85 110 virtual void row_item_appearance_changed(bool label, bool content) = 0;
32218d3e
JH
111
112 virtual void extents_changed(bool horz, bool vert) = 0;
18f7104f
JH
113};
114
f4e57597
SA
115} // namespace TraceView
116} // namespace views
117} // namespace pv
18f7104f 118
f4e57597 119#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACETREEITEMOWNER_HPP