2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* option_button.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2019-01-01 11:53:14 +00:00
|
|
|
/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2019 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. */
|
|
|
|
/*************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "option_button.h"
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/print_string.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Size2 OptionButton::get_minimum_size() const {
|
|
|
|
|
|
|
|
Size2 minsize = Button::get_minimum_size();
|
|
|
|
|
|
|
|
if (has_icon("arrow"))
|
2018-07-14 21:15:42 +00:00
|
|
|
minsize.width += Control::get_icon("arrow")->get_width() + get_constant("hseparation");
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return minsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OptionButton::_notification(int p_what) {
|
|
|
|
|
2017-12-25 15:24:10 +00:00
|
|
|
if (p_what == NOTIFICATION_DRAW) {
|
|
|
|
|
|
|
|
if (!has_icon("arrow"))
|
|
|
|
return;
|
|
|
|
|
|
|
|
RID ci = get_canvas_item();
|
|
|
|
Ref<Texture> arrow = Control::get_icon("arrow");
|
|
|
|
Ref<StyleBox> normal = get_stylebox("normal");
|
|
|
|
Color clr = Color(1, 1, 1);
|
|
|
|
if (get_constant("modulate_arrow")) {
|
|
|
|
switch (get_draw_mode()) {
|
|
|
|
case DRAW_PRESSED:
|
|
|
|
clr = get_color("font_color_pressed");
|
|
|
|
break;
|
|
|
|
case DRAW_HOVER:
|
|
|
|
clr = get_color("font_color_hover");
|
|
|
|
break;
|
|
|
|
case DRAW_DISABLED:
|
|
|
|
clr = get_color("font_color_disabled");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
clr = get_color("font_color");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Size2 size = get_size();
|
|
|
|
|
|
|
|
Point2 ofs(size.width - arrow->get_width() - get_constant("arrow_margin"), int(Math::abs((size.height - arrow->get_height()) / 2)));
|
|
|
|
arrow->draw(ci, ofs, clr);
|
2019-04-18 22:50:35 +00:00
|
|
|
} else if (p_what == NOTIFICATION_VISIBILITY_CHANGED) {
|
|
|
|
|
|
|
|
if (!is_visible_in_tree()) {
|
|
|
|
popup->hide();
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-12 01:53:35 +00:00
|
|
|
void OptionButton::_focused(int p_which) {
|
|
|
|
emit_signal("item_focused", p_which);
|
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void OptionButton::_selected(int p_which) {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
int selid = -1;
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < popup->get_item_count(); i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-08-07 10:17:31 +00:00
|
|
|
bool is_clicked = popup->get_item_id(i) == p_which;
|
2014-02-10 01:10:30 +00:00
|
|
|
if (is_clicked) {
|
2017-03-05 15:44:50 +00:00
|
|
|
selid = i;
|
2014-02-10 01:10:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (selid == -1 && p_which >= 0 && p_which < popup->get_item_count()) {
|
|
|
|
_select(p_which, true);
|
2015-12-13 04:08:36 +00:00
|
|
|
} else {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND(selid == -1);
|
2015-12-13 04:08:36 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_select(selid, true);
|
2015-12-13 04:08:36 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OptionButton::pressed() {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Size2 size = get_size();
|
2019-04-23 01:28:38 +00:00
|
|
|
popup->set_global_position(get_global_position() + Size2(0, size.height * get_global_transform().get_scale().y));
|
2017-03-05 15:44:50 +00:00
|
|
|
popup->set_size(Size2(size.width, 0));
|
2019-04-23 01:28:38 +00:00
|
|
|
popup->set_scale(get_global_transform().get_scale());
|
2014-02-10 01:10:30 +00:00
|
|
|
popup->popup();
|
|
|
|
}
|
|
|
|
|
2019-05-09 09:21:49 +00:00
|
|
|
void OptionButton::add_icon_item(const Ref<Texture> &p_icon, const String &p_label, int p_id) {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2019-05-09 09:21:49 +00:00
|
|
|
popup->add_icon_radio_check_item(p_icon, p_label, p_id);
|
2017-03-05 15:44:50 +00:00
|
|
|
if (popup->get_item_count() == 1)
|
2014-02-10 01:10:30 +00:00
|
|
|
select(0);
|
|
|
|
}
|
2019-05-09 09:21:49 +00:00
|
|
|
void OptionButton::add_item(const String &p_label, int p_id) {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2019-05-09 09:21:49 +00:00
|
|
|
popup->add_radio_check_item(p_label, p_id);
|
2017-03-05 15:44:50 +00:00
|
|
|
if (popup->get_item_count() == 1)
|
2016-03-08 23:00:52 +00:00
|
|
|
select(0);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void OptionButton::set_item_text(int p_idx, const String &p_text) {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
popup->set_item_text(p_idx, p_text);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
void OptionButton::set_item_icon(int p_idx, const Ref<Texture> &p_icon) {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
popup->set_item_icon(p_idx, p_icon);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2019-05-09 09:21:49 +00:00
|
|
|
void OptionButton::set_item_id(int p_idx, int p_id) {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2019-05-09 09:21:49 +00:00
|
|
|
popup->set_item_id(p_idx, p_id);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void OptionButton::set_item_metadata(int p_idx, const Variant &p_metadata) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
popup->set_item_metadata(p_idx, p_metadata);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void OptionButton::set_item_disabled(int p_idx, bool p_disabled) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
popup->set_item_disabled(p_idx, p_disabled);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
String OptionButton::get_item_text(int p_idx) const {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
return popup->get_item_text(p_idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ref<Texture> OptionButton::get_item_icon(int p_idx) const {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
return popup->get_item_icon(p_idx);
|
|
|
|
}
|
|
|
|
|
2017-08-07 10:17:31 +00:00
|
|
|
int OptionButton::get_item_id(int p_idx) const {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-08-07 10:17:31 +00:00
|
|
|
return popup->get_item_id(p_idx);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2019-01-28 15:31:24 +00:00
|
|
|
|
|
|
|
int OptionButton::get_item_index(int p_id) const {
|
|
|
|
|
|
|
|
return popup->get_item_index(p_id);
|
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Variant OptionButton::get_item_metadata(int p_idx) const {
|
|
|
|
|
|
|
|
return popup->get_item_metadata(p_idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OptionButton::is_item_disabled(int p_idx) const {
|
|
|
|
|
|
|
|
return popup->is_item_disabled(p_idx);
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
int OptionButton::get_item_count() const {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
return popup->get_item_count();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OptionButton::add_separator() {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
popup->add_separator();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OptionButton::clear() {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
popup->clear();
|
|
|
|
set_text("");
|
2017-03-05 15:44:50 +00:00
|
|
|
current = -1;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-08-11 19:10:05 +00:00
|
|
|
void OptionButton::_select(int p_which, bool p_emit) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-08-11 19:10:05 +00:00
|
|
|
if (p_which < 0)
|
2014-02-10 01:10:30 +00:00
|
|
|
return;
|
2017-08-11 19:10:05 +00:00
|
|
|
if (p_which == current)
|
2014-02-10 01:10:30 +00:00
|
|
|
return;
|
|
|
|
|
2017-08-11 19:10:05 +00:00
|
|
|
ERR_FAIL_INDEX(p_which, popup->get_item_count());
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < popup->get_item_count(); i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-08-11 19:10:05 +00:00
|
|
|
popup->set_item_checked(i, i == p_which);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-08-11 19:10:05 +00:00
|
|
|
current = p_which;
|
2017-03-05 15:44:50 +00:00
|
|
|
set_text(popup->get_item_text(current));
|
|
|
|
set_icon(popup->get_item_icon(current));
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2014-11-06 00:20:42 +00:00
|
|
|
if (is_inside_tree() && p_emit)
|
2017-03-05 15:44:50 +00:00
|
|
|
emit_signal("item_selected", current);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OptionButton::_select_int(int p_which) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (p_which < 0 || p_which >= popup->get_item_count())
|
2014-02-10 01:10:30 +00:00
|
|
|
return;
|
2017-03-05 15:44:50 +00:00
|
|
|
_select(p_which, false);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OptionButton::select(int p_idx) {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_select(p_idx, false);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int OptionButton::get_selected() const {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
return current;
|
|
|
|
}
|
|
|
|
|
2017-08-07 10:17:31 +00:00
|
|
|
int OptionButton::get_selected_id() const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
int idx = get_selected();
|
2017-03-05 15:44:50 +00:00
|
|
|
if (idx < 0)
|
2014-02-10 01:10:30 +00:00
|
|
|
return 0;
|
2017-08-07 10:17:31 +00:00
|
|
|
return get_item_id(current);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
Variant OptionButton::get_selected_metadata() const {
|
|
|
|
|
|
|
|
int idx = get_selected();
|
2017-03-05 15:44:50 +00:00
|
|
|
if (idx < 0)
|
2014-02-10 01:10:30 +00:00
|
|
|
return Variant();
|
|
|
|
return get_item_metadata(current);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OptionButton::remove_item(int p_idx) {
|
|
|
|
|
|
|
|
popup->remove_item(p_idx);
|
|
|
|
}
|
|
|
|
|
2017-12-25 15:24:10 +00:00
|
|
|
PopupMenu *OptionButton::get_popup() const {
|
|
|
|
|
|
|
|
return popup;
|
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Array OptionButton::_get_items() const {
|
|
|
|
|
|
|
|
Array items;
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < get_item_count(); i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
items.push_back(get_item_text(i));
|
|
|
|
items.push_back(get_item_icon(i));
|
|
|
|
items.push_back(is_item_disabled(i));
|
2017-08-07 10:17:31 +00:00
|
|
|
items.push_back(get_item_id(i));
|
2014-02-10 01:10:30 +00:00
|
|
|
items.push_back(get_item_metadata(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
return items;
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
void OptionButton::_set_items(const Array &p_items) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
ERR_FAIL_COND(p_items.size() % 5);
|
|
|
|
clear();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < p_items.size(); i += 5) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
String text = p_items[i + 0];
|
|
|
|
Ref<Texture> icon = p_items[i + 1];
|
|
|
|
bool disabled = p_items[i + 2];
|
|
|
|
int id = p_items[i + 3];
|
|
|
|
Variant meta = p_items[i + 4];
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
int idx = get_item_count();
|
|
|
|
add_item(text, id);
|
|
|
|
set_item_icon(idx, icon);
|
|
|
|
set_item_disabled(idx, disabled);
|
|
|
|
set_item_metadata(idx, meta);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void OptionButton::get_translatable_strings(List<String> *p_strings) const {
|
|
|
|
|
|
|
|
return popup->get_translatable_strings(p_strings);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OptionButton::_bind_methods() {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("_selected"), &OptionButton::_selected);
|
2018-01-12 01:53:35 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("_focused"), &OptionButton::_focused);
|
2017-03-05 15:44:50 +00:00
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("add_item", "label", "id"), &OptionButton::add_item, DEFVAL(-1));
|
2018-05-08 05:35:28 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("add_icon_item", "texture", "label", "id"), &OptionButton::add_icon_item, DEFVAL(-1));
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_item_text", "idx", "text"), &OptionButton::set_item_text);
|
2017-08-09 11:19:41 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_item_icon", "idx", "texture"), &OptionButton::set_item_icon);
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_item_disabled", "idx", "disabled"), &OptionButton::set_item_disabled);
|
2017-08-07 10:17:31 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_item_id", "idx", "id"), &OptionButton::set_item_id);
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_item_metadata", "idx", "metadata"), &OptionButton::set_item_metadata);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_item_text", "idx"), &OptionButton::get_item_text);
|
2017-08-09 11:19:41 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("get_item_icon", "idx"), &OptionButton::get_item_icon);
|
2017-08-07 10:17:31 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("get_item_id", "idx"), &OptionButton::get_item_id);
|
2019-01-28 15:31:24 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("get_item_index", "id"), &OptionButton::get_item_index);
|
2017-08-09 11:19:41 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("get_item_metadata", "idx"), &OptionButton::get_item_metadata);
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("is_item_disabled", "idx"), &OptionButton::is_item_disabled);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_item_count"), &OptionButton::get_item_count);
|
|
|
|
ClassDB::bind_method(D_METHOD("add_separator"), &OptionButton::add_separator);
|
|
|
|
ClassDB::bind_method(D_METHOD("clear"), &OptionButton::clear);
|
|
|
|
ClassDB::bind_method(D_METHOD("select", "idx"), &OptionButton::select);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_selected"), &OptionButton::get_selected);
|
2017-08-07 10:17:31 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("get_selected_id"), &OptionButton::get_selected_id);
|
2017-08-09 11:19:41 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("get_selected_metadata"), &OptionButton::get_selected_metadata);
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("remove_item", "idx"), &OptionButton::remove_item);
|
|
|
|
ClassDB::bind_method(D_METHOD("_select_int"), &OptionButton::_select_int);
|
|
|
|
|
2017-12-25 15:24:10 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("get_popup"), &OptionButton::get_popup);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("_set_items"), &OptionButton::_set_items);
|
|
|
|
ClassDB::bind_method(D_METHOD("_get_items"), &OptionButton::_get_items);
|
|
|
|
|
2018-01-11 22:35:12 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "items", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL), "_set_items", "_get_items");
|
2018-02-16 08:29:19 +00:00
|
|
|
// "selected" property must come after "items", otherwise GH-10213 occurs
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "selected"), "_select_int", "get_selected");
|
2019-05-09 09:21:49 +00:00
|
|
|
ADD_SIGNAL(MethodInfo("item_selected", PropertyInfo(Variant::INT, "id")));
|
|
|
|
ADD_SIGNAL(MethodInfo("item_focused", PropertyInfo(Variant::INT, "id")));
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
OptionButton::OptionButton() {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-12-25 15:24:10 +00:00
|
|
|
current = -1;
|
2018-09-21 05:18:40 +00:00
|
|
|
set_toggle_mode(true);
|
2017-12-25 15:24:10 +00:00
|
|
|
set_text_align(ALIGN_LEFT);
|
|
|
|
set_action_mode(ACTION_MODE_BUTTON_PRESS);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
popup = memnew(PopupMenu);
|
2014-02-10 01:10:30 +00:00
|
|
|
popup->hide();
|
2017-12-25 15:24:10 +00:00
|
|
|
add_child(popup);
|
2017-11-22 08:43:40 +00:00
|
|
|
popup->set_pass_on_modal_close_click(false);
|
2019-04-23 01:28:38 +00:00
|
|
|
popup->set_notify_transform(true);
|
2019-05-11 16:32:53 +00:00
|
|
|
popup->set_allow_search(true);
|
2017-03-05 15:44:50 +00:00
|
|
|
popup->connect("id_pressed", this, "_selected");
|
2018-01-12 01:53:35 +00:00
|
|
|
popup->connect("id_focused", this, "_focused");
|
2018-09-21 05:18:40 +00:00
|
|
|
popup->connect("popup_hide", this, "set_pressed", varray(false));
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
OptionButton::~OptionButton() {
|
|
|
|
}
|