vote up -1 vote down star

I have already created a status item for the menu bar but I would like to add a checkbox to make it able to be toggled on and off.

So when the check box is checked the status item is displayed and when the checkbox is not checked it is not displayed.

What code would i need to do this?

flag

2 Answers

vote up 5 vote down check

First in your controller class create an instance variable to hold the reference to this item:

NSStatusItem *item;

Then create a method to create this status item, when the box is checked:

- (BOOL)createStatusItem
{
NSStatusBar *bar = [NSStatusBar systemStatusBar];

//Replace NSVariableStatusItemLength with NSSquareStatusItemLength if you
//want the item to be square
item = [bar statusItemWithLength:NSVariableStatusItemLength];

if(!item)
  return NO;

//As noted in the docs, the item must be retained as the receiver does not 
//retain the item, so otherwise will be deallocated
[item retain];

//Set the properties of the item
[item setTitle:@"MenuItem"];
[item setHighlightMode:YES];

//If you want a menu to be shown when the user clicks on the item
[item setMenu:menu]; //Assuming 'menu' is a pointer to an NSMenu instance

return YES;
}

Then create a method to remove the item when it is unchecked:

- (void)removeStatusItem
{
NSStatusBar *bar = [NSStatusBar systemStatusBar];
[bar removeStatusItem:item];
[item release];
}

Now tie it all together by creating an action that is called when the checkbox is toggled:

- (IBAction)toggleStatusItem:(id)sender
{
BOOL checked = [sender state];

if(checked) {
  BOOL createItem = [self createStatusItem];
  if(!createItem) {
    //Throw an error
    [sender setState:NO];
  }
}
else
  [self removeStatusItem];
}

Then create the checkbox in IB and set the action to your toggleStatusItem: method; make sure that the checkbox is left unchecked.

Edit (In response to errors) As stated above, you need to declare the NSStatusItem in the interface of the class that you have placed the createStatusItem and removeStatusItem methods; the reason that this becomes an instance variable rather than one local to the createStatusItem method is that there is no way to retrieve a pointer to an item that has already been added to the status bar in the Apple menu, and in order to remove the item once the checkbox is unchecked, you must store a pointer to this item. This will also solve your third error.

In response to your second error, I was merely demonstrating that if you want to add a menu to your status item when it is clicked, you must add the code for that yourself, retrieving a pointer to an NSMenu; I was showing how you could then add this menu item to the status bar item, if your pointer was called menu, hence my comment next to the line of code.

link|flag
Should I enter the main code (not the action) in the place where I have set up the status item? – Joshua May 9 at 15:44
Yes, ideally you'd put the pointer to the status item in the controller class, and place the methods to remove/add it to the bar in this class also, along with the action. – Perspx May 9 at 16:00
So i put all the code in the same controller class. – Joshua May 9 at 16:28
Yes; creating a separate class to apply the changes would be unnecessary – Perspx May 9 at 16:31
1  
You need to instantiate your controller class in IB; drag a blue "NSObject" object from the Library into the object window; then open up the inspector and in the Identity pane type your controller class name into the "Class" popup box. Then control+drag from your checkbox to the controller class, and select the toggleStatusItem: menu item from the popup menu to set its action. – Perspx May 9 at 16:53
show 23 more comments
vote up 1 vote down

Get an outlet to your button you want to toggle and then create an action method that your checkbox points to that toggles the hidden property of the original button based on the check box status.

link|flag

Your Answer

Get an OpenID
or

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