Как перебрать элементы CListCtrl?

Краткое описание:
Я получил экземпляр CTreectrl класс, в котором хранятся объекты, при выборе объекта отображается соответствующий отчет списка для этого объекта.
Мне необходимо настроить ширину столбцов экземпляра класса MyListCtrl, который происходит от CListCtrl так что данные в этих столбцах могут быть просмотрены пользователем без изменения размера столбцов.

Как я подхожу к своей задаче:
Я реализую метод InitColumnWidth, который вызывается, когда объект выбирается из дерева

    void COwnListCtrl::InitColumnWidth ( unsigned const * defwidth, BOOL chars )
{
/* find the largest string in each column and set column width accordingly
so that user no longer need to manually adjust columns width */

RECT r;
GetClientRect ( & r );
int* arrOfMaxColumnWidth = new int[NumCol]; // array where max length for columns will be stored
for (int i = 0; i < NumCol; ++i)
arrOfMaxColumnWidth[i] = 0; // initialize
tstring dataInColumn;
double Scale = ( defwidth && chars ) ? GetCharAveWidth ( * GetFont () ) : ( r.right * 0.01 );
int numberOfVisitedItems = 0;
do
{
dataInColumn = _T(""); // initialize
for (int col = 0; col < NumCol; ++col)
{
//DWORD const itemData = this->GetItemData(numberOfVisitedItems);

dataInColumn = this->GetSubItemString(this->GetItemData(numberOfVisitedItems), col);
/* 1-st varaint returns only first row of the list
because GetItemData always returns zero, but I need to visit all rows */
dataInColumn = this->GetSubItemString(numberOfVisitedItems, col);
/* 2-nd variant, works for most objects from CTreeCtrl, but for a few of them assertion is raised, system reports on the corrupted heap and application terminates*/
if (dataInColumn.length() > arrOfMaxColumnWidth[col])
arrOfMaxColumnWidth[col] = dataInColumn.length();
}
++numberOfVisitedItems;
}
while(dataInColumn.length() != 0); /* do{} while loop is used to get number of rows in the table
as long as an empty string is read, which means that all rows were read*/
for (int col = 0; col < NumCol; ++col)
int tmp = ColWidth[col] = arrOfMaxColumnWidth[col] * Scale;
ColWidth[0] = 100;

Нужна помощь!

0

Решение

используйте это (замените for (int col = 0; col < NumCol; ++col) с кодом ниже):

for (int col = 0; col < NumCol; ++col)
{
int len = 0;
for(int row = 0; this->GetItemCount(); ++row)
{
CString item = this->GetItemText(row, col);
if(item.GetLength() > len) len = item.GetLength();
}
if (len > arrOfMaxColumnWidth[col])
arrOfMaxColumnWidth[col] = len; // should you multiple it to Scale?
}
2

Другие решения

Не нужно изобретать велосипед. Если вы просто хотите изменить размер столбцов в соответствии с текстом, попробуйте:

for (int i = 0; i < NumCol; ++i)
ListView_SetColumnWidth( m_hWnd, i, LVSCW_AUTOSIZE );
1