Re: [fltk.development] [fltk.commit] [Library] r5729-inbranches/branch-1.1: FL src test

2007-03-09 Thread Alvin
ould be "better"? I develop using the GNU C/C++ libraries, if that makes a difference. Thanks -- Alvin ___ fltk-dev mailing list fltk-dev@easysw.com http://lists.easysw.com/mailman/listinfo/fltk-dev

Re: [fltk.development] Fluid crash with latest 1.1.8 r5940

2007-09-05 Thread Alvin
10.2 Xorg 7.2 KDE 3.5.7 release 74.2 fltk 1.1.x-r5940 -- Alvin ___ fltk-dev mailing list fltk-dev@easysw.com http://lists.easysw.com/mailman/listinfo/fltk-dev

Re: [fltk.development] When will the fltk-1.1.8 be realsed?

2008-01-17 Thread Alvin
m/ I agree. I use FLTK daily and I find the latest snapshot 1.1.x-r6020 to be very stable. The only "problem" I have is that the version that comes with openSUSE 10.3 is too far behind. I end up installing my own RPMs. -- Alvin ___ fltk-dev mai

Re: [fltk.development] Menu Bar in Window

2008-05-06 Thread Alvin
ars that Fl_Menu_Bar is derived from Fl_Menu_ which, in turn, is derived from Fl_Widget. Therefore, you could use dynamic_cast? Something like (written on the fly - not tested): for(int i = 0; i < wnd->children(); i++) { Fl_Menu_Bar *menubar = dynamic_cast(wnd->child(i)); if(menubar)

Re: [fltk.development] [Library] r6175 -branches/branch-1.3

2008-08-29 Thread Alvin
og [EMAIL PROTECTED]:~/bin> ./quotetst.sh + compile='my source.cxx' ++ basename ''\''my' 'source.cxx'\''' .cxx basename: extra operand `.cxx' Try `basename --help' for more information. + prog= + echo Here's the

Re: [fltk.development] Doxygen 1.3 <

2008-09-10 Thread Alvin
as discussed before, what was the reason for putting the doxygen comments in the cxx files? I'm just curious as I tend to put them in the headers files and I'm wondering if I should switch too. Thanks, -- Alvin ___ fltk-dev mailing

Re: [fltk.development] Doxygen 1.3 <

2008-09-10 Thread Alvin
Alvin wrote: > Fabien Costantini wrote: > >> fltk.development >> Ok, If we agree that we put the the api comments in the sources cxx files > > I apologise for butting in here, but I'm not sure if this has been > addressed. If the doxygen comments are in the

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-11 Thread Alvin
tart the timeout that calls tooltip_timeout(). So, I figured I would streamline this by following the calling chain. I ended up in enter_() where I then further simplified the modification. In fact, by sending the FL_TOOLTIP event in enter_(), it doesn't really matter what the return value is. Fl_Tooltip::tip is set later so it would be set with the most current tooltip text. -- Alvin ___ fltk-dev mailing list fltk-dev@easysw.com http://lists.easysw.com/mailman/listinfo/fltk-dev

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-12 Thread Alvin
Albrecht Schlosser wrote: > Alvin wrote: > >> I had something that calling handle(FL_TOOLTIP) regardless if the widget >> had a tooltip or not. From my testing, it seemed like it was always >> calling it. I likened it to always receiving FL_MOVE. I didn't

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-12 Thread Alvin
Albrecht Schlosser wrote: > > DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK > BELOW. > > [STR New] > > Link: http://www.fltk.org/str.php?L2041 > Version: 1.3-feature > > > Alvin, could you please try this short patch for Fl_Group: &

Re: [fltk.development] RFC: Fl_Audio class for 1.3

2008-09-13 Thread Alvin
matthiasm wrote: > > On 13.09.2008, at 20:39, Alvin wrote: > >> Interesting. In theory would it be possible to use libogg (or >> libvorbis) to >> get the samples from an OGG file[1] and pass it to Fl_Audio::add()? >> >> And/Or would there be class

Re: [fltk.development] RFC: Fl_Audio class for 1.3

2008-09-13 Thread Alvin
t Fl_Shared_Audio would be a class that would load a file path and figure out what specific object to make (Fl_WAV_, Fl_OGG_, etc.). Kind of like how Fl_Shared_Image::get(...) can load any image .png, .jpg, etc. I guess that's technically not "sharing" at all. -- Alvin ___

Re: [fltk.development] RFC: FAQ / Build environments /crosscompiling

2008-09-25 Thread Alvin
s a single entry (and URL) in the manual labelled Articles and FAQ that states, something to the effect. "the website contains many glorious articles contributed by the fantastic FLTK users. Visit the URL below and gaze your eye upon them." Well, maybe not exactly like that, but I think

Re: [fltk.development] WM_CLASS property for fluid windows

2008-09-29 Thread Alvin
have no WM_CLASS? Does it make sense for windows to inherit the WM_CLASS of the main window? I know FLUID provides a field called "X Class" for Fl_Double_Window properties. I haven't use it though or even know if that is the same was WM_CLASS. -- Alvin ___ fltk-dev mailing list fltk-dev@easysw.com http://lists.easysw.com/mailman/listinfo/fltk-dev

Re: [fltk.development] WM_CLASS property for fluid windows

2008-09-29 Thread Alvin
matthiasm wrote: > > > Please file STRs for both issues, preferably with patches ;-) > > Thanks. > > On 29.09.2008, at 18:28, Alvin wrote: > >> Carlos Pita wrote: >> >>> I'm not sure if I must report this as a bug, tell me so if it's t

Re: [fltk.development] WM_CLASS property for fluid windows

2008-09-29 Thread Alvin
Greg Ercolano wrote: > Alvin wrote: >> matthiasm wrote: >>> Please file STRs for both issues, preferably with patches ;-) > > Mindless interjection: is this just a matter of modifying fluid > to set unique names for the Fl_Window::xclass() of each of its windows? To

Re: [fltk.development] WM_CLASS property for fluid windows

2008-09-30 Thread Alvin
ass is not set, the value from default_xclass would be used. This would ensure that every Fl_Window created by the application will have its WM_CLASS set. -- Alvin ___ fltk-dev mailing list fltk-dev@easysw.com http://lists.easysw.com/mailman/listinfo/fltk-dev

Re: [fltk.development] WM_CLASS property for fluid windows

2008-09-30 Thread Alvin
27;re right and it >> > should be a window property - with a useful default value... >> > >> > Albrecht >> >> Since xclass is automatically set by Fl_Window::show(int,char**), why not >> store the string as a static member in Fl_Window as well (e.g. &

Re: [fltk.development] WM_CLASS property for fluid windows

2008-10-01 Thread Alvin
ixes this. It will work for all FLTK apps, not just Fluid. In a nutshell, if a WM_CLASS has not been set by the using by calling Fl_Window::xclass(const char*), then the WM_CLASS that was first window shown will be reused. Could you try it and see if it does what you are asking. Thanks. -- Alvin

Re: [fltk.development] [Library] r6431 - in branches/branch-1.3/documentation: . src

2008-10-15 Thread Alvin
time a file is moved, renamed, etc. Therefore, you should be able to get the log of the newly named file. It should go right back to when the original file was added to the repo. I think the only time a file is actually duplicated is to resolve any ambiguity. -- Alvin ___ fltk-dev mailing list fltk-dev@easysw.com http://lists.easysw.com/mailman/listinfo/fltk-dev

[fltk.development] html doc in r6440

2008-10-16 Thread Alvin
-$(INSTALL_DIR) $(DESTDIR)$(docdir) - for file in $(HTMLFILES) $(IMAGEFILES) index.html; do \ + for file in $(HTMLFILES) $(IMAGEFILES); do \ $(INSTALL_DATA) $$file $(DESTDIR)$(docdir); \ done echo "Installing man pages in $(DESTDIR)$(man

Re: [fltk.development] html doc in r6440

2008-10-16 Thread Alvin
Fabien Costantini wrote: >> Hello, >> >> I updated fltk 1.3 to svn r6440. When I get to install, I get an error >> that index.html is missing. AFAICT, index.html is a relic and has been >> replaced > > Thanks Alvin, removing obsolete index.html was not enough

Re: [fltk.development] include symlinks

2008-11-05 Thread Alvin
ase of their include > paths... So, which one should be used: The symbolic link (Fl/*.h) or the hard link (FL/*.H)? I have been using: #include Now I am wondering if I should be using the symbolic links instead? -- Alvin ___ fltk-dev mailing list fltk-dev@easysw.com http://lists.easysw.com/mailman/listinfo/fltk-dev

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2009-12-30 Thread Alvin
DOW_TYPE to use for menus. It could even be that xtype(), as implement, sets the right Atom. I'm very new to programming at the X level. Basically, what I know has been reading Fl_x.cxx and using 'man' :) Alvin ___ fltk-dev mailing list fltk-dev@easysw.com http://lists.easysw.com/mailman/listinfo/fltk-dev

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2009-12-31 Thread Alvin
in Fl_x.cxx that maps that to the _NET_WM_WINDOW_TYPE_MENU. Hopefully that helps. Cheers and Happy New Year! Alvin ___ fltk-dev mailing list fltk-dev@easysw.com http://lists.easysw.com/mailman/listinfo/fltk-dev

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2011-10-31 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR Pending] Link: http://www.fltk.org/str.php?L2041 Version: 1.4-feature Attached file "str2041-r9162.patch"... Link: http://www.fltk.org/str.php?L2041 Version: 1.4-featureIndex: src/Fl_Tooltip.cxx ===

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2011-10-31 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR Pending] Link: http://www.fltk.org/str.php?L2041 Version: 1.4-feature Posted update patch file for svn revision 9162. Link: http://www.fltk.org/str.php?L2041 Version: 1.4-feature _

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2012-03-29 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR Pending] Link: http://www.fltk.org/str.php?L2041 Version: 1.4-feature Attached file "str2041-r9310.patch"... Link: http://www.fltk.org/str.php?L2041 Version: 1.4-featureIndex: src/Fl_Tooltip.cxx ===

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2012-03-29 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR Pending] Link: http://www.fltk.org/str.php?L2041 Version: 1.4-feature Updated patch to r9310. Cheers. Link: http://www.fltk.org/str.php?L2041 Version: 1.4-feature _

[fltk.development] [RFE] STR #1767: Arbitraty line removal in Fl_Check_Browser

2007-08-13 Thread Alvin Beach
. These were generated against fltk-1.1.x-r5940. Thank you. Alvin 8<- --- Fl_Check_Browser-5940.H 2006-04-20 00:53:41.0 -0300 +++ Fl_Check_Browser.H 2007-08-13 10:45:07.0 -0300 @@ -78,6 +78,8 @@ int add(const char *s) { return add((char

Re: [fltk.development] [RFE] STR #1767: Arbitraty line removal in Fl_Check_Browser

2007-08-13 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L1767 Version: 2.0-feature Please note that is is a RFE for 1.1-current. Link: http://www.fltk.org/str.php?L1767 Version: 2.0-feature ___

[fltk.development] [RFE] STR #2022: Deriving from Fl_Chart

2008-08-15 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2022 Version: 1.3-feature Hello, As written, it is not very easy (if at all possible) to derive a widget from Fl_Chart. All members (variables and functions) of Fl_Chart

[fltk.development] [RFE] STR #2040: Deriving from Fl_Choice

2008-09-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2040 Version: 1.3-feature When trying to derive from Fl_Choice, I noticed that it is impossible for a derived class to intercept when an item has been selected. I propose

Re: [fltk.development] [RFE] STR #2040: Deriving from Fl_Choice

2008-09-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2040 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2040 Version: 1.3-feature--- FL/Fl_Choice.H.original 2005-04-15 21:13:17.0 -0300 +++ FL/Fl_Choic

[fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature Resulting from my previous STR #2040 I propose the following Proof-of-Concept) patch. This patch adds a FL_TO

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature--- FL/Enumerations.H.original 2008-08-15 18:11:21.0 -0300 +++ FL/Enumerat

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature SmartChoiceTest-v3.tar.gz Description: Binary data __

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature--- FL/Enumerations.H.original 2008-08-15 18:11:21.0 -0300 +++ FL/Enumerat

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature ___ fltk-dev mailing list fltk-dev@e

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature SmartChoiceTest-v4.tar.gz Description: Binary data __

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature Well, it looks like I forgot to upload the patch! :) That's ok, I like FL_TOOLTIP-v3.patch better. The patch results in the addition of a FL_TO

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature In case I wasn't clear, SmartChoiceTest-v4.tar.gz should be used to test FL_TOOLTIP-v3.patch. It would be easier if posted files could be delete

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature--- FL/Enumerations.H.original 2008-08-15 18:11:21.0 -0300 +++ FL/Enumerat

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature I posted FL_TOOLTIP-v4.patch which includes the bug fix found by Albrecht Schlosser. The last posted example still valid for testing. Here is h

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-12 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature--- FL/Enumerations.H.original 2008-08-15 18:11:21.0 -0300 +++ FL/Enumerat

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-12 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature SmartChoiceTest-always fired.tar.gz Description: Binary data

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-12 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature I have attached FL_TOOLTIP-always fired.patch along with an example SmartChoiceTest-always fired.tar.gz. This patch is very similar to v4 of the

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-12 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature Sounds good to me. So far, FL_TOOLTIP-v4.patch does all but sending the FL_TOOLTIP to widget's with NULL tooltips. So that's 3 out of 4 of the c

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-12 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature--- FL/Enumerations.H.original 2008-08-15 18:11:21.0 -0300 +++ FL/Enumerat

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-12 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature FL_TOOLTIP_test-v5.tar.gz Description: Binary data __

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-12 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature Ok, I think Albrecht and I have this solved. FL_TOOLTIP-v5.patch should satisfy all 4 criteria posted by Matthias. Basically the patch is a mer

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-18 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature--- FL/names.h.original 2008-09-10 20:56:49.0 -0300 +++ FL/names.h 2008-09

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2008-09-18 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2041 Version: 1.3-feature I have posted a patch for FL/names.h to include FL_TOOLTIP in the fl_eventnames array. I have been using FL_TOOLTOP-v5.patch for almost a week n

Re: [fltk.development] [RFE] STR #2022: Deriving from Fl_Chart

2008-09-22 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2022 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2022 Version: 1.3-feature--- FL/Fl_Chart.H.original 2008-09-16 04:26:22.0 -0300 +++ FL/Fl_Chart

Re: [fltk.development] [RFE] STR #2022: Deriving from Fl_Chart

2008-09-22 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2022 Version: 1.3-feature Oops, it appears I forgot to upload the patch! I have posted a patch that applies cleanly to 1.1.x-r6305. Link: http://www.fltk.org/str.php?L2

[fltk.development] [RFE] STR #2053: It is possible that an instance of a Fl_Window will not have a xclass set.

2008-10-01 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2053 Version: 1.3-feature If the user does not specifically set a Fl_Window's (or derivative thereof) xclass(const char*), then it is possible that that instance will not h

Re: [fltk.development] [RFE] STR #2053: It is possible that an instance of a Fl_Window will not have a xclass set.

2008-10-01 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2053 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2053 Version: 1.3-feature--- FL/Fl_Window.H.original 2008-09-18 16:09:34.0 -0300 +++ FL/Fl_Windo

Re: [fltk.development] [RFE] STR #2022: Deriving from Fl_Chart

2008-10-14 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2022 Version: 1.3-feature I have updated the patch (str2022-v3.patch) to apply cleanly against 1.3 r6427. Link: http://www.fltk.org/str.php?L2022 Version: 1.3-feature _

Re: [fltk.development] [RFE] STR #2022: Deriving from Fl_Chart

2008-10-14 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2022 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2022 Version: 1.3-feature--- FL/Fl_Chart.H.original 2008-09-16 04:26:22.0 -0300 +++ FL/Fl_Chart

Re: [fltk.development] [RFE] STR #2022: Deriving from Fl_Chart

2008-10-14 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2022 Version: 1.3-feature The idea behind the patch is to make it possible to derive from Fl_Chart. When I was looking for a simple charting widget, I came across Fl_Char

[fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2008-11-04 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Under X, instances of Fl_Window do not have a Window Type set. The window type is used by X to provide consistent window decoration and functiona

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2008-11-04 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature--- ./FL/Fl_Window.H.original 2008-10-15 14:03:42.0 -0300 +++ ./FL/Fl_Win

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2008-11-04 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature--- ./FL/Fl_Window.H.original 2008-11-04 10:00:20.0 -0400 +++ ./FL/Fl_Win

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2008-11-04 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature xtype_test.fl Description: Binary data __

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2008-11-04 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature I have attached 3 files. Either of the patches should be used but not both. Depending on whether STR 2053 is

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2008-11-04 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature--- ./fluid/function_panel.cxx.original 2008-10-14 10:50:11.0 -0300 +++ ./f

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2008-11-04 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature I have attached str2082_fluid.patch. This patches the fluid source to use FL_DIALOG_NORMAL for the dialog windows. This patch depends on either o

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2008-11-04 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Ugh, I meant to say that str2082_fluid.patch updates some of the Fl_Windows in fluid to use FL_DIALOG_WINDOW Link: http://www.fltk.org/str.php?

Re: [fltk.development] [RFE] STR #2083: Add maximize, minimize caps to FL_Window

2008-11-04 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2083 Version: 1.3-feature FWIW, here is how to maximise a window in X: Note that 'wnd' is a Fl_Window (or derivative thereof): Window xid = fl_xid(wnd); XEvent xev; Ato

Re: [fltk.development] [RFE] STR #2040: Deriving from Fl_Choice

2008-12-27 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2040 Version: 1.3-feature To be honest, my rationale was two-fold for this STR. (1) Minimising the amount of work a caller would need to do to intercept when the FL_Choice

Re: [fltk.development] [RFE] STR #2040: Deriving from Fl_Choice

2008-12-27 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2040 Version: 1.3-feature You make a good point! Feel free to close this STR. If I could, I would revoke it. Perhaps that would be a good feature to the STR tracking syste

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2009-01-05 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2082 Version: 1.3-featureIndex: src/Fl_Window.cxx ==

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2009-01-05 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature--- ./FL/Fl_Window.H.original 2008-11-04 10:00:20.0 -0400 +++ ./FL/Fl_Win

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2009-01-05 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2082 Version: 1.3-featureIndex: about_panel.fl =

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2009-01-05 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Updated patch files: str2082_wo_str2053-v2.patch, str2082_with_str2053-v2.patch, and str2082_fluid-v2.patch Patches apply cleanly to 1.3.x r6622

Re: [fltk.development] [RFE] STR #2053: It is possible that an instance of a Fl_Window will not have a xclass set.

2009-02-27 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2053 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2053 Version: 1.3-featureIndex: src/Fl_Window.cxx ==

Re: [fltk.development] [RFE] STR #2053: It is possible that an instance of a Fl_Window will not have a xclass set.

2009-02-27 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2053 Version: 1.3-feature Updated patch, str2053-v2.patch, to compile cleaning against svn r6669. Link: http://www.fltk.org/str.php?L2053 Version: 1.3-feature _

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2009-03-09 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2082 Version: 1.3-featureIndex: about_panel.fl =

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2009-03-09 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature--- ./src/Fl_x.cxx.original 2009-03-09 12:01:20.0 -0300 +++ ./src/Fl_x.

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2009-03-09 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Updated str2082_fluid-v3.patch. Updated str2082-v2_requires_str2053-v2.patch. The above patches compile cleanly against FLTK 1.3.x SVN r6672

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2009-08-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR Pending] Link: http://www.fltk.org/str.php?L2041 Version: 1.4-feature Link: http://www.fltk.org/str.php?L2041 Version: 1.4-featureIndex: src/Fl_Tooltip.cxx =

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2009-08-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR Pending] Link: http://www.fltk.org/str.php?L2041 Version: 1.4-feature Uploaded patch that compiles against SVN rev 6841 Link: http://www.fltk.org/str.php?L2041 Version: 1.4-feature ___

Re: [fltk.development] [RFE] STR #2053: It is possible that an instance of a Fl_Window will not have a xclass set.

2009-08-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2053 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2053 Version: 1.3-feature ___ fltk-dev mailing list fltk-dev@e

Re: [fltk.development] [RFE] STR #2053: It is possible that an instance of a Fl_Window will not have a xclass set.

2009-08-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2053 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2053 Version: 1.3-featureIndex: src/Fl_Window.cxx ==

Re: [fltk.development] [RFE] STR #2053: It is possible that an instance of a Fl_Window will not have a xclass set.

2009-08-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2053 Version: 1.3-feature Uploaded patch that compiles against SVN rev 6841 Link: http://www.fltk.org/str.php?L2053 Version: 1.3-feature ___

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2009-08-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature--- ./src/Fl_Window.cxx.original2009-03-30 06:37:37.0 -0300 +++ ./s

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2009-08-11 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Uploaded patch that compiles against SVN rev 6841. This STR is related to STR#2230. STR#2230 adds further support to menus. Link: http://www.f

[fltk.development] [RFE] STR #2272: Fl_Round_Bound doesn't obey selection_color()

2009-10-14 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2272 Version: 1.3-feature I noticed that when the "gtk+" scheme is used, Fl_Round_Button doesn't obey the selection_color(). I believe this is intensional, but I don't unde

Re: [fltk.development] [RFE] STR #2272: Fl_Round_Bound doesn't obey selection_color()

2009-10-14 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2272 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2272 Version: 1.3-feature roundtest.fl Description: Binary data ___

Re: [fltk.development] [RFE] STR #2272: Fl_Round_Bound doesn't obey selection_color()

2009-10-14 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2272 Version: 1.3-feature I have also attached a test program that displays Fl_Round_Button and Fl_Light_Button in both radio and toggle modes. To run: 1. Open roundtest.

Re: [fltk.development] [RFE] STR #2272: Fl_Round_Bound doesn't obey selection_color()

2009-10-14 Thread Alvin Beach
ke an alternate behaviour. If such patches are against the rules, please remove this STR. Cheers, Alvin Link: http://www.fltk.org/str.php?L2272 Version: 1.3-feature ___ fltk-dev mailing list fltk-dev@easysw.com http://lists.easysw.com/mailman/listinfo

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2009-12-28 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature FWIW, I longer use the patch(es) from this RFE and will no longer be maintaining them. I have been using these patches since creating the STR wit

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2009-12-29 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2082 Version: 1.3-featureIndex: src/Fl_Window.cxx ==

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2009-12-29 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Thanks for the comments Ian. To help determine whether or not this RFE should be included, I have updated the patch to apply to a clean checkout

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2010-03-10 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR Pending] Link: http://www.fltk.org/str.php?L2041 Version: 1.4-feature Link: http://www.fltk.org/str.php?L2041 Version: 1.4-featureIndex: src/Fl_Tooltip.cxx =

Re: [fltk.development] [RFE] STR #2041: Addition of a FL_TOOLTIP event (PoC)

2010-03-10 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR Pending] Link: http://www.fltk.org/str.php?L2041 Version: 1.4-feature Posted an updated patch that can be applied to (at the time) latest svn (rev 7235) Link: http://www.fltk.org/str.php?L2041 Version: 1.4-fea

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2010-03-10 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Link: http://www.fltk.org/str.php?L2082 Version: 1.3-featureIndex: src/Fl_Window.cxx ==

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2010-03-10 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature Matt, I like those ideas as well. It would certainly be more in line with the OO approach. Whilst the options are being considered, I have updat

Re: [fltk.development] [RFE] STR #2082: Under X, instances of Fl_Window do not have a Window Type set.

2010-03-10 Thread Alvin Beach
DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW. [STR New] Link: http://www.fltk.org/str.php?L2082 Version: 1.3-feature I forgot to mention that the new patch file (str2082-r7235.patch) does not touch FLUID any longer. It only patches the library. Link: http://ww