FLTK 1.1.8
Win32
I need to refresh the outside labels of some widgets without rapaint
the whole group.
The labels normally are drawed in Fl_Group::draw_children(),
with draw_outside_label().
So i've grabbed some code and i try to draw my label in this mode:
  fl_push_no_clip();
  fl_font(widget->labelfont(), widget->labelsize());
  fl_color(parent->color());
  fl_rectf(X,Y,W,H);
  widget->draw_label(X,Y,W,H,(Fl_Align)a);
  fl_pop_clip();
but nothing is displayed.
If i use the same code in a Fl_Window all work.

Any ideas?

Thanks in advance



_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to