PulseView  0.3.0
A Qt-based sigrok GUI
tracetreeitemowner.hpp
Go to the documentation of this file.
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_TRACETREEITEMOWNER_HPP
22 #define PULSEVIEW_PV_VIEW_TRACETREEITEMOWNER_HPP
23 
24 #include "viewitemowner.hpp"
25 #include "tracetreeitem.hpp"
26 
27 namespace pv {
28 
29 class Session;
30 
31 namespace view {
32 
33 class TraceTreeItem;
34 class View;
35 
37 {
38 public:
42  virtual pv::view::View* view() = 0;
43 
47  virtual const pv::view::View* view() const = 0;
48 
49  virtual int owner_visual_v_offset() const = 0;
50 
54  virtual pv::Session& session() = 0;
55 
59  virtual const pv::Session& session() const = 0;
60 
64  virtual unsigned int depth() const = 0;
65 
69  virtual const item_list& child_items() const;
70 
74  std::vector< std::shared_ptr<TraceTreeItem> >
75  trace_tree_child_items() const;
76 
80  void clear_child_items();
81 
85  void add_child_item(std::shared_ptr<TraceTreeItem> item);
86 
90  void remove_child_item(std::shared_ptr<TraceTreeItem> item);
91 
92  virtual void restack_items();
93 
98  std::pair<int, int> v_extents() const;
99 
100  /*
101  * Reassigns background color states to all its children, thereby
102  * providing them with alternating backgrounds.
103  * @param next_bgcolour_state First brightness state to use.
104  * @return The next brightness state to use.
105  */
106  bool reassign_bgcolour_states(bool next_bgcolour_state);
107 
108 public:
109  virtual void row_item_appearance_changed(bool label, bool content) = 0;
110 
111  virtual void extents_changed(bool horz, bool vert) = 0;
112 };
113 
114 } // view
115 } // pv
116 
117 #endif // PULSEVIEW_PV_VIEW_TRACETREEITEMOWNER_HPP
std::vector< std::shared_ptr< ViewItem > > item_list
virtual void row_item_appearance_changed(bool label, bool content)=0
std::vector< std::shared_ptr< TraceTreeItem > > trace_tree_child_items() const
std::pair< int, int > v_extents() const
virtual void extents_changed(bool horz, bool vert)=0
virtual const item_list & child_items() const
virtual pv::view::View * view()=0
void add_child_item(std::shared_ptr< TraceTreeItem > item)
virtual unsigned int depth() const =0
virtual int owner_visual_v_offset() const =0
void remove_child_item(std::shared_ptr< TraceTreeItem > item)
virtual pv::Session & session()=0
bool reassign_bgcolour_states(bool next_bgcolour_state)