]> git.saurik.com Git - wxWidgets.git/commitdiff
Recognize the buddy text control as part of wxSpinCtrl.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 6 Sep 2009 14:31:25 +0000 (14:31 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 6 Sep 2009 14:31:25 +0000 (14:31 +0000)
This allows the code in wxWindowMSW::HandleCtlColor() to find the correct
control when handling the messages from the buddy control and hence setting
the colours for wxSpinCtrl works after this change.

Closes #1691.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61845 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/changes.txt
include/wx/msw/spinctrl.h

index 4e78622771087086298b9e31809f1e34618cca9c..2a841d11e9c8815078cb44c155f3d031fa2c36de 100644 (file)
@@ -413,6 +413,7 @@ MSW:
 - Fix wxTreeCtrl::UnselectItem() in single selection controls.
 - Allow customizing wxStandardPaths logic for program directory determination.
 - Use time in wxDateTime <-> SYSTEMTIME conversion (troelsk).
+- Setting colours for wxSpinCtrl now works.
 
 i18n:
 
index 26fb596c739c7dac8333ea1d615f28b64046cfab..02d229c748b1edafebde75c1fe9b592102e531db 100644 (file)
@@ -90,6 +90,9 @@ public:
     // process a WM_COMMAND generated by the buddy text control
     bool ProcessTextCommand(WXWORD cmd, WXWORD id);
 
+    // recognize buddy window as part of this control at wx level
+    virtual bool ContainsHWND(WXHWND hWnd) const { return hWnd == m_hwndBuddy; }
+
 protected:
     virtual void DoGetPosition(int *x, int *y) const;
     virtual void DoMoveWindow(int x, int y, int width, int height);