]> sigrok.org Git - pulseview.git/blob - pv/view/tracetreeitemowner.hpp
Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / view / tracetreeitemowner.hpp
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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACETREEITEMOWNER_HPP
21 #define PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACETREEITEMOWNER_HPP
22
23 #include "viewitemowner.hpp"
24 #include "tracetreeitem.hpp"
25
26 using std::pair;
27 using std::shared_ptr;
28 using std::vector;
29
30 namespace pv {
31
32 class Session;
33
34 namespace views {
35 namespace TraceView {
36
37 class TraceTreeItem;
38 class View;
39
40 class TraceTreeItemOwner : public ViewItemOwner
41 {
42 public:
43         /**
44          * Returns the view of the owner.
45          */
46         virtual View* view() = 0;
47
48         /**
49          * Returns the view of the owner.
50          */
51         virtual const View* view() const = 0;
52
53         virtual int owner_visual_v_offset() const = 0;
54
55         /**
56          * Returns the session of the owner.
57          */
58         virtual Session& session() = 0;
59
60         /**
61          * Returns the session of the owner.
62          */
63         virtual const Session& session() const = 0;
64
65         /**
66          * Returns the number of nested parents that this row item owner has.
67          */
68         virtual unsigned int depth() const = 0;
69
70         /**
71          * Returns a list of row items owned by this object.
72          */
73         virtual const item_list& child_items() const;
74
75         /**
76          * Returns a list of row items owned by this object.
77          */
78         vector< shared_ptr<TraceTreeItem> >
79         trace_tree_child_items() const;
80
81         /**
82          * Clears the list of child items.
83          */
84         void clear_child_items();
85
86         /**
87          * Adds a child item to this object.
88          */
89         void add_child_item(shared_ptr<TraceTreeItem> item);
90
91         /**
92          * Removes a child item from this object.
93          */
94         void remove_child_item(shared_ptr<TraceTreeItem> item);
95
96         virtual void restack_items();
97
98         /**
99          * Computes the vertical extents of the contents of this row item owner.
100          * @return A pair containing the minimum and maximum y-values.
101          */
102         pair<int, int> v_extents() const;
103
104         /*
105          * Reassigns background color states to all its children, thereby
106          * providing them with alternating backgrounds.
107          * @param next_bgcolour_state First brightness state to use.
108          * @return The next brightness state to use.
109          */
110         bool reassign_bgcolour_states(bool next_bgcolour_state);
111
112 public:
113         virtual void row_item_appearance_changed(bool label, bool content) = 0;
114
115         virtual void extents_changed(bool horz, bool vert) = 0;
116 };
117
118 } // namespace TraceView
119 } // namespace views
120 } // namespace pv
121
122 #endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACETREEITEMOWNER_HPP