Displaying 2 results from an estimated 2 matches for "wxrbtypetable".
2004 Feb 24
1
Tweaks for 0.2
...renamed to
proper ''wxruby'' things ("validate" instead of "Validate").
2) The GetWindow method of WxValidator needs to be changed to:
VALUE
WxValidator::GetWindow(VALUE self)
{
wxRbValidator *ptr;
Data_Get_Struct(self, wxRbValidator, ptr);
return WxRbTypeTable::ConvertCppObject(ptr->GetWindow());
}
3) The following line needs to be added into dynamiccast.cpp Init method:
WXRB_ADD_TYPE_CONV(WxStaticText,"wxStaticText");
also, the line
#include "statictext.h"
needs to be added to the top.
Like I said, I can make a dif...
2003 Nov 18
0
New code checked in
...m Nick, including:
Added NULL_PEN and NULL_BRUSH
Added alt_down, control_down, shift_down, meta_down
methods to MouseEvent
Added support for returning subclasses of wxWindow''s that are not
yet wxruby objects. To do this, I added a wxpp type (DYNAMIC) that
calls wxRbTypeTable, which invokes the proper ruby wrapper. This can
probably be expanded for dynamic conversions of most wxObject based
objects.
Added support for XRC. It is left off in extconf.rb by default for
now. Currently the names for some of the methods are really lame
(load_dialog_su...