I'm trying to use a custom URL protocol to launch my Qt (4.7.3) application. I've already got it working for Windows, so now it is time for the Mac.
I've already done the necessary changes to the Info.plist, and have the application being launched when one enters 'customrprotocol://etc' in a browser. The problem is that I need some way of passing that entire URL into my application so I can process the arguments (only at the beginning of the application). At this stage no extra argument (argv[1]) is found like in Windows, despite typing out long URLs with my custom URL protocol.
At the moment, I've investigated two potential ways to do this:
1) Make an apple script that I turn into an application bundle whose .plist I modify to respond to customprotocol://, and have that simply launch my real application with 'do shell script' and pass in the URL as an argument. http://www.macosxautomation.com/applescript/linktrigger/index.html explains this process.
Not sure if I like this option, since you essentially have 2 application bundles at that point and I don't want to have to put two different applications on someone's Mac for this to work. I'm experimenting with putting one bundle in another to see if it works.
2) Handle the actual 'geturl' AppleEvent by incorporating objective-c into my project, which I've tried to do by following this example: URL scheme - Qt and mac.
My problem with this option is that I'm not quite sure how to go about it; I've thrown all the objective-c code into a .mm file that I bring into the project with an OBJECTIVE_SOURCES += objectivecstuff.mm, and I make sure to include the Cocoa framework as a library as well.
Everything compiles fine, but it simply doesn't do what I want it to do (I additionally try to throw the URL into a global variable in the linked example's 'handleGetURLEvent' method so I can process it in a different module).
I think the crux of the problem is that I don't understand the objective-c in that .mm file and am not sure if I need to somewhere instantiate this EventHandler object or whatever. I've tried reading through http://el-tramo.be/blog/mixing-cocoa-and-qt but this guy's example of integrating Cocoa into Qt looks far more C++-oriented then what appears to be the necessary stuff found in URL scheme - Qt and mac, so I'm not sure how to proceed with this option.
Would really appreciate some advice and suggestions at this point!
Thank you for reading.