X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8d656ea93c0f3d53f97a1c67244baa39d72b7334..7ef67c25ff5fb94f4e40c461f23c4075810a0513:/src/cocoa/radiobox.mm?ds=sidebyside diff --git a/src/cocoa/radiobox.mm b/src/cocoa/radiobox.mm index 37cffde012..93d5043e47 100644 --- a/src/cocoa/radiobox.mm +++ b/src/cocoa/radiobox.mm @@ -9,8 +9,12 @@ // Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// -#include "wx/app.h" -#include "wx/radiobox.h" +#include "wx/wxprec.h" +#ifndef WX_PRECOMP + #include "wx/app.h" + #include "wx/radiobox.h" + #include "wx/arrstr.h" +#endif //WX_PRECOMP #import @@ -19,6 +23,21 @@ BEGIN_EVENT_TABLE(wxRadioBox, wxControl) END_EVENT_TABLE() // WX_IMPLEMENT_COCOA_OWNER(wxRadioBox,NSTextField,NSControl,NSView) +bool wxRadioBox::Create(wxWindow *parent, wxWindowID winid, + const wxString& title, + const wxPoint& pos, + const wxSize& size, + const wxArrayString& choices, + int majorDim, + long style, const wxValidator& validator, + const wxString& name) +{ + wxCArrayString chs(choices); + + return Create(parent, winid, title, pos, size, chs.GetCount(), + chs.GetStrings(), majorDim, style, validator, name); +} + bool wxRadioBox::Create(wxWindow *parent, wxWindowID winid, const wxString& title, const wxPoint& pos, @@ -88,3 +107,8 @@ int wxRadioBox::GetRowCount() const return 0; } +wxSize wxRadioBox::DoGetBestSize() const +{ + return wxSize(50,50); +} +