Tagged Questions

9
votes
3answers
361 views

Is it possible to draw in the label area of NSToolbar?

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 ...
2
votes
2answers
270 views

How can I hide an NSToolbarItem using code?

I have a toolbar with various options and some options should not be visible in some cases. I have already figured out a way to disable them in my application, using this callback: - (BOOL) ...
2
votes
4answers
2k views

How to add a pop-up menu to a NSToolbarItem?

I'm trying to open a pop-up menu from a NSToolbarItem. I tried following this example but I can't use that class method because NSToolbar and NSToolbarItem inherit from NSObject and not from NSView. ...
1
vote
1answer
546 views

NSToolbarItem image scaling

Why is this happening: As you can see, in the "Allowed Toolbar Items" the image looks fine for the "PHP" toolbar item, and when its actually in the toolbar, it scales weirdly. Thanks
1
vote
1answer
197 views

Assigning key-equivalent to NSToolbarItem?

How can I set a key equivalent for a NSToolbarItem?
0
votes
2answers
67 views

How to implement TopBar in a Cocoa Application?

I am new in Cocoa development. I want to implement this type of Bar (below image) in my application. How can i implement this? Which control using for this ?
0
votes
3answers
66 views

How do you vertically centering an image on an NSButton

I'm build a Mac application in the style of the Lion Mail.app. As part of this I'm attempting to create a simular toolbar to the one in the Mail.app but I can't seem to get the image in my toolbar ...
0
votes
1answer
85 views

Customize NSToolbar - Disable “Use small size”

How do I disable the "Use small size" option in the toolbar? I am using Xcode 4. (That's the option that appears when users go to customize the Toolbar.)
0
votes
1answer
66 views

Delete focus from toolbar item

I have a toolbar with custom items. When i click on item, left item get a focus. How to delete focus from toolbar item?
0
votes
1answer
132 views

Adding a toolbar to INAppStoreWindow

I'm trying to add a toolbar to INAppStoreWindow. It has this property: /** The title bar view itself. Add subviews to this view that you want to show in the title bar (e.g. buttons, a toolbar, ...
0
votes
1answer
95 views

Using toolbar with several NSViewControllers

I've a single window Document-based application that loads several NSViewControllers that serve as the main view. Each view controller is a self-contained class that deals with certain business needs ...
0
votes
1answer
333 views

NSToolbar looks different in Leopard and Snow Leopard

I have a Cocoa app I'm working on and I get a different result in appearance for the NSToolbar I am using for the main window. Specifically, I'm using a search field as the last NSToolbarItem and, ...
0
votes
1answer
281 views

How to get NSComboBox in a NSToolbar to send messages to the datasource and delegate

I have an NSComboBox in a NSToolbar and I want the combo box to send messages to its datasource and delegate. My class adopts the NSComboBoxDelegate and NSComboBoxDataSource protocols. I create my ...
0
votes
1answer
144 views

toolbarSelectableItemIdentifiers: is not called

I'm trying to make selectable NSToolbarItems. I've connected everything correctly in IB, but toolbarSelectableItemIdentifiers: is not working. It doesn't get called. The delegate is the File's Owner ...
0
votes
1answer
143 views

Showing the NSToolbar only if hovering over the NSPanel

I am making a desktop application and I want to show the NSToolbar of an NSPanel only if the mouse pointer is positioned over that NSPanel. Also, when the mouse pointer is not positioned over that ...
0
votes
2answers
251 views

Reset NSToolbar back to default configuration

I programatically create an NSToolbar in my application. I just added a new button to the toolbar and added that button to the default configuration of the toolbar. When I run my application the new ...