up vote 0 down vote favorite
share [g+] share [fb]

How would I make the name of the app appear here ( like with a normal app )…

alt text

… when the app is an LSUIElement.

My Problem is that when the App is LSUIElement the name is not by default displayed in the menu bar like an normal app. Basically all I want LSUIElement to do is to hide the dock icon not the name in the menu bar.

For those who's native language isn't English, when I say 'App' i mean 'Application'.

Thanks.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Don't do this; it's not what users expect. A dock icon and menu bar go together. If you want to get both a dock icon and menu bar icon in your UIElement app, use TransformProcessType.

If you really must, you can draw your own menu bar window (if you use the appropriate window level it'll appear over the top of the existing menu bar).

link|improve this answer
How would I draw my own menu bar window? – Joshua Aug 2 '09 at 6:33
Create an unadorned window starting to the right of the Apple menu and start drawing in it. If you want the menu bar to look like the OS X menu bar, see the Appearance Manager documentation and HITheme.h. You can get the menubar height and other such measurements with GetThemeMetric, then use functions like HIThemeDrawMenuBarBackground and HIThemeDrawMenuTitle to draw backgrounds; HIThemeGetUIFontType, HIThemeDrawTextBox and the like to draw text. You can probably get away with using standard menus assuming you can either fix or disregard the rounded top corners on 10.5. – Nicholas Riley Aug 2 '09 at 9:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.