diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-10-06 18:21:25 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-10-06 18:21:25 +0000 |
| commit | f9039b2ae21988783feae9b362818e7923e82d14 (patch) | |
| tree | 6d6fe3679d73448758f9794e7d4d4f6b22a4adad /test/mandelbrot_ui.fl | |
| parent | 67e89232f9ba067825a158734a09e0fa21aacbe3 (diff) | |
Initial revision
git-svn-id: file:///fltk/svn/fltk/trunk@2 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/mandelbrot_ui.fl')
| -rw-r--r-- | test/mandelbrot_ui.fl | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/test/mandelbrot_ui.fl b/test/mandelbrot_ui.fl new file mode 100644 index 000000000..2c864aaad --- /dev/null +++ b/test/mandelbrot_ui.fl @@ -0,0 +1,63 @@ +# data file for FL User Interface Designer (fluid) +version 0.99 +gridx 10 +gridy 10 +snap 3 +Function {make_window(Drawing_Window& s)} {open +} { + Fl_Window {s.window} {open + xywh {92 109 429 510} + code0 {o->size_range(220,220);} + } { + Fl_Box {s.d} { + user_data {&s} user_data_type {Drawing_Window*} open + xywh {10 70 410 430} box 3 color {0 47} resizable + code0 {\#include "mandelbrot.H"} + class Drawing_Area + } + Fl_Input {s.x_input} { + label {x:} + user_data {&s} user_data_type {Drawing_Window*} + callback x_callback open + xywh {20 5 125 30} type 1 box 7 color {8 7} labelfont 11 labelsize 20 textfont 11 textsize 20 + code0 {o->when(FL_WHEN_ENTER_KEY|FL_WHEN_RELEASE);} + } + Fl_Input {s.y_input} { + label {y:} + user_data {&s} user_data_type {Drawing_Window*} + callback y_callback open + xywh {165 5 125 30} type 1 box 7 color {8 7} labelfont 11 labelsize 20 textfont 11 textsize 20 + code0 {o->when(FL_WHEN_ENTER_KEY|FL_WHEN_RELEASE);} + } + Fl_Input {s.w_input} { + label {w:} + user_data {&s} user_data_type {Drawing_Window*} + callback w_callback open + xywh {315 5 105 30} type 1 box 7 color {8 7} labelfont 11 labelsize 20 textfont 11 textsize 20 + code0 {o->when(FL_WHEN_ENTER_KEY|FL_WHEN_RELEASE);} + } + Fl_Slider {} { + label {brightness:} + user_data {&s} user_data_type {Drawing_Window*} + callback brightness_slider_cb open + xywh {70 40 160 15} type 1 box 7 labelsize 10 align 4 step 1 slider_size 0.1 + code0 {o->bounds(0,s.d->MAX_BRIGHTNESS);} + code2 {o->value(s.d->DEFAULT_BRIGHTNESS);} + code3 {o->slider(FL_UP_BOX);} + } + Fl_Box {} { + label {left: click = zoom out, drag = zoom in +right click: Julia set} open + xywh {230 40 190 30} labelsize 10 align 24 deactivate + } + Fl_Slider {} { + label {iterations:} + user_data {&s} user_data_type {Drawing_Window*} + callback iterations_slider_cb open selected + xywh {70 55 160 15} type 1 box 7 labelsize 10 align 4 step 1 slider_size 0.1 + code0 {o->bounds(1,s.d->MAX_ITERATIONS);} + code2 {o->value(s.d->DEFAULT_ITERATIONS);} + code3 {o->slider(FL_UP_BOX);} + } + } +} |
