1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-21 14:57:09 +00:00

Rename the _MD macro to D_METHOD

This new name also makes its purpose a little clearer

This is a step towards fixing #56
This commit is contained in:
Hein-Pieter van Braam
2017-02-13 12:47:24 +01:00
parent bf64df4427
commit 411ee71b4d
297 changed files with 5445 additions and 5443 deletions

View File

@@ -527,24 +527,24 @@ void ButtonArray::get_translatable_strings(List<String> *p_strings) const {
void ButtonArray::_bind_methods() {
ClassDB::bind_method(_MD("add_button","text","tooltip"),&ButtonArray::add_button,DEFVAL(""));
ClassDB::bind_method(_MD("add_icon_button","icon:Texture","text","tooltip"),&ButtonArray::add_icon_button,DEFVAL(""),DEFVAL(""));
ClassDB::bind_method(_MD("set_button_text","button_idx","text"),&ButtonArray::set_button_text);
ClassDB::bind_method(_MD("set_button_tooltip","button_idx","text"),&ButtonArray::set_button_tooltip);
ClassDB::bind_method(_MD("set_button_icon","button_idx","icon:Texture"),&ButtonArray::set_button_icon);
ClassDB::bind_method(_MD("get_button_text","button_idx"),&ButtonArray::get_button_text);
ClassDB::bind_method(_MD("get_button_tooltip","button_idx"),&ButtonArray::get_button_tooltip);
ClassDB::bind_method(_MD("get_button_icon:Texture","button_idx"),&ButtonArray::get_button_icon);
ClassDB::bind_method(_MD("get_button_count"),&ButtonArray::get_button_count);
ClassDB::bind_method(_MD("set_flat","enabled"),&ButtonArray::set_flat);
ClassDB::bind_method(_MD("is_flat"),&ButtonArray::is_flat);
ClassDB::bind_method(_MD("get_selected"),&ButtonArray::get_selected);
ClassDB::bind_method(_MD("get_hovered"),&ButtonArray::get_hovered);
ClassDB::bind_method(_MD("set_selected","button_idx"),&ButtonArray::set_selected);
ClassDB::bind_method(_MD("erase_button","button_idx"),&ButtonArray::erase_button);
ClassDB::bind_method(_MD("clear"),&ButtonArray::clear);
ClassDB::bind_method(D_METHOD("add_button","text","tooltip"),&ButtonArray::add_button,DEFVAL(""));
ClassDB::bind_method(D_METHOD("add_icon_button","icon:Texture","text","tooltip"),&ButtonArray::add_icon_button,DEFVAL(""),DEFVAL(""));
ClassDB::bind_method(D_METHOD("set_button_text","button_idx","text"),&ButtonArray::set_button_text);
ClassDB::bind_method(D_METHOD("set_button_tooltip","button_idx","text"),&ButtonArray::set_button_tooltip);
ClassDB::bind_method(D_METHOD("set_button_icon","button_idx","icon:Texture"),&ButtonArray::set_button_icon);
ClassDB::bind_method(D_METHOD("get_button_text","button_idx"),&ButtonArray::get_button_text);
ClassDB::bind_method(D_METHOD("get_button_tooltip","button_idx"),&ButtonArray::get_button_tooltip);
ClassDB::bind_method(D_METHOD("get_button_icon:Texture","button_idx"),&ButtonArray::get_button_icon);
ClassDB::bind_method(D_METHOD("get_button_count"),&ButtonArray::get_button_count);
ClassDB::bind_method(D_METHOD("set_flat","enabled"),&ButtonArray::set_flat);
ClassDB::bind_method(D_METHOD("is_flat"),&ButtonArray::is_flat);
ClassDB::bind_method(D_METHOD("get_selected"),&ButtonArray::get_selected);
ClassDB::bind_method(D_METHOD("get_hovered"),&ButtonArray::get_hovered);
ClassDB::bind_method(D_METHOD("set_selected","button_idx"),&ButtonArray::set_selected);
ClassDB::bind_method(D_METHOD("erase_button","button_idx"),&ButtonArray::erase_button);
ClassDB::bind_method(D_METHOD("clear"),&ButtonArray::clear);
ClassDB::bind_method(_MD("_gui_input"),&ButtonArray::_gui_input);
ClassDB::bind_method(D_METHOD("_gui_input"),&ButtonArray::_gui_input);
BIND_CONSTANT( ALIGN_BEGIN );
BIND_CONSTANT( ALIGN_CENTER );