Re: Cocoa replacement for SetWindowModality

2008-12-02 Thread Russ
hat NSWindow has a worksWhenModal bit in __wFlags, which suggests it is cached, and that this strategy probably won't work. - Original Message Sent: Tuesday, December 2, 2008 12:32:24 PM Subject: Re: Cocoa replacement for SetWindowModality On Dec 2, 2008, at 7:28 AM, Russ wrot

Re: Cocoa replacement for SetWindowModality

2008-12-02 Thread j o a r
On Dec 2, 2008, at 7:28 AM, Russ wrote: In my UI there's a spot where it's very useful for the user to be able to change a window from modal to modeless for a little while. In Carbon, I used SetWindowModality to do so. How can I do the same in Cocoa? It doesn't look like I can reconfigure

Cocoa replacement for SetWindowModality

2008-12-02 Thread Russ
In my UI there's a spot where it's very useful for the user to be able to change a window from modal to modeless for a little while. In Carbon, I used SetWindowModality to do so. How can I do the same in Cocoa? It doesn't look like I can reconfigure a run loop to do this. Thanks.