X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1a87edf286921de9b182f3d19adb6bb63ba85ebd..bb0d2f03799ab820de5dce791a17e66089247097:/include/wx/msw/radiobox.h diff --git a/include/wx/msw/radiobox.h b/include/wx/msw/radiobox.h index ac8dac414d..b8ecc5d72b 100644 --- a/include/wx/msw/radiobox.h +++ b/include/wx/msw/radiobox.h @@ -12,10 +12,6 @@ #ifndef _WX_RADIOBOX_H_ #define _WX_RADIOBOX_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "radiobox.h" -#endif - #include "wx/statbox.h" class WXDLLEXPORT wxSubwindows; @@ -93,7 +89,7 @@ public: virtual wxString GetString(int n) const; virtual void SetString(int n, const wxString& label); virtual bool Enable(int n, bool enable = true); - virtual void Show(int n, bool show = true); + virtual bool Show(int n, bool show = true); virtual int GetColumnCount() const { return GetNumHor(); } virtual int GetRowCount() const { return GetNumVer(); } @@ -144,6 +140,13 @@ protected: int sizeFlags = wxSIZE_AUTO); virtual wxSize DoGetBestSize() const; +#ifndef __WXWINCE__ + virtual WXHRGN MSWGetRegionWithoutChildren(); + virtual WXLRESULT MSWWindowProc(WXUINT nMsg, + WXWPARAM wParam, + WXLPARAM lParam); +#endif // __WXWINCE__ + // the buttons we contain wxSubwindows *m_radioButtons;