[fltk.bugs] [HIGH] STR #2938: fluid should read fluid2 files

2013-03-23 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2938 Version: 3.0-feature Currently fluid2 generates files that are incompatible with both fluid1 and fluid3. Please fix this so fluid2 files can be read in fluid3. Lin

[fltk.bugs] [CRIT] STR #2937: Windows maximize-minimize-restore button creates a window over taskbar

2013-03-23 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2937 Version: 2.0-current When using the maximize button and then the minimize button all goes well. The icon is in the taskbar. But clicking the icon of the taskbar max

[fltk.bugs] [MOD] STR #2872: Fullscreen and then off does not return the border decorations

2012-09-14 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2872 Version: 2.0-current With Ubuntu-KDE window manager, doing a fullscreen of a window and then turning fullscreen off does not return the window decorations. border se

[fltk.bugs] [MOD] STR #1858: TextDisplay needs its own default_style

2008-01-15 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1858 Version: 2.0-feature Currently, TextDisplay copies its default style from Input::default_style. This makes it impossible to have a theme that changes the Input widge

[fltk.bugs] [HIGH] STR #1851: Out of source builds not working

2007-12-30 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1851 Version: 2.0-current This problem effects both 1.0 and 2.0. Basically, albeit fltk is using autotools, it is not possible to compile out of source. The problem is t

Re: [fltk.bugs] [HIGH] STR #1804: "MOVE" in handle(int event) broken

2007-10-18 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1804 Version: 2.0-current One possible cause is that fltk2 has a bug in the move routine with widgets at the same level. If you have: Group Widget1 Widget2

Re: [fltk.bugs] [HIGH] STR #1798: Win32 filename_list is broken

2007-10-18 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1798 Version: 2.0-current Yes. Latest source still contains the problem. The patch mentioned there was not applied. Link: http://www.fltk.org/str.php?L1798 Version: 2.0

Re: [fltk.bugs] [HIGH] STR #1804: "MOVE" in handle(int event) broken

2007-10-17 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1804 Version: 2.0-current MOVE as described works fine for me (I'm using it for the same thing you are). What's mouse_active? My guess that's your bug. Also, you are in

Re: [fltk.bugs] [HIGH] STR #1804: "MOVE" in handle(int event) broken

2007-10-16 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1804 Version: 2.0-current Move definitively works on those releases as I'm using it. What widgets are you seeing the problem with? Link: http://www.fltk.org/str.php?L180

[fltk.bugs] [HIGH] STR #1808: FLTK2's fluid does respect namespaces correctly

2007-10-11 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1808 Version: 2.0-current When you create a namespace inside your .fl definition, FLTK2's fluid will create a cxx file that clearly does not respect the namespace correctl

[fltk.bugs] [MOD] STR #1807: FLUID's functions are not spit in the specified order

2007-10-11 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1807 Version: 2.0-current Currently, if you define a function in FLUID, when the code is generated, FLUID does not respect the order in which the function is listed in the

[fltk.bugs] [HIGH] STR #1803: TextBuffer's append/insert is broken

2007-10-07 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1803 Version: 2.0-current Repeated calling of TextDisplay->append() (ie. TextBuffer->append()) trashes each string (line) being passed. Link: http://www.fltk.org/str.php

Re: [fltk.bugs] [HIGH] STR #1799: fltk-config and fltk2-config has bugs

2007-10-06 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1799 Version: 1.1-current Another possibility with gcc is to take advantage of the -Bdynamic and -Bstatic flags. # this will make fltk2 link statically, and all other lib

Re: [fltk.bugs] [HIGH] STR #1799: fltk-config and fltk2-config has bugs

2007-10-05 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1799 Version: 1.1-current Yes, when dealing with static libraries, you need to pass the full path to the library to work around gcc's dumbness. However, fltk should not se

[fltk.bugs] [HIGH] STR #1798: Win32 filename_list is broken

2007-09-30 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1798 Version: 2.0-current A change in win32/scandir.c has broken filename_list. Problem is that the dirent struct that is defined there does not match the dirent struct th

Re: [fltk.bugs] [MOD] STR #1780: FLTK, CMake, and VC8

2007-09-18 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1780 Version: 1.1.7 Last time I tried it, the current CMakeLists.txt in fltk1.1 is indeed incomplete for some build type (don't recall which one - i think shared). That b

[fltk.bugs] [MOD] STR #1775: fltk::Group's style is not named

2007-08-29 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1775 Version: 2.0-feature fltk's Group contains a style that is not named. Contrary to what Group.cxx says, this style needs to be named and exposed, as some styles cannot

[fltk.bugs] [LOW] STR #1765: Input widgets should support alignment for contents

2007-08-12 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1765 Version: 2.0-feature Currently, the contents of an input widget such as fltk::Input, fltk::FloatInput, etc. cannot be specified and defaults to left aligned. It woul

[fltk.bugs] [HIGH] STR #1764: FLTK2.0 should support some form of DrawContext

2007-08-06 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1764 Version: 2.0-feature Currently, all draw functions in FLTK operate under a global context, on top of the current active widget. This is highly problematic. FLTK's d

Re: [fltk.bugs] [LOW] STR #1757: bad AltGr behaviour

2007-07-30 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1757 Version: 2.0-current This is a repeat of bug #1725: http://www.fltk.org/str.php?L1725 It is not 100% clear to me the problem is related to intl. keyboards. It seems

[fltk.bugs] [MOD] STR #1755: FLTK2's widget's timeout fltk::event_x() and event_y() wrong

2007-07-26 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1755 Version: 2.0-current It seems a widget's timeout does not set the event_x/y() variables properly. When my handle() routine receives a fltk::TIMEOUT event, the y() coo

Re: [fltk.bugs] [HIGH] STR #1660: Xft font listing is broken on X11

2007-07-20 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1660 Version: 2.0-current Fix Version: 2.0-current Well, looking a little bit more into it, it seems more like the actual fltk font demo program is broken, as it trashes m

[fltk.bugs] [LOW] STR #1732: GlWindow inside PackedGroup problems

2007-07-06 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1732 Version: 2.0-current Creating a GlWindow inside a PackedGroup when other groups are placed before and after the GlWindow, will initialize the gl ortho view incorrectl

[fltk.bugs] [MOD] STR #1727: FLTK2's X11 changing main icon

2007-07-04 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1727 Version: 2.0-current I seem to be unable to change the main window's icon on X11 using fltk2.0. I am trying to use similar code to that of fltk1.1, with no success.

[fltk.bugs] [HIGH] STR #1725: FLTK2's FLUID code widgets insert extraneous characters

2007-07-03 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1725 Version: 2.0-current I'm using an international keyboard and I have a custom .inputrc file for bash, which may or may not be related. Whenever a code widget is opene

[fltk.bugs] [HIGH] STR #1723: Please do NOT put fltk::Group into fltk::Widget

2007-07-02 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1723 Version: 2.0-feature Recently, Bill mentioned that he was considering placing all the fltk::Group functionality within fltk::Widget. PLEASE don't do this. This will

[fltk.bugs] [MOD] STR #1722: Simplify Browser interface and split MultiBrowser from Browser

2007-07-02 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1722 Version: 2.0-feature Currently, the fltk::Browser interface is a mess. PLEASE split it up into fltk::Browser and fltk::MultiBrowser. There's a bunch of functions th

[fltk.bugs] [HIGH] STR #1721: fltk::Browser does not allow programmable selection

2007-07-02 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1721 Version: 2.0-current fltk::Browser* o = new fltk::Browser(...); o->add("AAA"); o->add("BBB"); o->add("CCC"); fltk::Widget* elem = o->find( "BBB" ); cerr << "elem: "

[fltk.bugs] [CRIT] STR #1710: fltk2.0's fltk2_gl.dll and fltk2_glu.dll not created

2007-06-15 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1710 Version: 2.0-current With the new vc .net project files, fltk2.0's build is broken. The DLL versions of fltk2_gl and fltk2_glu will not be created and the project for

[fltk.bugs] [MOD] STR #1699: Xlib errors

2007-06-01 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1699 Version: 2.0-current Tons of Xlib errors coming out of ansiwidget demo: XRequest.155: BadMatch (invalid parameter attributes) 0x0 XRequest.155: RenderBadPicture (inv

Re: [fltk.bugs] [HIGH] STR #1570: X11 fltk::Font sizes and encodings functions segfault

2007-06-01 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1570 Version: 2.0-current Fix Version: 2.0-current All the time, making it unusable. This is a repeat of bug #1660, btw. Link: http://www.fltk.org/str.php?L1570 Version

Re: [fltk.bugs] [HIGH] STR #1660: Xft font listing is broken on X11

2007-06-01 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1660 Version: 2.0-current Fix Version: 2.0-current Read the original comment. It crashes when getting either the list of encodings or the list of sizes on X11. The list o

[fltk.bugs] [HIGH] STR #1696: API inconsistency

2007-05-31 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Some recent check-ins have added some new API inconsistencies to fltk2. These new functions in Symbol.h: virtual void drawOverlay(const Rectangle&) const; void setInset(int x,int y,int w,int h) {inset_.set(

[fltk.bugs] [HIGH] STR #1660: Xft font listing is broken on X11

2007-04-23 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Getting the list of encodings or the list of font sizes leads to a crash. The crashing function is XftListFonts. Crash does not happen if the query is changed, from, say: fs = XftListFonts(xdisplay, xscree

[fltk.bugs] [HIGH] STR #1653: fltk::ValueInput will free label pointer twice if copy_label was used.

2007-04-06 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] ValueInput's draw() function copies the flags settings over to a FloatInput incorrectly. This will result on a memory bug whent the widget is later deleted. Attached is a patch for it. Link: http://www.fltk.

[fltk.bugs] [MOD] STR #1649: TextEditor's editor.cxx demo works incorrectly on intl. keyboards

2007-04-04 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] The editor.cxx demo works incorrectly on international keyboards. On intl. keyboards, some often used characters are created with Alt Gr+Key (for example, to get '[' ). The TextEditor pushes the ALT key as a

[fltk.bugs] [MOD] STR #1647: MultiImage does not publically expose the multi images

2007-04-03 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Currently, MultiImage defines its n_image and pairs variables incorrectly as private. This should either be made protected or a member function should be added to allow to retrieve the number of images and e

[fltk.bugs] [MOD] STR #1646: TextDisplay does not expose the stylebuffer publically.

2007-04-03 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] TextDisplay currently does not expose the stylebuffer publically, like it does with buffer(). For convenience's sake and for proper wrapping Fltk into scripting languages for garbage collecting this is neede

[fltk.bugs] [MOD] STR #1631: TextEditor missing stylebuffer()

2007-03-07 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] TextEditor supports a public buffer() function. It should also support a public stylebuffer() function. Link: http://www.fltk.org/str.php?L1631 Version: 2.0-current

Re: [fltk.bugs] [HIGH] STR #1042: Image::make_current() do not work

2007-03-03 Thread Gonzalo Garramuno
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] make_current() is no longer part of the API in v2.0, as it is unneeded. Link: http://www.fltk.org/str.php?L1042 Version: 2.0-current ___ fltk-bugs mailing list [E