Change window title bar colour

From Free Pascal wiki
Revision as of 00:45, 31 January 2020 by Trev (talk | contribs) (New content)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
macOSlogo.png

This article applies to macOS only.

See also: Multiplatform Programming Guide

For macOS 10.10 and later, the following code may be used to change the colour of a window's title bar.

    {$modeswitch objectivec2}
     
    interface
     
    uses
      CocoaAll,
    ...
    const
      NSWindowTitleVisible = 0;
      NSWindowTitleHidden = 1;
     
    type
      NSWindowTitleVisibility = NSInteger;
     
      NSWindowGlam = objccategory external (NSWindow)
        function titleVisibility: NSWindowTitleVisibility; message 'titleVisibility';
        procedure setTitleVisibility(AVisibility: NSWindowTitleVisibility); message 'setTitleVisibility:';
        function titlebarAppearsTransparent: Boolean; message 'titlebarAppearsTransparent';
        procedure setTitlebarAppearsTransparent(AFlag: Boolean); message 'setTitlebarAppearsTransparent:';
      end;
     
    { TForm1 }
     
    procedure TForm1.FormShow(Sender: TObject);
    var
      w :NSWindow;
    begin
      w := NSView(Self.Handle).window;
      w.setTitlebarAppearsTransparent(true);
      w.setTitleVisibility( NSWindowTitleHidden);
     
      w.setBackgroundColor( NSColor.greenColor ); // <-- not required, and can changed to any color

See also