I am trying to get dock click event on dock icon on Mac OS X. I am using Qt-Cocoa. Any help would be highly appreciated.
Thanks, Rahul
In Qt-Carbon, see Qt4 Mac Dock Icon Click. It explains how to install a reopen event handler.
In Qt-Cocoa, you should get the application delegate with [[NSApplication sharedApplicaion] delegate]
and add you own applicationShouldHandleReopen:hasVisibleWindows: method with class_addMethod. I have not actually tried this.