[fltk.general] Problem with Fl_Double_Window

2011-08-19 Thread PARAJU
I made a program using the class Fl_Double_Window to make a graph, the problem is that when I open and close a window of another program, a part of my graphic disappears. But when I use the Fl_Window class, do not. What could be happening? ___ fltk

Re: [fltk.general] Problem with Fl_Double_Window

2011-08-19 Thread MacArthur, Ian (SELEX GALILEO, UK)
I made a program using the class Fl_Double_Window to make a graph, the problem is that when I open and close a window of another program, a part of my graphic disappears. But when I use the Fl_Window class, do not. What could be happening? You will need to give us more details. What

Re: [fltk.general] Problem with Fl_Double_Window

2011-08-19 Thread Albrecht Schlosser
On 19.08.2011 12:47, PARAJU wrote: I made a program using the class Fl_Double_Window to make a graph, the problem is that when I open and close a window of another program, a part of my graphic disappears. But when I use the Fl_Window class, do not. What could be happening? Without more

Re: [fltk.general] Problem with Fl_Double_Window

2011-08-19 Thread Greg Ercolano
On 08/19/11 03:47, PARAJU wrote: I made a program using the class Fl_Double_Window to make a graph, the problem is that when I open and close a window of another program, a part of my graphic disappears. But when I use the Fl_Window class, do not. What could be happening? To rule out it

Re: [fltk.general] Problem with FL_Double_Window

2009-09-08 Thread Michael Schmid
MacArthur, Ian (SELEX GALILEO, UK) schrieb: I allready posted this issue a while before but I think I didn't describe it very well, so I will try it again... I have the following system: - FLTK 1.1.9 - Nano-X Window System (Version 0.91) - Linux 2.6.24 Is this problem reproducible on a

Re: [fltk.general] Problem with FL_Double_Window

2009-09-08 Thread Albrecht Schlosser
Michael Schmid wrote: No, it really want a modal window (so the widgets of the parent window shouldn't be active as long as the modal window is there) I try to explain my configuration again: parent window - child window (modal) child window - contains OK Button OK Button - callback

Re: [fltk.general] Problem with FL_Double_Window

2009-09-08 Thread MacArthur, Ian (SELEX GALILEO, UK)
No, it really want a modal window (so the widgets of the parent window shouldn't be active as long as the modal window is there) I try to explain my configuration again: parent window - child window (modal) child window - contains OK Button OK Button - callback which closes child

Re: [fltk.general] Problem with FL_Double_Window

2009-09-08 Thread Michael Schmid
MacArthur, Ian (SELEX GALILEO, UK) schrieb: No, it really want a modal window (so the widgets of the parent window shouldn't be active as long as the modal window is there) I try to explain my configuration again: parent window - child window (modal) child window - contains OK Button

Re: [fltk.general] Problem with FL_Double_Window

2009-09-08 Thread MacArthur, Ian (SELEX GALILEO, UK)
It tried your example and it worked (means: the subwindow was closed when I pressed the hide Button even if the subwindow was modal)! Then I compared your example with my code... I did the following wrong: I defined the subwindow INSIDE the begin() - end() space of the main window.

Re: [fltk.general] Problem with FL_Double_Window

2009-09-08 Thread Albrecht Schlosser
MacArthur, Ian (SELEX GALILEO, UK) wrote: [ ... lots of useful and hopefully helpful stuff (removed) ] I'll add a few comments ... Questions: - Is simply the first window which is defined the parent window? Or has it to do with the special show() with the arguments argc and argv

[fltk.general] Problem with FL_Double_Window

2009-09-07 Thread Michael Schmid
Hi! I allready posted this issue a while before but I think I didn't describe it very well, so I will try it again... I have the following system: - FLTK 1.1.9 - Nano-X Window System (Version 0.91) - Linux 2.6.24 Now my problem: I have a main window which is in background and covers the whole

Re: [fltk.general] Problem with FL_Double_Window

2009-09-07 Thread MacArthur, Ian (SELEX GALILEO, UK)
The following appears to work - perhaps it is not what you want, though? Also, this code is hard coded to assume a 1280x1024 monitor, as that happens to be what this screen is... --- // fltk-config --compile full-sc.cxx #include FL/Fl.H #include FL/Fl_Double_Window.H #include

[fltk.general] Problem at Fl_Double_Window showup

2009-03-24 Thread Lazy Fox
I wrote a widget use Fl_Double_Window, but at the moment it showup there was always X11 background color on it, after 2 second it's clean. Why? I use 1.3.x, run x11/fltk on arm9. ___ fltk mailing list fltk@easysw.com

Re: [fltk.general] Problem at Fl_Double_Window showup

2009-03-24 Thread MacArthur, Ian (SELEX GALILEO, UK)
I wrote a widget use Fl_Double_Window, but at the moment it showup there was always X11 background color on it, after 2 second it's clean. Why? Impossible to say without seeing more of your code. As a random guess, I would assume that you have an inappropriate box-type set for the

Re: [fltk.general] Problem at Fl_Double_Window showup

2009-03-24 Thread matthiasm
On 24.03.2009, at 11:14, MacArthur, Ian (SELEX GALILEO, UK) wrote: I wrote a widget use Fl_Double_Window, but at the moment it showup there was always X11 background color on it, after 2 second it's clean. Why? Impossible to say without seeing more of your code. As a random guess, I

Re: [fltk.general] Problem at Fl_Double_Window showup

2009-03-24 Thread Greg Ercolano
Lazy Fox wrote: I wrote a widget use Fl_Double_Window, but at the moment it showup there was always X11 background color on it, after 2 second it's clean. Why? I use 1.3.x, run x11/fltk on arm9. Is the fltk-config option for XFT on or off? Try off. My guess is it might be

Re: [fltk.general] Problem at Fl_Double_Window showup

2009-03-24 Thread Greg Ercolano
Lazy Fox wrote: I wrote a widget use Fl_Double_Window, but at the moment it showup there was always X11 background color on it, after 2 second it's clean. Do the test programs that use Fl_Double_Window also do this, or just your widget? [eg. test/tabs, test/fast_slow, etc]