Vuo  2.0.2
VuoDialogWithoutTitlebar.mm
Go to the documentation of this file.
1 
11 
12 #ifndef NS_RETURNS_INNER_POINTER
13 #define NS_RETURNS_INNER_POINTER
14 #endif
15 #include <Cocoa/Cocoa.h>
16 
21  QDialog(parent)
22 {
23 }
24 
28 void VuoDialogWithoutTitlebar::showEvent(QShowEvent *event)
29 {
30  NSWindow *nsWindow = ((NSView *)winId()).window;
31  nsWindow.titleVisibility = NSWindowTitleHidden;
32  nsWindow.titlebarAppearsTransparent = YES;
33  nsWindow.styleMask |= NSFullSizeContentViewWindowMask;
34  nsWindow.styleMask &= ~NSResizableWindowMask;
35 }