To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=82684


User ekato changed the following:

                What    |Old value                 |New value
================================================================================
                      CC|''                        |'ekato,pl'
--------------------------------------------------------------------------------




------- Additional comments from [EMAIL PROTECTED] Sun Nov  4 07:55:26 +0000 
2007 -------
I think every key combination for input method should be handled at the first
priority.  For example, AquaSKK (http://aquaskk.sourceforge.jp/) input method
uses Control-j to switch input mode, however, current OpenOffice.org Mac will
change justification of text alignment instead of input mode change in AquaSKK.

Following change for salframeview.mm will do that, but as it seems there is no
way to check the key combination for input method is consumed in
NSTextInputMethod, the key combination like C-j with AquaSKK will be handled
twice (input mode change and then text alignment of OOO).  @pl:, what do you 
think?


ndex: salframeview.mm
===================================================================
RCS file: /cvs/gsl/vcl/aqua/source/window/Attic/salframeview.mm,v
retrieving revision 1.1.2.11
diff -u -r1.1.2.11 salframeview.mm
--- salframeview.mm     1 Nov 2007 13:48:47 -0000       1.1.2.11
+++ salframeview.mm     4 Nov 2007 07:38:19 -0000
@@ -461,6 +461,9 @@
         mpFrame->mnLastEventTime = static_cast<ULONG>( [pEvent timestamp] *
1000.0 );
         mpFrame->mnLastModifierFlags = [pEvent modifierFlags];

+        NSArray* pArray = [NSArray arrayWithObject: pEvent];
+        [self interpretKeyEvents: pArray];
+
         bool bHandleCommandKey = mpFrame->mpMenu ? false : true;
         if( (mpFrame->mnLastModifierFlags & NSControlKeyMask) ||
             ( (mpFrame->mnLastModifierFlags & NSCommandKeyMask) &&
bHandleCommandKey )
@@ -472,9 +475,6 @@
                 return;
         }

-        NSArray* pArray = [NSArray arrayWithObject: pEvent];
-        [self interpretKeyEvents: pArray];
-
         mbInKeyInput = false;
     }
 }

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to