- Member wxArtProvider::Insert (wxArtProvider *provider)
- Use PushBack() instead.
- Member wxCalendarCtrl::EnableYearChange (bool enable=true)
- Member wxDialog::SetModal (bool flag)
- This function doesn't work for all ports, just use ShowModal() to show a modal dialog instead.
- Member wxIconizeEvent::Iconized () const
- This function is deprecated in favour of IsIconized().
- Member wxMBConv::MB2WC (wchar_t *out, const char *in, size_t outLen) const
- This function is deprecated, please use ToWChar() instead.
- Member wxMBConv::WC2MB (char *buf, const wchar_t *psz, size_t n) const
- This function is deprecated, please use FromWChar() instead.
- Member wxMenu::Append (int id, const wxString &item, wxMenu *subMenu, const wxString &helpString=wxEmptyString)
- This function is deprecated, use AppendSubMenu() instead.
- Member wxMenuItem::GetLabel () const
- This function is deprecated in favour of GetItemLabelText().
- Member wxMenuItem::GetLabelFromText (const wxString &text)
- This function is deprecated; please use GetLabelText() instead.
- Member wxMenuItem::GetName () const
- This function is deprecated. Please use GetItemLabel() or GetItemLabelText() instead.
- Member wxMenuItem::GetText () const
- This function is deprecated in favour of GetItemLabel().
- Member wxMenuItem::SetText (const wxString &text)
- This function is deprecated in favour of SetItemLabel().
- Class wxNotebookSizer
- This class is deprecated and should not be used in new code! It is no longer needed, wxNotebook control can be inserted into any sizer class and its minimal size will be determined correctly.
- Member wxPostScriptDC::wxPostScriptDC (const wxString &output, bool interactive=true, wxWindow *parent)
- This constructor is deprecated.
- Member wxPrintDialogData::SetSetupDialog (bool flag)
- This function has been deprecated since version 2.5.4.
- Member wxPrinterDC::wxPrinterDC (const wxString &driver, const wxString &device, const wxString &output, const bool interactive=true, int orientation=wxPORTRAIT)
- This constructor is deprecated and retained only for backward compatibility.
- Member wxShowEvent::GetShow () const
- This function is deprecated in favour of IsShown().
- Member wxSizer::Remove (wxWindow *window)
- The overload of this method taking a wxWindow* parameter is deprecated as it does not destroy the window as would usually be expected from Remove(). You should use Detach() in new code instead. There is currently no wxSizer method that will both detach and destroy a wxWindow item.
- Member wxTextInputStream::ReadString ()
- Use ReadLine() or ReadWord() instead.
- Member wxToolBar::OnRightClick (int toolId, float x, float y)
- This is the old way of detecting tool right clicks; although it will still work, you should use the EVT_TOOL_RCLICKED() macro instead.
- Member wxTreebook::SetSelection (size_t n)
- Please use ChangeSelection() instead.
- Member wxFindWindowByLabel
- Replaced by wxWindow::FindWindowByLabel().
- Member wxFindWindowByName
- Replaced by wxWindow::FindWindowByName().
- Member wxNewId
- Ids generated by it can conflict with the Ids defined by the user code, use
wxID_ANY to assign ids which are guaranteed to not conflict with the user-defined ids for the controls and menu items you create instead of using this function.
- Member wxPostDelete
- Replaced by wxWindow::Close(). See the window deletion overview.
- Member wxYield
- This function is kept only for backwards compatibility. Please use the wxApp::Yield method instead in any new code.
- Member wxTrace
- Use one of the wxLogTrace() functions or one of the wxVLogTrace() functions instead.
- Member wxTraceLevel
- Use one of the wxLogTrace() functions or one of the wxVLogTrace() functions instead.
- Member WXTRACE
- Use one of the wxLogTrace() functions or one of the wxVLogTrace() functions instead.
- Member WXTRACELEVEL
- Use one of the wxLogTrace() functions or one of the wxVLogTrace() functions instead.
- Member wxGetEmailAddress
- Use wxGetEmailAddress() instead.
- Member wxGetHostName
- Use wxGetHostName() instead.
- Member wxGetUserId
- Use wxGetUserId() instead.
- Member wxGetUserName
- Use wxGetUserName() instead.
- Member wxStringEq
- Use wxString instead.
- Member wxStringMatch
- Use wxString::Find() instead.
- Member wxUsleep
- This function is deprecated because its name is misleading: notice that the argument is in milliseconds, not microseconds. Please use either wxMilliSleep() or wxMicroSleep() depending on the resolution you need.