| 274 | } |
| 275 | |
| 276 | TreeScrollArea::TreeScrollArea(NodeID start, const NodeTree &tree, const UserData &user_data, const Layout &layout, const VisualFlags &nf) |
| 277 | : m_start_node(start), m_tree(tree), user_data_(user_data), m_layout(layout), m_vis_flags(nf) |
| 278 | { |
| 279 | setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOn); |
| 280 | setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn); |
| 281 | } |
| 282 | |
| 283 | void TreeScrollArea::centerPoint(int x, int y) |
| 284 | { |
nothing calls this directly
no outgoing calls
no test coverage detected