bindbc.kw.widget

Undocumented in source.

Members

Aliases

KW_CustomRenderFunction
alias KW_CustomRenderFunction = KW_Texture* function(KW_RenderDriver* renderer, KW_Widget* widget, KW_Surface* tileset, int w, int h)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_OnDrag
alias KW_OnDrag = void function(KW_Widget* widget, int x, int y, int relx, int rely)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_OnDragStart
alias KW_OnDragStart = void function(KW_Widget* widget, int x, int y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_OnDragStop
alias KW_OnDragStop = void function(KW_Widget* widget, int x, int y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_OnFocusGain
alias KW_OnFocusGain = void function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_OnFocusLose
alias KW_OnFocusLose = void function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_OnGeometryChange
alias KW_OnGeometryChange = void function(KW_Widget* widget, const(KW_Rect)* newgeom, const(KW_Rect)* oldgeom)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_OnKeyDown
alias KW_OnKeyDown = void function(KW_Widget* widget, SDL_Keycode sym, SDL_Scancode code)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_OnKeyUp
alias KW_OnKeyUp = void function(KW_Widget* widget, SDL_Keycode sym, SDL_Scancode code)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_OnMouseDown
alias KW_OnMouseDown = void function(KW_Widget* widget, int button)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_OnMouseLeave
alias KW_OnMouseLeave = void function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_OnMouseOver
alias KW_OnMouseOver = void function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_OnMouseUp
alias KW_OnMouseUp = void function(KW_Widget* widget, int button)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_OnTextInput
alias KW_OnTextInput = void function(KW_Widget* widget, const(char)* text)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_OnWidgetChildrenChange
alias KW_OnWidgetChildrenChange = void function(KW_Widget* widget, int what, KW_Widget* child)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_OnWidgetTilesetChange
alias KW_OnWidgetTilesetChange = void function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_WidgetDestroyFunction
alias KW_WidgetDestroyFunction = void function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_WidgetPaintFunction
alias KW_WidgetPaintFunction = void function(KW_Widget*, const(KW_Rect)*, void* data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_AddWidgetChildrenChangeHandler
alias pKW_AddWidgetChildrenChangeHandler = void function(KW_Widget* widget, KW_OnWidgetChildrenChange handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_AddWidgetDragHandler
alias pKW_AddWidgetDragHandler = void function(KW_Widget* widget, KW_OnDrag handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_AddWidgetDragStartHandler
alias pKW_AddWidgetDragStartHandler = void function(KW_Widget* widget, KW_OnDragStart handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_AddWidgetDragStopHandler
alias pKW_AddWidgetDragStopHandler = void function(KW_Widget* widget, KW_OnDragStop handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_AddWidgetFocusGainHandler
alias pKW_AddWidgetFocusGainHandler = void function(KW_Widget* widget, KW_OnFocusGain handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_AddWidgetFocusLoseHandler
alias pKW_AddWidgetFocusLoseHandler = void function(KW_Widget* widget, KW_OnFocusLose handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_AddWidgetGeometryChangeHandler
alias pKW_AddWidgetGeometryChangeHandler = void function(KW_Widget* widget, KW_OnGeometryChange handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_AddWidgetKeyDownHandler
alias pKW_AddWidgetKeyDownHandler = void function(KW_Widget* widget, KW_OnKeyDown handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_AddWidgetKeyUpHandler
alias pKW_AddWidgetKeyUpHandler = void function(KW_Widget* widget, KW_OnKeyUp handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_AddWidgetMouseDownHandler
alias pKW_AddWidgetMouseDownHandler = void function(KW_Widget* widget, KW_OnMouseDown handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_AddWidgetMouseLeaveHandler
alias pKW_AddWidgetMouseLeaveHandler = void function(KW_Widget* widget, KW_OnMouseLeave handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_AddWidgetMouseOverHandler
alias pKW_AddWidgetMouseOverHandler = void function(KW_Widget* widget, KW_OnMouseOver handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_AddWidgetMouseUpHandler
alias pKW_AddWidgetMouseUpHandler = void function(KW_Widget* widget, KW_OnMouseUp handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_AddWidgetTextInputHandler
alias pKW_AddWidgetTextInputHandler = void function(KW_Widget* widget, KW_OnTextInput handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_AddWidgetTilesetChangeHandler
alias pKW_AddWidgetTilesetChangeHandler = void function(KW_Widget* widget, KW_OnWidgetTilesetChange handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_BlockWidgetInputEvents
alias pKW_BlockWidgetInputEvents = void function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_BringToFront
alias pKW_BringToFront = void function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_CreateWidget
alias pKW_CreateWidget = KW_Widget* function(KW_GUI* gui, KW_Widget* parent, const(KW_Rect)* geometry, KW_WidgetPaintFunction widgetpaint, KW_WidgetDestroyFunction widgetdestroy, void* data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_DestroyWidget
alias pKW_DestroyWidget = void function(KW_Widget* widget, int destroychildren)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_DisableWidgetDebug
alias pKW_DisableWidgetDebug = void function(KW_Widget* widget, KW_bool disableInChildren)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_DisableWidgetHint
alias pKW_DisableWidgetHint = void function(KW_Widget* widget, int hint, KW_bool down)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_EnableWidgetDebug
alias pKW_EnableWidgetDebug = void function(KW_Widget* widget, KW_bool enableInChildren)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_EnableWidgetHint
alias pKW_EnableWidgetHint = void function(KW_Widget* widget, int hint, KW_bool down)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetGUI
alias pKW_GetGUI = KW_GUI* function(const(KW_Widget)* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetWidgetAbsoluteGeometry
alias pKW_GetWidgetAbsoluteGeometry = void function(const(KW_Widget)* widget, KW_Rect* geometry)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetWidgetChildren
alias pKW_GetWidgetChildren = const(KW_Widget)** function(const(KW_Widget)* widget, uint* count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetWidgetComposedGeometry
alias pKW_GetWidgetComposedGeometry = void function(const(KW_Widget)* widget, KW_Rect* composed)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetWidgetCustomRenderFunction
alias pKW_GetWidgetCustomRenderFunction = KW_CustomRenderFunction function(const(KW_Widget)* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetWidgetData
alias pKW_GetWidgetData = void* function(const(KW_Widget)* widget, KW_WidgetPaintFunction paint)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetWidgetGUI
alias pKW_GetWidgetGUI = KW_GUI* function(const(KW_Widget)* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetWidgetGeometry
alias pKW_GetWidgetGeometry = void function(const(KW_Widget)* widget, KW_Rect* geometry)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetWidgetParent
alias pKW_GetWidgetParent = KW_Widget* function(const(KW_Widget)* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetWidgetRenderer
alias pKW_GetWidgetRenderer = KW_RenderDriver* function(const(KW_Widget)* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetWidgetTilesetSurface
alias pKW_GetWidgetTilesetSurface = KW_Surface* function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetWidgetTilesetTexture
alias pKW_GetWidgetTilesetTexture = KW_Texture* function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetWidgetUserData
alias pKW_GetWidgetUserData = void* function(const(KW_Widget)* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_HideWidget
alias pKW_HideWidget = void function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_IsCursorOverWidget
alias pKW_IsCursorOverWidget = KW_bool function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_IsCursorReleasedOnWidget
alias pKW_IsCursorReleasedOnWidget = KW_bool function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_IsDebugWidgetEnabled
alias pKW_IsDebugWidgetEnabled = KW_bool function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_IsWidgetHidden
alias pKW_IsWidgetHidden = KW_bool function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_IsWidgetInputEventsBlocked
alias pKW_IsWidgetInputEventsBlocked = KW_bool function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_PaintWidget
alias pKW_PaintWidget = void function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_QueryWidgetHint
alias pKW_QueryWidgetHint = KW_bool function(const(KW_Widget)* widget, int hint)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RemoveWidgetChildrenChangeHandler
alias pKW_RemoveWidgetChildrenChangeHandler = void function(KW_Widget* widget, KW_OnWidgetChildrenChange handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RemoveWidgetDragHandler
alias pKW_RemoveWidgetDragHandler = void function(KW_Widget* widget, KW_OnDrag handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RemoveWidgetDragStartHandler
alias pKW_RemoveWidgetDragStartHandler = void function(KW_Widget* widget, KW_OnDragStart handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RemoveWidgetDragStopHandler
alias pKW_RemoveWidgetDragStopHandler = void function(KW_Widget* widget, KW_OnDragStop handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RemoveWidgetFocusGainHandler
alias pKW_RemoveWidgetFocusGainHandler = void function(KW_Widget* widget, KW_OnFocusGain handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RemoveWidgetFocusLoseHandler
alias pKW_RemoveWidgetFocusLoseHandler = void function(KW_Widget* widget, KW_OnFocusLose handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RemoveWidgetGeometryChangeHandler
alias pKW_RemoveWidgetGeometryChangeHandler = void function(KW_Widget* widget, KW_OnGeometryChange handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RemoveWidgetKeyDownHandler
alias pKW_RemoveWidgetKeyDownHandler = void function(KW_Widget* widget, KW_OnKeyDown handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RemoveWidgetKeyUpHandler
alias pKW_RemoveWidgetKeyUpHandler = void function(KW_Widget* widget, KW_OnKeyUp handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RemoveWidgetMouseDownHandler
alias pKW_RemoveWidgetMouseDownHandler = void function(KW_Widget* widget, KW_OnMouseDown handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RemoveWidgetMouseLeaveHandler
alias pKW_RemoveWidgetMouseLeaveHandler = void function(KW_Widget* widget, KW_OnMouseLeave handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RemoveWidgetMouseOverHandler
alias pKW_RemoveWidgetMouseOverHandler = void function(KW_Widget* widget, KW_OnMouseOver handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RemoveWidgetMouseUpHandler
alias pKW_RemoveWidgetMouseUpHandler = void function(KW_Widget* widget, KW_OnMouseUp handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RemoveWidgetTextInputHandler
alias pKW_RemoveWidgetTextInputHandler = void function(KW_Widget* widget, KW_OnTextInput handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RemoveWidgetTilesetChangeHandler
alias pKW_RemoveWidgetTilesetChangeHandler = void function(KW_Widget* widget, KW_OnWidgetTilesetChange handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_ReparentWidget
alias pKW_ReparentWidget = void function(KW_Widget* widget, KW_Widget* parent)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_ReturnWidgetGeometry
alias pKW_ReturnWidgetGeometry = const(KW_Rect)* function(const(KW_Widget)* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_SetFocusedWidget
alias pKW_SetFocusedWidget = void function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_SetWidgetCustomRenderFunction
alias pKW_SetWidgetCustomRenderFunction = void function(KW_Widget* widget, KW_CustomRenderFunction renderfunction)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_SetWidgetGeometry
alias pKW_SetWidgetGeometry = void function(KW_Widget* widget, const(KW_Rect)* geometry)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_SetWidgetTilesetSurface
alias pKW_SetWidgetTilesetSurface = void function(KW_Widget* widget, KW_Surface* tileset)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_SetWidgetUserData
alias pKW_SetWidgetUserData = void function(KW_Widget* widget, void* userdata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_ShowWidget
alias pKW_ShowWidget = void function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_UnblockWidgetInputEvents
alias pKW_UnblockWidgetInputEvents = void function(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Enums

KW_CHILDRENCHANGE_ADDED
anonymousenum KW_CHILDRENCHANGE_ADDED
Undocumented in source.
KW_WIDGETHINT_ALLOWTILESTRETCH
anonymousenum KW_WIDGETHINT_ALLOWTILESTRETCH
Undocumented in source.

Functions

KW_AddWidgetChildrenChangeHandler
void KW_AddWidgetChildrenChangeHandler(KW_Widget* widget, KW_OnWidgetChildrenChange handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_AddWidgetDragHandler
void KW_AddWidgetDragHandler(KW_Widget* widget, KW_OnDrag handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_AddWidgetDragStartHandler
void KW_AddWidgetDragStartHandler(KW_Widget* widget, KW_OnDragStart handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_AddWidgetDragStopHandler
void KW_AddWidgetDragStopHandler(KW_Widget* widget, KW_OnDragStop handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_AddWidgetFocusGainHandler
void KW_AddWidgetFocusGainHandler(KW_Widget* widget, KW_OnFocusGain handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_AddWidgetFocusLoseHandler
void KW_AddWidgetFocusLoseHandler(KW_Widget* widget, KW_OnFocusLose handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_AddWidgetGeometryChangeHandler
void KW_AddWidgetGeometryChangeHandler(KW_Widget* widget, KW_OnGeometryChange handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_AddWidgetKeyDownHandler
void KW_AddWidgetKeyDownHandler(KW_Widget* widget, KW_OnKeyDown handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_AddWidgetKeyUpHandler
void KW_AddWidgetKeyUpHandler(KW_Widget* widget, KW_OnKeyUp handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_AddWidgetMouseDownHandler
void KW_AddWidgetMouseDownHandler(KW_Widget* widget, KW_OnMouseDown handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_AddWidgetMouseLeaveHandler
void KW_AddWidgetMouseLeaveHandler(KW_Widget* widget, KW_OnMouseLeave handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_AddWidgetMouseOverHandler
void KW_AddWidgetMouseOverHandler(KW_Widget* widget, KW_OnMouseOver handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_AddWidgetMouseUpHandler
void KW_AddWidgetMouseUpHandler(KW_Widget* widget, KW_OnMouseUp handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_AddWidgetTextInputHandler
void KW_AddWidgetTextInputHandler(KW_Widget* widget, KW_OnTextInput handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_AddWidgetTilesetChangeHandler
void KW_AddWidgetTilesetChangeHandler(KW_Widget* widget, KW_OnWidgetTilesetChange handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_BlockWidgetInputEvents
void KW_BlockWidgetInputEvents(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_BringToFront
void KW_BringToFront(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_CreateWidget
KW_Widget* KW_CreateWidget(KW_GUI* gui, KW_Widget* parent, const(KW_Rect)* geometry, KW_WidgetPaintFunction widgetpaint, KW_WidgetDestroyFunction widgetdestroy, void* data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_DestroyWidget
void KW_DestroyWidget(KW_Widget* widget, int destroychildren)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_DisableWidgetDebug
void KW_DisableWidgetDebug(KW_Widget* widget, KW_bool disableInChildren)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_DisableWidgetHint
void KW_DisableWidgetHint(KW_Widget* widget, int hint, KW_bool down)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_EnableWidgetDebug
void KW_EnableWidgetDebug(KW_Widget* widget, KW_bool enableInChildren)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_EnableWidgetHint
void KW_EnableWidgetHint(KW_Widget* widget, int hint, KW_bool down)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetGUI
KW_GUI* KW_GetGUI(const(KW_Widget)* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetWidgetAbsoluteGeometry
void KW_GetWidgetAbsoluteGeometry(const(KW_Widget)* widget, KW_Rect* geometry)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetWidgetChildren
const(KW_Widget)** KW_GetWidgetChildren(const(KW_Widget)* widget, uint* count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetWidgetComposedGeometry
void KW_GetWidgetComposedGeometry(const(KW_Widget)* widget, KW_Rect* composed)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetWidgetCustomRenderFunction
KW_CustomRenderFunction KW_GetWidgetCustomRenderFunction(const(KW_Widget)* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetWidgetData
void* KW_GetWidgetData(const(KW_Widget)* widget, KW_WidgetPaintFunction paint)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetWidgetGUI
KW_GUI* KW_GetWidgetGUI(const(KW_Widget)* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetWidgetGeometry
void KW_GetWidgetGeometry(const(KW_Widget)* widget, KW_Rect* geometry)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetWidgetParent
KW_Widget* KW_GetWidgetParent(const(KW_Widget)* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetWidgetRenderer
KW_RenderDriver* KW_GetWidgetRenderer(const(KW_Widget)* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetWidgetTilesetSurface
KW_Surface* KW_GetWidgetTilesetSurface(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetWidgetTilesetTexture
KW_Texture* KW_GetWidgetTilesetTexture(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetWidgetUserData
void* KW_GetWidgetUserData(const(KW_Widget)* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_HideWidget
void KW_HideWidget(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_IsCursorOverWidget
KW_bool KW_IsCursorOverWidget(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_IsCursorReleasedOnWidget
KW_bool KW_IsCursorReleasedOnWidget(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_IsDebugWidgetEnabled
KW_bool KW_IsDebugWidgetEnabled(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_IsWidgetHidden
KW_bool KW_IsWidgetHidden(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_IsWidgetInputEventsBlocked
KW_bool KW_IsWidgetInputEventsBlocked(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_PaintWidget
void KW_PaintWidget(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_QueryWidgetHint
KW_bool KW_QueryWidgetHint(const(KW_Widget)* widget, int hint)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RemoveWidgetChildrenChangeHandler
void KW_RemoveWidgetChildrenChangeHandler(KW_Widget* widget, KW_OnWidgetChildrenChange handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RemoveWidgetDragHandler
void KW_RemoveWidgetDragHandler(KW_Widget* widget, KW_OnDrag handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RemoveWidgetDragStartHandler
void KW_RemoveWidgetDragStartHandler(KW_Widget* widget, KW_OnDragStart handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RemoveWidgetDragStopHandler
void KW_RemoveWidgetDragStopHandler(KW_Widget* widget, KW_OnDragStop handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RemoveWidgetFocusGainHandler
void KW_RemoveWidgetFocusGainHandler(KW_Widget* widget, KW_OnFocusGain handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RemoveWidgetFocusLoseHandler
void KW_RemoveWidgetFocusLoseHandler(KW_Widget* widget, KW_OnFocusLose handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RemoveWidgetGeometryChangeHandler
void KW_RemoveWidgetGeometryChangeHandler(KW_Widget* widget, KW_OnGeometryChange handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RemoveWidgetKeyDownHandler
void KW_RemoveWidgetKeyDownHandler(KW_Widget* widget, KW_OnKeyDown handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RemoveWidgetKeyUpHandler
void KW_RemoveWidgetKeyUpHandler(KW_Widget* widget, KW_OnKeyUp handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RemoveWidgetMouseDownHandler
void KW_RemoveWidgetMouseDownHandler(KW_Widget* widget, KW_OnMouseDown handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RemoveWidgetMouseLeaveHandler
void KW_RemoveWidgetMouseLeaveHandler(KW_Widget* widget, KW_OnMouseLeave handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RemoveWidgetMouseOverHandler
void KW_RemoveWidgetMouseOverHandler(KW_Widget* widget, KW_OnMouseOver handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RemoveWidgetMouseUpHandler
void KW_RemoveWidgetMouseUpHandler(KW_Widget* widget, KW_OnMouseUp handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RemoveWidgetTextInputHandler
void KW_RemoveWidgetTextInputHandler(KW_Widget* widget, KW_OnTextInput handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RemoveWidgetTilesetChangeHandler
void KW_RemoveWidgetTilesetChangeHandler(KW_Widget* widget, KW_OnWidgetTilesetChange handler)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_ReparentWidget
void KW_ReparentWidget(KW_Widget* widget, KW_Widget* parent)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_ReturnWidgetGeometry
const(KW_Rect)* KW_ReturnWidgetGeometry(const(KW_Widget)* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_SetFocusedWidget
void KW_SetFocusedWidget(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_SetWidgetCustomRenderFunction
void KW_SetWidgetCustomRenderFunction(KW_Widget* widget, KW_CustomRenderFunction renderfunction)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_SetWidgetGeometry
void KW_SetWidgetGeometry(KW_Widget* widget, const(KW_Rect)* geometry)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_SetWidgetTilesetSurface
void KW_SetWidgetTilesetSurface(KW_Widget* widget, KW_Surface* tileset)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_SetWidgetUserData
void KW_SetWidgetUserData(KW_Widget* widget, void* userdata)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_ShowWidget
void KW_ShowWidget(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_UnblockWidgetInputEvents
void KW_UnblockWidgetInputEvents(KW_Widget* widget)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Static variables

KW_AddWidgetChildrenChangeHandler
pKW_AddWidgetChildrenChangeHandler KW_AddWidgetChildrenChangeHandler;
Undocumented in source.
KW_AddWidgetDragHandler
pKW_AddWidgetDragHandler KW_AddWidgetDragHandler;
Undocumented in source.
KW_AddWidgetDragStartHandler
pKW_AddWidgetDragStartHandler KW_AddWidgetDragStartHandler;
Undocumented in source.
KW_AddWidgetDragStopHandler
pKW_AddWidgetDragStopHandler KW_AddWidgetDragStopHandler;
Undocumented in source.
KW_AddWidgetFocusGainHandler
pKW_AddWidgetFocusGainHandler KW_AddWidgetFocusGainHandler;
Undocumented in source.
KW_AddWidgetFocusLoseHandler
pKW_AddWidgetFocusLoseHandler KW_AddWidgetFocusLoseHandler;
Undocumented in source.
KW_AddWidgetGeometryChangeHandler
pKW_AddWidgetGeometryChangeHandler KW_AddWidgetGeometryChangeHandler;
Undocumented in source.
KW_AddWidgetKeyDownHandler
pKW_AddWidgetKeyDownHandler KW_AddWidgetKeyDownHandler;
Undocumented in source.
KW_AddWidgetKeyUpHandler
pKW_AddWidgetKeyUpHandler KW_AddWidgetKeyUpHandler;
Undocumented in source.
KW_AddWidgetMouseDownHandler
pKW_AddWidgetMouseDownHandler KW_AddWidgetMouseDownHandler;
Undocumented in source.
KW_AddWidgetMouseLeaveHandler
pKW_AddWidgetMouseLeaveHandler KW_AddWidgetMouseLeaveHandler;
Undocumented in source.
KW_AddWidgetMouseOverHandler
pKW_AddWidgetMouseOverHandler KW_AddWidgetMouseOverHandler;
Undocumented in source.
KW_AddWidgetMouseUpHandler
pKW_AddWidgetMouseUpHandler KW_AddWidgetMouseUpHandler;
Undocumented in source.
KW_AddWidgetTextInputHandler
pKW_AddWidgetTextInputHandler KW_AddWidgetTextInputHandler;
Undocumented in source.
KW_AddWidgetTilesetChangeHandler
pKW_AddWidgetTilesetChangeHandler KW_AddWidgetTilesetChangeHandler;
Undocumented in source.
KW_BlockWidgetInputEvents
pKW_BlockWidgetInputEvents KW_BlockWidgetInputEvents;
Undocumented in source.
KW_BringToFront
pKW_BringToFront KW_BringToFront;
Undocumented in source.
KW_CreateWidget
pKW_CreateWidget KW_CreateWidget;
Undocumented in source.
KW_DestroyWidget
pKW_DestroyWidget KW_DestroyWidget;
Undocumented in source.
KW_DisableWidgetDebug
pKW_DisableWidgetDebug KW_DisableWidgetDebug;
Undocumented in source.
KW_DisableWidgetHint
pKW_DisableWidgetHint KW_DisableWidgetHint;
Undocumented in source.
KW_EnableWidgetDebug
pKW_EnableWidgetDebug KW_EnableWidgetDebug;
Undocumented in source.
KW_EnableWidgetHint
pKW_EnableWidgetHint KW_EnableWidgetHint;
Undocumented in source.
KW_GetGUI
pKW_GetGUI KW_GetGUI;
Undocumented in source.
KW_GetWidgetAbsoluteGeometry
pKW_GetWidgetAbsoluteGeometry KW_GetWidgetAbsoluteGeometry;
Undocumented in source.
KW_GetWidgetChildren
pKW_GetWidgetChildren KW_GetWidgetChildren;
Undocumented in source.
KW_GetWidgetComposedGeometry
pKW_GetWidgetComposedGeometry KW_GetWidgetComposedGeometry;
Undocumented in source.
KW_GetWidgetCustomRenderFunction
pKW_GetWidgetCustomRenderFunction KW_GetWidgetCustomRenderFunction;
Undocumented in source.
KW_GetWidgetData
pKW_GetWidgetData KW_GetWidgetData;
Undocumented in source.
KW_GetWidgetGUI
pKW_GetWidgetGUI KW_GetWidgetGUI;
Undocumented in source.
KW_GetWidgetGeometry
pKW_GetWidgetGeometry KW_GetWidgetGeometry;
Undocumented in source.
KW_GetWidgetParent
pKW_GetWidgetParent KW_GetWidgetParent;
Undocumented in source.
KW_GetWidgetRenderer
pKW_GetWidgetRenderer KW_GetWidgetRenderer;
Undocumented in source.
KW_GetWidgetTilesetSurface
pKW_GetWidgetTilesetSurface KW_GetWidgetTilesetSurface;
Undocumented in source.
KW_GetWidgetTilesetTexture
pKW_GetWidgetTilesetTexture KW_GetWidgetTilesetTexture;
Undocumented in source.
KW_GetWidgetUserData
pKW_GetWidgetUserData KW_GetWidgetUserData;
Undocumented in source.
KW_HideWidget
pKW_HideWidget KW_HideWidget;
Undocumented in source.
KW_IsCursorOverWidget
pKW_IsCursorOverWidget KW_IsCursorOverWidget;
Undocumented in source.
KW_IsCursorReleasedOnWidget
pKW_IsCursorReleasedOnWidget KW_IsCursorReleasedOnWidget;
Undocumented in source.
KW_IsDebugWidgetEnabled
pKW_IsDebugWidgetEnabled KW_IsDebugWidgetEnabled;
Undocumented in source.
KW_IsWidgetHidden
pKW_IsWidgetHidden KW_IsWidgetHidden;
Undocumented in source.
KW_IsWidgetInputEventsBlocked
pKW_IsWidgetInputEventsBlocked KW_IsWidgetInputEventsBlocked;
Undocumented in source.
KW_PaintWidget
pKW_PaintWidget KW_PaintWidget;
Undocumented in source.
KW_QueryWidgetHint
pKW_QueryWidgetHint KW_QueryWidgetHint;
Undocumented in source.
KW_RemoveWidgetChildrenChangeHandler
pKW_RemoveWidgetChildrenChangeHandler KW_RemoveWidgetChildrenChangeHandler;
Undocumented in source.
KW_RemoveWidgetDragHandler
pKW_RemoveWidgetDragHandler KW_RemoveWidgetDragHandler;
Undocumented in source.
KW_RemoveWidgetDragStartHandler
pKW_RemoveWidgetDragStartHandler KW_RemoveWidgetDragStartHandler;
Undocumented in source.
KW_RemoveWidgetDragStopHandler
pKW_RemoveWidgetDragStopHandler KW_RemoveWidgetDragStopHandler;
Undocumented in source.
KW_RemoveWidgetFocusGainHandler
pKW_RemoveWidgetFocusGainHandler KW_RemoveWidgetFocusGainHandler;
Undocumented in source.
KW_RemoveWidgetFocusLoseHandler
pKW_RemoveWidgetFocusLoseHandler KW_RemoveWidgetFocusLoseHandler;
Undocumented in source.
KW_RemoveWidgetGeometryChangeHandler
pKW_RemoveWidgetGeometryChangeHandler KW_RemoveWidgetGeometryChangeHandler;
Undocumented in source.
KW_RemoveWidgetKeyDownHandler
pKW_RemoveWidgetKeyDownHandler KW_RemoveWidgetKeyDownHandler;
Undocumented in source.
KW_RemoveWidgetKeyUpHandler
pKW_RemoveWidgetKeyUpHandler KW_RemoveWidgetKeyUpHandler;
Undocumented in source.
KW_RemoveWidgetMouseDownHandler
pKW_RemoveWidgetMouseDownHandler KW_RemoveWidgetMouseDownHandler;
Undocumented in source.
KW_RemoveWidgetMouseLeaveHandler
pKW_RemoveWidgetMouseLeaveHandler KW_RemoveWidgetMouseLeaveHandler;
Undocumented in source.
KW_RemoveWidgetMouseOverHandler
pKW_RemoveWidgetMouseOverHandler KW_RemoveWidgetMouseOverHandler;
Undocumented in source.
KW_RemoveWidgetMouseUpHandler
pKW_RemoveWidgetMouseUpHandler KW_RemoveWidgetMouseUpHandler;
Undocumented in source.
KW_RemoveWidgetTextInputHandler
pKW_RemoveWidgetTextInputHandler KW_RemoveWidgetTextInputHandler;
Undocumented in source.
KW_RemoveWidgetTilesetChangeHandler
pKW_RemoveWidgetTilesetChangeHandler KW_RemoveWidgetTilesetChangeHandler;
Undocumented in source.
KW_ReparentWidget
pKW_ReparentWidget KW_ReparentWidget;
Undocumented in source.
KW_ReturnWidgetGeometry
pKW_ReturnWidgetGeometry KW_ReturnWidgetGeometry;
Undocumented in source.
KW_SetFocusedWidget
pKW_SetFocusedWidget KW_SetFocusedWidget;
Undocumented in source.
KW_SetWidgetCustomRenderFunction
pKW_SetWidgetCustomRenderFunction KW_SetWidgetCustomRenderFunction;
Undocumented in source.
KW_SetWidgetGeometry
pKW_SetWidgetGeometry KW_SetWidgetGeometry;
Undocumented in source.
KW_SetWidgetTilesetSurface
pKW_SetWidgetTilesetSurface KW_SetWidgetTilesetSurface;
Undocumented in source.
KW_SetWidgetUserData
pKW_SetWidgetUserData KW_SetWidgetUserData;
Undocumented in source.
KW_ShowWidget
pKW_ShowWidget KW_ShowWidget;
Undocumented in source.
KW_UnblockWidgetInputEvents
pKW_UnblockWidgetInputEvents KW_UnblockWidgetInputEvents;
Undocumented in source.

Structs

KW_GUI
struct KW_GUI
Undocumented in source.
KW_Widget
struct KW_Widget
Undocumented in source.

Meta