Is it possible to have a NSWindow that still has a title bar but doesn't have rounded corners?
Ideally i would be able to do the following:
self.titlebarAppearsTransparent = true;
self.titleVisibility = NSWindowTitleVisibility.Hidden;
Leaving me with almost full control of my window rendering but still able to piggy back off of the default window control buttons.
I tried many combinations but it seems when the NSTitledWindowMask
mask is present the window automatically starts rounding its corners.