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
How to send line breaks t...
by
cdbc
[
Today
at 02:07:20 pm]
Changes in "Search Result...
by
Martin_fr
[
Today
at 01:44:47 pm]
How to download a file fr...
by
maurobio
[
Today
at 01:26:32 pm]
[RESOLVED] bug in FpWait?
by
robert rozee
[
Today
at 01:22:35 pm]
Cannot connect to MariaDB...
by
marsupilami79
[
Today
at 12:51:24 pm]
Online Package Manager
by
GetMem
[
Today
at 10:34:41 am]
fphttpclient. set path op...
by
Warfley
[
Today
at 10:16:02 am]
Fill dual brush color in ...
by
wp
[
Today
at 09:16:35 am]
Feature announcement: Fun...
by
Peter H
[
Today
at 09:09:31 am]
Cration of TShape causes ...
by
bruce.button
[
Today
at 08:13:52 am]
Something wrong when i cl...
by
TRon
[
Today
at 08:04:59 am]
Force Picklist in TString...
by
bruce.button
[
Today
at 07:43:21 am]
IInterface issues, compil...
by
jamie
[
Today
at 01:26:31 am]
Problm with desiger recog...
by
cdbc
[June 05, 2023, 11:54:42 pm]
How to make a T[Flow]Pane...
by
jamie
[June 05, 2023, 11:12:11 pm]
Order of execution of ini...
by
jwdietrich
[June 05, 2023, 10:53:48 pm]
(Solved) Hex2Dec, strange...
by
PascalDragon
[June 05, 2023, 09:43:52 pm]
Does FPC uses any interme...
by
PascalDragon
[June 05, 2023, 09:21:00 pm]
DBGrid icon
by
dsiders
[June 05, 2023, 09:04:53 pm]
Getting Started
by
delphius
[June 05, 2023, 08:58:08 pm]
Highlighting row in TSTri...
by
bruce.button
[June 05, 2023, 08:18:25 pm]
Best way to include lots ...
by
440bx
[June 05, 2023, 08:04:27 pm]
Access violation with use...
by
Martin_fr
[June 05, 2023, 06:06:51 pm]
[SOLVED] discarding an ar...
by
robert rozee
[June 05, 2023, 05:25:52 pm]
The form designer works i...
by
JuhaManninen
[June 05, 2023, 04:23:31 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [Solved] Fullscreen event? (Read 396 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: 1399
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: 1399
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: 1399
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