Custom NSPredicateEditorRowTemplate with Single Item

2008-05-19 Thread Steven Huey
e 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: Custom NSPredicateEditorRowTemplate with Single Item

2008-05-20 Thread Steven Huey
;s class to your subclass. 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

Re: How to retrieve conversion factors from internet?

2008-05-25 Thread Steven Huey
Sam, It looks like http://www.xmethods.net has a list of web services and providers, some of which look to be currency converters. Best regards, Steven Huey On May 25, 2008, at 3:21 PM, KSamdev wrote: Hi, I am writing Converter Application in Cocoa and would like to retrieve units

Mail Rule Actions Control

2008-06-10 Thread Steven Huey
they're willing 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

Re: Mail Rule Actions Control

2008-06-11 Thread Steven Huey
with full text mode http://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

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 int

Re: NSTreeController & NSOutlineView bindings w/ Core Data

2008-03-18 Thread Steven Huey
C 2.0 Method Declarations to Clipboard Copy 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 s

Re: NSPopupButton Cell in NSTableView

2008-04-04 Thread Steven Huey
olumn 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

Inline Help Text Approaches

2008-04-15 Thread Steven Huey
les, and folders..." that appears over the table, but once you add something is hidden. Are there any best practices or standard approaches to this? What about if I want to include an image as well? Thanks, Steve -- Steven Huey Softwa

Re: radio Button newbie question

2008-04-26 Thread Steven Huey
probably come up with a quick 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

Bindings & Checkbox in NSTableView

2008-05-06 Thread Steven Huey
agePosition:NSImageOnly]; [cell 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

Re: Bindings & Checkbox in NSTableView [SOLVED]

2008-05-07 Thread Steven Huey
amish 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

Re: Core data model, bindings advice.

2008-05-12 Thread Steven Huey
you could bind your 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.steve

Re: Core data model, bindings advice.

2008-05-14 Thread Steven Huey
Take 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, alt

Finder Sidebar "Shared" Items

2009-04-28 Thread Steven Huey
t; menu * The ~/Library/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 H