[fltk.general] static text widget

2011-10-07 Thread David
What would be the equivalent of a windows static text control in fltk widgets? Also, Is there a cheat sheet that gives the various windows controls and the equivalent for fltk widget? TIA!! ___ fltk mailing list fltk@easysw.com

Re: [fltk.general] static text widget

2011-10-07 Thread Ian MacArthur
On 7 Oct 2011, at 19:50, David wrote: What would be the equivalent of a windows static text control in fltk widgets? No idea - what's a static text control do? If you just want to display some static text, use a simple Fl_Box and see how that goes. Most fltk widgets have specific label

Re: [fltk.general] static text widget

2011-10-07 Thread Greg Ercolano
On 10/07/11 11:50, David wrote: What would be the equivalent of a windows static text control in fltk widgets? For a plain text widget, you can either use Fl_Box or Fl_Widget with the label() as the text. eg: Fl_Box *box = new Fl_Box(x,y,w,h); // create a