NSBrowser is a Cocoa control that breaks down items hierarchically.
0
votes
1answer
31 views
Problems implementing the NSBrowserDelegate protocol
I'm able to get my NSBrowser instance to display the correct data in the first column. When I select one of the options, however, the next column simply displays the same set of options. I have read ...
0
votes
0answers
35 views
NSBrowserCell with Two text field
I want to implement an NSBrowserCell with two text field with one field for displaying file size and another is for displaying file name.
- (void)drawInteriorWithFrame:(NSRect)cellFrame ...
6
votes
2answers
125 views
Removing Border from NSBrowser
As the title says, I actually want to remove the border from an NSBrowser control. The parents are NSView and NSControl. There's no available methods in NSBrowser itself, and neither in the parent ...
0
votes
0answers
41 views
How to change draggingFormation for NSBrowser local drag and drop
I have implemented a view controller with local drag and drop of items from multiple NSBrowser cells onto a cell within the same NSBrowser control. Pretty much everything is working as I wish, except ...
0
votes
1answer
79 views
NSBrowser reuses cell rather than creating new one
I'm trying to create a UI element using NSBrowser, but for some reason the browser creates a singleton instance of the custom cell class that I specify, rather than creating new cell instance for each ...
1
vote
1answer
156 views
view-based NSBrowser?
Now that we have NSTableView and NSOutlineView that can have regular NSView objects as their cells, what about NSBrowser? That is can we use regular NSView objects as cells in NSBrowser?
0
votes
1answer
136 views
NSBrowser fills NSPasteboard but won't drop
I have an NSBroswer with a series of entries that look up a text blob. If the blob exists then
- (BOOL)browser:canDragRowsWithIndexes:inColumn:withEvent: returns YES.
This invokes
- ...
1
vote
2answers
134 views
How to find user clicked on any row in NSBrowser?
In my Browser implementation to select default rows I have used the following code.
[browser setTarget:self];
[browser setAction:@selector(singleClickOnBrowser:)];
[browser ...
1
vote
1answer
70 views
Prevent Horrendously Wide NSBrowserCell Tool Tips
I am setting my NSBrowser matrix cells' tool tips with the below code:
- (void) browser:(NSBrowser *)sender willDisplayCell:(id)cell atRow:(int)row column:(int)column {
NSMatrix *matrix = ...
0
votes
1answer
130 views
How to highlight a row in NSBrowser?
I tried to highlight the rows in a NSBrowser using selectRowIndexes of the NSBrowser,but it does not highlight the rows.In 'NSTableView`rows can be highlighted using
- [NSTableView ...
0
votes
1answer
107 views
Dragging from NSBrowser and use bindings?
I've implemented a browser that shares NSTreeController with NSOutlineView so I can easily switch between them and keep the states in sync. Implementing drag support for NSOutlineView is simple, but ...
0
votes
1answer
206 views
Cocoa NSBrowser and CFURLEnumeratorCreateDirectoryURL
I'm trying to understand the sample from Apple "ComplexBrowser", but it's really hard to find any material/tutorial to "CFURLEnumeratorCreateDirectoryURL".
ComplexBrowser Sample from Apple
What ...
0
votes
1answer
115 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
141 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
784 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 ...
1
vote
1answer
297 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 ...
2
votes
2answers
430 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 ...
0
votes
1answer
3k 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.
2
votes
1answer
1k 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
2answers
335 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
196 views
How do I deselect all cells in an NSBrowser
How do I deselect/unselect any selected cells in an NSBrowser?