// generated by Fast Light User Interface Designer (fluid) version 1.0109

#include "fluid3.h"
#include <stdio.h>
#include <stdlib.h>

void Button_CB(F1_Widget *, void *) {
  //output1->value(input1->value());
printf("pressed\n");
}

void WindowQuit_CB(F1_Widget *, void *) {
  printf("WinQuit_CB\n");
exit(0);
}

Fl_Input *input1=(Fl_Input *)0;

Fl_Button *Calc1=(Fl_Button *)0;

static void cb_Calc1(Fl_Button*, void*) {
  void *Button_CB;
}

Fl_Input *output1=(Fl_Input *)0;

int main(int argc, char **argv) {
  Fl_Window* w;
  { Fl_Window* o = new Fl_Window(765, 710);
    w = o;
    o->callback((Fl_Callback*)WinQuit_CB);
    { Fl_Scrollbar* o = new Fl_Scrollbar(0, 680, 760, 25);
      o->type(1);
      o->align(FL_ALIGN_LEFT);
    } // Fl_Scrollbar* o
    { new Fl_Scrollbar(735, 0, 25, 680);
    } // Fl_Scrollbar* o
    { input1 = new Fl_Input(160, 40, 150, 25, "Float input");
      input1->type(1);
      input1->box(FL_FLAT_BOX);
    } // Fl_Input* input1
    { Calc1 = new Fl_Button(160, 85, 150, 25, "Calc");
      Calc1->callback((Fl_Callback*)cb_Calc1);
    } // Fl_Button* Calc1
    { output1 = new Fl_Input(160, 125, 155, 25, "Float output");
      output1->type(1);
    } // Fl_Input* output1
    { Fl_Box* o = new Fl_Box(160, 15, 350, 19, "Change:");
      o->box(FL_BORDER_BOX);
    } // Fl_Box* o
    { Fl_Tile* o = new Fl_Tile(20, 5, 330, 160);
      o->end();
    } // Fl_Tile* o
    { Fl_Tile* o = new Fl_Tile(30, 185, 305, 620);
      { new Fl_Button(55, 210, 135, 265, "TEST");
      } // Fl_Button* o
      o->end();
    } // Fl_Tile* o
    o->end();
    o->resizable(o);
  } // Fl_Window* o
  w->show(argc, argv);
  return Fl::run();
}
