blob: 17265e0a4d6016c6c13190045397765df323324b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---@meta
---@class cc.EventFocus :cc.Event
local EventFocus={ }
cc.EventFocus=EventFocus
---* Constructor.<br>
---* param widgetLoseFocus The widget which lose focus.<br>
---* param widgetGetFocus The widget which get focus.<br>
---* js ctor
---@param widgetLoseFocus ccui.Widget
---@param widgetGetFocus ccui.Widget
---@return self
function EventFocus:EventFocus (widgetLoseFocus,widgetGetFocus) end
|