take images and margins into account when setting column width to wxLIST_AUTOSIZE_USEHEADER (patch 1664598)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44652 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-03-07 22:30:14 +00:00
parent 936632d3b2
commit d63c9ecf46

View File

@@ -3704,6 +3704,19 @@ void wxListMainWindow::SetColumnWidth( int col, int width )
if (width == wxLIST_AUTOSIZE_USEHEADER)
{
width = GetTextLength(column->GetText());
width += 2*EXTRA_WIDTH;
// check for column header's image availability
const int image = column->GetImage();
if ( image != -1 )
{
if ( m_small_image_list )
{
int ix = 0, iy = 0;
m_small_image_list->GetSize(image, ix, iy);
width += ix + HEADER_IMAGE_MARGIN_IN_REPORT_MODE;
}
}
}
else if ( width == wxLIST_AUTOSIZE )
{