mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 22:18:15 +02:00
cocoa: forcing collection behaviour to allow full screen, if fullscreen is requested. (not same by default for some unknown conditions on macOS 10.8)
git-svn-id: trunk@57694 -
This commit is contained in:
parent
1fd799fdfc
commit
70b3acf581
@ -107,6 +107,12 @@ const
|
||||
//kCGAssistiveTechHighWindowLevelKey = 20;
|
||||
//kCGNumberOfWindowLevelKeys = 21; { Must be last. }
|
||||
|
||||
const
|
||||
NSWindowCollectionBehaviorFullScreenPrimary = 1 shl 7; // 10.7
|
||||
NSWindowCollectionBehaviorFullScreenAuxiliary = 1 shl 8; // 10.7
|
||||
NSWindowCollectionBehaviorFullScreenAllowsTiling = 1 shl 11; // 10.11
|
||||
NSWindowCollectionBehaviorFullScreenDisallowsTiling = 1 shl 12; // 10.11
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
@ -2164,6 +2164,10 @@ begin
|
||||
end;
|
||||
|
||||
procedure TCocoaWindow.lclSwitchFullScreen(AEnabled: Boolean);
|
||||
const
|
||||
fsmask = NSWindowCollectionBehaviorFullScreenPrimary
|
||||
or
|
||||
NSWindowCollectionBehaviorFullScreenAuxiliary;
|
||||
begin
|
||||
if isInFullScreen = AEnabled then Exit; // nothing to do
|
||||
|
||||
@ -2174,7 +2178,11 @@ begin
|
||||
|
||||
isInFullScreen := AEnabled;
|
||||
if NSAppKitVersionNumber >= NSAppKitVersionNumber10_7 then
|
||||
Self.toggleFullScreen(nil)
|
||||
begin
|
||||
if Self.collectionBehavior and fsmask = 0 then
|
||||
Self.setCollectionBehavior(Self.collectionBehavior or NSWindowCollectionBehaviorFullScreenPrimary);
|
||||
Self.toggleFullScreen(nil);
|
||||
end
|
||||
else
|
||||
begin
|
||||
if AEnabled then
|
||||
|
Loading…
Reference in New Issue
Block a user