From 08a88c336884840ddc504c6175c294957f62fbc6 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sat, 10 Aug 2002 09:37:02 +0000 Subject: [PATCH] added control action for redraws (classic only) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16435 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/mac/control.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/wx/mac/control.h b/include/wx/mac/control.h index 4cf51df8f6..417d5d5bb0 100644 --- a/include/wx/mac/control.h +++ b/include/wx/mac/control.h @@ -75,6 +75,7 @@ public: virtual void MacSuperShown( bool show ) ; virtual bool MacCanFocus() const ; virtual void MacUpdateDimensions() ; + void* MacGetControlAction() { return m_macControlAction ; } virtual void DoSetSize(int x, int y,int width, int height,int sizeFlags = wxSIZE_AUTO ) ; void OnKeyDown( wxKeyEvent &event ) ; @@ -104,6 +105,7 @@ protected: protected: // For controls like radiobuttons which are really composite WXWidget m_macControl ; + void* m_macControlAction ; bool m_macControlIsShown ; wxList m_subControls; int m_macHorizontalBorder ;