[Overview][Resource strings][Constants][Types][Classes][Procedures and functions] Reference for unit 'fpGUI' (#fpgui)

TWidgetState

The states a widget can be in.

Declaration

Source position: fpgui.pas line 77

type TWidgetState = set of (

  wsEnabled,

  

Is the widget currently enabled or disabled?

  wsIsVisible,

  

Widget and parents are visible

  wsSizeIsForced,

  

If the current size has been forced - no auto resizes

  wsHasFocus,

  

Widget has the input focus

  wsMouseInside,

  

Mouse cursor is inside this widget

  wsClicked

  

User currently clicked on this widget

);