in reply to Re^3: wxPerl: is wxListCtrl Get/SetItemFont implemented? and further important questions
in thread wxPerl: is wxListCtrl Get/SetItemFont implemented? and further important questions
Probably because is not implemented.
:) listctrl->GetItem()->SetFont() is implemented
$ perl -MWx -le " print for grep/font/i, keys %Wx::ListItem:: " SetFont GetFont
Although, its really not that hard to implement :) the hard part is figuring out which version of wxWidgets API it was added in
sub Wx::ListCtrl::GetItemFont { $_[0]->GetItem($_[1])->GetFont } sub Wx::ListCtrl::SetItemFont { $_[0]->GetItem($_[1])->SetFont($_[2]) +}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: wxPerl: is wxListCtrl Get/SetItemFont implemented? ( Wx::ListCtrl::GetItemFont, Wx::ListCtrl::SetItemFont )
by HelenCr (Monk) on Mar 26, 2013 at 08:48 UTC | |
by Anonymous Monk on Mar 26, 2013 at 09:33 UTC | |
by HelenCr (Monk) on Mar 26, 2013 at 10:25 UTC |