2 * This file is part of the PulseView project.
4 * Copyright (C) 2014 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
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/>.
20 #ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACETREEITEMOWNER_HPP
21 #define PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACETREEITEMOWNER_HPP
23 #include "viewitemowner.hpp"
24 #include "tracetreeitem.hpp"
27 using std::shared_ptr;
40 class TraceTreeItemOwner : public ViewItemOwner
44 * Returns the view of the owner.
46 virtual View* view() = 0;
49 * Returns the view of the owner.
51 virtual const View* view() const = 0;
53 virtual int owner_visual_v_offset() const = 0;
56 * Returns the session of the owner.
58 virtual Session& session() = 0;
61 * Returns the session of the owner.
63 virtual const Session& session() const = 0;
66 * Returns the number of nested parents that this row item owner has.
68 virtual unsigned int depth() const = 0;
71 * Returns a list of row items owned by this object.
73 virtual const item_list& child_items() const;
76 * Returns a list of row items owned by this object.
78 vector< shared_ptr<TraceTreeItem> > trace_tree_child_items() const;
81 * Clears the list of child items.
83 void clear_child_items();
86 * Adds a child item to this object.
88 void add_child_item(shared_ptr<TraceTreeItem> item);
91 * Removes a child item from this object.
93 void remove_child_item(shared_ptr<TraceTreeItem> item);
95 virtual void restack_items();
98 * Computes the vertical extents of the contents of this row item owner.
99 * @return A pair containing the minimum and maximum y-values.
101 pair<int, int> v_extents() const;
104 virtual void row_item_appearance_changed(bool label, bool content) = 0;
106 virtual void extents_changed(bool horz, bool vert) = 0;
109 } // namespace TraceView
113 #endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACETREEITEMOWNER_HPP