[fltk.development] Article #825: What are the versions of FLTK?

2011-07-16 Thread Duncan Gibson
I updated http://www.fltk.org/articles.php?L825 last week to make it even more obvious which were the stable versions, and which were the development versions. If anyone has any comments, especially when the dust from the current set of where do we go from here threads clears, please let me know.

Re: [fltk.development] multilingual not fully work fltk

2011-07-16 Thread Matthias Melcher
On 15.07.2011, at 22:39, Ian MacArthur wrote: Why the fltk app appears correct on OSX I am not sure - it may be that the Apple text renderer under Quartz is fixing things for us, which I find unexpected. Ah, this is a right-to-left script?! FLTK leaves it to the operating system to render

Re: [fltk.development] [RFE] STR #2679: Fl_Table: this is patch is changeing size of scrollbar (for the size is takeing from scheme/theme, but do not from constant of source).

2011-07-16 Thread Albrecht Schlosser
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR Pending] Link: http://www.fltk.org/str.php?L2679 Version: 1.3-feature Greg, FWIW, for now I'd suggest to change -#define SCROLLBAR_SIZE 16 +#define SCROLLBAR_SIZE (Fl::scrollbar_size()) or something similar.

Re: [fltk.development] 1.3.0 ABI

2011-07-16 Thread Albrecht Schlosser
On 16.07.2011 06:41, Greg Ercolano wrote: The 1.3.0 opportunity passed for me to add an integer to the Fl_Table class for _scrollbar_size so that it would be like the other scrollbar oriented widgets where the scrollbar size can have a local override to the global one. STR#2679 reminded me

Re: [fltk.development] [RFE] STR #2679: Fl_Table: this is patch is changeing size of scrollbar (for the size is takeing from scheme/theme, but do not from constant of source).

2011-07-16 Thread Dmitrij K
Albrecht Schlosser albrec...@go4more.de wrote: -#define SCROLLBAR_SIZE 16 +#define SCROLLBAR_SIZE (Fl::scrollbar_size()) Perhaps it will to have conflicts for names of variables from users (SCROLLBAR_SIZE), But maybe and not... ___

Re: [fltk.development] [RFE] STR #2679: Fl_Table: this is patch ischangeing size of scrollbar (for the size is takeing from scheme/theme, but do not from constant of source).

2011-07-16 Thread Greg Ercolano
On 07/16/11 06:15, Dmitrij K wrote: Albrecht Schlosser albrec...@go4more.de wrote: -#define SCROLLBAR_SIZE 16 +#define SCROLLBAR_SIZE (Fl::scrollbar_size()) Perhaps it will to have conflicts for names of variables from users (SCROLLBAR_SIZE), But maybe and not... It

Re: [fltk.development] [RFE] STR #2679: Fl_Table: this is patch ischangeing size of scrollbar (for the size is takeing from scheme/theme, but do not from constant of source).

2011-07-16 Thread kdi...@live.ru
Greg Ercolano wrote: It shouldn't conflict because the above #define is in the .cxx file, which is not exposed to users. OK. ___ fltk-dev mailing list fltk-dev@easysw.com http://lists.easysw.com/mailman/listinfo/fltk-dev

Re: [fltk.development] Fl_Sys_Menu_Bar and Unity

2011-07-16 Thread Ian MacArthur
On 15 Jul 2011, at 15:05, kdi...@live.ru wrote: MacArthur, Ian (SELEX GALILEO, UK) wrote: Random thought: Here's a thing - Canonical's new Unity desktop for ubuntu places the app menu bar at the top of the screen, a la OSX, for those apps that support it. Two questions; 1) Do we

Re: [fltk.development] LGPL question

2011-07-16 Thread Michael Sweet
We should drop the reference to gnu.org and just refer to it as the FLTK License... On Jul 14, 2011, at 4:48 PM, Greg Ercolano wrote: As we all know, FLTK has its own static link exception in our license file included with the toolkit (COPYING). However, of *possible* confusion: The

Re: [fltk.development] 1.3.0 ABI

2011-07-16 Thread Michael Sweet
Yes, no incompatible ABI changes in patch releases (you could have a method that refers to the global default, but not add something to the class that would change the size...) On Jul 16, 2011, at 12:41 AM, Greg Ercolano wrote: Ah, crap. The 1.3.0 opportunity passed for me to add an