X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..9ead8387d02667092186a7dd2671bacbd010406a:/include/wx/motif/listbox.h?ds=sidebyside diff --git a/include/wx/motif/listbox.h b/include/wx/motif/listbox.h index 3d35c9b4e0..8f4b5b04df 100644 --- a/include/wx/motif/listbox.h +++ b/include/wx/motif/listbox.h @@ -1,21 +1,17 @@ ///////////////////////////////////////////////////////////////////////////// -// 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: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_LISTBOX_H_ #define _WX_LISTBOX_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "listbox.h" -#endif - #include "wx/ctrlsub.h" #include "wx/clntdata.h" @@ -26,7 +22,7 @@ class WXDLLEXPORT wxArrayInt; class WXDLLEXPORT wxListBox: public wxListBoxBase { DECLARE_DYNAMIC_CLASS(wxListBox) - + public: wxListBox(); wxListBox(wxWindow *parent, wxWindowID id, @@ -39,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, @@ -50,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, @@ -58,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, @@ -66,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); @@ -78,13 +74,13 @@ 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; // implementation of wxListBoxbase - virtual void SetSelection(int n, bool select = TRUE); + virtual void DoSetSelection(int n, bool select); virtual void DoInsertItems(const wxArrayString& items, int pos); virtual void DoSetItems(const wxArrayString& items, void **clientData); virtual void DoSetFirstItem(int n); @@ -93,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: