| 355 | } |
| 356 | |
| 357 | static int textInputRect(lua_State *L) |
| 358 | { |
| 359 | GetLSI()->AssertInterfaceEvent(); |
| 360 | int x = luaL_checkint(L, 1); |
| 361 | int y = luaL_checkint(L, 2); |
| 362 | int w = luaL_checkint(L, 3); |
| 363 | int h = luaL_checkint(L, 4); |
| 364 | ui::Engine::Ref().TextInputRect(ui::Point{ x, y }, ui::Point{ w, h }); |
| 365 | return 0; |
| 366 | } |
| 367 | |
| 368 | static int showWindow(lua_State *L) |
| 369 | { |
nothing calls this directly
no test coverage detected