Re: Making my own menubar

2008-05-02 Thread Andy Lee
On May 2, 2008, at 3:54 PM, Jens Alfke wrote: Probably the best start is to make a row of NSPopUpButton controls in 'drop-down' mode. It won't be exactly like the real menu-bar, though (dragging from one menu to another won't work, nor will the accessibility keyboard shortcuts.) And on Tig

Re: Making my own menubar

2008-05-02 Thread Kyle Sluder
On Fri, May 2, 2008 at 4:44 PM, Mike <[EMAIL PROTECTED]> wrote: > I mean that I need a menubar in a fullscreen window that my app owns, but > it can't be the standard system menubar because one of the things my app has > to do is prevent the user from accessing anything outside my app. Have you t

Re: Making my own menubar

2008-05-02 Thread Mike
Shawn Erickson wrote: On Fri, May 2, 2008 at 12:06 PM, Mike <[EMAIL PROTECTED]> wrote: I need to make a fullscreen app in which my window takes over the main display. I need to be able to prevent the user from accessing the main system menu bar. Hiding it is no problem but I need to create my ow

Re: Making my own menubar

2008-05-02 Thread Jens Alfke
On 2 May '08, at 12:06 PM, Mike wrote: Is there an easy way to do this or do I have to do all my own drawing in order to create my own custom menubar at the top of my fullscreen window? You're pretty much on your own. Probably the best start is to make a row of NSPopUpButton controls in

Re: Making my own menubar

2008-05-02 Thread Shawn Erickson
On Fri, May 2, 2008 at 12:06 PM, Mike <[EMAIL PROTECTED]> wrote: > I need to make a fullscreen app in which my window takes over the main > display. I need to be able to prevent the user from accessing the main > system menu bar. Hiding it is no problem but I need to create my own menubar > at the

Making my own menubar

2008-05-02 Thread Mike
I need to make a fullscreen app in which my window takes over the main display. I need to be able to prevent the user from accessing the main system menu bar. Hiding it is no problem but I need to create my own menubar at the top of the fullscreen window that I create. Is there an easy way to