Tagged Questions
The nstoolbar tag has no wiki summary.
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 ...
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
137 views
Adding buttons to Finder toolbar?
Dropbox has the option of adding a button to the Finder toolbar. It even appears in the 'Customize Toolbar...' window.
I can't find any documentation on how this sort of thing is done.... Does ...
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
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
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
1
vote
1answer
197 views
1
vote
1answer
733 views
XCode / Interface Builder : How to rename the default NSToolbar Items?
When I add an NSToolbar to my application it comes with some default items like "Customize" or "Colors" and I am unable to rename them. These attributes are disabled and can not be edited.
I am ...
0
votes
1answer
24 views
put NSToolBar on the bottom of window
I added a NSToolBar into my window. It is attached to the top of the window, but I need to put down it on the bottom. How can I do it?
0
votes
1answer
14 views
NSToolbar and view controller hierarchy
I have the following class hierarchy:
NSViewController
MyGeneralViewController
ViewControllerA
ViewControllerB
MyGeneralViewController holds some common code used by both ViewControllerA ...
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
0answers
33 views
How to customize the context menu of NSToolbar?
I need to remove some items from right-click context menu, but the toolbar does not contain a public API to access 'toolbarView'.
Is it possible to customize the menu without using private API?
0
votes
1answer
84 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
28 views
Can't align label on a Segmented Control in an NSToolbar
As you can see from the screenshot, the View button text is aligned properly under Allowed Toolbar Items, but once I add it to the toolbar, it's aligned to the right. Why?
0
votes
1answer
79 views
Creating NSToolbar style buttons
Is there a bevel style that can replicate NSToolbar style of buttons that are used, for instance, in the Safari's preferences window to switch between different panes?
I need to replicate NSToolbar ...
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
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
50 views
No action sent when NSSearchField is emptied?
I've set up an NSSearchField in a toolbar and connected an action in Interface Builder. This action gets called every time I enter some text, but not when I click the small cross to empty it or I ...
0
votes
1answer
65 views
How to use NSProgressIndicator as NSToolbarItem
How to add NSProgressIndicator(NSProgressIndicatorSpinningStyle) to toolbar as NSToolbarItem?
0
votes
1answer
243 views
NSToolbar special area
I like to try to completely take over the area where the NSToolbar resides so I can put my own custom controls, views and background. The advantages of using this area are:
Any sliding panels appear ...
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
48 views
NSToolbar default items
Interface Builder now lets you create NSToolbar.
If this is in a Window you can set the default items by dragging to the toolbar.
If it is a different NIB this does not seem to be possible.
I have a ...
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
345 views
How do I set the init state of a NSToolbar used for a multi panel preference window?
I'm trying to code a multiple panel preference window with an NSToolbar as seen in a lot of Mac applications. There are a few tutorials that do this by programmatically populating the toolbar but ...
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
309 views
Cocoa HUD Window: remove transparency?
I have a standard NSPanel set to HUD style. I want to change the background color, primarily because I want to have a toolbar and don't see any way of making either a standard nstoolbar look good on ...
0
votes
1answer
388 views
NSToolbar on bottom of window
How do i put an NSToolbar on the bottom of a window. I need to modify a program that has a toolbar on the top of the window and that needs to go on the bottom now.
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
353 views
How to add popup menu on NSToolbar item?
I've tried to add NSPopupButton + CustomView, but it's not what I wanted.
I would like to mimic "Tasks" on Xcode's toolbar.
Thanks in advance
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 ...