2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* tree.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 21:01:57 +00:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2017-04-07 22:11:42 +00:00
|
|
|
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 01:10:30 +00:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#ifndef TREE_H
|
|
|
|
#define TREE_H
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "core/helper/value_evaluator.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "scene/gui/control.h"
|
|
|
|
#include "scene/gui/line_edit.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/gui/popup_menu.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "scene/gui/scroll_bar.h"
|
|
|
|
#include "scene/gui/slider.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
@author Juan Linietsky <reduzio@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Tree;
|
|
|
|
|
|
|
|
class TreeItem : public Object {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(TreeItem, Object);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2014-02-10 01:10:30 +00:00
|
|
|
enum TreeCellMode {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
CELL_MODE_STRING, ///< just a string
|
|
|
|
CELL_MODE_CHECK, ///< string + check
|
|
|
|
CELL_MODE_RANGE, ///< Contains a range
|
2016-05-01 08:33:32 +00:00
|
|
|
CELL_MODE_RANGE_EXPRESSION, ///< Contains a range
|
2014-02-10 01:10:30 +00:00
|
|
|
CELL_MODE_ICON, ///< Contains a icon, not editable
|
|
|
|
CELL_MODE_CUSTOM, ///< Contains a custom value, show a string, and an edit button
|
|
|
|
};
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
private:
|
2017-03-05 15:44:50 +00:00
|
|
|
friend class Tree;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
struct Cell {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
TreeCellMode mode;
|
|
|
|
|
|
|
|
Ref<Texture> icon;
|
|
|
|
Rect2i icon_region;
|
|
|
|
String text;
|
2016-08-31 02:44:14 +00:00
|
|
|
String suffix;
|
2017-03-05 15:44:50 +00:00
|
|
|
double min, max, step, val;
|
2014-02-10 01:10:30 +00:00
|
|
|
int icon_max_w;
|
|
|
|
bool expr;
|
|
|
|
bool checked;
|
|
|
|
bool editable;
|
|
|
|
bool selected;
|
|
|
|
bool selectable;
|
|
|
|
bool custom_color;
|
|
|
|
Color color;
|
|
|
|
bool custom_bg_color;
|
2016-05-11 14:46:08 +00:00
|
|
|
bool custom_bg_outline;
|
2014-02-10 01:10:30 +00:00
|
|
|
Color bg_color;
|
2017-06-04 23:35:08 +00:00
|
|
|
bool custom_button;
|
2016-05-11 14:46:08 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Variant meta;
|
|
|
|
String tooltip;
|
|
|
|
|
|
|
|
ObjectID custom_draw_obj;
|
|
|
|
StringName custom_draw_callback;
|
|
|
|
|
|
|
|
struct Button {
|
|
|
|
int id;
|
2016-02-02 23:44:42 +00:00
|
|
|
bool disabled;
|
2014-02-10 01:10:30 +00:00
|
|
|
Ref<Texture> texture;
|
2016-12-28 13:12:08 +00:00
|
|
|
Color color;
|
2017-04-24 19:41:17 +00:00
|
|
|
String tooltip;
|
2017-03-05 15:44:50 +00:00
|
|
|
Button() {
|
|
|
|
id = 0;
|
|
|
|
disabled = false;
|
|
|
|
color = Color(1, 1, 1, 1);
|
2017-04-24 19:41:17 +00:00
|
|
|
tooltip = "";
|
2017-03-05 15:44:50 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector<Button> buttons;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Cell() {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
custom_draw_obj = 0;
|
2017-06-04 23:35:08 +00:00
|
|
|
custom_button = false;
|
2017-03-05 15:44:50 +00:00
|
|
|
mode = TreeItem::CELL_MODE_STRING;
|
|
|
|
min = 0;
|
|
|
|
max = 100;
|
|
|
|
step = 1;
|
|
|
|
val = 0;
|
|
|
|
checked = false;
|
|
|
|
editable = false;
|
|
|
|
selected = false;
|
|
|
|
selectable = true;
|
|
|
|
custom_color = false;
|
|
|
|
custom_bg_color = false;
|
|
|
|
expr = false;
|
|
|
|
icon_max_w = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Size2 get_icon_size() const;
|
2017-03-05 15:44:50 +00:00
|
|
|
void draw_icon(const RID &p_where, const Point2 &p_pos, const Size2 &p_size = Size2()) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Vector<Cell> cells;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
bool collapsed; // wont show childs
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
TreeItem *parent; // parent item
|
|
|
|
TreeItem *next; // next in list
|
|
|
|
TreeItem *childs; //child items
|
|
|
|
Tree *tree; //tree (for reference)
|
|
|
|
|
2015-12-08 18:04:56 +00:00
|
|
|
TreeItem(Tree *p_tree);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void _changed_notify(int p_cell);
|
|
|
|
void _changed_notify();
|
|
|
|
void _cell_selected(int p_cell);
|
|
|
|
void _cell_deselected(int p_cell);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
protected:
|
2014-02-10 01:10:30 +00:00
|
|
|
static void _bind_methods();
|
|
|
|
//bind helpers
|
2017-03-05 15:44:50 +00:00
|
|
|
Dictionary _get_range_config(int p_column) {
|
2014-02-10 01:10:30 +00:00
|
|
|
Dictionary d;
|
2017-03-05 15:44:50 +00:00
|
|
|
double min, max, step;
|
|
|
|
get_range_config(p_column, min, max, step);
|
|
|
|
d["min"] = min;
|
|
|
|
d["max"] = max;
|
|
|
|
d["step"] = step;
|
|
|
|
d["expr"] = false;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return d;
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
void _remove_child(Object *p_child) { remove_child(p_child->cast_to<TreeItem>()); }
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2014-02-10 01:10:30 +00:00
|
|
|
/* cell mode */
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_cell_mode(int p_column, TreeCellMode p_mode);
|
|
|
|
TreeCellMode get_cell_mode(int p_column) const;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
/* check mode */
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_checked(int p_column, bool p_checked);
|
2014-02-10 01:10:30 +00:00
|
|
|
bool is_checked(int p_column) const;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_text(int p_column, String p_text);
|
2014-02-10 01:10:30 +00:00
|
|
|
String get_text(int p_column) const;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_suffix(int p_column, String p_suffix);
|
2016-08-31 02:44:14 +00:00
|
|
|
String get_suffix(int p_column) const;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_icon(int p_column, const Ref<Texture> &p_icon);
|
2014-02-10 01:10:30 +00:00
|
|
|
Ref<Texture> get_icon(int p_column) const;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_icon_region(int p_column, const Rect2 &p_icon_region);
|
2014-02-10 01:10:30 +00:00
|
|
|
Rect2 get_icon_region(int p_column) const;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_icon_max_width(int p_column, int p_max);
|
2014-02-10 01:10:30 +00:00
|
|
|
int get_icon_max_width(int p_column) const;
|
|
|
|
|
2017-04-24 19:41:17 +00:00
|
|
|
void add_button(int p_column, const Ref<Texture> &p_button, int p_id = -1, bool p_disabled = false, const String &p_tooltip = "");
|
2014-02-10 01:10:30 +00:00
|
|
|
int get_button_count(int p_column) const;
|
2017-03-05 15:44:50 +00:00
|
|
|
Ref<Texture> get_button(int p_column, int p_idx) const;
|
|
|
|
int get_button_id(int p_column, int p_idx) const;
|
|
|
|
void erase_button(int p_column, int p_idx);
|
|
|
|
int get_button_by_id(int p_column, int p_id) const;
|
|
|
|
bool is_button_disabled(int p_column, int p_idx) const;
|
|
|
|
void set_button(int p_column, int p_idx, const Ref<Texture> &p_button);
|
|
|
|
void set_button_color(int p_column, int p_idx, const Color &p_color);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
/* range works for mode number or mode combo */
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_range(int p_column, double p_value);
|
2014-02-10 01:10:30 +00:00
|
|
|
double get_range(int p_column) const;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_range_config(int p_column, double p_min, double p_max, double p_step, bool p_exp = false);
|
|
|
|
void get_range_config(int p_column, double &r_min, double &r_max, double &r_step) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
bool is_range_exponential(int p_column) const;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_metadata(int p_column, const Variant &p_meta);
|
2014-02-10 01:10:30 +00:00
|
|
|
Variant get_metadata(int p_column) const;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_custom_draw(int p_column, Object *p_object, const StringName &p_callback);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void set_collapsed(bool p_collapsed);
|
|
|
|
bool is_collapsed();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
TreeItem *get_prev();
|
|
|
|
TreeItem *get_next();
|
|
|
|
TreeItem *get_parent();
|
|
|
|
TreeItem *get_children();
|
|
|
|
|
|
|
|
TreeItem *get_prev_visible();
|
|
|
|
TreeItem *get_next_visible();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void remove_child(TreeItem *p_item);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_selectable(int p_column, bool p_selectable);
|
2014-02-10 01:10:30 +00:00
|
|
|
bool is_selectable(int p_column) const;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
bool is_selected(int p_column);
|
|
|
|
void select(int p_column);
|
|
|
|
void deselect(int p_column);
|
|
|
|
void set_as_cursor(int p_column);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_editable(int p_column, bool p_editable);
|
2014-02-10 01:10:30 +00:00
|
|
|
bool is_editable(int p_column);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_custom_color(int p_column, const Color &p_color);
|
2016-03-12 13:44:12 +00:00
|
|
|
Color get_custom_color(int p_column) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
void clear_custom_color(int p_column);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_custom_bg_color(int p_column, const Color &p_color, bool p_bg_outline = false);
|
2014-02-10 01:10:30 +00:00
|
|
|
void clear_custom_bg_color(int p_column);
|
|
|
|
Color get_custom_bg_color(int p_column) const;
|
|
|
|
|
2017-06-04 23:35:08 +00:00
|
|
|
void set_custom_as_button(int p_column, bool p_button);
|
|
|
|
bool is_custom_set_as_button(int p_column) const;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_tooltip(int p_column, const String &p_tooltip);
|
2014-02-10 01:10:30 +00:00
|
|
|
String get_tooltip(int p_column) const;
|
|
|
|
|
|
|
|
void clear_children();
|
|
|
|
|
|
|
|
void move_to_top();
|
|
|
|
void move_to_bottom();
|
|
|
|
|
|
|
|
~TreeItem();
|
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
VARIANT_ENUM_CAST(TreeItem::TreeCellMode);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
class Tree : public Control {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(Tree, Control);
|
|
|
|
|
2016-03-08 23:00:52 +00:00
|
|
|
public:
|
2014-02-10 01:10:30 +00:00
|
|
|
enum SelectMode {
|
2017-03-05 15:44:50 +00:00
|
|
|
SELECT_SINGLE,
|
|
|
|
SELECT_ROW,
|
|
|
|
SELECT_MULTI
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2016-05-11 14:46:08 +00:00
|
|
|
enum DropModeFlags {
|
2017-03-05 15:44:50 +00:00
|
|
|
DROP_MODE_DISABLED = 0,
|
|
|
|
DROP_MODE_ON_ITEM = 1,
|
|
|
|
DROP_MODE_INBETWEEN = 2
|
2016-05-11 14:46:08 +00:00
|
|
|
};
|
|
|
|
|
2016-03-08 23:00:52 +00:00
|
|
|
private:
|
2017-03-05 15:44:50 +00:00
|
|
|
friend class TreeItem;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
TreeItem *root;
|
|
|
|
TreeItem *popup_edited_item;
|
|
|
|
TreeItem *selected_item;
|
|
|
|
TreeItem *edited_item;
|
2015-08-29 04:43:21 +00:00
|
|
|
|
2016-05-11 14:46:08 +00:00
|
|
|
TreeItem *drop_mode_over;
|
|
|
|
int drop_mode_section;
|
|
|
|
|
|
|
|
TreeItem *single_select_defer;
|
|
|
|
int single_select_defer_column;
|
2015-08-29 04:43:21 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
int pressed_button;
|
2015-08-29 04:43:21 +00:00
|
|
|
bool pressing_for_editor;
|
|
|
|
String pressing_for_editor_text;
|
|
|
|
Vector2 pressing_pos;
|
|
|
|
Rect2 pressing_item_rect;
|
|
|
|
|
|
|
|
float range_drag_base;
|
|
|
|
bool range_drag_enabled;
|
|
|
|
Vector2 range_drag_capture_pos;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
//TreeItem *cursor_item;
|
|
|
|
//int cursor_column;
|
|
|
|
|
|
|
|
Rect2 custom_popup_rect;
|
|
|
|
int edited_col;
|
|
|
|
int selected_col;
|
|
|
|
int popup_edited_item_col;
|
|
|
|
bool hide_root;
|
|
|
|
SelectMode select_mode;
|
|
|
|
|
|
|
|
int blocked;
|
|
|
|
|
2016-05-11 14:46:08 +00:00
|
|
|
int drop_mode_flags;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
struct ColumnInfo {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
int min_width;
|
|
|
|
bool expand;
|
|
|
|
String title;
|
2017-03-05 15:44:50 +00:00
|
|
|
ColumnInfo() {
|
|
|
|
min_width = 1;
|
|
|
|
expand = true;
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bool show_column_titles;
|
|
|
|
LineEdit *text_editor;
|
|
|
|
HSlider *value_editor;
|
|
|
|
bool updating_value_editor;
|
|
|
|
uint32_t focus_in_id;
|
|
|
|
PopupMenu *popup_menu;
|
|
|
|
|
|
|
|
Vector<ColumnInfo> columns;
|
|
|
|
|
2015-12-08 18:04:56 +00:00
|
|
|
Timer *range_click_timer;
|
|
|
|
TreeItem *range_item_last;
|
|
|
|
bool range_up_last;
|
|
|
|
void _range_click_timeout();
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
int compute_item_height(TreeItem *p_item) const;
|
|
|
|
int get_item_height(TreeItem *p_item) const;
|
2017-01-14 11:26:56 +00:00
|
|
|
//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);
|
2017-03-05 15:44:50 +00:00
|
|
|
void draw_item_rect(const TreeItem::Cell &p_cell, const Rect2i &p_rect, const Color &p_color);
|
|
|
|
int draw_item(const Point2i &p_pos, const Point2 &p_draw_ofs, const Size2 &p_draw_size, TreeItem *p_item);
|
|
|
|
void select_single_item(TreeItem *p_selected, TreeItem *p_current, int p_col, TreeItem *p_prev = NULL, bool *r_in_range = NULL, bool p_force_deselect = false);
|
2017-05-20 15:38:03 +00:00
|
|
|
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);
|
2014-02-10 01:10:30 +00:00
|
|
|
void text_editor_enter(String p_text);
|
2016-01-23 14:45:36 +00:00
|
|
|
void _text_editor_modal_close();
|
2014-02-10 01:10:30 +00:00
|
|
|
void value_editor_changed(double p_value);
|
|
|
|
|
|
|
|
void popup_select(int p_option);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-05-20 15:38:03 +00:00
|
|
|
void _gui_input(Ref<InputEvent> p_event);
|
2014-02-10 01:10:30 +00:00
|
|
|
void _notification(int p_what);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Size2 get_minimum_size() const;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void item_edited(int p_column, TreeItem *p_item);
|
|
|
|
void item_changed(int p_column, TreeItem *p_item);
|
|
|
|
void item_selected(int p_column, TreeItem *p_item);
|
|
|
|
void item_deselected(int p_column, TreeItem *p_item);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void propagate_set_columns(TreeItem *p_item);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
struct Cache {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Ref<Font> font;
|
|
|
|
Ref<Font> tb_font;
|
|
|
|
Ref<StyleBox> bg;
|
|
|
|
Ref<StyleBox> selected;
|
|
|
|
Ref<StyleBox> selected_focus;
|
|
|
|
Ref<StyleBox> cursor;
|
|
|
|
Ref<StyleBox> cursor_unfocus;
|
|
|
|
Ref<StyleBox> button_pressed;
|
|
|
|
Ref<StyleBox> title_button;
|
|
|
|
Ref<StyleBox> title_button_hover;
|
|
|
|
Ref<StyleBox> title_button_pressed;
|
2017-06-04 23:35:08 +00:00
|
|
|
Ref<StyleBox> custom_button;
|
|
|
|
Ref<StyleBox> custom_button_hover;
|
|
|
|
Ref<StyleBox> custom_button_pressed;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Color title_button_color;
|
|
|
|
|
|
|
|
Ref<Texture> checked;
|
|
|
|
Ref<Texture> unchecked;
|
|
|
|
Ref<Texture> arrow_collapsed;
|
|
|
|
Ref<Texture> arrow;
|
|
|
|
Ref<Texture> select_arrow;
|
|
|
|
Ref<Texture> updown;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Color font_color;
|
|
|
|
Color font_color_selected;
|
|
|
|
Color guide_color;
|
2016-05-11 14:46:08 +00:00
|
|
|
Color drop_position_color;
|
2016-06-15 17:10:19 +00:00
|
|
|
Color relationship_line_color;
|
2017-06-04 23:35:08 +00:00
|
|
|
Color custom_button_font_highlight;
|
2016-05-11 14:46:08 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
int hseparation;
|
|
|
|
int vseparation;
|
|
|
|
int item_margin;
|
2016-03-08 23:00:52 +00:00
|
|
|
int guide_width;
|
2014-02-10 01:10:30 +00:00
|
|
|
int button_margin;
|
|
|
|
Point2 offset;
|
2016-06-15 17:10:19 +00:00
|
|
|
int draw_relationship_lines;
|
2016-09-17 19:29:55 +00:00
|
|
|
int scroll_border;
|
|
|
|
int scroll_speed;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
enum ClickType {
|
|
|
|
CLICK_NONE,
|
|
|
|
CLICK_TITLE,
|
|
|
|
CLICK_BUTTON,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
ClickType click_type;
|
|
|
|
ClickType hover_type;
|
|
|
|
int click_index;
|
|
|
|
int click_id;
|
|
|
|
TreeItem *click_item;
|
|
|
|
int click_column;
|
|
|
|
int hover_index;
|
2017-03-02 18:51:23 +00:00
|
|
|
Point2 click_pos;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-06-04 23:35:08 +00:00
|
|
|
TreeItem *hover_item;
|
|
|
|
int hover_cell;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
} cache;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
int _get_title_button_height() const;
|
|
|
|
|
|
|
|
void _scroll_moved(float p_value);
|
|
|
|
HScrollBar *h_scroll;
|
|
|
|
VScrollBar *v_scroll;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Size2 get_internal_min_size() const;
|
|
|
|
void update_cache();
|
|
|
|
void update_scrollbars();
|
|
|
|
|
|
|
|
Rect2 search_item_rect(TreeItem *p_from, TreeItem *p_item);
|
|
|
|
//Rect2 get_item_rect(TreeItem *p_item);
|
|
|
|
uint64_t last_keypress;
|
|
|
|
String incr_search;
|
|
|
|
bool cursor_can_exit_tree;
|
2017-03-05 15:44:50 +00:00
|
|
|
void _do_incr_search(const String &p_add);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
TreeItem *_search_item_text(TreeItem *p_at, const String &p_find, int *r_col, bool p_selectable, bool p_backwards = false);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
TreeItem *_find_item_at_pos(TreeItem *p_current, const Point2 &p_pos, int &r_column, int &h, int §ion) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
/* float drag_speed;
|
2014-02-10 01:10:30 +00:00
|
|
|
float drag_accum;
|
|
|
|
|
|
|
|
float last_drag_accum;
|
|
|
|
float last_drag_time;
|
|
|
|
float time_since_motion;*/
|
|
|
|
|
|
|
|
float drag_speed;
|
|
|
|
float drag_from;
|
|
|
|
float drag_accum;
|
|
|
|
Vector2 last_speed;
|
|
|
|
bool drag_touching;
|
|
|
|
bool drag_touching_deaccel;
|
|
|
|
bool click_handled;
|
2016-05-16 02:41:48 +00:00
|
|
|
bool allow_rmb_select;
|
2016-09-17 19:29:55 +00:00
|
|
|
bool scrolling;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-05-15 02:48:23 +00:00
|
|
|
bool force_select_on_already_selected;
|
2017-01-21 22:00:25 +00:00
|
|
|
bool force_edit_checkbox_only_on_checkbox;
|
2016-05-15 02:48:23 +00:00
|
|
|
|
2015-11-13 23:56:44 +00:00
|
|
|
bool hide_folding;
|
|
|
|
|
2016-05-01 08:33:32 +00:00
|
|
|
ValueEvaluator *evaluator;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
int _count_selected_items(TreeItem *p_from) const;
|
2016-05-11 14:46:08 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
//bind helpers
|
2017-03-05 15:44:50 +00:00
|
|
|
Object *_create_item(Object *p_parent) { return create_item(p_parent->cast_to<TreeItem>()); }
|
|
|
|
TreeItem *_get_next_selected(Object *p_item) { return get_next_selected(p_item->cast_to<TreeItem>()); }
|
|
|
|
Rect2 _get_item_rect(Object *p_item, int p_column) const { return get_item_rect(p_item->cast_to<TreeItem>(), p_column); }
|
2016-05-11 14:46:08 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
public:
|
2017-03-05 15:44:50 +00:00
|
|
|
virtual String get_tooltip(const Point2 &p_pos) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
TreeItem *get_item_at_pos(const Point2 &p_pos) const;
|
|
|
|
int get_column_at_pos(const Point2 &p_pos) const;
|
|
|
|
int get_drop_section_at_pos(const Point2 &p_pos) const;
|
2016-05-11 14:46:08 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void clear();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
TreeItem *create_item(TreeItem *p_parent = 0);
|
|
|
|
TreeItem *get_root();
|
|
|
|
TreeItem *get_last_item();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_column_min_width(int p_column, int p_min_width);
|
|
|
|
void set_column_expand(int p_column, bool p_expand);
|
2014-02-10 01:10:30 +00:00
|
|
|
int get_column_width(int p_column) const;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void set_hide_root(bool p_eanbled);
|
2017-03-05 15:44:50 +00:00
|
|
|
TreeItem *get_next_selected(TreeItem *p_item);
|
2014-02-10 01:10:30 +00:00
|
|
|
TreeItem *get_selected() const;
|
|
|
|
int get_selected_column() const;
|
|
|
|
int get_pressed_button() const;
|
|
|
|
void set_select_mode(SelectMode p_mode);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void set_columns(int p_columns);
|
|
|
|
int get_columns() const;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_column_title(int p_column, const String &p_title);
|
2014-02-10 01:10:30 +00:00
|
|
|
String get_column_title(int p_column) const;
|
|
|
|
|
|
|
|
void set_column_titles_visible(bool p_show);
|
|
|
|
bool are_column_titles_visible() const;
|
|
|
|
|
|
|
|
TreeItem *get_edited() const;
|
|
|
|
int get_edited_column() const;
|
|
|
|
|
|
|
|
void ensure_cursor_is_visible();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Rect2 get_custom_popup_rect() const;
|
|
|
|
|
|
|
|
int get_item_offset(TreeItem *p_item) const;
|
2017-03-05 15:44:50 +00:00
|
|
|
Rect2 get_item_rect(TreeItem *p_item, int p_column = -1) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
bool edit_selected();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
TreeItem *search_item_text(const String &p_find, int *r_col = NULL, bool p_selectable = false);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Point2 get_scroll() const;
|
|
|
|
|
|
|
|
void set_cursor_can_exit_tree(bool p_enable);
|
|
|
|
bool can_cursor_exit_tree() const;
|
|
|
|
|
2015-06-22 03:03:19 +00:00
|
|
|
VScrollBar *get_vscroll_bar() { return v_scroll; }
|
|
|
|
|
2015-11-13 23:56:44 +00:00
|
|
|
void set_hide_folding(bool p_hide);
|
|
|
|
bool is_folding_hidden() const;
|
|
|
|
|
2016-05-11 14:46:08 +00:00
|
|
|
void set_drop_mode_flags(int p_flags);
|
|
|
|
int get_drop_mode_flags() const;
|
|
|
|
|
2016-05-15 02:48:23 +00:00
|
|
|
void set_single_select_cell_editing_only_when_already_selected(bool p_enable);
|
|
|
|
bool get_single_select_cell_editing_only_when_already_selected() const;
|
|
|
|
|
2017-01-21 22:00:25 +00:00
|
|
|
void set_edit_checkbox_cell_only_when_checkbox_is_pressed(bool p_enable);
|
|
|
|
bool get_edit_checkbox_cell_only_when_checkbox_is_pressed() const;
|
|
|
|
|
2016-05-16 02:41:48 +00:00
|
|
|
void set_allow_rmb_select(bool p_allow);
|
|
|
|
bool get_allow_rmb_select() const;
|
|
|
|
|
2016-05-01 08:33:32 +00:00
|
|
|
void set_value_evaluator(ValueEvaluator *p_evaluator);
|
2015-11-13 23:56:44 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Tree();
|
2016-03-08 23:00:52 +00:00
|
|
|
~Tree();
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
VARIANT_ENUM_CAST(Tree::SelectMode);
|
2014-02-10 01:10:30 +00:00
|
|
|
#endif
|