2008-03-28 00:38:44 +03:00
|
|
|
README - Fast Light Tool Kit (FLTK) Version 1.3.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
|
|
|
|
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
|
|
|
|
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".
|
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
|
|
|
|
|
|
|
|
|
|
|
BUILDING FLTK UNDER MICROSOFT WINDOWS
|
|
|
|
|
2000-11-20 17:53:52 +03: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
|
|
|
|
|
|
|
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
|
|
|
|
2010-03-06 17:33:40 +03:00
|
|
|
- FTP: http://ftp.easysw.com/pub/fltk
|
|
|
|
ftp://ftp.easysw.com/pub/fltk
|
|
|
|
ftp://ftp2.easysw.com/pub/fltk
|
|
|
|
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
|
|
|
|
2010-03-06 17:33:40 +03:00
|
|
|
- EMail: fltk@fltk.org [see instructions below]
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2000-11-20 17:53:52 +03:00
|
|
|
To send a message to the FLTK mailing list ("fltk@fltk.org")
|
|
|
|
you must first join the list. Non-member submissions are
|
|
|
|
blocked to avoid problems with SPAM.
|
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:
|
|
|
|
|
|
|
|
http://lists.easysw.com/listinfo/fltk
|
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
|
|
|
|
|
2011-06-06 12:29:00 +04:00
|
|
|
FLTK is copyright 1998-2011 by Bill Spitzak
|
2008-12-03 02:52:57 +03:00
|
|
|
(spitzak@users.sourceforge.net) and others,
|
|
|
|
see the CREDITS file for more info.
|
1998-10-20 20:41:24 +04:00
|
|
|
|
2000-11-20 17:53:52 +03:00
|
|
|
This library is free software; you can redistribute it
|
|
|
|
and/or modify it under the terms of the GNU Library General
|
|
|
|
Public License as published by the Free Software Foundation;
|
|
|
|
either version 2 of the License, or (at your option) any
|
|
|
|
later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be
|
|
|
|
useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
|
|
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the GNU Library General Public License for
|
|
|
|
more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General
|
|
|
|
Public License along with this library; if not, write to the
|
|
|
|
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
|
|
Boston, MA 02111-1307 USA.
|