1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 11:40:38 +00:00
QB64-PE/internal/help/_WINDOWHASFOCUS.txt
SteveMcNeill 33adc04fc4 Add temp folder to repo. It's necessary as well!
Just more initial setting on... nothing much to see here.
2022-04-28 13:39:56 -04:00

44 lines
1.4 KiB
Plaintext

{{DISPLAYTITLE:_WINDOWHASFOCUS}}
The [[_WINDOWHASFOCUS]] function returns true (-1) if the current program's window has focus. Windows-only.
{{PageSyntax}}
: {{Parameter|hasFocus%%}} = [[_WINDOWHASFOCUS]]
{{PageDescription}}
* The function returns true (-1) if the current program is the topmost window on the user's desktop and has focus. If the current program is running behind another window, the function returns false (0).
* [[Keywords_currently_not_supported_by_QB64#Keywords_Not_Supported_in_Linux_or_MAC_OSX_versions|Not available in macOS]].
==Availability==
* '''Build 20170924/68'''.
{{PageExamples}}
''Example:'' Detecting if the current program has focus. Windows and Linux-only.
{{CodeStart}} '' ''
DO
{{Cl|IF}} {{Cl|_WINDOWHASFOCUS}} THEN
{{Cl|COLOR}} 15, 6
{{Cl|CLS}}
{{Cl|PRINT}} "*** Hi there! ***"
{{Cl|ELSE}}
{{Cl|COLOR}} 0, 7
CLS
PRINT "(ain't nobody looking...)"
{{Cl|END IF}}
{{Cl|_DISPLAY}}
{{Cl|_LIMIT}} 30
{{Cl|LOOP}}
{{CodeEnd}}
: ''Explanation:'' The program will display ''"*** Hi There! ***"'' while the window is the topmost and is being manipulated by the user. If another window, the taskbar or the desktop are clicked, the program window loses focus and the message ''"(ain't nobody looking...)"'' is displayed.
{{PageSeeAlso}}
* [[_SCREENEXISTS]]
{{PageNavigation}}
<