Re: [Inkscape-devel] NEW: paste size
It would be nice to get more copy paste style elements, or even a copy paste that works with the apple command key instead of the ctrl key.
On Mon, 27 Mar 2006 07:37:57 -0700 , "Joshua A. Andler" <joshua@...533...> wrote:
Joshua A. Andler wrote:
This qualifies as one of those enhancements that I never knew I needed. FANTASTIC! This is easily one of the greatest improvements I've seen in a while. It has all options I'd need and is everything I'd hope it would be. Rock on Bulia!
Of course I spoke too soon about all the options I'd need. ;) I thought of two more size related paste options, what about pasting width or height and constraining proportions? I know that sometimes I need the width to match, but need the height scaled proportionally with it (such as a logo). What are your thoughts on this?
-Josh
This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&da... _______________________________________________ Inkscape-devel mailing list Inkscape-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/inkscape-devel
On 3/27/06, Martin Owens <doctormo@...1114...> wrote:
It would be nice to get more copy paste style elements
What are "elements" here?
, or even a copy paste that works with the apple command key instead
of the ctrl key.
I don't think GTK gives as an access to this key. If you know how to add it without disrupting other platforms, let me know and I'll do it.
-- bulia byak Inkscape. Draw Freely. http://www.inkscape.org
On Mon, 27 Mar 2006, bulia byak wrote:
On 3/27/06, Martin Owens <doctormo@...1114...> wrote:
or even a copy paste that works with the apple command key instead of the ctrl key.
I don't think GTK gives as an access to this key. If you know how to add it without disrupting other platforms, let me know and I'll do it.
GTK does give access to the key. The following is true for my Mac, with no xmodmap changes:
Apple keysyms are GDK_Meta_L and GDK_Meta_R Apple key modifier is GDK_MOD2_MASK
Alt/Option keysym is GDK_Mode_switch Alt/Option modifier is GDK_MOD1_MASK
I point out the behaviour of Alt since the Alt/Option key on Macs does not return GDK_Alt_{L,R} as might be expected. Though it does return the same modifier as on Linux. This means Alt works in the places in Inkscape that check with modifiers but not places where the key press itself is checked.
I'm not sure of the right way to do Apple key shortcuts. Maybe it is to have all the logic that tests for Control (e.g., MOD__CTRL) return true if the Apple key is down, so that it acts as an extra Control key? Alternatively, we could use the shortcuts XML mechanism (is this all working properly now?) to have a separate set of keyboard shortcuts using "Apple+Key" on Mac, which allows more versatility? Or maybe a modifier specified in the XML that resolves to Ctrl on Windows and Linux, and the Apple key on Macs?
Cheers, Michael
On Mar 27, 2006, at 7:27 PM, Michael Wybrow wrote:
I'm not sure of the right way to do Apple key shortcuts. Maybe it is to have all the logic that tests for Control (e.g., MOD__CTRL) return true if the Apple key is down, so that it acts as an extra Control key?
Might want to get with the guys doing the port of GTK+ to native OS X.
participants (4)
-
bulia byak
-
Jon A. Cruz
-
Martin Owens
-
Michael Wybrow