X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b36e08d0867cf3f6a5a286ce145c0fb80746c290..2fea6972c7975a59b3cb2470c3d320402dfa2f97:/src/palmos/choice.cpp?ds=sidebyside diff --git a/src/palmos/choice.cpp b/src/palmos/choice.cpp index d9ba679dd6..5ea2d6ea02 100644 --- a/src/palmos/choice.cpp +++ b/src/palmos/choice.cpp @@ -34,8 +34,6 @@ #include "wx/settings.h" #endif -#include "wx/palmos/private.h" - #if wxUSE_EXTENDED_RTTI WX_DEFINE_FLAGS( wxChoiceStyle ) @@ -85,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 // ============================================================================ @@ -132,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() { } @@ -150,21 +138,19 @@ wxChoice::~wxChoice() // adding/deleting items to/from the list // ---------------------------------------------------------------------------- -int wxChoice::DoAppend(const wxString& item) +int wxChoice::DoInsertItems(const wxArrayStringsAdapter& items, + unsigned int pos, + void **clientData, + wxClientDataType type) { return 0; } -int wxChoice::DoInsert(const wxString& item, unsigned int pos) +void wxChoice::DoDeleteOneItem(unsigned int n) { - return 0; } -void wxChoice::Delete(unsigned int n) -{ -} - -void wxChoice::Clear() +void wxChoice::DoClear() { } @@ -213,16 +199,7 @@ void wxChoice::DoSetItemClientData(unsigned int n, void* clientData) 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); + return NULL; } // ---------------------------------------------------------------------------- @@ -252,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