To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87656
           이슈 번호|87656
                  요약|The quickstarter popup menu does not work correctly wh
                        |en IME toolbar is turned on
            컴포넌트|framework
                  버전|OOo 2.3
               플랫폼|All
                     URL|
               OS/버전|Windows XP
                  상태|NEW
           상태 요약|
               키워드|
           해결 상태|
           이슈 형식|DEFECT
           우선 순위|P3
     하위 컴포넌트|code
           지정 대상|tm
               보고자|jeongkyu





------- 추가된 코멘트 [EMAIL PROTECTED] 2008/03/31 15:27:08 +0000 -------
There was a bug report through Korean community forum that quickstarter popup
menu does not work properly. When clicking quickstarter icon, its popup menu is
sometimes messed up by Windows task bar popup menu which is popuped up at the
same time. While trying to reproduce the behavior, I found that this happens
only for OOo quickstarter only when IME toolbar is turned on. Here is a
screenshot to show the behavior on Korean version of Windows XP - there is no
problem when no IME toolbar, but the problem starts happening once IME toolbar
is turned on. 

http://openoffice.or.kr/files/ooo_systray.htm

My further research revealed that such behavior is caused by the difference of
system tray event on which OOo shows popup menu. **OOo shows popup menu on
WM_RBUTTONDOWN event by contrast with other applications usually show popup menu
on WM_RBUTTONUP event**.

When I changed the code like the following and tested it with my own DEV300_m3
build, I could verify the problem goes away.

---
(in sfx2/source/appl/shutdowniconw32.cxx)

case SFX_TASKBAR_NOTIFICATION:
  switch( lParam )
  {
  ...
--  case WM_RBUTTONDOWN:
++  case WM_RBUTTONUP:
    {
      POINT pt;
      GetCursorPos(&pt);
      SetForegroundWindow( hWnd );

---

Interestingly, this does not happen on Windows Vista. However, this causes
serious usability issue for Korean Windows XP users because IME toolbar is
turned on by default. I hope my fix could be applied at the earliest possible
version.

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://www.openoffice.org/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