Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
3
votes
0answers
497 views

How do I use an NSProgressIndicator as the view of an NSToolbarItem and have it show in the customisation sheet?

I have an NSToolbar set up in my app. It was created in IB. One of the toolbar items uses a spinner-style NSProgressIndicator as its view, the rest are images. When the toolbar's customization sheet ...
2
votes
1answer
521 views

Adding a custom view to toolbar

I'm struggling with Cocoa for 2 hours now without success. I want to add a custom view to the toolbar. So, I added a NSToolbar to the window (with IB), and added my view (which works perfectly). IB ...
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
1answer
709 views

NSButton in NSToolbarItem (setView) when clicked in “Text only” forces mode to “Icon and Label”

I am trying to recreate the nice textured buttons like Finder, Safari and Transmission have in their toolbar. First I started by just dragging in a "Texture button" in the IB and such. All works well ...
1
vote
1answer
160 views

How to programmatically add new NSToolbarItem to existing toolbar?

I'm looking for a method called addNewItem:(NSToolbarItem *)item or something like this that lets me add a programmatically created item to my toolbar, but I haven't found any. I would like to add an ...
1
vote
1answer
146 views

Is the toolbar item separator deprecated in Lion?

Whenever I add a separator toolbar item to my toolbar and run my application, it's not present. Is it deprecated in Lion? Interface Builder: Application when ran:
1
vote
3answers
223 views

NSToolbarItem availability based on OS X version

I have an application that will be available across multiple versions of OS X. What's the best way to make an NSToolbarItem only available to users in certain OS versions. When it is not available, it ...
1
vote
1answer
87 views

IBOutlet on NSToolbarItem subclass causes image to disappear and interaction to be disabled

I am implementing a preferences window, with a subclass of NSToolbarItem that has an IBOutlet to an NSView (the idea being that when an item is clicked, it will display its view). However, when I ...
1
vote
1answer
545 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
0
votes
0answers
29 views

Image NSToolbarItem created with Interface Builder does not respond

I have following problem: I have created my own toolbar items with Interface Builder I have made them with help of Image Toolbar Item in object library I added .png's and I could normally place them ...
0
votes
1answer
147 views

Show NSPopover from NSToolbarItem Button

I want to show an NSPopover from an NSToolbarItem button in my toolbar. (i.e. positioned below the button). Ideally, I want to pass the NSView of the button to the popover to position it. My question ...
0
votes
0answers
36 views

Setting custom gradient appearance for PDF toolbar items in NSToolbar

I am trying to create an appearance similar to the mac app store's blue gradient used to indicate toolbar selection. It currently uses PDF files for each Toolbar Item and apply's a gradient. The ...
0
votes
1answer
197 views

doesnt work: NSToolbarItem + custom view + setAction:

I'm adding a toolbar programmatically inside an interface inheriting NSObject <NSToolbarDelegate>, and implementing these methods: - (NSToolbarItem*)toolbar:(NSToolbar*)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
89 views

NSToolbarItem Subclass not calling events

I've created a subclass for NSToolbarItem and am trying to catch the -(void)mouseDown:(NSEvent *)theEvent in order to change its state (that's what I added in my subclass as NSToolbarItem doesn't ...
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
194 views

Validating NSToolbarItem with View against FirstResponder

I've got a toolbar item that contains a view (an NSButton) and the view's target is set to nil, so it'll look up the responder chain when triggering the action. I'm having trouble trying how to ...