Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Operating Systems
»
macOS / Mac OS X
»
[Solved] Fullscreen event?
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
TSynEdit crashes when loa...
by
domasz
[
Today
at 08:46:13 pm]
Who uses "caret past EOL"...
by
440bx
[
Today
at 08:44:20 pm]
[SOLVED] Help for downloa...
by
magleft
[
Today
at 08:30:34 pm]
help choosing laptop
by
Leledumbo
[
Today
at 08:18:27 pm]
array of array of type?
by
xixixi
[
Today
at 06:58:43 pm]
How to create form in thr...
by
Remy Lebeau
[
Today
at 06:37:23 pm]
TStringGrid : Conflict be...
by
Nel_Fie
[
Today
at 06:17:51 pm]
Changes in "Search Result...
by
Martin_fr
[
Today
at 06:13:01 pm]
LAMW - simple esc/POS pri...
by
jmpessoa
[
Today
at 05:52:26 pm]
discarding an array
by
jcmontherock
[
Today
at 05:36:47 pm]
How do I set these packag...
by
JuhaManninen
[
Today
at 05:19:28 pm]
How to connect from Inter...
by
mercurhyo
[
Today
at 04:59:20 pm]
ODBC System DSN connected...
by
Jonvy
[
Today
at 03:46:19 pm]
Fast Base64 encoding/deco...
by
mikerabat
[
Today
at 02:53:39 pm]
Are We Dead Yet?
by
Warfley
[
Today
at 02:32:43 pm]
Clean up at ide/include/i...
by
Thaddy
[
Today
at 01:55:37 pm]
[Solved] Letters chopped ...
by
jamie
[
Today
at 01:15:30 pm]
Best way to delete an ins...
by
furious programming
[
Today
at 12:57:26 pm]
first generic attempt
by
Paolo
[
Today
at 11:11:04 am]
CEF dynamic library canno...
by
myisjwj
[
Today
at 10:10:59 am]
lhelp not working on Linu...
by
marcov
[
Today
at 09:09:08 am]
Browser Automation with s...
by
TRon
[
Today
at 07:29:31 am]
help exporting 2 data col...
by
howardpc
[
Today
at 06:32:47 am]
Rosetta Code Sutherland-H...
by
VTwin
[June 01, 2023, 11:58:31 pm]
if then else syntax
by
eljo
[June 01, 2023, 11:49:40 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [Solved] Fullscreen event? (Read 377 times)
Espectr0
Full Member
Posts: 156
[Solved] Fullscreen event?
«
on:
March 29, 2023, 09:40:52 pm »
Hola,
In my App, how can I detect when it enters or leaves fullscreen mode?
Thanks!
«
Last Edit: April 15, 2023, 12:42:21 pm by Espectr0
»
Logged
KodeZwerg
Hero Member
Posts: 1398
Fifty shades of code.
Re: Fullscreen event?
«
Reply #1 on:
March 29, 2023, 10:33:58 pm »
By setting for form a OnWindowStateChange Handler and determine current status?
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
FormWindowStateChange
(
Sender
:
TObject
)
;
begin
if
WindowState
in
[
wsFullScreen
,
wsMaximized
]
then
Self
.
Caption
:
=
'Full'
else
Self
.
Caption
:
=
'Basic'
;
end
;
Logged
«
Last Edit:
Tomorrow
at 31:76:97 by
KodeZwerg
»
KodeZwerg
Hero Member
Posts: 1398
Fifty shades of code.
Re: Fullscreen event?
«
Reply #2 on:
March 31, 2023, 12:17:27 am »
Is it solved?
Logged
«
Last Edit:
Tomorrow
at 31:76:97 by
KodeZwerg
»
Espectr0
Full Member
Posts: 156
Re: Fullscreen event?
«
Reply #3 on:
March 31, 2023, 11:12:47 am »
@KodeZwerg Sorry for the delay, I haven't tried it yet, this weekend I'll try and comment here...
but just in case I ask you: is the "windowstatechange" event executed before the switch or after (talking of macos)?
Thanks
Logged
KodeZwerg
Hero Member
Posts: 1398
Fifty shades of code.
Re: Fullscreen event?
«
Reply #4 on:
March 31, 2023, 01:45:21 pm »
It is triggered when the WindowState change. (eg: User maximize the form)
I have to admit that I do not use MacOS, I am on Windows, but the way about "how-to" should be the same.
Logged
«
Last Edit:
Tomorrow
at 31:76:97 by
KodeZwerg
»
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Operating Systems
»
macOS / Mac OS X
»
[Solved] Fullscreen event?
TinyPortal
© 2005-2018