Software:FLTK

From HandWiki
FLTK
FLTK shadow.svg
Initial release1998; 26 years ago (1998)
Stable release1.3.8 (November 20, 2021; 2 years ago (2021-11-20)[1]) [±]
Written inC++
Operating systemUnix-like with X11, macOS, Microsoft Windows, AmigaOS 4
TypeUser interface library
LicenseGNU Lesser General Public License version 2 with an exception to allow static linking[2]
Websitewww.fltk.org

Fast Light Toolkit (FLTK, pronounced fulltick)[3] is a cross-platform widget (graphical control element) library for graphical user interfaces (GUIs), developed by Bill Spitzak and others. Made to accommodate 3D graphics programming, it has an interface to OpenGL, but it is also suitable for general GUI programming.

Using its own widget, drawing and event systems abstracted from the underlying system-dependent code, it allows for writing programs which look the same on all supported operating systems.

FLTK is free and open-source software, licensed under GNU Lesser General Public License (LGPL) with an added clause permitting static linking from applications with incompatible licenses.

In contrast to user interface libraries like GTK, Qt, and wxWidgets, FLTK uses a more lightweight design and restricts itself to GUI functionality. Because of this, the library is very small (the FLTK "Hello World" program is around 100 KiB), and is usually statically linked. It also avoids complex macros, separate code preprocessors, and use of some advanced C++ features: templates, exceptions, and run-time type information (RTTI) or, for FLTK 1.x, namespaces. Combined with the modest size of the package, this makes it relatively easy to learn for new users.[4]

These advantages come with corresponding disadvantages. FLTK offers fewer widgets than most GUI toolkits and, because of its use of non-native widgets, does not have native look-and-feel on any platform.

Meaning of the name

FLTK was originally designed to be compatible with the Forms Library written for Silicon Graphics (SGI) machines (a derivative of this library called XForms is still used quite often). In that library, all functions and structures start with fl_. This naming was extended to all new methods and widgets in the C++ library, and this prefix FL was taken as the name of the library. After FL was released as open source, it was discovered that searching "FL" on the Internet was a problem, because it is also the abbreviation for Florida. After much debating and searching for a new name for the toolkit, which was already in use by several people, Bill Spitzak came up with Fast Light Tool Kit (FLTK).[5]

Architecture

FLTK is an object-oriented widget toolkit written in the programming language C++. While GTK is mainly optimized for the X Window System, FLTK works on other platforms, including Microsoft Windows (interfaced with the Windows API), and OS X (interfaced with Quartz). A Wayland back-end is being discussed.[6] FLTK2 has gained experimental support for optionally using the cairo graphics library.

Language bindings

A library written in one programming language may be used in another language if language bindings are written. FLTK has a range of bindings for various languages.

FLTK was mainly designed for, and is written in, the programming language C++. However, bindings exist for other languages, for example Lua,[7] Perl,[8] Python,[9] Ruby,[10] Rust[11] and Tcl.[12]

For FLTK 1.x, this example creates a window with an Okay button:

# include <FL/Fl.H>
# include <FL/Fl_Window.H>
# include <FL/Fl_Button.H>

int main(int argc, char *argv[]) {
   Fl_Window* w = new Fl_Window(330, 190);
   new Fl_Button(110, 130, 100, 35, "Okay");
   w->end();
   w->show(argc, argv);
   return Fl::run();
}

GUI designers

FLTK includes Fast Light User Interface Designer (FLUID), a graphical GUI designer that generates C++ source and header files.

Use

Many programs and projects use FLTK, including:

  • Nanolinux, 14 MB Linux distribution[13][14][15][16][17][18]
  • XFDOS, a FreeDOS-based distribution with a GUI, porting Nano-X and FLTK[19][15][16][18]
  • Agenda VR3, a Linux-based personal digital assistant with software based on FLTK.
    • third-party Agenda VR3 software
  • Amnesia, by Frictional Games uses FLTK as its launcher application
  • MwendanoWD, Logic puzzle for personal computer by YPH.[20]
  • Audio:
    • Fldigi, amateur radio software, allows data transmission and text chat via digital modes such as PSK31
    • Giada, looper, micro-sequencer, sample player software, open-source[21]
    • Prodatum, synthesizer preset editor, uses a lifelike interface design[22]
    • ZynAddSubFX, an open-source software synthesizer
  • DiSTI GL Studio, human-machine interface development tool[23]
  • Engineering:
    • ForcePAD, an intuitive tool to visualise the behavior of structures subject to loading and boundary conditions[24]
    • Gmsh, an open-source finite element mesh generator
    • RoboCIM, software to simulate and control operation of a servo robot system and external devices[25]
  • Equinox Desktop Environment (EDE)
  • FlBurn optical disc burning software for Linux[26]
  • Graphics:
    • Avimator, a Biovision Hierarchy (BVH) editor
    • CinePaint, deep-paint software, migrating from GTK to FLTK, open-source
    • ITK-SNAP, software application for medical image segmentation, open-source
    • Nuke, a digital compositing program. Until version 5, now replaced by Qt
    • Open Movie Editor[27]
    • OpenVSP, NASA parametric aircraft sketching, recently open-sourced[28]
    • PosteRazor, open-source poster printing software for Windows, OS X, Linux[29]
    • Tilemap Studio, An open-source tilemap editor for Game Boy, Color, Advance, DS, and SNES projects[30]
  • SmallBASIC, Windows port
  • Web browsers:
    • Dillo, Dillo-2 was based on FLTK-2, abandoning this FLTK branch, with no official release, was a major cause of Dillo-3 being started, using FLTK1.3
    • Fifth, replicates functioning of early Opera[31]
    • NetRider[32]
  • Brain Visualizer: An open-source interactive visualizer for large-scale 3D brain models. Part of the Brain Organization Simulation System (BOSS) developed at Stony Brook University[33]
  • X window managers:

Versions

This version history is an example of the sometimes tumultuous nature of open-source development.[34]

1.0.x

This is a prior stable version, now unmaintained.

1.1.x

This is a prior stable version, now unmaintained.

2.0 branch

This was a development branch, long thought to be the next step in FLTK's evolution, with many new features and a cleaner programming style. It never achieved stability, and development has largely ceased. The branch is inactive now.

1.2.x

This was an attempt to take some of the best features of 2.0 and merge them back into the more popular 1.1 branch. It is no longer developed.

1.3.x

Current stable release.[35] Provides UTF-8 support.

1.4.x

Current development branch. Adds more features to 1.3.[35]

3.0 branch

This branch is mostly a conceptual model for future work. Now inactive.

See also

References

  1. https://www.fltk.org/articles.php?L1782+I0+T+P1+Q
  2. "FLTK License Agreement". https://www.fltk.org/COPYING.php. 
  3. "Fast Light Toolkit - Fast Light Toolkit (FLTK)". https://www.fltk.org/. 
  4. "Fast Light ToolKit (FLTK) » CppLibs". http://www.cpplibs.com/libraries/fltk/. 
  5. "Article #363: What does "FLTK" mean? - Fast Light Toolkit (FLTK)". https://www.fltk.org/articles.php?L363+I0+TFAQ+P1+Q. 
  6. "STR #3371: Wayland Display Server Protocol support - Fast Light Toolkit (FLTK)". https://www.fltk.org/str.php?L3371. 
  7. "murgaLua homepage". http://www.murga-projects.com/murgaLua.html. 
  8. "Links: By Category - Links - Fast Light Toolkit (FLTK)". https://www.fltk.org/links.php. 
  9. "pyFLTK Home Page". https://pyfltk.sourceforge.io/. 
  10. "Ruby/FLTK". https://ruby-fltk.sourceforge.net/. 
  11. "fltk - Rust". https://docs.rs/fltk/latest/fltk/. 
  12. "Tcl/Fltk dynamic extension for Tcl". 3 April 2013. https://sourceforge.net/projects/fltkwish/. 
  13. "Nanolinux". 8 October 2016. https://sourceforge.net/projects/nanolinux/. 
  14. "Tiny to the extreme: Nanolinux". 30 November 2014. https://eerielinux.wordpress.com/2014/11/30/tiny-to-the-extreme-nanolinux/. 
  15. 15.0 15.1 "An interview with the Nanolinux developer". 30 December 2014. https://eerielinux.wordpress.com/2014/12/30/an-interview-with-the-nanolinux-developer/. 
  16. 16.0 16.1 "Artificial Intelligence Methods". http://tawny.cs.nott.ac.uk/~sbx/winnie/aim/overview.htm. 
  17. "PC HTML Editors". http://sites.utoronto.ca/webdocs/HTMLdocs/PCTOOLS/pc_editors.html. 
  18. 18.0 18.1 "Georg's Personal Homepage". http://www.georgpotthast.de/. 
  19. "An extraordinary TK example!". 12 October 2012. https://eerielinux.wordpress.com/2012/10/12/an-extraordinary-tk-example/. 
  20. "YPH". http://tehelimu.ezyro.com/Subsites/enl/tls.html. 
  21. "Giada, hardcore loopmachine". http://www.monocasual.com/giada. 
  22. "prodatum - official homepage". https://prodatum.sourceforge.net/. 
  23. "DiSTI GL Studio". http://www.disti.com/. 
  24. "ForcePAD". https://forcepad.sourceforge.net/. 
  25. "RoboCIM - Robotics software". http://www.labvolt.com/products/automation-and-robotics/robotics/robocim-5250-software-5251. 
  26. "Free | CD DVD burning software for Linux". https://flburn.sourceforge.net/. 
  27. "Open Movie Editor - Free and Open Source Video Editor". http://www.openmovieeditor.org/. 
  28. "OpenVSP". https://openvsp.org/. 
  29. "PosteRazor - Make your own poster!". https://posterazor.sourceforge.io/. 
  30. "Tilemap Studio". 18 October 2021. https://github.com/Rangi42/tilemap-studio. 
  31. "Fifth - Home". https://fifth-browser.sourceforge.net/. 
  32. "NetRider". 23 February 2016. https://sourceforge.net/projects/netrider/. 
  33. "Viz (Brain Visualizer)". 25 August 2021. https://github.com/roukaour/viz-brain-visualizer. 
  34. "What are the Versions of FLTK?". https://www.fltk.org/articles.php?L825+I0+T+P1+Q. 
  35. 35.0 35.1 https://www.fltk.org/articles.php?L825 Taken 5 March 2017.

External links