3 * Copyright (C) 2007, Harbour, All rights reserved.
7 #include <FL/Fl_Window.H>
11 // you may insert here make_windows() from fltk for ex.
15 // cut & paste hello.cxx from fltk-1.1.x
16 Fl_Window *window = new Fl_Window(300, 180, F_App::argv(0));
18 if (F_App::argc() > 1)
19 box = new Fl_Box(FL_UP_BOX, 20, 40, 260, 100, F_App::name());
21 box = new Fl_Box(FL_UP_BOX, 20, 40, 260, 100, "Hello, World!");
22 box->labelfont(FL_BOLD + FL_ITALIC);
24 box->labeltype(FL_SHADOW_LABEL);