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
Threads - stringlist and ...
by
Warfley
[
Today
at 10:23:41 pm]
Tips for deep debuging of...
by
Martin_fr
[
Today
at 10:14:09 pm]
How to use customize outp...
by
Martin_fr
[
Today
at 09:52:29 pm]
Fpcupdeluxe
by
Awkward
[
Today
at 08:56:04 pm]
LAMW - simple esc/POS pri...
by
jmpessoa
[
Today
at 08:40:57 pm]
Are We Dead Yet?
by
jmpessoa
[
Today
at 08:30:58 pm]
MemDataset validate not d...
by
eldonfsr
[
Today
at 07:02:49 pm]
New version of BGRABitmap
by
circular
[
Today
at 05:18:09 pm]
first generic attempt
by
Paolo
[
Today
at 04:59:25 pm]
Best way to delete an ins...
by
Handoko
[
Today
at 04:46:46 pm]
Bluetooth on Raspberry, d...
by
pascalbythree
[
Today
at 04:21:35 pm]
Online Package Manager
by
GetMem
[
Today
at 03:54:17 pm]
Non-local goto example ne...
by
alpine
[
Today
at 01:56:19 pm]
Can't load because <x> de...
by
marcov
[
Today
at 01:23:43 pm]
Hole punching - Step by S...
by
nummer8
[
Today
at 12:04:20 pm]
Providing *.deb files for...
by
TRon
[
Today
at 11:49:40 am]
Insert variant array to e...
by
TRon
[
Today
at 11:36:03 am]
Load local HTML file into...
by
c4p
[
Today
at 10:27:28 am]
ZenGL +android + MacOS Co...
by
Seenkao
[
Today
at 02:34:38 am]
[SOLVED] Using high inste...
by
lagprogramming
[May 27, 2023, 07:50:48 pm]
LAMW - default manifest r...
by
jmpessoa
[May 27, 2023, 07:25:21 pm]
Improvements in rtl/objpa...
by
PascalDragon
[May 27, 2023, 06:35:26 pm]
Optimization of for loops...
by
lagprogramming
[May 27, 2023, 03:56:09 pm]
How to download a file fr...
by
maurobio
[May 27, 2023, 02:58:43 pm]
Solved- TSQLQuery.ExecSQL...
by
br4d
[May 27, 2023, 02:26:56 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [Solved] Fullscreen event? (Read 365 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: 1395
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: 1395
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: 1395
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