Hi,
I think you need to do something link below...
Code:
void CMyItemDrawer::DrawActualItem ( TInt aItemIndex,
const TRect & aActualItemRect,
TBool aItemIsCurrent,
TBool aViewIsEmphasized,
TBool aViewIsDimmed,
TBool aItemIsSelected
) const {
if (aItemIndex == 3) {
// .. Draw custom drawing here
}
else {
CFormattedCellListBoxItemDrawer::DrawActualItem(aItemIndex, aActualItemRect, aItemIsCurrent,
aViewIsEmphasized, aViewIsDimmed, aItemIsSelected);
}
}
More on custom drawing is also in thread http://discussion.forum.nokia.com/fo...ad.php?t=85954
-Datha