Sebastien wrote:> Bonjour. Je n''ai pas encore eu l''occasion
d''utiliser TE_RICH2 en plus
> de TE_RICH | TE_MULTILINE, je compte l''essay?.
> Pour rentrer le texte dans TextCtrl j''utilise : @dou <<
texte
> Sebastien
Sebastien - aussi, est-ce qu''il marche correctement si vous utiliser la
m?thode "set_style" comme ci:
attr = TextAttr.new(Colour.new("black"), NULL_COLOUR, @font)
@dou.set_style(0, @dou.get_last_position, attr)
( in case anyone else can help, this is following on from a forum
discussion:
http://rubyforge.org/forum/forum.php?thread_id=13171&forum_id=12981 )
Basically, when displaying some text in a TextCtrl using a custom font,
after a few thousand lines the text size reverts to the normal size when
it should be double normal size:
@font.set_point_size(NORMAL_FONT.get_point_size * 2)
@dou = TextCtrl.new(@s, -1, "", Point.new(10, 70), Size.new(410, 210),
TE_RICH | TE_MULTILINE)
@dou.set_default_style(TextAttr.new(Colour.new("black"), NULL_COLOUR,
@font))
alex