mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 08:08:42 +00:00
14 lines
432 B
Plaintext
14 lines
432 B
Plaintext
#include "NewMainWindow.h"
|
|
#include <Cocoa/Cocoa.h>
|
|
|
|
void
|
|
NewMainWindow::macNativeSettings()
|
|
{
|
|
NSView *nativeView = reinterpret_cast<NSView *>(winId());
|
|
NSWindow* nativeWindow = [nativeView window];
|
|
|
|
[nativeWindow setStyleMask: [nativeWindow styleMask] | NSFullSizeContentViewWindowMask | NSWindowTitleHidden];
|
|
[nativeWindow setTitlebarAppearsTransparent:YES];
|
|
[nativeWindow setMovableByWindowBackground:YES];
|
|
}
|