Make EditorPropertyLayersGrid responsive to touch taps

This commit is contained in:
Fredia Huya-Kouadio 2023-04-05 15:59:29 -07:00 committed by Relintai
parent 0947677049
commit 88fa0e459b

View File

@ -849,18 +849,16 @@ public:
return String(); return String();
} }
void _gui_input(const Ref<InputEvent> &p_ev) { void _update_hovered(const Vector2 &p_position) {
const Ref<InputEventMouseMotion> mm = p_ev;
if (mm.is_valid()) {
bool expand_was_hovered = expand_hovered; bool expand_was_hovered = expand_hovered;
expand_hovered = expand_rect.has_point(mm->get_position()); expand_hovered = expand_rect.has_point(p_position);
if (expand_hovered != expand_was_hovered) { if (expand_hovered != expand_was_hovered) {
update(); update();
} }
if (!expand_hovered) { if (!expand_hovered) {
for (int i = 0; i < flag_rects.size(); i++) { for (int i = 0; i < flag_rects.size(); i++) {
if (flag_rects[i].has_point(mm->get_position())) { if (flag_rects[i].has_point(p_position)) {
// Used to highlight the hovered flag in the layers grid. // Used to highlight the hovered flag in the layers grid.
hovered_index = i; hovered_index = i;
update(); update();
@ -874,12 +872,20 @@ public:
hovered_index = -1; hovered_index = -1;
update(); update();
} }
return;
} }
const Ref<InputEventMouseButton> mb = p_ev; void _on_hover_exit() {
if (mb.is_valid() && mb->get_button_index() == BUTTON_LEFT && mb->is_pressed()) { if (expand_hovered) {
expand_hovered = false;
update();
}
if (hovered_index != -1) {
hovered_index = -1;
update();
}
}
void _update_flag() {
if (hovered_index >= 0) { if (hovered_index >= 0) {
// Toggle the flag. // Toggle the flag.
// We base our choice on the hovered flag, so that it always matches the hovered flag. // We base our choice on the hovered flag, so that it always matches the hovered flag.
@ -897,6 +903,19 @@ public:
update(); update();
} }
} }
void _gui_input(const Ref<InputEvent> &p_ev) {
const Ref<InputEventMouseMotion> mm = p_ev;
if (mm.is_valid()) {
_update_hovered(mm->get_position());
return;
}
const Ref<InputEventMouseButton> mb = p_ev;
if (mb.is_valid() && mb->get_button_index() == BUTTON_LEFT && mb->is_pressed()) {
_update_hovered(mb->get_position());
_update_flag();
}
} }
void _notification(int p_what) { void _notification(int p_what) {
@ -1027,14 +1046,7 @@ public:
} break; } break;
case NOTIFICATION_MOUSE_EXIT: { case NOTIFICATION_MOUSE_EXIT: {
if (expand_hovered) { _on_hover_exit();
expand_hovered = false;
update();
}
if (hovered_index != -1) {
hovered_index = -1;
update();
}
} break; } break;
default: default: