isExcludedFromWindowsMenu, NSBorderlessWindowMask
isExcludedFromWindowsMenu, NSBorderlessWindowMask
- Subject: isExcludedFromWindowsMenu, NSBorderlessWindowMask
- From: Jesse Grosjean <email@hidden>
- Date: Sun, 23 Sep 2001 16:04:37 -0400
I have a NSWindow subclass that is NSBorderlessWindowMask. I've got it
to accept key events by overriding
- (BOOL)canBecomeKeyWindow {
return YES;
}
but i cant seem to get it to show up in the NSApplication->Window menu.
I'm overriding
- (BOOL)isExcludedFromWindowsMenu {
return NO;
}
but that does not seem to help. Had anyone out there had luck (or know
another way i might try going about it) with getting a
NSBorderlessWindowMask window to show up in the Windows menu.
Thanks,
Jesse