I have a NSToolbarItem that uses a view similar to the Xcode status view. It currently has no label, but I can't figure out a way to draw into the area where the item label would normally be drawn. I would like the view to extend into that area just as the Xcode status view does. I know the very bottom portion of pixels of NSToolbar is out of bounds, but I have seen other applications draw into the label area. Any ideas?

Edit: For clarification, this is the status view I'm referring to in Xcode:

I want the bounds of my view to extend past the label area of the toolbar just as the view in Xcode does.

link|improve this question

60% accept rate
feedback

4 Answers

The Xcode status view is not an NSToolbarItem is a custom NSView inserted in the NSToolbar.

link|improve this answer
feedback

The Xcode status view is actually a separate window floating over the toolbar. (This is easily tested: press ⇧⌘4 and press space to take a screen shot of a window, and hover the mouse over it.)

link|improve this answer
Could also be a menu or a menu bar or a drawer. :) – WTP'-- Jul 5 '11 at 17:20
1  
Apparently this was "fixed" in Xcode 4.2. – titaniumdecoy Jul 5 '11 at 17:38
@Jason Boyle How did they "fix" it? – Vervious Jul 5 '11 at 22:29
@Nano8Blazex: @Ahruman's method of distinguishing between the main window and the status view does not work in Xcode 4.2. Either it is no longer a separate window or some trickery has been put in place to prevent it from being detected as such in this manner (assuming that it is or was in fact a separate window; I have no way of testing @Ahruman's assertion). – titaniumdecoy Jul 5 '11 at 23:21
@WTP: menu bars and drawers are windows. @Jason Boyle: I originally got this information from an Xcode developer on Twitter, then tested it myself, although of course you can’t test either of these assertions either. ;-) – Ahruman Jul 6 '11 at 6:41
show 2 more comments
feedback

This code installs a window floating on top of the toolbar.

-(void)applicationWillFinishLaunching:(NSNotification *)aNotification {
    NSRect winframe = [self.window frame];
    NSRect viewrect = NSMakeRect(0, 0, 400, 50);
    NSRect winrect = viewrect;
    winrect.origin.x = NSMidX(winframe) - NSMidX(winrect);  
    winrect.origin.y = NSHeight(winframe) - NSHeight(winrect) - 18;

    NSWindow* win = [[[NSWindow alloc] initWithContentRect:winrect styleMask: NSBorderlessWindowMask backing: NSBackingStoreBuffered defer: NO] autorelease];
    [win setBackgroundColor:[NSColor clearColor]];
    [win setOpaque:NO];
    [win setIgnoresMouseEvents:YES];

    MyStatusView* v = [[[MyStatusView alloc] initWithFrame:viewrect] autorelease];
    [win setContentView: v];

    [self.window addChildWindow:win ordered:NSWindowAbove];
}
link|improve this answer
feedback

The iTunes-XCode-LCD that extends in the label area is not a NSToolbarItem. Since NSToolbar isn't a NSView, you cannot add a subview to a NSToolbar instance. But you can add a custom view directly in the window frame, that can be accessed through the contentView.superview property path of the NSWindow instance!

I.e. make your own subclass of NSWindowController and put some code like this in the 'windowDidLoad' method:

- (void)windowDidLoad
{  
[super windowDidLoad];

NSImage *image = [NSImage imageNamed:@"lcd"];
NSRect lcdFrameRect = NSMakeRect(self.window.frame.size.width / 2 - image.size.width/2, self.window.frame.size.height - image.size.height - 20, 

                                 image.size.width, image.size.height);
NSImageView *lcdView = [[NSImageView alloc] initWithFrame: lcdFrameRect];
[lcdView setImage: image];
lcdView.autoresizingMask = NSViewMinYMargin | NSViewMinXMargin | NSViewMaxXMargin;

NSView * contentView = self.window.contentView;
[contentView.superview addSubview: lcdView];
}

This code will not work in Lion's full-screen mode, since the frame window isn't drawn when in fullscreen. To fix this, the view can be moved in a floating window, child of the main one (just check the NSWindow addChildWindow:ordered: method).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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