Tagged Questions

Carbon is Apple's previous application-development framework for Mac OS X ([osx]), which existed primarily for applications that needed to remain compatible with the Classic Mac OS ([macos]). Most of the original Carbon APIs existed both on Mac OS X and in a dynamic library (CarbonLib) for Mac OS 9. Much of it is now deprecated and unavailable to 64-bit applications as of Mac OS X 10.6, but not all. Core Services (including the File Manager and even the

learn more… | top users | synonyms

17
votes
7answers
10k views

Carbon vs Cocoa, is Carbon a dead end with OS X?

What are the trade-offs for using Carbon vs. Cocoa considering a developer with about 15 years of programming experience already in C/C++. Is Carbon a dead end with OS X?
9
votes
1answer
420 views

OpenGL 3.2 context on a Carbon window (OS Lion, Mono)

I'm trying to add modern OS X support to OpenTK framework. Mac OS Lion supports OpenGL 3.2 Core context. I can successfully obtain it by using CGL. However, I can't find a straight way to bind the ...
8
votes
1answer
153 views

Is there a way to check if process is 64 bit or 32 bit?

I am trying to find process type (32 bit/ 64bit) from process pid? I get the process information and process list from using GetBSDProcessList method described here. how can we get the process type ...
8
votes
9answers
11k views

How can I determine the running Mac OS X version programmatically?

I have a program which needs to behave slightly differently on Tiger than on Leopard. Does anybody know of a system call which will allow me to accurately determine which version of Mac OS X I am ...
7
votes
2answers
508 views

Assembly GUI programming for Mac OS X

I’d like to know how can I do a simple assembly program for Mac OS X that shows a window on the screen and put some coloured text on that window. The code may call some Carbon or Cocoa APIs. I need ...
7
votes
2answers
326 views

Same QtOpenGL code runs as about 15 times slower when going to Carbon (vs Cocoa)

I'm developing a very simple application for the Mac OSX platform making use of Qt and OpenGL (and QtOpenGL) so crossplatform gets easier. The application receive a variable number of video streams ...
7
votes
0answers
297 views

Mac event tap just delays discarded events

I'm trying to write some code that discards all keyboard and mouse events when enabled on Mac OSX 10.6. My code runs as the root user. The approach I'm taking is to create an event tap that discards ...
7
votes
6answers
1k 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 currently active window ...
7
votes
4answers
2k views

OS X equivalent to OutputDebugString()?

I'm examining the feasibility of porting an existing Windows MFC control to OS X/Carbon. My test bed is a C++ Carbon application generated using the XCode 3 Wizard. I'm looking for a quick way to ...
6
votes
0answers
409 views

Programmatically open Mac Help menu

I'm integrating a GTK# application into Mac OS X. GTK on Mac OS X is a wrapper over some Cocoa and Carbon fundamentals. We have some platform-specific stuff directly using Carbon global menu APIs ...
6
votes
5answers
2k views

Compiling Bochs on Mac os x Snow Leopard

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... Ok, some more information ...
6
votes
5answers
3k views

Crafting .webloc file

I'm writing a program (for Mac OS X, using Objective-C) and I need to create a bunch of .webloc files programmatically. The .webloc file is simply file which is created after you drag-n-drop an URL ...
5
votes
1answer
179 views

Any way to make file resource forks uncopyable by Finder?

Is there any way to make resource forks uncopyable? In particular I'm setting a custom badge icon to the files contained in a specific directory through NSWorkspace via – setIcon:forFile:options: and ...
5
votes
3answers
171 views

How to filter and override text input in Mac OS X

I'm trying to figure out the ObjC code needed to detect whether a user in OSX is inputing text into a text field/area or not. I'd like to provide special keybindings and text expansion if they are. ...
5
votes
4answers
414 views

Apple Events to Control Mouse Remotely

I'm not even sure where to begin with this question... I want to be able to send mouse-click events to another machine, as if the user had clicked on that machine. I can do it on the same machine ...
5
votes
2answers
962 views

How can you load a font (TTF) from a file using Core Text?

Prior to OSX 10.6, ATSFontActivateFromFileSpecification/ATSFontActivateFromFileReference were available and could be used to load a font from a file. I can't find anything similar in Core Text.
5
votes
1answer
107 views

Cocoa equivalent of the Carbon method getPtrSize

I need to translate the a carbon method into cocoa into and I am having trouble finding any documentation about what the carbon method getPtrSize really does. From the code I am translating it seems ...
5
votes
1answer
3k views

Simulating key press events in Mac OS X

I'm writing an app where I need to simulate key press events on a Mac, given a code that represents each key. It seems I need to use the CGEventCreateKeyboardEvent function to create the event. The ...
5
votes
2answers
2k views

How to monitor global modifier key state (in any application)?

I'm using some Carbon code in my Cocoa project for handling global key events (shortcuts) from other applications. Currently I have setup a kEventHotKeyReleased event handler and I can successfully ...
5
votes
3answers
2k views

Globally hide mouse cursor in Cocoa/Carbon?

Is there a way to globally hide the mouse cursor for all apps in Cocoa (or Carbon)? Or at least replace it with something else? EDIT: Thanks for the input guys, but turns out Daniel Jalkut found the ...
5
votes
5answers
6k views

List of all users and groups

I'm trying to get a list of all users and all groups on Mac OS X 10.5+. How can I do this? For example, the list of all users on my machine should return: _amavisd, _appowner, _appserver, _ard, ...
5
votes
4answers
2k views

Editing resource forks on the command line on Mac OS X

Mac OS X stores some files with resource forks. I need to create a file with a resource fork. The trouble is, I need to create this file on the command line. Is anyone aware of how you can create a ...
4
votes
3answers
274 views

How can Mac OS X games receive low-level keyboard input events?

Games need low-level access to keyboard input. On Windows, there's DirectInput. But what technology do Mac OS X game developers use? Obviously, there's enough Mac games which get keyboard input just ...
4
votes
1answer
209 views

Trying to get a mouse-look camera working in OpenGL on Mac OSX

I've been working on a demo in OpenGL and I've been trying to implement an fps-like mouse-look camera. I've been using Max OSX Leopard, so I've had to use Carbon to get the screen coordinates and ...
4
votes
1answer
291 views

Way to listen in on all Apple Events?

I'm looking for a way to listen in to all Apple Events send by any program to any other program. There was an app, AEMonitor, that used to do this but it is abandonware as of now. Is there a known ...
4
votes
4answers
208 views

Where can I get resources for developing for Mac OS Classic?

I recently got bored and fired up my old Mac OS Classic emulator, and then got nostalgic for writing old-school applications for the system. So, my question: Where can I get dev tools that can ...
4
votes
2answers
466 views

Strange behaviour when posting CGEvent to PSN

EDIT - not getting much input on this so here's the skinny. I'm posting keyboard events to a PSN. I then switch to another window, post some more events (this time tat session level) and switch back ...
4
votes
2answers
609 views

How to force Mac window to foreground?

How can I programmatically force a mac window to be the front window? I have the window handle, and want to ensure that my window is displayed above all other windows. I can use both Carbon & ...
4
votes
3answers
503 views

Guides, Tutorials or Books about building MacOSX GUI apps with C++ in Xcode?

with GUI apps I mean not just a Unix command line application, but the whole .app bundle and a full Cocoa or Carbon application. Thanks! PS: I wasn't totally accurate with GUI application. I meant an ...
3
votes
1answer
36 views

Core Audio and the Phantom Device ID

So here's what is going on. I am attempting to work with Core Audio, specifically input devices. I want to mute, change volume, etc, etc. I've encountered something absolutely bizarre that I cannot ...
3
votes
3answers
165 views

Call Objective-C function from C function

currently i'm playing around a bit with global hotkeys in carbon and registered a hotkey. When the hotkey is pressed, this function is called: OSStatus myHotKeyHandler(EventHandlerCallRef ...
3
votes
2answers
462 views

Where does the Finder obtain the “date added” of an item in a folder?

If a folder is placed in the Dock you can sort it by "date added" - this is usually the default for the Downloads folder. (Sometimes the Finder does not appear to be using the date added but the date ...
3
votes
2answers
320 views

Send auto-repeated key using CoreGraphics methods (Mac OS X Snow Leopard)

I have been successful sending keystrokes in order to automate a particular software package for drawing that I use. This software relies a lot of keyboard shortcuts so I wrote something that could ...
3
votes
1answer
212 views

HICococaView not compiling with GCC 4.2

We have a large Carbon based (PowerPlant) application that we are looking finally to port over to Cocoa. We will be doing this incrementally and a first step is to try to get a Cocoa view into a ...
3
votes
2answers
647 views

XCode compile for Intel 32-64bit only

I'm trying to compile only for 32bit and 64bit. No matter what I choose in XCode, I can either compile for 64bit or for 32bit, 64bit and ppc. I don't want ppc at all. Anyone has any idea how to ...
3
votes
1answer
176 views

What is the correct JNA mapping for UniChar on Mac OS X?

I have a C struct like this: struct HFSUniStr255 { UInt16 length; UniChar unicode[255]; }; I have mapped this in the expected way: public class HFSUniStr255 extends Structure { public ...
3
votes
2answers
260 views

migrating an application from carbon to cocoa

I am working on an application in which I need to migrate the whole code of it from carbon to cocoa.I have experience in programming of C,C++,python and Java during my college time and internship but ...
3
votes
2answers
438 views

How can I stop HIToolbox from catching my exceptions?

This question follows on from my other question on why my app isn't being brought down by exceptions. The Problem When an exception is thrown on the main thread via an Action, the app still doesn't ...
3
votes
3answers
1k 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. I have looked for ...
3
votes
2answers
2k views

Mac OS X: Quickest way to kill/quit an entire process tree from within a Cocoa application

I know there are many questions and answers about this, but I am looking for an efficient and robust solution. I need to kill a process AND all it's child processes from within a Cocoa app. I got the ...
3
votes
5answers
1k views

How to detect whether an OS X application is already launched

Normally an application bundle on OS X can only be started once, however by simply copying the bundle the same application can be launched twice. What's the best strategy to detect and stop this ...
2
votes
1answer
67 views

How to refresh finder window?

I want to refresh icon for particular file/folder in Finder application. FNNotifyByPath( (const UInt8 *)folderPath, kFNDirectoryModifiedMessage, kNilOptions ); FNNotifyByPath is not working for ...
2
votes
0answers
91 views

How pause/resume FSCopyObjectAsync

There is a way to cancel FSCopyObjectAsync with calling FSFileOperationCancel(fileOp) by checking BOOL cancelClicked in statusCallback, but is there a way to pause/resume it by another flag? main{ ...
2
votes
3answers
150 views

How to Identify if the process in User Interface Process?

How can I get information from a process that it is UI(User Interface) process or non-ui? With UI process I mean, Finder, Dock, System UI server, or any other mac application which has UI interface ...
2
votes
1answer
70 views

Pre-Amplify Audio OS X

There are two apps for OS X that allow you to pre-amplify audio before it gets played by the hardware: Audio Hijack (pre-amplifies output from particular applications) and Boom (pre-amplifies all ...
2
votes
2answers
108 views

How do I determine if a user has a password set on Mac?

I need to determine if a user has a non-empty password set on Mac. Anything will work: a command line call, AppleScript, Carbon, Cocoa, etc. I want to inform the user whether or not they have a ...
2
votes
1answer
43 views

Detect if a system hotkey already defined with DDHotKey/Carbon

I'm trying to figure out how I can allow a user to customize their hotkey selection without stomping on an already configured system hotkey. Anybody implement something like this?
2
votes
2answers
106 views

How to write an OS X application that can effect changes (custom cursor, draw an image) even when it is not active?

I previously asked a question about changing the cursor system-wide on OSX. I used NSCursor to change the cursor, but the effects are only as long as the application is active. When another ...
2
votes
3answers
170 views

Apple GUI programming

I'm looking for a tutorial/guide on GUI programming in c++ for Mac OSX. I've made a small library and would like to make a simple graphic interface for it, since I would like to port my code someday ...
2
votes
2answers
176 views

Convert a given point from the window’s base coordinate system to the screen coordinate system

I am trying to figure out the way to convert a given point from the window’s base coordinate system to the screen coordinate system. I mean something like - ...

1 2 3 4 5 7