[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Types of Application notification handlers.
Source position: forms.pp line 1243
type TApplicationHandlerType = ( |
||
ahtIdle, |
|
Application becoming idle |
ahtIdleEnd, |
|
Application becoming busy |
ahtKeyDownBefore, |
|
Handler for KeyDown events, invoked before interface and LCL handlers |
ahtKeyDownAfter, |
|
Default handler for KeyDown events, invoked after interface and LCL handlers |
ahtActivate, |
|
Handler invoked on application activated |
ahtDeactivate, |
|
Handler invoked on application deactivated |
ahtUserInput, |
|
Handler invoked on user input |
ahtException, |
|
Handler invoked on handled exception. |
ahtEndSession, |
|
Handler invoked on session end |
ahtQueryEndSession, |
|
Handler invoked before session ends |
ahtMinimize, |
|
Handler invoked when the application is minimized. |
ahtModalBegin, |
|
Handler invoked when a form is shown modally. |
ahtModalEnd, |
|
Handler invoked when the last modal form is closed. |
ahtRestore, |
|
Handler invoked on application restored (from minimized state). |
ahtDropFiles, |
|
Handler invoked on files dropped |
ahtHelp, |
|
Handler invoked on F1 key (help request) |
ahtHint, |
|
Handler invoked on Hint request |
ahtShowHint, |
|
Handler invoked on Hint becoming visible |
ahtGetMainFormHandle |
|
Handler providing the Handle of the main form |
); |
lazarus-ccr.sourceforge.net |