2015-03-10 04:41:55 +03:00
|
|
|
README - Fast Light Tool Kit (FLTK) Version 1.3.4
|
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
|
|
|
|
2000-11-20 17:53:52 +03:00
|
|
|
The Fast Light Tool Kit ("FLTK", pronounced "fulltick") is a
|
2002-10-05 01:04:26 +04:00
|
|
|
a cross-platform C++ GUI toolkit for UNIX(r)/Linux(r) (X11),
|
|
|
|
Microsoft(r) Windows(r), and MacOS(r) X. FLTK provides
|
|
|
|
modern GUI functionality without the bloat and supports 3D
|
|
|
|
graphics via OpenGL(r) 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 in the US.
|
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
|
|
|
|
2000-11-20 17:53:52 +03:00
|
|
|
FLTK comes with complete free source code. FLTK is available
|
|
|
|
under the terms of the GNU Library General Public License.
|
|
|
|
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
|
|
|
|
|
|
|
|
All of the documentation is in HTML in the subdirectory
|
2000-11-20 17:53:52 +03:00
|
|
|
"documentation". The "index.html" file should be your
|
|
|
|
starting point. PostScript(tm) and PDF versions of this
|
|
|
|
documentation is also available from the FLTK web site at:
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-11-30 03:28:22 +03:00
|
|
|
http://www.fltk.org/documentation.php
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
|
2011-06-06 12:29:00 +04:00
|
|
|
BUILDING AND INSTALLING FLTK UNDER UNIX AND Mac OS X
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2000-11-20 17:53:52 +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
|
|
|
|
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
|
|
|
|
2010-03-06 17:33:40 +03:00
|
|
|
--enable-cygwin - Enable the Cygwin libraries (WIN32)
|
|
|
|
--enable-debug - Enable debugging code & symbols
|
|
|
|
--disable-gl - Disable OpenGL support
|
|
|
|
--enable-shared - Enable generation of shared libraries
|
|
|
|
--enable-threads - Enable multithreading support
|
|
|
|
--enable-xdbe - Enable the X double-buffer extension
|
|
|
|
--enable-xft - Enable the Xft library (anti-aliased fonts)
|
|
|
|
|
|
|
|
--bindir=/path - Set the location for executables
|
1998-10-20 20:41:24 +04:00
|
|
|
[default = /usr/local/bin]
|
2010-03-06 17:33:40 +03:00
|
|
|
--libdir=/path - Set the location for libraries
|
1998-10-20 20:41:24 +04:00
|
|
|
[default = /usr/local/lib]
|
2010-03-06 17:33:40 +03:00
|
|
|
--includedir=/path - Set the location for include files.
|
1998-10-20 20:41:24 +04:00
|
|
|
[default = /usr/local/include]
|
2010-03-06 17:33:40 +03:00
|
|
|
--prefix=/dir - Set the directory prefix for files
|
1998-10-20 20:41:24 +04:00
|
|
|
[default = /usr/local]
|
|
|
|
|
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
|
|
|
|
|
|
|
|
2014-02-19 22:24:29 +04:00
|
|
|
SVN USERS
|
|
|
|
|
|
|
|
If you've just checked out a fresh copy of FLTK from SVN,
|
|
|
|
you'll need to generate an initial version of 'configure'
|
|
|
|
by running 'make makeinclude'. (We don't include a copy
|
|
|
|
of configure in svn)
|
|
|
|
|
|
|
|
|
|
|
|
MAKE TARGETS
|
|
|
|
|
|
|
|
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.
|
2008-12-03 02:52:57 +03:00
|
|
|
The first is to use the Visual C++ project files under the
|
|
|
|
"ide/" directory. See the file ide/README.IDE for more info.
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2011-06-06 12:29:00 +04:00
|
|
|
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
|
|
|
|
|
|
|
sh configure ...options...
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
( cd documentation && make html )
|
|
|
|
|
|
|
|
If you want to build the PDF documentation:
|
|
|
|
|
|
|
|
( cd documentation && make pdf )
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
2010-03-06 17:33:40 +03:00
|
|
|
- WWW: http://www.fltk.org/
|
|
|
|
http://www.fltk.org/str.php [for reporting bugs]
|
|
|
|
http://www.fltk.org/software.php [source code]
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2013-09-10 20:23:39 +04:00
|
|
|
- FTP: (offline Apr 20 '13) http://ftp.easysw.com/pub/fltk
|
|
|
|
(offline Apr 20 '13) ftp://ftp.easysw.com/pub/fltk
|
|
|
|
(offline Apr 20 '13) ftp://ftp2.easysw.com/pub/fltk
|
2010-03-06 17:33:40 +03:00
|
|
|
ftp://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/fltk
|
|
|
|
ftp://linux.mathematik.tu-darmstadt.de/pub/linux/mirrors/misc/fltk
|
|
|
|
ftp://gd.tuwien.ac.at/hci/fltk
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2004-11-23 23:16:11 +03:00
|
|
|
To join the FLTK mailing list, go the following web page:
|
|
|
|
|
2013-09-10 20:23:39 +04:00
|
|
|
http://www.fltk.org/newsgroups.php
|
1998-10-20 20:41:24 +04:00
|
|
|
|
|
|
|
REPORTING BUGS
|
|
|
|
|
2004-11-23 23:16:11 +03:00
|
|
|
To report a bug in FLTK, use the form at:
|
|
|
|
|
|
|
|
http://www.fltk.org/str.php
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2000-11-20 17:53:52 +03:00
|
|
|
For general support and questions, please use the FLTK
|
|
|
|
mailing list at "fltk@fltk.org".
|
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
|
2011-06-06 12:29:00 +04:00
|
|
|
Graphics, Inc. Mac OS 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
|
|
|
|
|
2013-03-01 04:48:00 +04:00
|
|
|
FLTK is copyright 1998-2013 by Bill Spitzak
|
|
|
|
(spitzak@users.sourceforge.net) and others,
|
2008-12-03 02:52:57 +03:00
|
|
|
see the CREDITS 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:
|
|
|
|
|
|
|
|
http://www.fltk.org/COPYING.php
|
|
|
|
|