
The attached patch allows the global mapping of any single modifier key to Alt. The default behaviour is to leave Alt as the Alt key.
It adds an option to the preferences file: <group id="options"> <group id="mapalt" value="1" />
Where 'value' can be from 2 to 5 depending on which modifier you want to use instead of Alt (or, 1 to go back to Alt). My machine uses mod3 as the Meta key so I put '3' in here. I have not been able to find a definitive list of which mod values go with Meta/super/hyper etc. so I've left it up to the user to find out which one their machine uses for the key they want to use.
The method I had intended to use was a nightmare due to the separation of the various tool contexts, so I dropped it in favour of a simple event handler (called 'snooper', defined in main.cpp) which steals all the events coming from GDK, remapps the state of the modifier keys if needed and then passes them back on to be handled by gdk_main_do_event. This method is central and requires no changes to the various tool context sources and future developers of tools can continue to use GDK_MOD1_MASK as they do now. Likewise, the user sees all keystrokes and mouse button combinations that use Alt as now using Meta (or whatever they've picked); there's no confusion over keyboard shortcuts still using Alt while the mouse uses Meta or anything like that. It is possible to modify the event snooper to only map mouse combinations but I think a consistant, global mapping is less confusing.
The mapping and snooping are not activated unless the GUI is running.
As I said before, I'm no C++ programmer - this constitutes my second ever venture into C++ after "Hello World" - and there may be better ways to arrange this code, but I think the centralised event snooper is the only way to do it and perhaps having one will be useful for other things in the future. In any case, the maintainance issues of any other approach probably makes it "this way or not at all". If the patch is acceptable, I'd be happy to do up the user documentation.
One thing: I can't work out where the default preferences file is in the source tree, ie, the version that gets installed on a virgin machine. So I've not put the option into it, obviously. But the hardcoded default is to use Alt.
I've been enjoying "selecting under" and node sculpting today, so if nothing else, I'm happy!
Thomas Worthington