+unsigned int wxTopLevelWindowCocoa::NSWindowStyleForWxStyle(long style)
+{
+ unsigned int styleMask = 0;
+ if(style & wxCAPTION)
+ styleMask |= NSTitledWindowMask;
+ if(style & wxMINIMIZE_BOX)
+ styleMask |= NSMiniaturizableWindowMask;
+ #if 0
+ if(style & wxMAXIMIZE_BOX)
+ styleMask |= NSWindowMask;
+ #endif
+ if(style & wxCLOSE_BOX)
+ styleMask |= NSClosableWindowMask;
+ if(style & wxRESIZE_BORDER)
+ styleMask |= NSResizableWindowMask;
+ if(style & wxSIMPLE_BORDER)
+ styleMask |= NSBorderlessWindowMask;
+ return styleMask;
+}
+