wxListCtrl wxMac 2.8.0

Stefan Csomor csomor at advancedconcepts.ch
Wed Dec 20 04:26:45 PST 2006


Hi Alicia

> I did not even know that WX had a bug tracking system at SourceForge.
> Up until now I have been posting bugs to this mailing list.  My Bad!
> Do
> you want me to create new bug reports for the wxFont & wxListCtrl
> bugs
> on wxMac 2.8.0, or has that already been done?

For the the static text this isn't necessary anymore, it has been fixed
(hopefully) this morning, please retest with CVS HEAD (stattext.cpp
revision should be 1.69) and if not fixed, report back
 
> I am not sure about what you meant about the old generic
> implimentation
> that Kevin mentioned.  Should I rebuild my WX library for wxMac 2.8.0
> by adding the "--enable-stl" option to configure?  Is there something
> wrong
> with my WX configure options below which is causing the wxListCtrl to
> add
> list items in the wrong order?  Is there something else that I can do
> to get it
> to work.

We have a facility called wxSystemOptions, this is kind of a system wide
hashtable that can be used to tune behavior at runtime, ie if there are
two implementation, both having their advantages and their
disadvantages, then you can switch the default at runtime,

This was the link Kevin gave you :

http://www.lpthe.jussieu.fr/~zeitlin/wxWindows/docs/wxwin_wxsystemoption
s.html#wxsystemoptions

ie to use the 'generic' list control implementation instead of the
native list control, in your app init you write

wxSystemOptions::SetOption( wxT("mac.listctrl.always_use_generic"), 1 );

this value is 0 default, leading to a native list control, and with the
line above you set it to 1 getting the generic (old) implementation

Best

STefan







More information about the wx-users mailing list