Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 nextHandler, EventRef anEvent, void *userData) {
    ...
}

This function is in my appdelegate. how do i now call a obj-c function from my delegate in that function, like

[self aFunction];

? i cant add a void* (as a pointer to my class instance) to the c function because i am not the one calling it...

i tried to convert the function into a class function and then call it with [AppDelegate aFunction], which works but then i cant use my instance objects!

the idea behind all this is that when the hotkey is pressed, all currently selected files in finder get processed. getting the selected files is not a problem, but then they are stored in an array of my class instance

share|improve this question

3 Answers

up vote 5 down vote accepted

Give the pointer to your class instance as parameter for userData when you register your event handler. You will then get this pointer back inside the handler as userData.

share|improve this answer
now it works, thanks. but i think i switch to the wrapper – Eike Cochu Jun 2 '11 at 20:42

You're reinventing the wheel. Use a wrapper:

http://github.com/davedelong/DDHotKey

well perhaps not a wheel, since hot keys aren't "trivial" concepts. maybe you're reinventing a differential? or something? ;)

share|improve this answer
thanks that did it also! i use that wrapper now – Eike Cochu Jun 2 '11 at 20:42

Example code

InstallApplicationEventHandler(&MyHotKeyHandler,1,&eventType,(void *)self,NULL);
...

OSStatus MyHotKeyHandler(EventHandlerCallRef nextHandler,EventRef theEvent,
                         void *userData)
{
    [(yourAppDelegate *)userData dosomething];
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.