X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..93bfe54527a7a64ea87cdc03be3015f7963fd227:/include/wx/motif/listbox.h diff --git a/include/wx/motif/listbox.h b/include/wx/motif/listbox.h index e8626bc398..8f4b5b04df 100644 --- a/include/wx/motif/listbox.h +++ b/include/wx/motif/listbox.h @@ -1,12 +1,12 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: listbox.h +// Name: wx/motif/listbox.h // Purpose: wxListBox class // Author: Julian Smart // Modified by: // Created: 17/09/98 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_LISTBOX_H_ @@ -22,7 +22,7 @@ class WXDLLEXPORT wxArrayInt; class WXDLLEXPORT wxListBox: public wxListBoxBase { DECLARE_DYNAMIC_CLASS(wxListBox) - + public: wxListBox(); wxListBox(wxWindow *parent, wxWindowID id, @@ -35,7 +35,7 @@ public: { Create(parent, id, pos, size, n, choices, style, validator, name); } - + wxListBox(wxWindow *parent, wxWindowID id, const wxPoint& pos, const wxSize& size, @@ -46,7 +46,7 @@ public: { Create(parent, id, pos, size, choices, style, validator, name); } - + bool Create(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, @@ -54,7 +54,7 @@ public: long style = 0, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxListBoxNameStr); - + bool Create(wxWindow *parent, wxWindowID id, const wxPoint& pos, const wxSize& size, @@ -62,9 +62,9 @@ public: long style = 0, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxListBoxNameStr); - + ~wxListBox(); - + // implementation of wxControlWithItems virtual int GetCount() const; virtual int DoAppend(const wxString& item); @@ -74,7 +74,7 @@ public: virtual wxClientData* DoGetItemClientObject(int n) const; virtual int GetSelection() const; virtual void Delete(int n); - virtual int FindString(const wxString& s) const; + virtual int FindString(const wxString& s, bool bCase = false) const; virtual void Clear(); virtual void SetString(int n, const wxString& s); virtual wxString GetString(int n) const; @@ -89,20 +89,20 @@ public: // For single or multiple choice list item void Command(wxCommandEvent& event); - + // Implementation virtual void ChangeBackgroundColour(); virtual void ChangeForegroundColour(); WXWidget GetTopWidget() const; #if wxUSE_CHECKLISTBOX - virtual void DoToggleItem(int item, int x) {}; + virtual void DoToggleItem(int WXUNUSED(item), int WXUNUSED(x)) {}; #endif protected: virtual wxSize DoGetBestSize() const; int m_noItems; - + // List mapping positions->client data wxClientDataDictionary m_clientDataDict; private: