Searchable Cocoa and Carbon APIs?

2011-04-15 Thread li...@mgreg.com
Hi All, Probably been asked a million times before, but I'm looking for Apple's searchable Cocoa and Carbon APIs. In the past, I could enter something like double click in the search and it would return a reference to something like GetDblTime(). Now about 80% of my searches return nothing

Re: Searchable Cocoa and Carbon APIs?

2011-04-15 Thread Laurent Daudelin
On Apr 14, 2011, at 21:27, li...@mgreg.com wrote: Hi All, Probably been asked a million times before, but I'm looking for Apple's searchable Cocoa and Carbon APIs. In the past, I could enter something like double click in the search and it would return a reference to something like

Re: Searchable Cocoa and Carbon APIs?

2011-04-15 Thread li...@mgreg.com
On Apr 15, 2011, at 3:13 AM, Laurent Daudelin wrote: On Apr 14, 2011, at 21:27, li...@mgreg.com wrote: Hi All, Probably been asked a million times before, but I'm looking for Apple's searchable Cocoa and Carbon APIs. In the past, I could enter something like double click

Re: Searchable Cocoa and Carbon APIs?

2011-04-15 Thread Kyle Sluder
On Fri, Apr 15, 2011 at 9:44 AM, li...@mgreg.com li...@mgreg.com wrote: I posted two questions back-to-back.  I think your reply may have been for my other Xcode question.  This question certainly applies as it is regarding the Cocoa/Carbon API references. Yes, but the documentation

Re: Searchable Cocoa and Carbon APIs?

2011-04-15 Thread li...@mgreg.com
On Apr 15, 2011, at 1:34 PM, Kyle Sluder wrote: On Fri, Apr 15, 2011 at 9:44 AM, li...@mgreg.com li...@mgreg.com wrote: I posted two questions back-to-back. I think your reply may have been for my other Xcode question. This question certainly applies as it is regarding the Cocoa/Carbon

Finding Application support folder without Cocoa or Carbon

2010-07-12 Thread Alexander Cohen
Hello, I need to find the system Application Support folder without using either Carbon or Cocoa, i can use CoreFoundation though. Is there a way to do this? thx AC___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin

Re: Finding Application support folder without Cocoa or Carbon

2010-07-12 Thread Kevin Perry
You can use the C API in /usr/include/NSSystemDirectories.h. On Jul 12, 2010, at 1:17 PM, Alexander Cohen wrote: Hello, I need to find the system Application Support folder without using either Carbon or Cocoa, i can use CoreFoundation though. Is there a way to do this? thx

Re: Finding Application support folder without Cocoa or Carbon

2010-07-12 Thread Jean-Daniel Dupas
Le 12 juil. 2010 à 22:17, Alexander Cohen a écrit : Hello, I need to find the system Application Support folder without using either Carbon or Cocoa, i can use CoreFoundation though. Is there a way to do this? What prevent you to use CoreServices which is neither Carbon, nor Cocoa

Re: Finding Application support folder without Cocoa or Carbon

2010-07-12 Thread Laurent Cerveau
I think the lowest level you get this is with FSFindFolder laurent Sent from my road phone On Jul 12, 2010, at 10:17 PM, Alexander Cohen a...@toomuchspace.com wrote: Hello, I need to find the system Application Support folder without using either Carbon or Cocoa, i can use

Re: Finding Application support folder without Cocoa or Carbon

2010-07-12 Thread Alexander Cohen
Beautiful, thank you. AC On Jul 12, 2010, at 4:21 PM, Kevin Perry wrote: You can use the C API in /usr/include/NSSystemDirectories.h. On Jul 12, 2010, at 1:17 PM, Alexander Cohen wrote: Hello, I need to find the system Application Support folder without using either Carbon or Cocoa

Communication between Cocoa and Carbon threads

2010-05-05 Thread Abhijeet Singh
user interface needs to communicate with these Carbon threads. I have read in Mac OSX Technology overview that we can integrate Carbon with Cocoa application. So can anybody suggest what are the possible ways to send message from Cocoa thread to Carbon thread in an Cocoa Application. At present I

Re: Communication between Cocoa and Carbon threads

2010-05-05 Thread Jens Alfke
On May 4, 2010, at 10:30 PM, Abhijeet Singh wrote: I have read in Mac OSX Technology overview that we can integrate Carbon with Cocoa application. So can anybody suggest what are the possible ways to send message from Cocoa thread to Carbon thread in an Cocoa Application. There’s really

Cocoa and Carbon

2008-05-14 Thread Gerriet M. Denkmann
I always thought that Cocoa is an Objective-C API, which is a more convenient counterpart to the more verbose or more cumbersome C API of Carbon, which often gives more detailed control though. E.g. NSString has stringWithContentsOfFile:usedEncoding:error:, but Carbon has a Text Encoding

Re: Cocoa and Carbon

2008-05-14 Thread Jens Alfke
On 14 May '08, at 7:21 AM, Gerriet M. Denkmann wrote: So: what is the real difference between a Carbon application and a Cocoa one? Why would one create a Carbon application? Carbon applications generally don't use Cocoa or Objective-C at all. They use the High-Level Toolbox for GUI code.

Re: Cocoa and Carbon

2008-05-14 Thread Stefan Werner
On May 14, 2008, at 7:21 AM, Gerriet M. Denkmann wrote: I always thought that Cocoa is an Objective-C API, which is a more convenient counterpart to the more verbose or more cumbersome C API of Carbon, which often gives more detailed control though. You would hope that Cocoa and Carbon

Re: Cocoa and Carbon

2008-05-14 Thread Scott Ribe
It's about using the right tool for the job, sometimes Cocoa is the right tool, sometimes Carbon is. Also note that the definition of Carbon has evolved, becoming narrower over time, as more of the low-level APIs that do not relate to user interface have been rebranded Core instead of Carbon.