tree.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614
  1. /*************************************************************************/
  2. /* tree.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #ifndef TREE_H
  31. #define TREE_H
  32. #include "scene/gui/control.h"
  33. #include "scene/gui/line_edit.h"
  34. #include "scene/gui/popup_menu.h"
  35. #include "scene/gui/scroll_bar.h"
  36. #include "scene/gui/slider.h"
  37. class Tree;
  38. class TreeItem : public Object {
  39. GDCLASS(TreeItem, Object);
  40. public:
  41. enum TreeCellMode {
  42. CELL_MODE_STRING, ///< just a string
  43. CELL_MODE_CHECK, ///< string + check
  44. CELL_MODE_RANGE, ///< Contains a range
  45. CELL_MODE_ICON, ///< Contains an icon, not editable
  46. CELL_MODE_CUSTOM, ///< Contains a custom value, show a string, and an edit button
  47. };
  48. enum TextAlign {
  49. ALIGN_LEFT,
  50. ALIGN_CENTER,
  51. ALIGN_RIGHT
  52. };
  53. private:
  54. friend class Tree;
  55. struct Cell {
  56. TreeCellMode mode;
  57. Ref<Texture> icon;
  58. Rect2i icon_region;
  59. String text;
  60. String suffix;
  61. double min, max, step, val;
  62. int icon_max_w;
  63. bool expr;
  64. bool checked;
  65. bool editable;
  66. bool selected;
  67. bool selectable;
  68. bool custom_color;
  69. Color color;
  70. bool custom_bg_color;
  71. bool custom_bg_outline;
  72. Color bg_color;
  73. bool custom_button;
  74. bool expand_right;
  75. Color icon_color;
  76. TextAlign text_align;
  77. Variant meta;
  78. String tooltip;
  79. ObjectID custom_draw_obj;
  80. StringName custom_draw_callback;
  81. struct Button {
  82. int id;
  83. bool disabled;
  84. Ref<Texture> texture;
  85. Color color;
  86. String tooltip;
  87. Button() {
  88. id = 0;
  89. disabled = false;
  90. color = Color(1, 1, 1, 1);
  91. tooltip = "";
  92. }
  93. };
  94. Vector<Button> buttons;
  95. Cell() {
  96. custom_draw_obj = 0;
  97. custom_button = false;
  98. mode = TreeItem::CELL_MODE_STRING;
  99. min = 0;
  100. max = 100;
  101. step = 1;
  102. val = 0;
  103. checked = false;
  104. editable = false;
  105. selected = false;
  106. selectable = true;
  107. custom_color = false;
  108. custom_bg_color = false;
  109. expr = false;
  110. icon_max_w = 0;
  111. text_align = ALIGN_LEFT;
  112. expand_right = false;
  113. icon_color = Color(1, 1, 1);
  114. }
  115. Size2 get_icon_size() const;
  116. void draw_icon(const RID &p_where, const Point2 &p_pos, const Size2 &p_size = Size2(), const Color &p_color = Color()) const;
  117. };
  118. Vector<Cell> cells;
  119. bool collapsed; // won't show children
  120. bool disable_folding;
  121. int custom_min_height;
  122. TreeItem *parent; // parent item
  123. TreeItem *next; // next in list
  124. TreeItem *children; //child items
  125. Tree *tree; //tree (for reference)
  126. TreeItem(Tree *p_tree);
  127. void _changed_notify(int p_cell);
  128. void _changed_notify();
  129. void _cell_selected(int p_cell);
  130. void _cell_deselected(int p_cell);
  131. protected:
  132. static void _bind_methods();
  133. //bind helpers
  134. Dictionary _get_range_config(int p_column) {
  135. Dictionary d;
  136. double min = 0.0, max = 0.0, step = 0.0;
  137. get_range_config(p_column, min, max, step);
  138. d["min"] = min;
  139. d["max"] = max;
  140. d["step"] = step;
  141. d["expr"] = false;
  142. return d;
  143. }
  144. void _remove_child(Object *p_child) {
  145. remove_child(Object::cast_to<TreeItem>(p_child));
  146. }
  147. Variant _call_recursive_bind(const Variant **p_args, int p_argcount, Variant::CallError &r_error);
  148. public:
  149. /* cell mode */
  150. void set_cell_mode(int p_column, TreeCellMode p_mode);
  151. TreeCellMode get_cell_mode(int p_column) const;
  152. /* check mode */
  153. void set_checked(int p_column, bool p_checked);
  154. bool is_checked(int p_column) const;
  155. void set_text(int p_column, String p_text);
  156. String get_text(int p_column) const;
  157. void set_suffix(int p_column, String p_suffix);
  158. String get_suffix(int p_column) const;
  159. void set_icon(int p_column, const Ref<Texture> &p_icon);
  160. Ref<Texture> get_icon(int p_column) const;
  161. void set_icon_region(int p_column, const Rect2 &p_icon_region);
  162. Rect2 get_icon_region(int p_column) const;
  163. void set_icon_modulate(int p_column, const Color &p_modulate);
  164. Color get_icon_modulate(int p_column) const;
  165. void set_icon_max_width(int p_column, int p_max);
  166. int get_icon_max_width(int p_column) const;
  167. void add_button(int p_column, const Ref<Texture> &p_button, int p_id = -1, bool p_disabled = false, const String &p_tooltip = "");
  168. int get_button_count(int p_column) const;
  169. String get_button_tooltip(int p_column, int p_idx) const;
  170. Ref<Texture> get_button(int p_column, int p_idx) const;
  171. int get_button_id(int p_column, int p_idx) const;
  172. void erase_button(int p_column, int p_idx);
  173. int get_button_by_id(int p_column, int p_id) const;
  174. void set_button(int p_column, int p_idx, const Ref<Texture> &p_button);
  175. void set_button_color(int p_column, int p_idx, const Color &p_color);
  176. void set_button_disabled(int p_column, int p_idx, bool p_disabled);
  177. bool is_button_disabled(int p_column, int p_idx) const;
  178. /* range works for mode number or mode combo */
  179. void set_range(int p_column, double p_value);
  180. double get_range(int p_column) const;
  181. void set_range_config(int p_column, double p_min, double p_max, double p_step, bool p_exp = false);
  182. void get_range_config(int p_column, double &r_min, double &r_max, double &r_step) const;
  183. bool is_range_exponential(int p_column) const;
  184. void set_metadata(int p_column, const Variant &p_meta);
  185. Variant get_metadata(int p_column) const;
  186. void set_custom_draw(int p_column, Object *p_object, const StringName &p_callback);
  187. void set_collapsed(bool p_collapsed);
  188. bool is_collapsed();
  189. void set_custom_minimum_height(int p_height);
  190. int get_custom_minimum_height() const;
  191. TreeItem *get_prev();
  192. TreeItem *get_next();
  193. TreeItem *get_parent();
  194. TreeItem *get_children();
  195. TreeItem *get_prev_visible(bool p_wrap = false);
  196. TreeItem *get_next_visible(bool p_wrap = false);
  197. void remove_child(TreeItem *p_item);
  198. void set_selectable(int p_column, bool p_selectable);
  199. bool is_selectable(int p_column) const;
  200. bool is_selected(int p_column);
  201. void select(int p_column);
  202. void deselect(int p_column);
  203. void set_as_cursor(int p_column);
  204. void set_editable(int p_column, bool p_editable);
  205. bool is_editable(int p_column);
  206. void set_custom_color(int p_column, const Color &p_color);
  207. Color get_custom_color(int p_column) const;
  208. void clear_custom_color(int p_column);
  209. void set_custom_bg_color(int p_column, const Color &p_color, bool p_bg_outline = false);
  210. void clear_custom_bg_color(int p_column);
  211. Color get_custom_bg_color(int p_column) const;
  212. void set_custom_as_button(int p_column, bool p_button);
  213. bool is_custom_set_as_button(int p_column) const;
  214. void set_tooltip(int p_column, const String &p_tooltip);
  215. String get_tooltip(int p_column) const;
  216. void clear_children();
  217. void set_text_align(int p_column, TextAlign p_align);
  218. TextAlign get_text_align(int p_column) const;
  219. void set_expand_right(int p_column, bool p_enable);
  220. bool get_expand_right(int p_column) const;
  221. void move_to_top();
  222. void move_to_bottom();
  223. void set_disable_folding(bool p_disable);
  224. bool is_folding_disabled() const;
  225. void call_recursive(const StringName &p_method, const Variant **p_args, int p_argcount, Variant::CallError &r_error);
  226. ~TreeItem();
  227. };
  228. VARIANT_ENUM_CAST(TreeItem::TreeCellMode);
  229. VARIANT_ENUM_CAST(TreeItem::TextAlign);
  230. class Tree : public Control {
  231. GDCLASS(Tree, Control);
  232. public:
  233. enum SelectMode {
  234. SELECT_SINGLE,
  235. SELECT_ROW,
  236. SELECT_MULTI
  237. };
  238. enum DropModeFlags {
  239. DROP_MODE_DISABLED = 0,
  240. DROP_MODE_ON_ITEM = 1,
  241. DROP_MODE_INBETWEEN = 2
  242. };
  243. private:
  244. friend class TreeItem;
  245. TreeItem *root;
  246. TreeItem *popup_edited_item;
  247. TreeItem *selected_item;
  248. TreeItem *edited_item;
  249. TreeItem *drop_mode_over;
  250. int drop_mode_section;
  251. TreeItem *single_select_defer;
  252. int single_select_defer_column;
  253. int pressed_button;
  254. bool pressing_for_editor;
  255. String pressing_for_editor_text;
  256. Vector2 pressing_pos;
  257. Rect2 pressing_item_rect;
  258. float range_drag_base;
  259. bool range_drag_enabled;
  260. Vector2 range_drag_capture_pos;
  261. bool propagate_mouse_activated;
  262. //TreeItem *cursor_item;
  263. //int cursor_column;
  264. Rect2 custom_popup_rect;
  265. int edited_col;
  266. int selected_col;
  267. int popup_edited_item_col;
  268. bool hide_root;
  269. SelectMode select_mode;
  270. int blocked;
  271. int drop_mode_flags;
  272. struct ColumnInfo {
  273. int min_width;
  274. bool expand;
  275. String title;
  276. ColumnInfo() {
  277. min_width = 1;
  278. expand = true;
  279. }
  280. };
  281. bool show_column_titles;
  282. LineEdit *text_editor;
  283. HSlider *value_editor;
  284. bool updating_value_editor;
  285. int64_t focus_in_id;
  286. PopupMenu *popup_menu;
  287. Vector<ColumnInfo> columns;
  288. Timer *range_click_timer;
  289. TreeItem *range_item_last;
  290. bool range_up_last;
  291. void _range_click_timeout();
  292. int compute_item_height(TreeItem *p_item) const;
  293. int get_item_height(TreeItem *p_item) const;
  294. //void draw_item_text(String p_text,const Ref<Texture>& p_icon,int p_icon_max_w,bool p_tool,Rect2i p_rect,const Color& p_color);
  295. void draw_item_rect(const TreeItem::Cell &p_cell, const Rect2i &p_rect, const Color &p_color, const Color &p_icon_color);
  296. int draw_item(const Point2i &p_pos, const Point2 &p_draw_ofs, const Size2 &p_draw_size, TreeItem *p_item);
  297. void select_single_item(TreeItem *p_selected, TreeItem *p_current, int p_col, TreeItem *p_prev = nullptr, bool *r_in_range = nullptr, bool p_force_deselect = false);
  298. int propagate_mouse_event(const Point2i &p_pos, int x_ofs, int y_ofs, bool p_doubleclick, TreeItem *p_item, int p_button, const Ref<InputEventWithModifiers> &p_mod);
  299. void text_editor_enter(String p_text);
  300. void _text_editor_modal_close();
  301. void value_editor_changed(double p_value);
  302. void popup_select(int p_option);
  303. void _gui_input(Ref<InputEvent> p_event);
  304. void _notification(int p_what);
  305. Size2 get_minimum_size() const;
  306. void item_edited(int p_column, TreeItem *p_item, bool p_lmb = true);
  307. void item_changed(int p_column, TreeItem *p_item);
  308. void item_selected(int p_column, TreeItem *p_item);
  309. void item_deselected(int p_column, TreeItem *p_item);
  310. void propagate_set_columns(TreeItem *p_item);
  311. struct Cache {
  312. Ref<Font> font;
  313. Ref<Font> tb_font;
  314. Ref<StyleBox> bg;
  315. Ref<StyleBox> selected;
  316. Ref<StyleBox> selected_focus;
  317. Ref<StyleBox> cursor;
  318. Ref<StyleBox> cursor_unfocus;
  319. Ref<StyleBox> button_pressed;
  320. Ref<StyleBox> title_button;
  321. Ref<StyleBox> title_button_hover;
  322. Ref<StyleBox> title_button_pressed;
  323. Ref<StyleBox> custom_button;
  324. Ref<StyleBox> custom_button_hover;
  325. Ref<StyleBox> custom_button_pressed;
  326. Color title_button_color;
  327. Ref<Texture> checked;
  328. Ref<Texture> unchecked;
  329. Ref<Texture> arrow_collapsed;
  330. Ref<Texture> arrow;
  331. Ref<Texture> select_arrow;
  332. Ref<Texture> updown;
  333. Color font_color;
  334. Color font_color_selected;
  335. Color guide_color;
  336. Color drop_position_color;
  337. Color relationship_line_color;
  338. Color custom_button_font_highlight;
  339. int hseparation;
  340. int vseparation;
  341. int item_margin;
  342. int button_margin;
  343. Point2 offset;
  344. int draw_relationship_lines;
  345. int draw_guides;
  346. int scroll_border;
  347. int scroll_speed;
  348. enum ClickType {
  349. CLICK_NONE,
  350. CLICK_TITLE,
  351. CLICK_BUTTON,
  352. };
  353. ClickType click_type;
  354. ClickType hover_type;
  355. int click_index;
  356. int click_id;
  357. TreeItem *click_item;
  358. int click_column;
  359. int hover_index;
  360. Point2 click_pos;
  361. TreeItem *hover_item;
  362. int hover_cell;
  363. Point2i text_editor_position;
  364. } cache;
  365. int _get_title_button_height() const;
  366. void _scroll_moved(float p_value);
  367. HScrollBar *h_scroll;
  368. VScrollBar *v_scroll;
  369. Size2 get_internal_min_size() const;
  370. void update_cache();
  371. void update_scrollbars();
  372. Rect2 search_item_rect(TreeItem *p_from, TreeItem *p_item);
  373. //Rect2 get_item_rect(TreeItem *p_item);
  374. uint64_t last_keypress;
  375. String incr_search;
  376. bool cursor_can_exit_tree;
  377. void _do_incr_search(const String &p_add);
  378. TreeItem *_search_item_text(TreeItem *p_at, const String &p_find, int *r_col, bool p_selectable, bool p_backwards = false);
  379. TreeItem *_find_item_at_pos(TreeItem *p_item, const Point2 &p_pos, int &r_column, int &h, int &section) const;
  380. /* float drag_speed;
  381. float drag_accum;
  382. float last_drag_accum;
  383. float last_drag_time;
  384. float time_since_motion;*/
  385. float drag_speed;
  386. float drag_from;
  387. float drag_accum;
  388. Vector2 last_speed;
  389. bool drag_touching;
  390. bool drag_touching_deaccel;
  391. bool click_handled;
  392. bool allow_rmb_select;
  393. bool scrolling;
  394. bool allow_reselect;
  395. bool force_edit_checkbox_only_on_checkbox;
  396. bool hide_folding;
  397. int _count_selected_items(TreeItem *p_from) const;
  398. void _go_left();
  399. void _go_right();
  400. void _go_down();
  401. void _go_up();
  402. protected:
  403. static void _bind_methods();
  404. //bind helpers
  405. TreeItem *_create_item(Object *p_parent, int p_idx = -1) {
  406. return create_item(Object::cast_to<TreeItem>(p_parent), p_idx);
  407. }
  408. TreeItem *_get_next_selected(Object *p_item) {
  409. return get_next_selected(Object::cast_to<TreeItem>(p_item));
  410. }
  411. Rect2 _get_item_rect(Object *p_item, int p_column) const {
  412. return get_item_rect(Object::cast_to<TreeItem>(p_item), p_column);
  413. }
  414. void _scroll_to_item(Object *p_item) {
  415. scroll_to_item(Object::cast_to<TreeItem>(p_item));
  416. }
  417. public:
  418. virtual String get_tooltip(const Point2 &p_pos) const;
  419. TreeItem *get_item_at_position(const Point2 &p_pos) const;
  420. int get_column_at_position(const Point2 &p_pos) const;
  421. int get_drop_section_at_position(const Point2 &p_pos) const;
  422. int get_button_id_at_position(const Point2 &p_pos) const;
  423. void clear();
  424. TreeItem *create_item(TreeItem *p_parent = nullptr, int p_idx = -1);
  425. TreeItem *get_root();
  426. TreeItem *get_last_item();
  427. void set_column_min_width(int p_column, int p_min_width);
  428. void set_column_expand(int p_column, bool p_expand);
  429. int get_column_width(int p_column) const;
  430. void set_hide_root(bool p_enabled);
  431. bool is_root_hidden() const;
  432. TreeItem *get_next_selected(TreeItem *p_item);
  433. TreeItem *get_selected() const;
  434. int get_selected_column() const;
  435. int get_pressed_button() const;
  436. void set_select_mode(SelectMode p_mode);
  437. SelectMode get_select_mode() const;
  438. void deselect_all();
  439. bool is_anything_selected();
  440. void set_columns(int p_columns);
  441. int get_columns() const;
  442. void set_column_title(int p_column, const String &p_title);
  443. String get_column_title(int p_column) const;
  444. void set_column_titles_visible(bool p_show);
  445. bool are_column_titles_visible() const;
  446. TreeItem *get_edited() const;
  447. int get_edited_column() const;
  448. void ensure_cursor_is_visible();
  449. Rect2 get_custom_popup_rect() const;
  450. int get_item_offset(TreeItem *p_item) const;
  451. Rect2 get_item_rect(TreeItem *p_item, int p_column = -1) const;
  452. bool edit_selected();
  453. // First item that starts with the text, from the current focused item down and wraps around.
  454. TreeItem *search_item_text(const String &p_find, int *r_col = nullptr, bool p_selectable = false);
  455. // First item that matches the whole text, from the first item down.
  456. TreeItem *get_item_with_text(const String &p_find) const;
  457. Point2 get_scroll() const;
  458. void scroll_to_item(TreeItem *p_item);
  459. void set_cursor_can_exit_tree(bool p_enable);
  460. bool can_cursor_exit_tree() const;
  461. VScrollBar *get_vscroll_bar() { return v_scroll; }
  462. void set_hide_folding(bool p_hide);
  463. bool is_folding_hidden() const;
  464. void set_drop_mode_flags(int p_flags);
  465. int get_drop_mode_flags() const;
  466. void set_edit_checkbox_cell_only_when_checkbox_is_pressed(bool p_enable);
  467. bool get_edit_checkbox_cell_only_when_checkbox_is_pressed() const;
  468. void set_allow_rmb_select(bool p_allow);
  469. bool get_allow_rmb_select() const;
  470. void set_allow_reselect(bool p_allow);
  471. bool get_allow_reselect() const;
  472. Tree();
  473. ~Tree();
  474. };
  475. VARIANT_ENUM_CAST(Tree::SelectMode);
  476. VARIANT_ENUM_CAST(Tree::DropModeFlags);
  477. #endif