1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/listbox.h
3 // Purpose: wxListBox class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_LISTBOX_H_
13 #define _WX_LISTBOX_H_
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
22 class WXDLLIMPEXP_FWD_CORE wxOwnerDrawn
;
24 // define the array of list box items
25 #include "wx/dynarray.h"
27 WX_DEFINE_EXPORTED_ARRAY_PTR(wxOwnerDrawn
*, wxListBoxItemsArray
);
28 #endif // wxUSE_OWNER_DRAWN
30 // forward decl for GetSelections()
31 class WXDLLIMPEXP_FWD_BASE wxArrayInt
;
33 // ----------------------------------------------------------------------------
35 // ----------------------------------------------------------------------------
37 class WXDLLIMPEXP_CORE wxListBox
: public wxListBoxBase
41 wxListBox() { Init(); }
42 wxListBox(wxWindow
*parent
, wxWindowID id
,
43 const wxPoint
& pos
= wxDefaultPosition
,
44 const wxSize
& size
= wxDefaultSize
,
45 int n
= 0, const wxString choices
[] = NULL
,
47 const wxValidator
& validator
= wxDefaultValidator
,
48 const wxString
& name
= wxListBoxNameStr
)
52 Create(parent
, id
, pos
, size
, n
, choices
, style
, validator
, name
);
54 wxListBox(wxWindow
*parent
, wxWindowID id
,
57 const wxArrayString
& choices
,
59 const wxValidator
& validator
= wxDefaultValidator
,
60 const wxString
& name
= wxListBoxNameStr
)
62 Create(parent
, id
, pos
, size
, choices
, style
, validator
, name
);
65 bool Create(wxWindow
*parent
, wxWindowID id
,
66 const wxPoint
& pos
= wxDefaultPosition
,
67 const wxSize
& size
= wxDefaultSize
,
68 int n
= 0, const wxString choices
[] = NULL
,
70 const wxValidator
& validator
= wxDefaultValidator
,
71 const wxString
& name
= wxListBoxNameStr
);
72 bool Create(wxWindow
*parent
, wxWindowID id
,
75 const wxArrayString
& choices
,
77 const wxValidator
& validator
= wxDefaultValidator
,
78 const wxString
& name
= wxListBoxNameStr
);
82 virtual unsigned int GetCount() const;
83 virtual wxString
GetString(unsigned int n
) const;
84 virtual void SetString(unsigned int n
, const wxString
& s
);
85 virtual int FindString(const wxString
& s
, bool bCase
= false) const;
87 virtual bool IsSelected(int n
) const;
88 virtual int GetSelection() const;
89 virtual int GetSelections(wxArrayInt
& aSelections
) const;
91 // return the index of the item at this position or wxNOT_FOUND
92 int HitTest(const wxPoint
& pt
) const { return DoHitTestList(pt
); }
93 int HitTest(wxCoord x
, wxCoord y
) const { return DoHitTestList(wxPoint(x
, y
)); }
95 // ownerdrawn wxListBox and wxCheckListBox support
97 // override base class virtuals
98 virtual bool SetFont(const wxFont
&font
);
100 bool MSWOnMeasure(WXMEASUREITEMSTRUCT
*item
);
101 bool MSWOnDraw(WXDRAWITEMSTRUCT
*item
);
103 // plug-in for derived classes
104 virtual wxOwnerDrawn
*CreateLboxItem(size_t n
);
106 // allows to get the item and use SetXXX functions to set it's appearance
107 wxOwnerDrawn
*GetItem(size_t n
) const { return m_aItems
[n
]; }
109 // get the index of the given item
110 int GetItemIndex(wxOwnerDrawn
*item
) const { return m_aItems
.Index(item
); }
112 // get rect of the given item index
113 bool GetItemRect(size_t n
, wxRect
& rect
) const;
115 // redraw the given item
116 bool RefreshItem(size_t n
);
117 #endif // wxUSE_OWNER_DRAWN
119 // Windows-specific code to update the horizontal extent of the listbox, if
120 // necessary. If s is non-empty, the horizontal extent is increased to the
121 // length of this string if it's currently too short, otherwise the maximum
122 // extent of all strings is used. In any case calls InvalidateBestSize()
123 virtual void SetHorizontalExtent(const wxString
& s
= wxEmptyString
);
126 bool MSWCommand(WXUINT param
, WXWORD id
);
127 WXDWORD
MSWGetStyle(long style
, WXDWORD
*exstyle
) const;
129 // under XP when using "transition effect for menus and tooltips" if we
130 // return true for WM_PRINTCLIENT here then it causes noticable slowdown
131 virtual bool MSWShouldPropagatePrintChild()
136 virtual wxVisualAttributes
GetDefaultAttributes() const
138 return GetClassDefaultAttributes(GetWindowVariant());
141 static wxVisualAttributes
142 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
)
144 return GetCompositeControlsDefaultAttributes(variant
);
147 // returns true if the platform should explicitly apply a theme border
148 virtual bool CanApplyThemeBorder() const { return false; }
150 virtual void OnInternalIdle();
152 virtual WXLRESULT
MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
155 virtual wxSize
DoGetBestClientSize() const;
157 virtual void DoClear();
158 virtual void DoDeleteOneItem(unsigned int n
);
160 virtual void DoSetSelection(int n
, bool select
);
162 virtual int DoInsertItems(const wxArrayStringsAdapter
& items
,
164 void **clientData
, wxClientDataType type
);
166 virtual void DoSetFirstItem(int n
);
167 virtual void DoSetItemClientData(unsigned int n
, void* clientData
);
168 virtual void* DoGetItemClientData(unsigned int n
) const;
170 // this can't be called DoHitTest() because wxWindow already has this method
171 virtual int DoHitTestList(const wxPoint
& point
) const;
173 // free memory (common part of Clear() and dtor)
176 unsigned int m_noItems
;
178 #if wxUSE_OWNER_DRAWN
180 wxListBoxItemsArray m_aItems
;
184 // common part of all ctors
187 // call this when items are added to or deleted from the listbox or an
188 // items text changes
189 void MSWOnItemsChanged();
191 // flag indicating whether the max horizontal extent should be updated,
192 // i.e. if we need to call SetHorizontalExtent() from OnInternalIdle()
193 bool m_updateHorizontalExtent
;
195 // flag set to true when we get a keyboard event and reset to false when we
196 // get a mouse one: this is used to find the correct item for the selection
198 bool m_selectedByKeyboard
;
200 DECLARE_DYNAMIC_CLASS_NO_COPY(wxListBox
)
203 #endif // wxUSE_LISTBOX