Added {S,G}etItem{Text,Background}Colour methods.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15257 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ron Lee
2002-04-24 20:31:46 +00:00
parent 470d7e4f3e
commit 5b98eb2fa6
4 changed files with 84 additions and 0 deletions

View File

@@ -910,6 +910,38 @@ int wxListCtrl::GetItemSpacing(bool isSmall) const
return ListView_GetItemSpacing(GetHwnd(), (BOOL) isSmall);
}
void wxListCtrl::SetItemTextColour( long item, const wxColour &col )
{
wxListItem info;
info.m_itemId = item;
info.SetTextColour( col );
SetItem( info );
}
wxColour wxListCtrl::GetItemTextColour( long item ) const
{
wxListItem info;
info.m_itemId = item;
GetItem( info );
return info.GetTextColour();
}
void wxListCtrl::SetItemBackgroundColour( long item, const wxColour &col )
{
wxListItem info;
info.m_itemId = item;
info.SetBackgroundColour( col );
SetItem( info );
}
wxColour wxListCtrl::GetItemBackgroundColour( long item ) const
{
wxListItem info;
info.m_itemId = item;
GetItem( info );
return info.GetBackgroundColour();
}
// Gets the number of selected items in the list control
int wxListCtrl::GetSelectedItemCount() const
{
@@ -2407,3 +2439,5 @@ static void wxConvertToMSWListCol(int WXUNUSED(col), const wxListItem& item,
}
#endif // wxUSE_LISTCTRL
// vi:sts=4:sw=4:et