Lines Matching defs:p_column

122 void TreeItem::set_cell_mode(int p_column, TreeCellMode p_mode) {  in set_cell_mode()
145 void TreeItem::set_checked(int p_column, bool p_checked) { in set_checked()
158 void TreeItem::set_text(int p_column, String p_text) { in set_text()
187 void TreeItem::set_suffix(int p_column, String p_suffix) { in set_suffix()
201 void TreeItem::set_icon(int p_column, const Ref<Texture> &p_icon) { in set_icon()
214 void TreeItem::set_icon_region(int p_column, const Rect2 &p_icon_region) { in set_icon_region()
227 void TreeItem::set_icon_modulate(int p_column, const Color &p_modulate) { in set_icon_modulate()
240 void TreeItem::set_icon_max_width(int p_column, int p_max) { in set_icon_max_width()
254 void TreeItem::set_range(int p_column, double p_value) { in set_range()
279 void TreeItem::set_range_config(int p_column, double p_min, double p_max, double p_step, bool p_exp… in set_range_config()
289 void TreeItem::get_range_config(int p_column, double &r_min, double &r_max, double &r_step) const { in get_range_config()
297 void TreeItem::set_metadata(int p_column, const Variant &p_meta) { in set_metadata()
310 void TreeItem::set_custom_draw(int p_column, Object *p_object, const StringName &p_callback) { in set_custom_draw()
483 void TreeItem::set_selectable(int p_column, bool p_selectable) { in set_selectable()
495 bool TreeItem::is_selected(int p_column) { in is_selected()
501 void TreeItem::set_as_cursor(int p_column) { in set_as_cursor()
513 void TreeItem::select(int p_column) { in select()
519 void TreeItem::deselect(int p_column) { in deselect()
525 void TreeItem::add_button(int p_column, const Ref<Texture> &p_button, int p_id, bool p_disabled, co… in add_button()
545 Ref<Texture> TreeItem::get_button(int p_column, int p_idx) const { in get_button()
550 String TreeItem::get_button_tooltip(int p_column, int p_idx) const { in get_button_tooltip()
555 int TreeItem::get_button_id(int p_column, int p_idx) const { in get_button_id()
560 void TreeItem::erase_button(int p_column, int p_idx) { in erase_button()
568 int TreeItem::get_button_by_id(int p_column, int p_id) const { in get_button_by_id()
580 void TreeItem::set_button(int p_column, int p_idx, const Ref<Texture> &p_button) { in set_button()
589 void TreeItem::set_button_color(int p_column, int p_idx, const Color &p_color) { in set_button_color()
597 void TreeItem::set_button_disabled(int p_column, int p_idx, bool p_disabled) { in set_button_disabled()
606 bool TreeItem::is_button_disabled(int p_column, int p_idx) const { in is_button_disabled()
614 void TreeItem::set_editable(int p_column, bool p_editable) { in set_editable()
621 bool TreeItem::is_editable(int p_column) { in is_editable()
627 void TreeItem::set_custom_color(int p_column, const Color &p_color) { in set_custom_color()
641 void TreeItem::clear_custom_color(int p_column) { in clear_custom_color()
649 void TreeItem::set_tooltip(int p_column, const String &p_tooltip) { in set_tooltip()
661 void TreeItem::set_custom_bg_color(int p_column, const Color &p_color, bool p_bg_outline) { in set_custom_bg_color()
670 void TreeItem::clear_custom_bg_color(int p_column) { in clear_custom_bg_color()
686 void TreeItem::set_custom_as_button(int p_column, bool p_button) { in set_custom_as_button()
698 void TreeItem::set_text_align(int p_column, TextAlign p_align) { in set_text_align()
709 void TreeItem::set_expand_right(int p_column, bool p_enable) { in set_expand_right()
3164 void Tree::item_edited(int p_column, TreeItem *p_item, bool p_lmb) { in item_edited()
3174 void Tree::item_changed(int p_column, TreeItem *p_item) { in item_changed()
3179 void Tree::item_selected(int p_column, TreeItem *p_item) { in item_selected()
3197 void Tree::item_deselected(int p_column, TreeItem *p_item) { in item_deselected()
3272 void Tree::set_column_min_width(int p_column, int p_min_width) { in set_column_min_width()
3281 void Tree::set_column_expand(int p_column, bool p_expand) { in set_column_expand()
3559 void Tree::set_column_title(int p_column, const String &p_title) { in set_column_title()