0
votes
1answer
13 views
Linking against Apple frameworks with gcc
I've created some wrapper functions that encapsulate working with CoreAudio, and the goal is to create a C library that I can use with some command line C++ tools. So far things a …
1
vote
1answer
28 views
GetProcessForPID Failure
I've been using GetProcessForPID to get the process serial number from a PID, which I need as a parameter for some further API calls I'm making. Once in a while, it seemed that Get …
0
votes
1answer
16 views
CGWindowID from AXUIElement
I'm trying to automate a foreign OSX application using the accessibility API. Some of
the state of the application isn't available through the API, so I acquire it through
screen s …
0
votes
1answer
25 views
Preventing an application from being moved between spaces
Working on an application that contains legacy Carbon code (mixed with some Cocoa). It is a full screen app (not technically, it just draws itself as though it were) that hides the …
2
votes
5answers
117 views
Controlling OSX windows
I'm trying to control windows of a foreign OSX applications from my application. I'd like
to
1. move the windows on the screen
2. resize the windows on the screen
3. change the cur …
0
votes
2answers
40 views
When are -framework and -I/System/…/Example.framework/Headers/ needed?
I am trying to compile a JNI library which uses carbon from the command line.
If I don't -I/System/.../JavaVM.Framework/Headers/, It can't find any of the jni types, and gives err …
0
votes
2answers
144 views
Get the current working directory of process with a pid programmatically on OS X
Is there a way to get the current working directory of a process using it's PID programmatically on OS X?
Cocoa, Carbon, or AppleScript are all acceptable.
It is not acceptable t …
0
votes
1answer
9 views
Obtaining a proc pointer to a Carbon API at runtime
I have a Mac application that I must build against the Mac OS 10.4 SDK for various reasons beyond my control. Given that my application's minimum OS version will be 10.5. (I know, …
0
votes
2answers
93 views
Carbon in Cocoa Crashing: EXC_BAD_ACCESS after NSAutoreleasePool is released
I'm developing a Cocoa user interface for a Photoshop CS3 plugin using Bindings. (Carbon in Cocoa, since PS is a Carbon app) I'm getting a EXC_BAD_ACCESS error when I close my mo …
0
votes
1answer
65 views
Compiling Bochs on Mac os x Snow Leopard
Hi there,
Was someone able to compile the Bochs simulator under Snow Leopard. Leopard worked fine for me but under Snow Leopard I get alot of problems related to the Carbon library …
0
votes
2answers
64 views
Finding a word’s frame (position and size) on the screen using Cocoa or Carbon
Here's a tough one:
I need to be able to find a word's position and size (its frame) on the screen (its first occurence is enough, from there I should be able to get the next ones …
1
vote
3answers
90 views
Global Mouse Moved Events in Cocoa
Is there a way to register for global mouse moved events in Cocoa? I was able to register for the events using Carbon's InstallEventHandler(), but would prefer a Cocoa equivalent. …
0
votes
4answers
110 views
Starting programming Mac OS X
I'm starting a Mac OS X app that will connect to a small website I'm currently developing.
The idea is that the app will store a number of snippets on a local database and then sy …
0
votes
1answer
47 views
Creating a CFString object with JNA
I'm trying to get the hang of using JNA with Mac OS X. I want to access a Carbon library, for which there is no Cocoa equivalent, so Rococoa can't help me (I think...)
I'm stuck w …
0
votes
3answers
105 views
What’s the best way to find if the processor type is PPC or Intel in Cocoa? (Do I have to use Carbon?)
I need to get it as a string to use elsewhere in the program, I'm not worried about compiler settings.
I found HowToGetHardwareAndNetworkInfo on CocoaDev, but it seemed a little i …
