X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/aa61d3525370a9b9fa8c797d9b7f89d96994db5f..b1859b1a1b35194abb9d55a35d8bad202db39776:/src/palmos/choice.cpp diff --git a/src/palmos/choice.cpp b/src/palmos/choice.cpp index e0b31045ce..36613fe84f 100644 --- a/src/palmos/choice.cpp +++ b/src/palmos/choice.cpp @@ -25,16 +25,15 @@ #if wxUSE_CHOICE +#include "wx/choice.h" + #ifndef WX_PRECOMP - #include "wx/choice.h" #include "wx/utils.h" #include "wx/log.h" #include "wx/brush.h" #include "wx/settings.h" #endif -#include "wx/palmos/private.h" - #if wxUSE_EXTENDED_RTTI WX_DEFINE_FLAGS( wxChoiceStyle ) @@ -84,7 +83,7 @@ wxEND_HANDLERS_TABLE() wxCONSTRUCTOR_4( wxChoice , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size ) #else -IMPLEMENT_DYNAMIC_CLASS(wxChoice, wxControl) +IMPLEMENT_DYNAMIC_CLASS(wxChoice, wxControlWithItems) #endif // ============================================================================ @@ -131,16 +130,6 @@ bool wxChoice::Create(wxWindow *parent, return false; } -bool wxChoice::MSWShouldPreProcessMessage(WXMSG *pMsg) -{ - return false; -} - -WXDWORD wxChoice::MSWGetStyle(long style, WXDWORD *exstyle) const -{ - return 0; -} - wxChoice::~wxChoice() { } @@ -149,21 +138,19 @@ wxChoice::~wxChoice() // adding/deleting items to/from the list // ---------------------------------------------------------------------------- -int wxChoice::DoAppend(const wxString& item) -{ - return 0; -} - -int wxChoice::DoInsert(const wxString& item, unsigned int pos) +int wxChoice::DoInsertItems(const wxArrayStringsAdapter& items, + unsigned int pos, + void **clientData, + wxClientDataType type) { return 0; } -void wxChoice::Delete(unsigned int n) +void wxChoice::DoDeleteOneItem(unsigned int n) { } -void wxChoice::Clear() +void wxChoice::DoClear() { } @@ -215,15 +202,6 @@ void* wxChoice::DoGetItemClientData(unsigned int n) const return (void *)NULL; } -void wxChoice::DoSetItemClientObject(unsigned int n, wxClientData* clientData ) -{ -} - -wxClientData* wxChoice::DoGetItemClientObject(unsigned int n) const -{ - return (wxClientData *)DoGetItemClientData(n); -} - // ---------------------------------------------------------------------------- // wxMSW specific helpers // ---------------------------------------------------------------------------- @@ -251,14 +229,4 @@ wxSize wxChoice::DoGetBestSize() const return wxSize(0,0); } -WXLRESULT wxChoice::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) -{ - return 0; -} - -bool wxChoice::MSWCommand(WXUINT param, WXWORD WXUNUSED(id)) -{ - return false; -} - #endif // wxUSE_CHOICE