[fltk.bugs] [LOW] STR #2116: adding non-RADIO widgets to group breaks setonly()

2008-12-29 Thread Steve Edwards

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2116
Version: 2.0-current


Adding widgets that are not type RADIO to a group containing RadioButtons
causes the setonly() function to break early, causing incorrect behavior
(RadioButtons remain on when another RadioButton is selected).

Expected behavior is achieved by changing conditional in the for loops
from:

if( RADIO != c-type() ) break;
c-clear();

to:

if( RADIO == c-type() )
c-clear();


Link: http://www.fltk.org/str.php?L2116
Version: 2.0-current

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [HIGH] STR #2115: Misplacement of text in Fl_Text_Editor and probably Fl_Text_Display

2008-12-29 Thread Matthias Melcher

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2115
Version: 1.3-current


In order to make things more complicated, we would need to write down
exactly which font metrics would be useful to have, and which existing
calls return exactly what value (e.g. is fl_height() the distance between
two text lines in pixels? that would be a totally different thing than the
height of a font...)

Once we agree on the metrics that FLTK should provide, we must name the
functions and write a test program that verifies all those values on all
platforms... .

Maybe I should revive the unittest.cxx?!


Link: http://www.fltk.org/str.php?L2115
Version: 1.3-current

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [HIGH] STR #2115: Misplacement of text in Fl_Text_Editor and probably Fl_Text_Display

2008-12-29 Thread Greg Ercolano

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2115
Version: 1.3-current


I'm fine with the interface we have, as long as it does what it's supposed
to ;)

I think between fl_height(), fl_measure(), and Ian's new
fl_text_extents(), maybe everything is covered.

I think all we really need to fix this STR is:

   o Fix fl_height(int,int) [which so far has never been documented]
 so that it does what fl_height() does (without affecting the
 current fl_font()/fl_size())

The fix to fl_height(int,int) will, I think, fix the OP's bug.. (it fixes
mine) and maybe note a warning in the docs that in light of some of the
new changes to support Anti Aliased fonts, fl_height() might provide more
accurate font positioning info than fl_size().


Link: http://www.fltk.org/str.php?L2115
Version: 1.3-current

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [LOW] STR #1899: aglUseFont on QUARTZ does not use correct face

2008-12-29 Thread Matthias Melcher

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L1899
Version: 1.3-current





Link: http://www.fltk.org/str.php?L1899
Version: 1.3-current

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [LOW] STR #1679: Borderless windows on WIN32 do not appear on the taskbar

2008-12-29 Thread Matthias Melcher

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L1679
Version: 1.4-feature





Link: http://www.fltk.org/str.php?L1679
Version: 1.4-feature

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [LOW] STR #1860: Would like ability to specify software rendering for OpenGL contexts

2008-12-29 Thread Matthias Melcher

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L1860
Version: 1.4-feature





Link: http://www.fltk.org/str.php?L1860
Version: 1.4-feature

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [LOW] STR #1921: Current definition of fl_begin_offscreen() and fl_end_offscreen() makes impossible to divide offscreen drawing procedure to a set of subsequently called functions

2008-12-29 Thread Matthias Melcher

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L1921
Version: 1.4-feature





Link: http://www.fltk.org/str.php?L1921
Version: 1.4-feature

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [LOW] STR #1925: Fl_Text_Display should have a member for secondary selection color

2008-12-29 Thread Matthias Melcher

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L1925
Version: 1.4-feature





Link: http://www.fltk.org/str.php?L1925
Version: 1.4-feature

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [MOD] STR #1973: autotools build badly broken on 64-bit Linux

2008-12-29 Thread Matthias Melcher

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L1973
Version: 1.3-current


64 bit systems are not fully supported by the FLTK 1.1.x branch. FLTK 1.3
and beyon will support 64 bit builds.


Link: http://www.fltk.org/str.php?L1973
Version: 1.3-current

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [MOD] STR #1962: Unable to Link to FLTK Image Libraries using MSys/MinGW in MS Vista.

2008-12-29 Thread Matthias Melcher

[STR Closed w/Resolution]

Link: http://www.fltk.org/str.php?L1962
Version: 1.1.9
Fix Version: 1.3.0 (r6609)


STR #1962: I tried to fix the configuration scripts so that the image
support libraries (fltk_jpeg fltk_png fltk_z) are linked in the same
fashion as the fltk_image library. Please verify this fix.


Link: http://www.fltk.org/str.php?L1962
Version: 1.1.9
Fix Version: 1.3.0 (r6609)

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [MOD] STR #2007: hardcode lib suffix in $(LIBNAME)

2008-12-29 Thread Matthias Melcher

[STR Closed w/Resolution]

Link: http://www.fltk.org/str.php?L2007
Version: 1.1.9
Fix Version: 1.3.0 (r6612)


Fixed in Subversion repository.

Fixxed in 1.3 as well.


Link: http://www.fltk.org/str.php?L2007
Version: 1.1.9
Fix Version: 1.3.0 (r6612)

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [HIGH] STR #1986: X-server freezes when a window is opened while the menu is open

2008-12-29 Thread Matthias Melcher

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L1986
Version: 1.1.9





Link: http://www.fltk.org/str.php?L1986
Version: 1.1.9

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs


Re: [fltk.bugs] [MOD] STR #2105: some png images displayed wrong

2008-12-29 Thread Matthias Melcher

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2105
Version: 1.1.9


Seems to be a general bug with monochromee images that have an alpha
channel on WIN32.


Link: http://www.fltk.org/str.php?L2105
Version: 1.1.9

___
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs