Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
225 views

What is a NSBrowserTableView as compared to an NSBrowser?

I'm implementing a -(void)delete: method so I can handle the delete key in my Cocoa app. I want it to do different things depending on what's selected: for text-fields, I want the default behaviour ...
1
vote
1answer
139 views

Resize NSBrowser column to fit the width of the content

I'm using an NSBrowser (10.6SDK/Cocoa app) and I want to send a message to a browser column that will make it resize its width to match the width of the largest cell within that column. Seems ...
1
vote
1answer
748 views

Populating an NSBrowser (Cocoa OSX)

I want to make a widget that displays a column of selectable text data. It seems that the NSBrowser is the best cocoa object to do this but I cannot figure out how to populate the NSBrowser with any ...
0
votes
0answers
22 views

Using a list/browser with tables in Cocoa

In my application I am trying to create a list or browser on the left side of the window. On the right side I want to display a table that shows information specific to the selected list item. ...
0
votes
0answers
28 views

SWT Port of NSBrowser

If anyone has ever used Finder on Mac OS X, the third view option is an example of NSBrowser. Does anyone know how to implement something like that? I want column views that scroll horizontally. I ...
0
votes
1answer
47 views

How to use NSBrowserDelegate on 10.5

I have a question: When I was running the sample code SimpleCocoaBrowser, I received a crash report about the NSBrowserDelegate, which I discovered can only be used after 10.6. So how can I use an ...
0
votes
1answer
55 views

How to traverse forward and backwards in NSBrowser?

I am trying to create something similar to the OS X finder. How can I go backwards and forwards like in OS X finder? I'm not sure which methods to call to do this.
0
votes
1answer
340 views

Finder-like Browser View

I have an App that lets the user choose a Browser, or Column View, much like Finder. Since it allows the user to browse a Backup, I'd love to have something like the Finder has in Column view. You ...
0
votes
1answer
1k views

NSBrowser simple example

I need to display the file system in the NSBrowser. Please provide with some sample examples. OR is there any other way to take path as input from the users. URGENT plz. Thanx a lot
0
votes
2answers
264 views

How to click the segmentedControl object and use it to change view?

I want to implement just like interface builder segmented control, and click it to change views , I don't know under the segment if a NSBrowser or not. and how to change the view , can you give me ...
0
votes
1answer
130 views

How do I deselect all cells in an NSBrowser

How do I deselect/unselect any selected cells in an NSBrowser?