]> sigrok.org Git - pulseview.git/blame - pv/view/rowitemowner.h
Header: Keep a shared_ptr of the clicked item
[pulseview.git] / pv / view / rowitemowner.h
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
21#ifndef PULSEVIEW_PV_VIEW_ROWITEMOWNER_H
22#define PULSEVIEW_PV_VIEW_ROWITEMOWNER_H
23
24#include <memory>
25#include <vector>
26
6b715302
JH
27#include "rowitemiterator.h"
28
18f7104f
JH
29namespace pv {
30
31class SigSession;
32
33namespace view {
34
35class RowItem;
36class View;
37
38class RowItemOwner
39{
6b715302
JH
40public:
41 typedef std::vector< std::shared_ptr<RowItem> > item_list;
42 typedef RowItemIterator<RowItemOwner, RowItem> iterator;
43 typedef RowItemIterator<const RowItemOwner, RowItem> const_iterator;
44
18f7104f
JH
45public:
46 /**
47 * Returns the session of the onwer.
48 */
49 virtual pv::SigSession& session() = 0;
50
51 /**
52 * Returns the session of the owner.
53 */
54 virtual const pv::SigSession& session() const = 0;
55
56 /**
57 * Returns the view of the owner.
58 */
59 virtual pv::view::View* view() = 0;
60
61 /**
62 * Returns the view of the owner.
63 */
64 virtual const pv::view::View* view() const = 0;
65
66 virtual int owner_v_offset() const = 0;
67
68 /**
69 * Returns a list of row items owned by this object.
70 */
6b715302
JH
71 virtual item_list& child_items();
72
73 /**
74 * Returns a list of row items owned by this object.
75 */
76 virtual const item_list& child_items() const;
68b21a71
JH
77
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 */
86 void add_child_item(std::shared_ptr<RowItem> item);
87
88 /**
89 * Removes a child item from this object.
90 */
91 void remove_child_item(std::shared_ptr<RowItem> item);
18f7104f 92
6b715302
JH
93 /**
94 * Returns a depth-first iterator at the beginning of the child RowItem
95 * tree.
96 */
97 iterator begin();
98
99 /**
100 * Returns a depth-first iterator at the end of the child RowItem tree.
101 */
102 iterator end();
103
104 /**
105 * Returns a constant depth-first iterator at the beginning of the
106 * child RowItem tree.
107 */
108 const_iterator begin() const;
109
110 /**
111 * Returns a constant depth-first iterator at the end of the child
112 * RowItem tree.
113 */
114 const_iterator end() const;
115
18f7104f 116 virtual void update_viewport() = 0;
68b21a71
JH
117
118private:
6b715302 119 item_list _items;
18f7104f
JH
120};
121
122} // view
123} // pv
124
125#endif // PULSEVIEW_PV_VIEW_ROWITEMOWNER_H