diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2008-09-02 21:42:36 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2008-09-02 21:42:36 +0000 |
| commit | eee7fe577570c4dd6038457de92333b886cfb2fe (patch) | |
| tree | 5964defe6bae26d3ba644bc3b7b8c47da9b24986 | |
| parent | c3b29633d75e6ac08565e8a3a4b6874e5cd1e5f3 (diff) | |
made the window its own resizable() for better resize testing
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6190 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | test/resize.fl | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/test/resize.fl b/test/resize.fl index bcc880de0..3b2180153 100644 --- a/test/resize.fl +++ b/test/resize.fl @@ -1,50 +1,47 @@ # data file for the Fltk User Interface Designer (fluid) -version 1.00 +version 1.0300 header_name {.h} -code_name {.cxx} -gridx 10 -gridy 10 -snap 3 +code_name {.cxx} Function {} {open } { Fl_Window {} {open - xywh {333 489 366 261} visible + xywh {333 489 366 261} type Double resizable visible } { Fl_Button {} { label {@<-} callback {Fl_Window* w = o->window(); w->position(w->x()-50,w->y());} - xywh {20 40 40 40} labeltype SYMBOL_LABEL + xywh {20 40 40 40} } Fl_Button {} { label {@2->} callback {Fl_Window* w = o->window(); w->position(w->x(),w->y()+50);} - xywh {60 80 40 40} labeltype SYMBOL_LABEL + xywh {60 80 40 40} } Fl_Button {} { label {@->} callback {Fl_Window* w = o->window(); w->position(w->x()+50,w->y());} - xywh {100 40 40 40} labeltype SYMBOL_LABEL + xywh {100 40 40 40} } Fl_Button {} { label {@8->} callback {Fl_Window* w = o->window(); w->position(w->x(),w->y()-50);} - xywh {60 0 40 40} labeltype SYMBOL_LABEL + xywh {60 0 40 40} } Fl_Button {} { label grow callback {Fl_Window* w = o->window(); w->size(w->w()+20, w->h()+20);} - xywh {30 130 110 40} labeltype SYMBOL_LABEL labelfont 1 labelsize 18 + xywh {30 130 110 40} labelfont 1 labelsize 18 } Fl_Button {} { label shrink callback {Fl_Window* w = o->window(); w->size(w->w()-20, w->h()-20);} - xywh {30 190 110 40} labeltype SYMBOL_LABEL labelfont 1 labelsize 18 + xywh {30 190 110 40} labelfont 1 labelsize 18 } Fl_Box {} { label {This is a test of program-generated resize() of a window. The window should move or resize once when each button is clicked. The program and window manager should not go into fits echoing resizes back and forth!} selected |
