projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
upport wxFileDataObject change for UTF8 handling
[wxWidgets.git]
/
src
/
palmos
/
choice.cpp
diff --git
a/src/palmos/choice.cpp
b/src/palmos/choice.cpp
index 7f1a5a0bacf094710a0a92627af627c23e032685..7fbc1096f1190d75d91323128d3cd3e510c8915c 100644
(file)
--- a/
src/palmos/choice.cpp
+++ b/
src/palmos/choice.cpp
@@
-25,8
+25,9
@@
#if wxUSE_CHOICE
#if wxUSE_CHOICE
+#include "wx/choice.h"
+
#ifndef WX_PRECOMP
#ifndef WX_PRECOMP
- #include "wx/choice.h"
#include "wx/utils.h"
#include "wx/log.h"
#include "wx/brush.h"
#include "wx/utils.h"
#include "wx/log.h"
#include "wx/brush.h"
@@
-84,7
+85,7
@@
wxEND_HANDLERS_TABLE()
wxCONSTRUCTOR_4( wxChoice , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size )
#else
wxCONSTRUCTOR_4( wxChoice , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size )
#else
-IMPLEMENT_DYNAMIC_CLASS(wxChoice, wxControl)
+IMPLEMENT_DYNAMIC_CLASS(wxChoice, wxControl
WithItems
)
#endif
// ============================================================================
#endif
// ============================================================================
@@
-149,21
+150,19
@@
wxChoice::~wxChoice()
// adding/deleting items to/from the list
// ----------------------------------------------------------------------------
// adding/deleting items to/from the list
// ----------------------------------------------------------------------------
-int wxChoice::DoAppend(const wxString& item)
-{
- return 0;
-}
-
-int wxChoice::DoInsert(const wxString& item, int pos)
+int wxChoice::DoInsertItems(const wxArrayStringsAdapter& items,
+ unsigned int pos,
+ void **clientData,
+ wxClientDataType type)
{
return 0;
}
{
return 0;
}
-void wxChoice::D
elete(
int n)
+void wxChoice::D
oDeleteOneItem(unsigned
int n)
{
}
{
}
-void wxChoice::Clear()
+void wxChoice::
Do
Clear()
{
}
{
}
@@
-188,49
+187,33
@@
void wxChoice::SetSelection(int n)
// string list functions
// ----------------------------------------------------------------------------
// string list functions
// ----------------------------------------------------------------------------
-int wxChoice::GetCount() const
-{
- return 0;
-}
-
-int wxChoice::FindString(const wxString& s) const
+unsigned int wxChoice::GetCount() const
{
return 0;
}
{
return 0;
}
-void wxChoice::SetString(int n, const wxString& s)
+void wxChoice::SetString(
unsigned
int n, const wxString& s)
{
}
{
}
-wxString wxChoice::GetString(int n) const
+wxString wxChoice::GetString(
unsigned
int n) const
{
{
- wxString str;
-
- return str;
+ return wxEmptyString;
}
// ----------------------------------------------------------------------------
// client data
// ----------------------------------------------------------------------------
}
// ----------------------------------------------------------------------------
// client data
// ----------------------------------------------------------------------------
-void wxChoice::DoSetItemClientData(
int n, void* clientData
)
+void wxChoice::DoSetItemClientData(
unsigned int n, void* clientData
)
{
}
{
}
-void* wxChoice::DoGetItemClientData(
int n
) const
+void* wxChoice::DoGetItemClientData(
unsigned int n
) const
{
return (void *)NULL;
}
{
return (void *)NULL;
}
-void wxChoice::DoSetItemClientObject( int n, wxClientData* clientData )
-{
-}
-
-wxClientData* wxChoice::DoGetItemClientObject( int n ) const
-{
- return (wxClientData *)DoGetItemClientData(n);
-}
-
// ----------------------------------------------------------------------------
// wxMSW specific helpers
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// wxMSW specific helpers
// ----------------------------------------------------------------------------