NSTableView updating checkboxes

2009-03-19 Thread Jo Phils
Hello, I am still a Cocoa beginner and looking for some help. Based on Using a Table Data Source in the Table View Programming Guide I have initiated my Table View with 2 columns...one for filenames and one for checkboxes (NSButtonCell). Everything is fine except this method: - (void)tableVi

Re: NSTableView updating checkboxes

2009-03-20 Thread Jo Phils
g called but it's just I couldn't figure out the code to change the state of the checkboxes... Thank you again so much for your help, Rick ____ From: Graham Cox To: Jo Phils Cc: cocoa-dev@lists.apple.com Sent: Friday, March 20, 2009 1:56:36 PM Subject: Re

Re: NSTableView updating checkboxes

2009-03-20 Thread Jo Phils
ere my problem was. Ok I will work on your suggestion and I really do appreciate all of the help... :-) I'll let you know, Rick ____ From: Graham Cox To: Jo Phils Cc: cocoa-dev@lists.apple.com Sent: Friday, March 20, 2009 8:56:23 PM Subject: Re: NSTable

Re: NSTableView updating checkboxes

2009-03-21 Thread Jo Phils
ing to get the checkbox issue working first...thanks again! Rick From: Jo Phils To: Graham Cox Cc: cocoa-dev@lists.apple.com Sent: Friday, March 20, 2009 11:19:46 PM Subject: Re: NSTableView updating checkboxes Thank you again Graham so much for the quick reply. Yes

Re: NSTableView updating checkboxes

2009-03-22 Thread Jo Phils
___ From: Andrew Farmer To: Jo Phils Cc: Graham Cox ; cocoa-dev@lists.apple.com Sent: Sunday, March 22, 2009 3:45:12 PM Subject: Re: NSTableView updating checkboxes On 21 Mar 09, at 04:04, Jo Phils wrote: > I have taken some time to work on your suggestions...unfortunately I still > can&#

Re: NSTableView updating checkboxes

2009-03-25 Thread Jo Phils
of my code as well so I'm trying to clean it all up so that my Table View will be ok. I have flagged your messages for reference and I'll let you know how it works out...and I very much appreciate the help! :-) Sincerely, Rick From: Michael Vannorsde

NSTableView reloadData from two sources?

2009-03-26 Thread Jo Phils
Hello, In my project I have 2 classes I created: Controller class - NSObject subclass DropView class - NSView subclass In my DropView class I accept drops and initialize an NSArray with the items. Then back in my Controller class I continue the processing where my Controller class is also the

Re: NSTableView reloadData from two sources?

2009-03-26 Thread Jo Phils
e I'm still learning... :-) Rick ____ From: I. Savant To: Jo Phils Cc: cocoa dev Sent: Thursday, March 26, 2009 11:57:30 PM Subject: Re: NSTableView reloadData from two sources? On Thu, Mar 26, 2009 at 11:53 AM, Jo Phils wrote: > My question is it's

Re: [Solved] NSTableView updating checkboxes

2009-03-29 Thread Jo Phils
Hi again Graham (and others that helped), Just want to post back saying I got it all working. Thank you very much for all of the help I really do appreciate it! Rick From: Graham Cox To: Jo Phils Cc: Cocoa-Dev List Sent: Tuesday, March 24, 2009 11:01:34

disable row highlighting NSTableView

2009-04-01 Thread Jo Phils
Hello everyone, This seems it should be easy enough but I can't quite figure it out. Normally when selecting an item in a table view it gets highlighted blue. How do you disable this highlighting? Thank you, Rick ___ Cocoa-dev mailing lis

Re: disable row highlighting NSTableView

2009-04-01 Thread Jo Phils
show me how to do this? Thanks again, Rick From: Jens Miltner To: Cocoa List Cc: Jo Phils Sent: Wednesday, April 1, 2009 10:10:20 PM Subject: Re: disable row highlighting NSTableView Am 01.04.2009 um 15:58 schrieb Jo Phils: > Hello everyone, > >

Re: disable row highlighting NSTableView

2009-04-01 Thread Jo Phils
Thank you very much I will do my homework... Sincerely, Rick From: I. Savant To: Jo Phils Cc: Jens Miltner ; Cocoa List Sent: Thursday, April 2, 2009 12:02:29 AM Subject: Re: disable row highlighting NSTableView On Wed, Apr 1, 2009 at 11:54 AM, Jo Phils

Re: disable row highlighting NSTableView

2009-04-02 Thread Jo Phils
is a no-op: > > - (void)highlightSelectionInClipRect:(NSRect)clipRect { > } But how exactly do I make this method a no-op? Please forgive my ignorance... :-) rick From: I. Savant To: Jo Phils Cc: Jens Miltner ; Cocoa List Sent: Thursday, April 2, 2009 12:

Re: disable row highlighting NSTableView

2009-04-02 Thread Jo Phils
Ok thank you both. I was thinking that and seems I did try it...but maybe I did something else wrong. Ok I will work on it some more. Thank you so much! rick From: Jens Miltner To: Jo Phils Cc: Cocoa List Sent: Thursday, April 2, 2009 9:52:07 PM Subject

Re: disable row highlighting NSTableView

2009-04-02 Thread Jo Phils
ou to all who helped! rick From: I. Savant To: Jo Phils Cc: Jens Miltner ; Cocoa List Sent: Thursday, April 2, 2009 11:06:48 PM Subject: Re: disable row highlighting NSTableView On Thu, Apr 2, 2009 at 10:56 AM, Jo Phils wrote: > Ok thank you both

finder file size

2009-04-07 Thread Jo Phils
Hello, My apologies if this has been answered before but isn't there a simple way to get the file size as it shows under Size in Finder without using Carbon and without enumerating the directory? My understanding is NSFileSize will not do it? Thank you, Rick

Re: finder file size

2009-04-07 Thread Jo Phils
an use it... Thank you very much, Rick ________ From: I. Savant To: Jo Phils Cc: cocoa dev Sent: Tuesday, April 7, 2009 11:13:19 PM Subject: Re: finder file size On Tue, Apr 7, 2009 at 11:09 AM, Jo Phils wrote: > My apologies if this has been answered before but isn't

Re: finder file size

2009-04-08 Thread Jo Phils
9 9:04 PM, Jo Phils said: > >> As for not using Carbon I suppose there's no reason I can't use it. I >> was just thinking with Finder going away from Carbon and since I'm just >> learning Cocoa I was trying to avoid it if I could. But if it's the &

nstoolbar in tiger

2009-04-16 Thread Jo Phils
Hello, I think I know the answer already but to be sure I'm not missing something if I want the equivalent of NSToolbar in Tiger I must create a custom window is that correct? Unless there's a trick I don't know about I can't use NSToolbar in Tiger right? Thanks for your input, Rick

Re: nstoolbar in tiger

2009-04-16 Thread Jo Phils
Hello and thanks for the replies! Yes it's what I.S. mentioned about doing with IB3. That clears it up and I'll just do it the old-fashioned way following the examples... :-) Thanks again, Rick From: I. Savant To: Kiel Gillard Cc: Jo Phils ;