2016-01-30 03:56:42 +03:00
|
|
|
README - Fast Light Tool Kit (FLTK) Version 1.4.0
|
2001-08-02 01:24:49 +04:00
|
|
|
-------------------------------------------------
|
1998-10-06 22:21:25 +04:00
|
|
|
|
1998-10-20 20:41:24 +04:00
|
|
|
WHAT IS FLTK?
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2023-10-13 20:08:30 +03:00
|
|
|
The Fast Light Tool Kit is a cross-platform C++ GUI toolkit for
|
2024-10-18 15:06:14 +03:00
|
|
|
UNIX®/Linux® (X11 or Wayland), Microsoft® Windows®, and macOS®.
|
|
|
|
FLTK provides modern GUI functionality without bloat and
|
|
|
|
supports 3D graphics via OpenGL® and its built-in GLUT
|
|
|
|
emulation. It was originally developed by Mr. Bill Spitzak
|
|
|
|
and is currently maintained by a small group of developers
|
|
|
|
across the world with a central repository on GitHub.
|
2023-12-20 19:05:18 +03:00
|
|
|
|
|
|
|
https://www.fltk.org/
|
|
|
|
https://github.com/fltk/fltk/
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
|
1998-10-20 20:41:24 +04:00
|
|
|
LICENSING
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2023-08-15 18:52:59 +03:00
|
|
|
FLTK comes with complete free source code. FLTK is available
|
2023-12-20 19:05:18 +03:00
|
|
|
under the terms of the GNU Library General Public License with
|
|
|
|
exceptions (e.g. for static linking).
|
2000-11-20 17:53:52 +03:00
|
|
|
Contrary to popular belief, it can be used in commercial
|
2013-03-01 04:48:00 +04:00
|
|
|
software! (Even Bill Gates could use it.)
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
|
1999-01-13 19:25:17 +03:00
|
|
|
ON-LINE DOCUMENTATION
|
|
|
|
|
2020-11-15 18:12:12 +03:00
|
|
|
The documentation in HTML and PDF forms can be created by
|
|
|
|
Doxygen from the source files. HTML and PDF versions of this
|
2000-11-20 17:53:52 +03:00
|
|
|
documentation is also available from the FLTK web site at:
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
https://www.fltk.org/documentation.php
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
|
2020-11-15 18:12:12 +03:00
|
|
|
BUILDING AND INSTALLING FLTK UNDER UNIX AND macOS
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2020-11-15 18:12:12 +03:00
|
|
|
Beginning with FLTK 1.4 the main and recommended build system
|
|
|
|
is CMake. CMake is a "build system generator" and can be used
|
|
|
|
to create Makefile's, Ninja build files, Xcode (macOS),
|
|
|
|
Visual Studio (Windows) IDE files and many more.
|
|
|
|
|
|
|
|
Please see README.CMake.txt for further information.
|
|
|
|
|
|
|
|
Alternatively FLTK can be built with autoconf + make, the
|
|
|
|
build system used in FLTK 1.3 and earlier versions. Please
|
|
|
|
be aware that the following information may be outdated
|
|
|
|
because it is no longer actively maintained.
|
|
|
|
|
2023-12-20 19:05:18 +03:00
|
|
|
Note: autoconf + configure + make is still supported in FLTK 1.4.x
|
|
|
|
but will be removed in FLTK 1.5.0 or any higher version.
|
|
|
|
|
2020-11-15 18:12:12 +03:00
|
|
|
In most cases you can just type "make". This will run configure
|
|
|
|
with the default (no) options and then compile everything.
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2000-11-20 17:53:52 +03:00
|
|
|
FLTK uses GNU autoconf to configure itself for your UNIX
|
|
|
|
platform. The main things that the configure script will
|
|
|
|
look for are the X11, OpenGL (or Mesa), and JPEG header and
|
|
|
|
library files. Make sure that they are in the standard
|
|
|
|
include/library locations. If they aren't you need to
|
|
|
|
define the CFLAGS, CXXFLAGS, and LDFLAGS environment
|
|
|
|
variables.
|
1998-11-05 19:04:53 +03:00
|
|
|
|
2000-11-20 17:53:52 +03:00
|
|
|
If you aren't using "gcc", "g++", "c++", or "CC" for your
|
|
|
|
C++ compiler, you'll also need to set the CXX environment
|
|
|
|
variable. Similarly, if you aren't using "gcc" or "cc" for
|
2020-11-15 18:12:12 +03:00
|
|
|
your C compiler you'll need to set the CC environment variable.
|
1999-02-01 23:22:20 +03:00
|
|
|
|
2000-11-20 17:53:52 +03:00
|
|
|
You can run configure yourself to get the exact setup you
|
|
|
|
need. Type "./configure <options>". Options include:
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2023-12-20 19:05:18 +03:00
|
|
|
--help - display help and exit
|
|
|
|
--enable-cygwin - Enable the Cygwin DLL (Cygwin only)
|
2020-07-01 19:03:10 +03:00
|
|
|
--enable-debug - Enable debugging code & symbols
|
2023-12-20 19:05:18 +03:00
|
|
|
--disable-forms - Disable generation of the forms library
|
2020-07-01 19:03:10 +03:00
|
|
|
--disable-gl - Disable OpenGL support
|
|
|
|
--enable-shared - Enable generation of shared libraries
|
|
|
|
--enable-threads - Enable multithreading support
|
|
|
|
--enable-xft - Enable the Xft library (anti-aliased fonts)
|
2022-07-05 11:13:31 +03:00
|
|
|
--enable-pango - Draw text with the pango library
|
2023-09-15 13:27:33 +03:00
|
|
|
--disable-wayland - Force building for X11 only (no Wayland support)
|
|
|
|
--enable-x11 - Force building for X11 (macOS and Cygwin)
|
|
|
|
--disable-x11 - Force building for Wayland only (Linux/Unix)
|
2020-07-01 19:03:10 +03:00
|
|
|
--bindir=/path - Set the location for executables
|
|
|
|
[default = /usr/local/bin]
|
|
|
|
--libdir=/path - Set the location for libraries
|
|
|
|
[default = /usr/local/lib]
|
|
|
|
--includedir=/path - Set the location for include files.
|
|
|
|
[default = /usr/local/include]
|
|
|
|
--prefix=/dir - Set the directory prefix for files
|
|
|
|
[default = /usr/local]
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2023-12-20 19:05:18 +03:00
|
|
|
For more options please see './configure --help'.
|
|
|
|
|
2000-11-20 17:53:52 +03:00
|
|
|
When the configure script is done you can just run the
|
|
|
|
"make" command. This will build the library, FLUID tool, and
|
|
|
|
all of the test programs.
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2000-11-20 17:53:52 +03:00
|
|
|
To install the library, become root and type "make
|
|
|
|
install". This will copy the "fluid" executable to
|
|
|
|
"bindir", the header files to "includedir", and the library
|
|
|
|
files to "libdir".
|
2013-03-01 04:48:00 +04:00
|
|
|
|
2010-11-14 19:37:34 +03:00
|
|
|
To install additional files and icons to be used by the main
|
|
|
|
desktop environments such as KDE, GNOME and XFCE, you will also
|
|
|
|
need to run "make install-desktop" as root.
|
1998-10-20 20:41:24 +04:00
|
|
|
|
|
|
|
|
2020-11-15 18:12:12 +03:00
|
|
|
GIT USERS
|
2017-07-05 20:15:16 +03:00
|
|
|
|
2024-05-13 20:08:42 +03:00
|
|
|
If you've just checked out a fresh copy of FLTK from Git (GitHub),
|
2014-02-19 22:24:29 +04:00
|
|
|
you'll need to generate an initial version of 'configure'
|
2023-12-20 19:05:18 +03:00
|
|
|
by running 'make makeinclude' or 'make clean' (we don't
|
|
|
|
include a copy of configure in git).
|
2014-02-19 22:24:29 +04:00
|
|
|
|
|
|
|
|
|
|
|
MAKE TARGETS
|
2017-07-05 20:15:16 +03:00
|
|
|
|
2014-02-19 22:24:29 +04:00
|
|
|
make -- builds the library + test programs (does not install)
|
|
|
|
make install -- builds and installs
|
|
|
|
make clean -- clean for a rebuild
|
|
|
|
make distclean -- like 'clean', but also removes docs, configure, fltk-config
|
|
|
|
( cd src; make ) -- builds just the fltk libraries
|
|
|
|
|
|
|
|
|
1998-10-20 20:41:24 +04:00
|
|
|
BUILDING FLTK UNDER MICROSOFT WINDOWS
|
|
|
|
|
2013-03-01 04:48:00 +04:00
|
|
|
There are two ways to build FLTK under Microsoft Windows.
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2023-12-20 19:05:18 +03:00
|
|
|
The first is to use CMake to create the Visual C++ project or NMake files
|
|
|
|
in your favorite development directory, then build FLTK with Visual Studio.
|
|
|
|
|
|
|
|
The second method is to use a GNU-based development tool. To build with
|
|
|
|
the Cygwin or MinGW tools, use the supplied configure script as specified
|
|
|
|
in the UNIX section above:
|
2001-12-11 19:03:13 +03:00
|
|
|
|
2023-12-20 19:05:18 +03:00
|
|
|
./configure ...options...
|
2001-12-11 19:03:13 +03:00
|
|
|
|
2020-11-15 18:12:12 +03:00
|
|
|
See README.Windows.txt and README.CMake.txt for more info.
|
|
|
|
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2013-09-10 20:23:39 +04:00
|
|
|
BUILDING HTML DOCUMENTATION
|
|
|
|
|
|
|
|
If you want to build the HTML documentation:
|
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
( cd documentation && make html )
|
2013-09-10 20:23:39 +04:00
|
|
|
|
|
|
|
If you want to build the PDF documentation:
|
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
( cd documentation && make pdf )
|
2017-07-05 20:15:16 +03:00
|
|
|
|
2013-09-10 20:23:39 +04:00
|
|
|
FLTK uses doxygen for documentation, so you'll at least need doxygen
|
|
|
|
installed for creating html docs, and LaTeX for creating PDF docs.
|
|
|
|
|
|
|
|
|
1998-10-20 20:41:24 +04:00
|
|
|
INTERNET RESOURCES
|
|
|
|
|
|
|
|
FLTK is available on the 'net in a bunch of locations:
|
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
- WWW: https://www.fltk.org/
|
|
|
|
https://www.fltk.org/bugs.php [for reporting bugs]
|
|
|
|
https://www.fltk.org/software.php [source code]
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2020-11-15 18:12:12 +03:00
|
|
|
|
|
|
|
GENERAL QUESTIONS
|
|
|
|
|
2004-11-23 23:16:11 +03:00
|
|
|
To join the FLTK mailing list, go the following web page:
|
|
|
|
|
2020-11-15 18:12:12 +03:00
|
|
|
https://groups.google.com/forum/#!forum/fltkgeneral
|
|
|
|
|
|
|
|
You can find detailed instructions how you can register for the mailing
|
|
|
|
list (even w/o a Google mail address) at the bottom of this page:
|
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
https://www.fltk.org/newsgroups.php
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2020-11-15 18:12:12 +03:00
|
|
|
|
1998-10-20 20:41:24 +04:00
|
|
|
REPORTING BUGS
|
|
|
|
|
2020-11-15 18:12:12 +03:00
|
|
|
If you are new to FLTK, or have general questions about how to use FLTK,
|
|
|
|
or aren't sure if you found a bug, please ask first on the fltk.general
|
|
|
|
group forum at:
|
2004-11-23 23:16:11 +03:00
|
|
|
|
2020-11-15 18:12:12 +03:00
|
|
|
https://groups.google.com/forum/#!forum/fltkgeneral
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2020-11-15 18:12:12 +03:00
|
|
|
See paragraph GENERAL QUESTIONS above for more info.
|
|
|
|
|
|
|
|
If you are sure you found a bug, please see the following page for
|
|
|
|
further information:
|
|
|
|
|
|
|
|
https://www.fltk.org/bugs.php
|
1998-10-20 20:41:24 +04:00
|
|
|
|
|
|
|
|
|
|
|
TRADEMARKS
|
|
|
|
|
|
|
|
Microsoft and Windows are registered trademarks of Microsoft
|
2002-04-29 23:27:51 +04:00
|
|
|
Corporation. UNIX is a registered trademark of the X/Open
|
2000-11-20 17:53:52 +03:00
|
|
|
Group, Inc. OpenGL is a registered trademark of Silicon
|
2023-12-20 19:05:18 +03:00
|
|
|
Graphics, Inc. macOS is a registered trademark of Apple
|
2010-03-06 17:33:40 +03:00
|
|
|
Computers, Inc.
|
1998-10-20 20:41:24 +04:00
|
|
|
|
|
|
|
|
|
|
|
COPYRIGHT
|
|
|
|
|
2024-10-18 15:06:14 +03:00
|
|
|
FLTK is copyright 1998-2024 by Bill Spitzak and others,
|
2023-12-20 19:05:18 +03:00
|
|
|
see the CREDITS.txt file for more info.
|
1998-10-20 20:41:24 +04: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
|