X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/93cf77c076b699e8e0b3b0049bd4f80de15997dd..b15a4a4a268d6e9fc616039884ca1020943e8bc5:/src/stubs/combobox.cpp diff --git a/src/stubs/combobox.cpp b/src/stubs/combobox.cpp index f1bbccaeb0..568529db54 100644 --- a/src/stubs/combobox.cpp +++ b/src/stubs/combobox.cpp @@ -15,9 +15,7 @@ #include "wx/combobox.h" -#if !USE_SHARED_LIBRARY IMPLEMENT_DYNAMIC_CLASS(wxComboBox, wxControl) -#endif bool wxComboBox::Create(wxWindow *parent, wxWindowID id, const wxString& value, @@ -114,3 +112,52 @@ void wxComboBox::SetSelection(long from, long to) // TODO } +void wxComboBox::Append(const wxString& item) +{ + // TODO +} + +void wxComboBox::Delete(int n) +{ + // TODO +} + +void wxComboBox::Clear() +{ + // TODO +} + +int wxComboBox::GetSelection() const +{ + // TODO + return -1; +} + +void wxComboBox::SetSelection(int n) +{ + // TODO +} + +int wxComboBox::FindString(const wxString& s) const +{ + // TODO + return -1; +} + +wxString wxComboBox::GetString(int n) const +{ + // TODO + return wxString(""); +} + +wxString wxComboBox::GetStringSelection() const +{ + // TODO + return wxString(""); +} + +bool wxComboBox::SetStringSelection(const wxString& sel) +{ + // TODO + return FALSE; +}