Finder Sidebar Shared Items

2009-04-28 Thread Steven Huey
/Preferences/com.apple.sidebarlists.plist file has some ofdata, but doesn't appear to have the Shared items Does anyone know where this list is stored or how it can be accessed programmatically? Thanks, Steve -- Steven Huey Software - http://www.stevenhuey.com

Re: Mail Rule Actions Control

2008-06-13 Thread Steven Huey
Thanks Thomas, I had seen that, but was hoping to find some sample code. Best regards, Steven Huey On Jun 11, 2008, at 12:32 PM, Ken Thomases wrote: On Jun 11, 2008, at 6:17 AM, Steven Huey wrote: There's plenty of resources available for how to use a NSPredicateEditor... I'm interested

Re: Mail Rule Actions Control

2008-06-11 Thread Steven Huey
://developer.apple.com/samplecode/PredicateEditorSample/index.html is what I got. On Jun 10, 2008, at 1:16 PM, Steven Huey wrote: I'm looking to create a control or set of controls like the actions portion of a rule in Apple Mail. The new NSRuleEditor control in Leopard looks like it might be a good

Mail Rule Actions Control

2008-06-10 Thread Steven Huey
to share. Or other ideas, approaches, etc.. ??? Thanks, Steve -- Steven Huey Software - http://www.stevenhuey.com ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact

Re: Custom NSPredicateEditorRowTemplate with Single Item

2008-05-20 Thread Steven Huey
. This works perfectly, thanks! It hadn't occurred to me to just override templateViews and return just the first item, but I really like the approach. Best regards, Steven Huey -- Steven Huey Software - http://www.stevenhuey.com ___ Cocoa-dev

Custom NSPredicateEditorRowTemplate with Single Item

2008-05-19 Thread Steven Huey
settings for the NSPredicateEditor in IB, and also tried returning more than one view or type of view in my custom row template, all without luck. Does anyone have any sample code or suggestions to help me get this working? Thanks, Steve -- Steven Huey Software - http://www.stevenhuey.com

Re: Core data model, bindings advice.

2008-05-14 Thread Steven Huey
a look at NSPredicate. If you have your entities in an NSArray you should be able to filter that using an NSPredicate in memory very quickly. You could then use the results in your table view. On 13/05/2008, at 12:27 AM, Steven Huey wrote: Steven, In my app I have a similar setup, although

Re: Core data model, bindings advice.

2008-05-12 Thread Steven Huey
detail view similarly, to the current selection of your array controller. Take a look at: http://homepage.mac.com/mmalc/CocoaExamples/controllers.html for lots of great examples of how to use bindings. Best regards, Steven Huey -- Steven Huey Software - http://www.stevenhuey.com On May 12

Re: Bindings Checkbox in NSTableView [SOLVED]

2008-05-07 Thread Steven Huey
Allan wrote: On Tue, May 6, 2008 at 8:31 PM, Steven Huey [EMAIL PROTECTED] wrote: I set the table column to use a checkbox using: NSButtonCell *cell = [[NSButtonCell alloc] init]; [cell setButtonType:NSSwitchButton]; [cell setImagePosition:NSImageOnly]; [cell

Bindings Checkbox in NSTableView

2008-05-06 Thread Steven Huey
setControlSize:NSSmallControlSize]; [[myTable tableColumnWithIdentifier:@active] setDataCell:cell]; Any ideas on what I'm missing or how better to debug this? Thanks, Steve -- Steven Huey Software - http://www.stevenhuey.com ___ Cocoa-dev mailing list

Re: radio Button newbie question

2008-04-26 Thread Steven Huey
code example for you. Best regards, Steven Huey On Apr 26, 2008, at 6:38 AM, Allison Newman wrote: Could somebody please put me out of my misery and tell me where I can find an example of using radio buttons in a Cocoa app please? Or better yet, a tutorial? I have just wasted several hours

Re: NSPopupButton Cell in NSTableView

2008-04-04 Thread Steven Huey
to use a NSPopUpButtonCell instance. - Steve On Apr 3, 2008, at 2:38 PM, Thomas Bartelmess wrote: I've spent a lot of time to find out to add a collum with NSPopupButtons, but it wasn't able to do this. Can PLEASE anyone help me? Thanks a lot Thomas -- Steven Huey Software - http

Re: NSTreeController NSOutlineView bindings w/ Core Data

2008-03-18 Thread Steven Huey
Obj-C 2.0 Method Implementations to Clipboard Hope this helps. Best regards, Steven Huey On Mar 17, 2008, at 1:48 PM, Ian Kennedy wrote: I'm hoping this is simple, but everything I read makes it seem much more complicated than I think it should be. I have this simple model: http