Is it possible to get the frame of a NSStatusItem after I've added it to the status bar in Cocoa? When my app is launched, I am adding an item to the system status bar, and would like to know where it was positioned, is possible.

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted
NSRect statusRect = [[statusItem view] frame];
NSLog(@"%@", [NSString stringWithFormat:@"%.1fx%.1f",statusRect.size.width, statusRect.size.height]);
link|improve this answer
feedback

The method used in the answer does not work if the status item is using a menu instead of a custom view.

link|improve this answer
Check out this answer to see a way of doing it without a custom view: stackoverflow.com/questions/1301701/… – Steg Mar 29 at 14:22
feedback

you can hack the window ivar like this :

@interface NSStatusItem (Hack)

- (NSRect)hackFrame;

@end

@implementation NSStatusItem (Hack)

- (NSRect)hackFrame
{
    int objSize = class_getInstanceSize( [NSObject class] ) ;
    id * _ffWindow = (void *)self + objSize + sizeof(NSStatusBar*) + sizeof(CGFloat) ;
    NSWindow * window = *_ffWindow ;

    return [window frame] ;
}

@end

This is useful for status items without a custom view.

Tested on Lion

link|improve this answer
feedback

The following seems to work - I have seen similar solutions for iOS applications and supposedly they permit submission to the app store because you are still using standard SDK methods.

    NSRect frame = [[statusBarItem valueForKey:@"window"] frame];
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.