Initial commit
[forms.git] / test / x11_ui.C
blob54c6d1f77e6bbc6b0b601b7fe57fca98101d05a8
2 #include <FL/Fl.H>
3 #include <FL/Fl_Window.H>
4 #include <FL/Fl_Box.H>
5 #include <demo.H>
7 // you may insert here make_windows() from fltk for ex.
9 void x11_ui::init()
11   // cut & paste hello.cxx from fltk-1.1.x
12   Fl_Window *window = new Fl_Window(300, 180, F_App::argv(0));
13   Fl_Box *box;
14   if (F_App::argc() > 1)
15     box = new Fl_Box(FL_UP_BOX, 20, 40, 260, 100, F_App::name());
16   else
17     box = new Fl_Box(FL_UP_BOX, 20, 40, 260, 100, "Hello, World!");
18   box->labelfont(FL_BOLD + FL_ITALIC);
19   box->labelsize(33);
20   box->labeltype(FL_SHADOW_LABEL);
21   window->end();
22   window->show();