1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxListBox class interface
4 // Author: Vadim Zeitlin
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_LISTBOX_H_BASE_
13 #define _WX_LISTBOX_H_BASE_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
23 #include "wx/ctrlsub.h" // base class
25 // forward declarations are enough here
26 class WXDLLIMPEXP_FWD_BASE wxArrayInt
;
27 class WXDLLIMPEXP_FWD_BASE wxArrayString
;
29 // ----------------------------------------------------------------------------
31 // ----------------------------------------------------------------------------
33 extern WXDLLIMPEXP_DATA_CORE(const char) wxListBoxNameStr
[];
35 // ----------------------------------------------------------------------------
36 // wxListBox interface is defined by the class wxListBoxBase
37 // ----------------------------------------------------------------------------
39 class WXDLLIMPEXP_CORE wxListBoxBase
: public wxControlWithItems
43 virtual ~wxListBoxBase();
45 void InsertItems(unsigned int nItems
, const wxString
*items
, unsigned int pos
)
46 { Insert(nItems
, items
, pos
); }
47 void InsertItems(const wxArrayString
& items
, unsigned int pos
)
48 { Insert(items
, pos
); }
50 // multiple selection logic
51 virtual bool IsSelected(int n
) const = 0;
52 virtual void SetSelection(int n
) { DoSetSelection(n
, true); }
53 void SetSelection(int n
, bool select
) { DoSetSelection(n
, select
); }
54 void Deselect(int n
) { DoSetSelection(n
, false); }
55 void DeselectAll(int itemToLeaveSelected
= -1);
57 virtual bool SetStringSelection(const wxString
& s
, bool select
);
58 virtual bool SetStringSelection(const wxString
& s
)
60 return SetStringSelection(s
, true);
63 // works for single as well as multiple selection listboxes (unlike
64 // GetSelection which only works for listboxes with single selection)
65 virtual int GetSelections(wxArrayInt
& aSelections
) const = 0;
67 // set the specified item at the first visible item or scroll to max
69 void SetFirstItem(int n
) { DoSetFirstItem(n
); }
70 void SetFirstItem(const wxString
& s
);
72 // ensures that the given item is visible scrolling the listbox if
74 virtual void EnsureVisible(int n
);
76 // a combination of Append() and EnsureVisible(): appends the item to the
77 // listbox and ensures that it is visible i.e. not scrolled out of view
78 void AppendAndEnsureVisible(const wxString
& s
);
80 // return true if the listbox allows multiple selection
81 bool HasMultipleSelection() const
83 return (m_windowStyle
& wxLB_MULTIPLE
) ||
84 (m_windowStyle
& wxLB_EXTENDED
);
87 // override wxItemContainer::IsSorted
88 virtual bool IsSorted() const { return HasFlag( wxLB_SORT
); }
90 // emulate selecting or deselecting the item event.GetInt() (depending on
91 // event.GetExtraLong())
92 void Command(wxCommandEvent
& event
);
94 // returns the item number at a point or wxNOT_FOUND
95 int HitTest(const wxPoint
& point
) const { return DoListHitTest(point
); }
97 // For generating events in multiple and extended mode
98 wxArrayInt m_oldSelections
;
99 void UpdateOldSelections();
100 void CalcAndSendEvent();
103 virtual void DoSetFirstItem(int n
) = 0;
105 virtual void DoSetSelection(int n
, bool select
) = 0;
107 // there is already wxWindow::DoHitTest() so call this one differently
108 virtual int DoListHitTest(const wxPoint
& WXUNUSED(point
)) const
109 { return wxNOT_FOUND
; }
112 DECLARE_NO_COPY_CLASS(wxListBoxBase
)
115 // ----------------------------------------------------------------------------
116 // include the platform-specific class declaration
117 // ----------------------------------------------------------------------------
119 #if defined(__WXUNIVERSAL__)
120 #include "wx/univ/listbox.h"
121 #elif defined(__WXMSW__)
122 #include "wx/msw/listbox.h"
123 #elif defined(__WXMOTIF__)
124 #include "wx/motif/listbox.h"
125 #elif defined(__WXGTK20__)
126 #include "wx/gtk/listbox.h"
127 #elif defined(__WXGTK__)
128 #include "wx/gtk1/listbox.h"
129 #elif defined(__WXMAC__)
130 #include "wx/osx/listbox.h"
131 #elif defined(__WXPM__)
132 #include "wx/os2/listbox.h"
133 #elif defined(__WXCOCOA__)
134 #include "wx/cocoa/listbox.h"
137 #endif // wxUSE_LISTBOX
140 // _WX_LISTBOX_H_BASE_