diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2024-05-19 23:33:43 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2024-05-19 23:33:43 -0700 |
commit | cbf12ee3b89b12a76b9ed7b889a67b4ab7177dbc (patch) | |
tree | 5ebae8cea1546a4b6560e37b2e79248ac772d6f4 | |
parent | 48b0075cf4e719eeb1c0765959f439bd3c27a12a (diff) | |
parent | a244738b01a2f471fc5bb9ac04421aaa17c6e66c (diff) | |
download | view.love-cbf12ee3b89b12a76b9ed7b889a67b4ab7177dbc.tar.gz |
Merge text.love
-rw-r--r-- | main.lua | 22 | ||||
-rw-r--r-- | reference.md | 7 |
2 files changed, 29 insertions, 0 deletions
diff --git a/main.lua b/main.lua index ced451d..fca94b5 100644 --- a/main.lua +++ b/main.lua @@ -316,6 +316,17 @@ function App.mousereleased(x,y, mouse_button) end end +function App.mousemoved(x,y, dx,dy, is_touch) + if current_app_is_warning() then return end + if Current_app == 'run' then + if run.mouse_move then run.mouse_move(dx,dy) end + elseif Current_app == 'source' then + if source.mouse_move then source.mouse_move(dx,dy) end + else + assert(false, 'unknown app "'..Current_app..'"') + end +end + function App.wheelmoved(dx,dy) if current_app_is_warning() then return end if Current_app == 'run' then @@ -327,6 +338,17 @@ function App.wheelmoved(dx,dy) end end +function App.mousefocus(in_focus) + if current_app_is_warning() then return end + if Current_app == 'run' then + if run.mouse_focus then run.mouse_focus(in_focus) end + elseif Current_app == 'source' then + if source.mouse_focus then source.mouse_focus(in_focus) end + else + assert(false, 'unknown app "'..Current_app..'"') + end +end + function love.quit() if Disable_all_quit_handlers then return end if current_app_is_warning() then return end diff --git a/reference.md b/reference.md index dc38bb8..972ab1d 100644 --- a/reference.md +++ b/reference.md @@ -73,12 +73,19 @@ automatically called for you as appropriate. button. Provides the same arguments as `App.mousepressed()` above. (Based on [LÖVE](https://love2d.org/wiki/love.mousereleased).) +* `App.mousemoved(x,y, dx,dy, is_touch)` -- called any time the mouse moves. + (Based on [LÖVE](https://love2d.org/wiki/love.mousemoved).) + * `App.wheelmoved(dx,dy)` -- called when you use the scroll wheel on a mouse that has it. Provides in `dx` and `dy` an indication of how fast the wheel is being scrolled. Positive values for `dx` indicate movement to the right. Positive values for `dy` indicate upward movement. (Based on [LÖVE](https://love2d.org/wiki/love.wheelmoved).) +* `App.mousefocus(in_focus)` -- called when the mouse pointer moves on or off + the app window. + (Based on [LÖVE](https://love2d.org/wiki/love.mousefocus).) + * `App.keychord_press(chord, key)` -- called when you press a key-combination. Provides in `key` a string name for the key most recently pressed ([valid values](https://love2d.org/wiki/KeyConstant)). Provides in `chord` a |