All what this patch will do is magically register the url schema tryton:// and then whenever the user clicks on a tryton url from any application (browsers, email client, chat) it will open Tryton client.
When the client is already running, clicking on the URL brings the focus to the tryton client but the tryton client does not handle whatever signal it is that osx creates for the event. So a second tab for a different model will not open up. I think it should be another ticket. Till then the workaround is:
You will then be able to see another tryton icon appear in the doc, but quickly disappear and the currently running tryton instance will then receive some sort of IPC signal. A new window will then appear in the currently running client.
Finally, I have this working, but it does take a couple of changes, and I need help to know if this is the right way to proceed.
Change 1: the gtk_osxapplication bundled with the tryton builds seem old. The gtk-mac-integration package that is installed by jhbuild on modern OSX versions seem to have gtkosx_application (change in underscore). This change can be seen here [1]. I have written a patch [2] which addresses this.
Change 2: In OSX, on clicking a URL with the tryton scheme, the OS generates a GURL event. If the application is not launched yet, the GURL event is automatically converted into sys.argv by the argv emulator bundled with py2app [3]. However, once the application is launched, there is no handler for the GURL event. I have written a patch [4] which listens to the GURL Event and reuses the _open_url functionality of the Main class. The patch uses pyobjc-core (which is currently not a dependency). I hope this can be treated like an OSX only dependency like py2app.
The alternative would be to use ctypes (loading Carbon by CDLL) and struct, but that would result in nothing less than 100 lines of scary code like the one in argv emulator of py2app [5].
Please suggest if you would like to have all these changes in a single review or as separate patches ?
Would you prefer the pyobjc dependency or would you like to have that in ctypes and struct ? I prefer the pyobjc one since its clean and simple.
For me, none of both solution are good because any running client can not necessary open any URL because it depends to which host it is already connected.
So for what I understand about the GURL of OSX is that it doesn't fit our needs because it consider that only one instance can handle all the URL.
I think we have to find a way to get OSX launch an instance for each URL.