1. '\n's in tooltip messages are handled (replaced by spaces anyhow, tooltip
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 23 Jan 2000 23:23:46 +0000 (23:23 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 23 Jan 2000 23:23:46 +0000 (23:23 +0000)
commit8614c467553e7dd8a5b9984683d73c89730b8ead
tree3aa8273fad87d37a86645990a990adda9a24602c
parentae80f83724464f0d178d85a60e1ba6e9a1c4ae8f
1. '\n's in tooltip messages are handled (replaced by spaces anyhow, tooltip
    made multiline if comctl32 supports it)
2. added wxTAB_TRAVERSAL to default wxScrolledWindow style
3. improved arrows handling in radiobox (still problems for multirow ones)
4. [Alt]-<mnemonic> works in nested panels as well now because we use
   WS_EX_CONTROLPARENT for all windows with wxTAB_TRAVERSAL style
5. tooltips for radioboxes work again, even if I'm not really satisfied with
   solution :-( but I spent 2 hours trying to make TTM_WINDOWFROMPOINT handler
   work and I don't have more time to waste on this.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5620 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
13 files changed:
docs/changes.txt
include/wx/generic/scrolwin.h
include/wx/msw/private.h
include/wx/msw/radiobox.h
include/wx/msw/spinbutt.h
include/wx/msw/spinctrl.h
include/wx/msw/tooltip.h
src/generic/panelg.cpp
src/msw/app.cpp
src/msw/radiobox.cpp
src/msw/textctrl.cpp
src/msw/tooltip.cpp
src/msw/window.cpp