Files
GoldenCheetah/deprecated/NewMainWindowMac.mm
Alejandro Martinez 103c87c600 Deprecate NewMainWindow
Complements fc3de5f
2023-04-22 21:13:34 -03:00

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];
}