diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-11-13 20:56:44 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-11-13 20:56:44 -0300 |
commit | 8420c24f7f35cdd7adbc7d4595cb1756020ab127 (patch) | |
tree | d7d0bf1e59c92d1f743b4600266335eca8549f66 /scene/gui/tree.h | |
parent | 1d7e9c4ba52250db3b0b0fd732e44074252045d2 (diff) |
-better integration of ndee's theme
Diffstat (limited to 'scene/gui/tree.h')
-rw-r--r-- | scene/gui/tree.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scene/gui/tree.h b/scene/gui/tree.h index 3fbd7c95d9..8fb9b802a1 100644 --- a/scene/gui/tree.h +++ b/scene/gui/tree.h @@ -228,6 +228,7 @@ public: void set_tooltip(int p_column, const String& p_tooltip); String get_tooltip(int p_column) const; + void clear_children(); void move_to_top(); @@ -410,6 +411,8 @@ friend class TreeItem; bool drag_touching_deaccel; bool click_handled; + bool hide_folding; + protected: static void _bind_methods(); @@ -467,6 +470,11 @@ public: VScrollBar *get_vscroll_bar() { return v_scroll; } + void set_hide_folding(bool p_hide); + bool is_folding_hidden() const; + + + Tree(); ~Tree(); |