search for: listctrl_virtu

Displaying 3 results from an estimated 3 matches for "listctrl_virtu".

Did you mean: listctrl_virtual
2006 Apr 23
1
Fixes for ListControl
These patches fix the ListCtrl_virtual demo. Note I changed the loading of the icon to the loading of a bitmap. I remember discussing this before. For some reason the .xpm loader isn''t initialized properly for Wx::Icon. However, the function will take a bitmap just fine so this works. This also adds directors for wxL...
2009 Sep 05
5
Filling Wx::ListCtrl with contents
Hi all, I''ve got a question concerning ListCtrl_virtual of wxRuby since I see no way filling the list with dynamic contents. I''m new to Ruby so I maybe have to apologise for my request. The problem is, that I have to define the on_get_item_text(item, col) function. There I would like to use the item and col variables to read data from a two-...
2009 Oct 24
6
Working with ListCtrl and ListItem
Hi List, I''m trying to get my ListCtrl to work. Currently I''ve managed to fill my ListCtrl with items, but I think it''s not the most beautiful way: class MyList < Wx::ListCtrl def initialize(parent, *args) super(parent, :style => Wx::LC_REPORT|LC_HRULES ) create_layout fill_list end def create_layout self.insert_column(0, "Name")