On 02/25/12 19:21, Larry Finger wrote:
> A screenshot of the program is at http://lwfinger.com/screen1.jpg.
> When the window is moved, most of the widgets on the left-hand side
> of the screen disappear as shown in http://lwfinger.com/screen2.jpg.

        Can you provide the code that creates all the widgets
        in that window, including the sizes and positions, box() values,
        and all the begin() end() stuff.

        It can be something like:

mainwin = new Fl_Window(#,#);
[..]
somegroup = new Fl_Group(#,#,#,#);
somegroup->box(FL_FLAT_BOX);
somegroup->begin();
w1 = new Fl_Input(#,#,#,#,xxx);
w2 = new Fl_Input(#,#,#,#,yyy);
[..include all this..]
somegroup->end();
[..]
glwin = new Fl_Gl_Window(#,#,#,#);

        ..I'd be interested in seeing the '#'s, just to check
        the xywh bounds.

        Leave out any non-ui related logic.

        I'm guessing there's an Fl_Group in there somewhere
        that is smaller than the widgets that are inside it.

        Also: I think it's interesting the background for the widgets
        is flat gray in screen1.jpg, but has a line gradation in screen2.jpg,
        which I think is the window bg.

        I'm guessing that in screen2.jpg we're seeing the window's
        background, and in screen1.jpg we're seeing the background
        of a group.
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to