Re: [fltk.development] masking?

2011-10-19 Thread MacArthur, Ian (SELEX GALILEO, UK)
+-- label --+ | | | | +---+ Seems like one could create a mask just before drawing the border box so it leaves a 'hole' where the label() is. This way the background

Re: [fltk.development] How to silence new compiler warnings(gcc4.6.1)

2011-10-19 Thread MacArthur, Ian (SELEX GALILEO, UK)
OK - I'm feeling particularly stupid now: how does masking a byte with 0xFF help? Is it that isdigit() thinks it gets an int, or... I'm missing something key here, obviously... C doesn't define whether a char is signed or unsigned, so masking makes sure that you don't pass in a

[fltk.development] [RFE] STR #2740: Browser as feature rich as Windows listview controls.

2011-10-19 Thread David
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2740 Version: 1.3-feature Browser (listview) widget that allows column titles, column alignment (left/right/middle), column widths (fixed or resizable), clickable column

[fltk.development] [RFE] STR #2741: Get text/label size before assigning to widget

2011-10-19 Thread David
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2741 Version: 1.3-feature Be nice to have a way to get the size of text/label before creating the object that will use it. Say static function

Re: [fltk.development] [RFE] STR #2741: Get text/label size before assigning to widget

2011-10-19 Thread David
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2741 Version: 1.3-feature ... also a version that supports wrapping, so would take a maxwidth parameter to determine the width/height. Link:

Re: [fltk.development] How to silence new compiler warnings(gcc4.6.1)

2011-10-19 Thread Michael Sweet
On Oct 19, 2011, at 1:08 AM, MacArthur, Ian (SELEX GALILEO, UK) wrote: ... Fair enough, seems like a Good Thing To Do. (Though possibly redundant in this case? Are there char values that would sign extend for which isidigit() holds true?) The issue is how isdigit() is implemented, as a macro

[fltk.development] [RFE] STR #2739: fltk-3 install anomaly

2011-10-19 Thread w . szukalski
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2739 Version: 1.3-feature To install fltk-3, I had to make the changes below. winfried --- fltk-3.0.x-r9132/Makefile.orig 2011-10-01 15:46:37.0 +0200 +++

Re: [fltk.development] [RFE] STR #2740: Browser as feature rich as Windows listview controls.

2011-10-19 Thread Greg Ercolano
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR Active] Link: http://www.fltk.org/str.php?L2740 Version: 1.3-feature See Fl_Table and Fl_Table_Row which provide such features. For clickable headers see examples/table-sort For row/col titles with col

Re: [fltk.development] [RFE] STR #2740: Browser as feature rich as Windows listview controls.

2011-10-19 Thread Greg Ercolano
[STR Closed w/Resolution] Link: http://www.fltk.org/str.php?L2740 Version: 1.3-feature Fix Version: 1.3-feature Link: http://www.fltk.org/str.php?L2740 Version: 1.3-feature Fix Version: 1.3-feature ___ fltk-dev mailing list fltk-dev@easysw.com

Re: [fltk.development] [RFE] STR #2740: Browser as feature rich asWindows listview controls.

2011-10-19 Thread David
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR Active] Link: http://www.fltk.org/str.php?L2740 Version: 1.3-feature See Fl_Table and Fl_Table_Row which provide such features. For clickable headers see examples/table-sort For row/col titles with col

Re: [fltk.development] [RFE] STR #2741: Get text/label size before assigning to widget

2011-10-19 Thread Ian MacArthur
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2741 Version: 1.3-feature OK - do the functions fl_text_extents() and fl_measure() and perhaps Fl_Widget::measure_label() not cover this ground? Link:

Re: [fltk.development] [RFE] STR #2740: Browser as feature rich asWindows listview controls.

2011-10-19 Thread Greg Ercolano
On 10/19/11 14:17, David wrote: Browser (listview) widget that allows column titles, column alignment (left/right/middle), column widths (fixed or resizable), clickable column titles for sorting, icons, checkboxes, etc.. See Fl_Table and Fl_Table_Row which provide such features. But