Tagged Questions
The modifier-key tag has no wiki summary.
4
votes
1answer
679 views
How to remap <C> (control) modifier key in vim?
I avoid the "control" key, AKA <C> in vim parlance, on my laptop; I hate where Apple put it. I would really like to remap all of the vim commands using control to instead use "command", but this ...
2
votes
4answers
947 views
Using Numpad with Modifier Keys exhibits curious behavior
I have a keyboard event listener, and I am listening for the number pad key codes (1 through 9) for when number lock is activated; this works fine. However, in my app I also want to allow usage of a ...
1
vote
1answer
391 views
Check modifierFlags of NSEvent if a certain modifier was pressed but no other
I just experimented with the addLocalMonitorForEventsMatchingMask:handler: method in NSEvent and came across the following question: How do I find out if only certain modifiers were pressed?
A short ...
1
vote
0answers
259 views
detect/get notification if shift key (modifier-key) pressed in uitextview
I'm trying to figure out if there is any way in which we can detect if shift key is pressed or if any notification is sent when shift key is pressed in UIKeyboard
(BOOL) textView:(UITextView ...
1
vote
1answer
311 views
SL4's ListBoxDragDropTarget modifier keys (shift, alt, ctrl) functionalities
I've recently started playing with Silverlight 4, and in one of my projects I'm required to use drag & drop functionality.
I use the ListBoxDragDropTarget, which is not a problem.
However I was ...
1
vote
2answers
154 views
jQuery: Link changing when modifier held down - but link stops working
I'm trying to create a link that points to URL 1 normally and to URL 2 when the shift key is held down. I arrived at this code sample, which properly switches the links (as indicated in the browser ...
1
vote
1answer
519 views
Qt: Detect Double-Click with Modkey (Shift, CTRL, etc.)
How can I detect whether a double click on a QWidget (QStatusBar, in my case) occured while a modifier key was held down?
I can overload void QWidget::mouseDoubleClickEvent ( QMouseEvent * event ) to ...
0
votes
2answers
141 views
What would it take to add new modifier keys to Windows?
From what I can tell, the notion of "Shift", "Alt", and "Control" are pretty well hard coded from the keyboard itself right through the OS APIs. Sometimes I see the Windows keys used as a modifier, ...