bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#3792: 23.1.50; other-window misbehaving with C-tab keybinding


From: YAMAMOTO Mitsuharu
Subject: bug#3792: 23.1.50; other-window misbehaving with C-tab keybinding
Date: Sat, 11 Jul 2009 16:44:47 +0900
User-agent: Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (Shijō) APEL/10.6 Emacs/22.3 (sparc-sun-solaris2.8) MULE/5.0 (SAKAKI)

>>>>> On Fri, 10 Jul 2009 09:13:55 -0600, Ivan Andrus <IAndrus@omniture.com> 
>>>>> said:

> I noticed that view-lossage shows two <C-tab> for every time I press
> it.  In nsterm.m it specifically checks for control-tab and
> references
> http://osdir.com/ml/editors.vim.mac/2007-10/msg00141.html
> Which in turn references
> https://bugzilla.mozilla.org/show_bug.cgi?id=374076#c12

> Which makes me think that in Mac OS 10.4 the control-tab keyDown
> event isn't sent, but in 10.5 it is.  Or at the very least in the
> latest version of 10.5 (I'm running 10.5.7) it sends a keyDown
> event.

FWIW, the latest release of my Carbon+AppKit port (*), which also uses
Cocoa for GUI stuff, has the problem that it doesn't recognize
Control-Tab on Mac OS X 10.4 and earlier.  And I'm planning to add the
following change to the next release:

*: http://lists.gnu.org/archive/html/emacs-devel/2009-06/msg00532.html

*** ../../emacs-22.3-appkit-1.4/src/macappkit.m 2009-06-27 13:49:25.000000000 
+0900
--- macappkit.m 2009-07-10 10:54:02.000000000 +0900
*************** static EventRef peek_if_next_event_activ
*** 747,753 ****
        if (!(mac_mapped_modifiers (modifiers, [event keyCode])
              & ~(mac_pass_command_to_system ? cmdKey : 0)
              & ~(mac_pass_control_to_system ? controlKey : 0))
!           && ([NSApp keyWindow] || (flags & NSCommandKeyMask)))
          goto OTHER;
  
        characters = [event characters];
--- 747,764 ----
        if (!(mac_mapped_modifiers (modifiers, [event keyCode])
              & ~(mac_pass_command_to_system ? cmdKey : 0)
              & ~(mac_pass_control_to_system ? controlKey : 0))
!           && ([NSApp keyWindow] || (flags & NSCommandKeyMask))
! #if MAC_OS_X_VERSION_MIN_REQUIRED < 1050
!           /* This is a workaround for the problem that Control-Tab
!              is not recognized on Mac OS X 10.4 and earlier.  */
!           && !(floor (NSAppKitVersionNumber) <= NSAppKitVersionNumber10_4
!                && [[[NSApp keyWindow] firstResponder]
!                     isMemberOfClass:[EmacsView class]]
!                && [event keyCode] == 0x30 /* kVK_Tab */
!                && ((flags & (NSControlKeyMask | NSCommandKeyMask))
!                    == NSControlKeyMask))
! #endif
!           )
          goto OTHER;
  
        characters = [event characters];

On Mac OS X 10.4 and earlier, the first responder object doesn't
receive the keyDown: message for Control-Tab.  But still NSApplication
and NSWindow objects can detect such NSKeyDown events via sendEvent:.

Processing key events at the timing of keyUp: gives a strange feeling
to the user because the command bound to the key is executed much
later than expected and auto-repeat does not work.

                                     YAMAMOTO Mitsuharu
                                mituharu@math.s.chiba-u.ac.jp





reply via email to

[Prev in Thread] Current Thread [Next in Thread]