[fltk.commit] [Library] r6993 - branches/branch-1.3/src

2010-01-11 Thread fltk-dev
Author: matt Date: 2010-01-11 03:16:52 -0800 (Mon, 11 Jan 2010) New Revision: 6993 Log: Minor bugs in Fl_Preferences::copyTo(). Note to self: increase warning level! Modified: branches/branch-1.3/src/Fl_Preferences.cxx Modified: branches/branch-1.3/src/Fl_Preferences.cxx

Re: [fltk.development] OT: cygwin gcc -mno-cygwin [was:Re:snprintf()warningsunderwin32]

2010-01-11 Thread MacArthur, Ian (SELEX GALILEO, UK)
puzzle. Now we only need to find a way to implement it in a consistent way... It seems like the most consistent thing we could do is just: 1) always use fl_snprintf() instead of snprintf() 2) make fl_snprintf() always call the FLTK implementation of

Re: [fltk.development] [RFE] STR #2298: add Greg's Fl_Native_File_Chooser to FLTK 1.3

2010-01-11 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?L2298 Version: 1.3-feature What are the build instructions? There's no Makefile in the top level dir, and if I do a 'make' in the src dir, it says there's no

Re: [fltk.development] [RFE] STR #2298: add Greg's Fl_Native_File_Chooser to FLTK 1.3

2010-01-11 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?L2298 Version: 1.3-feature Oh, nevermind. Didn't catch it was to be installed into FLTK. So it looks like, eg: cp FNFC/FL/* /usr/local/fltk-1.3.x-svn/FL cp

Re: [fltk.development] [RFE] STR #2298: add Greg's Fl_Native_File_Chooser to FLTK 1.3

2010-01-11 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?L2298 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2298 Version: 1.3-feature// // $Id: native-filechooser.cxx 6615 2009-01-01 16:35:13Z matt $ // // Simple

Re: [fltk.development] [RFE] STR #2298: add Greg's Fl_Native_File_Chooser to FLTK 1.3

2010-01-11 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?L2298 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2298 Version: 1.3-featureIndex: Makefile

Re: [fltk.general] Support of graphic backend

2010-01-11 Thread MacArthur, Ian (SELEX GALILEO, UK)
Is there any reference number about the memory consumption for a typical FLTK application using directFB or Kdrive/TinyX as backend. I have used MiniGUI and GTK over directFB before. MiniGUI is extremely fast while GTK is very slow. What if FLTK compare to them? I'm sorry, I don't have

[fltk.general] how to add a callback in button widget

2010-01-11 Thread leowang
Dear All, As we know, the button widget has a callback, by default it will excute this callback afte we push and release the button. But how to add another callback to the button widget. So I can excute callback A when push the button, and excute callback B when release the button. Thanks. My