sokoban.love/0016-on.mouse_press

30 lines
1.1 KiB
Plaintext

on.mouse_press = function(x,y, mouse_button)
if mouse_press_consumed_by_any_button_handler(Global_state, x,y, mouse_button) then
return
end
Show_overflow = false
if mouse_on_any_slider(x,y, mouse_button) then
return
end
if not on_area(Settings_menu_area, x,y) then
Show_settings = false
end
if Show_code then
if on_editor_scrollbar(Current_pane.editor_state, x,y) then
Current_pane.editor_state.scrollbar_drag = true
elseif on_editor_scrollbar_area(Current_pane.editor_state, x,y) then
-- nothing
elseif x < Current_pane.editor_state.right + 15 - 5 and y < Current_pane.editor_state.bottom + 5 + 10 - 5 then
love.keyboard.setTextInput(true)
edit.mouse_press(Current_pane.editor_state, x,y, mouse_button)
elseif on_editor_scrollbar(Current_pane.output_editor_state, x,y) then
Current_pane.output_editor_state.scrollbar_drag = true
elseif on_editor_scrollbar_area(Current_pane.output_editor_state, x,y) then
-- nothing
end
else
-- editors hidden
if car.mouse_press then car.mouse_press(x,y, mouse_button) end
if car.mousepressed then car.mousepressed(x,y, mouse_button) end
end
end