2008-02-20 21:36:38 +03:00
|
|
|
//
|
|
|
|
// Hello, World! program for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2021-01-13 17:12:26 +03:00
|
|
|
// Copyright 1998-2021 by Bill Spitzak and others.
|
2008-02-20 21:36:38 +03:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
// file is missing or damaged, see the license at:
|
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/COPYING.php
|
2008-02-20 21:36:38 +03:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// Please see the following page on how to report bugs and issues:
|
2008-02-20 21:36:38 +03:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/bugs.php
|
2008-02-20 21:36:38 +03:00
|
|
|
//
|
2006-09-05 14:29:31 +04:00
|
|
|
|
2008-02-20 21:36:38 +03:00
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/Fl_Window.H>
|
|
|
|
#include <FL/Fl_Box.H>
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2021-01-13 17:12:26 +03:00
|
|
|
Fl_Window *window = new Fl_Window(340, 180);
|
|
|
|
Fl_Box *box = new Fl_Box(20, 40, 300, 100, "Hello, World!");
|
2011-01-01 16:23:25 +03:00
|
|
|
box->box(FL_UP_BOX);
|
2021-01-13 17:12:26 +03:00
|
|
|
box->labelfont(FL_BOLD + FL_ITALIC);
|
2008-02-20 21:36:38 +03:00
|
|
|
box->labelsize(36);
|
|
|
|
box->labeltype(FL_SHADOW_LABEL);
|
|
|
|
window->end();
|
2023-12-16 23:59:39 +03:00
|
|
|
window->show(argc, argv);
|
2008-02-20 21:36:38 +03:00
|
|
|
return Fl::run();
|
2006-08-23 16:57:42 +04:00
|
|
|
}
|