http://bugs.winehq.org/show_bug.cgi?id=36894
Bug ID: 36894 Summary: implement FlashWindowEx Product: Wine Version: 1.7.22 Hardware: x86 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: user32 Assignee: wine-bugs@winehq.org Reporter: lilydjwg@gmail.com CC: fracting@gmail.com
Currently FlashWindowEx does nothing. It makes programs like IMs unable to notify the user that it needs attention (received a new message etc). Some IMs like Tencent Messenager (TM) only uses this when an already open chat window receives new messages.
I suggest you implement this function by setting the urgent hint on Linux/X11.
I've verified that implementing this function helps in this (TM) situation:
BOOL WINAPI FlashWindowEx( PFLASHWINFO pfwi ) { FIXME("%p\n", pfwi); system("notify-send 'new message!'"); return TRUE; }
http://bugs.winehq.org/show_bug.cgi?id=36894
Qian Hong fracting@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever confirmed|0 |1
--- Comment #1 from Qian Hong fracting@gmail.com --- Confirming. Interesting bug...
https://bugs.winehq.org/show_bug.cgi?id=36894
--- Comment #2 from Austin English austinenglish@gmail.com --- This is your friendly reminder that there has been no bug activity for over a year. Is this still an issue in current (1.7.51 or newer) wine?
https://bugs.winehq.org/show_bug.cgi?id=36894
Jactry Zeng jactry92@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |c2dc6f3ef26fb18e7766956ef0a | |8cbadccc364d6 Status|NEW |RESOLVED CC| |jactry92@gmail.com Resolution|--- |FIXED
--- Comment #3 from Jactry Zeng jactry92@gmail.com --- Fixed: http://source.winehq.org/git/wine.git/commit/f22760d2102cee7752720d43f72b5e8... http://source.winehq.org/git/wine.git/commit/d2d114190ce64fc68322a1bbb6d2124... http://source.winehq.org/git/wine.git/commit/b007a98e1aa0ef53c4ace658d3c5c08... http://source.winehq.org/git/wine.git/commit/c2dc6f3ef26fb18e7766956ef0a8cba...
https://bugs.winehq.org/show_bug.cgi?id=36894
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #4 from Alexandre Julliard julliard@winehq.org --- Closing bugs fixed in 1.7.53.
https://bugs.winehq.org/show_bug.cgi?id=36894
--- Comment #5 from lilydjwg@gmail.com --- Thanks! It works as expected :-)