[Bug 20964] New: Not re-registering icons in tray
http://bugs.winehq.org/show_bug.cgi?id=20964 Summary: Not re-registering icons in tray Product: Wine Version: 1.1.32 Platform: PC OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs(a)winehq.org ReportedBy: atari(a)gabo.pl If an aplication that holds system tray is restarted, or started after wine - icons from windows apps running under wine are not visible. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20964 Vitaliy Margolen <vitaliy(a)kievinfo.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |trivial -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20964 --- Comment #1 from Dmitry Timoshkov <dmitry(a)codeweavers.com> 2009-12-09 03:55:33 --- Is there an application that could be used as a test case? What application are you talking about? -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20964 Wylda <wylda(a)volny.cz> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |wylda(a)volny.cz --- Comment #2 from Wylda <wylda(a)volny.cz> 2009-12-09 04:00:56 ---
From my yesterday testing day, i noticed, that QIP for example puts an icon to the tray.
-- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20964 --- Comment #3 from Adam Klobukowski <atari(a)gabo.pl> 2009-12-09 04:23:30 --- uTorrent is a good testcase. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20964 Alex Balut <alexandru.balut(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |alexandru.balut(a)gmail.com --- Comment #4 from Alex Balut <alexandru.balut(a)gmail.com> 2010-05-11 16:10:48 --- What are the exact steps to reproduce this bug? -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20964 --- Comment #5 from Adam Klobukowski <atari(a)gabo.pl> 2010-05-12 00:21:27 --- 1. Start an application that registers tray icon (uTorrent for examle) 2. Remove or destroy somechow the tray area (in Gnome you can just remove it from panel) 3. Restore tray area. Wine managed icon are not restored. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20964 --- Comment #6 from Alex Balut <alexandru.balut(a)gmail.com> 2010-05-13 09:25:23 --- I was able to reproduce the bug with uTorrent (by removing the Notification Area plugin from the Gnome panel and adding it back). Ubuntu 9.10 64 default wine-1.1.43 uTorrent 2.0.1 (build 19248) -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20964 Vincent Povirk <madewokherd(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |orbar1(a)gmail.com --- Comment #7 from Vincent Povirk <madewokherd(a)gmail.com> 2010-05-15 17:59:38 --- *** Bug 21051 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20964 Danila Sentiabov <dsent.zen(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dsent.zen(a)gmail.com -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20964 --- Comment #8 from Andreas Fink <andreas.fink85(a)gmail.com> 2010-08-21 17:22:57 --- Created an attachment (id=30275) --> (http://bugs.winehq.org/attachment.cgi?id=30275) Simple patch which reregisters the icons This patch adds the ability for wine system tray icons (as for example uTorrent) to be readded to the systemtray if the systemtray is restarted. There are at least 2 limitations/problems: 1. An X11-systemtray has to be running in the first place (otherwise wine is adding the icon to the internal system tray, and the icon will never be added to the X11-systemtray) 2. XSelectInput(display, root_window, StructureNotifyMask) in the file x11drv_main.c is called for every X11 display wine opens, but it only needs to be called for the systemtray controlling one (I guess explorer.exe, but I did not dig deep enough through the wine code). Anyway this does not change any behaviour, except that we are calling the function X11DRV_DockAllTrayIcons(void) where the systray icon_list is empty. Another thing that maybe is not considering the coding guidelines is adding the function prototype X11DRV_DockAllTrayIcons(void) to dlls/winex11.drv/x11drv.h but otherwise I did not know how to let the systray know, that a new systemtray did register (in event.c we get the notification). -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20964 Andreas Fink <andreas.fink85(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andreas.fink85(a)gmail.com -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20964 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED --- Comment #9 from Alexandre Julliard <julliard(a)winehq.org> 2010-11-10 06:08:08 CST --- This should work now. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20964 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #10 from Alexandre Julliard <julliard(a)winehq.org> 2010-11-12 13:33:53 CST --- Closing bugs fixed in 1.3.7. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
participants (1)
-
wine-bugs@winehq.org