The FOX toolkit has been released under the GNU Lesser General Public Licence . Development began 1997 by Jeroen Van Der Zijp while he was affiliated at CFDRC . Since then, Jeroen van der Zijp maintains the core library and test applications, with the help of a growing user community.
The FOX toolkit is written in C++ . Bindings are available for Python , Ruby and Eiffel . The FOX Source Code distribution supports building with many different (commercial and free) C++ compilers.
CROSS-PLATFORM COMPATIBILITY
FOX differentiates itself in the following way from other cross-platform toolkits:
Tk is a cross-platform toolkit but does not have all of the widgets that FOX considers desirable.
Qt has a different licensing model (which may require a commercial license in some cases where FOX will not)
WxWidgets promotes the use of native widgets on each supported platform
FLTK is a fast, low-footprint library that supports rapid application development, and requires less code to use, but lacks advanced widgets
Both Qt and WxWidgets have some support for programming natively on Mac OS and Mac OS X platforms, which FOX currently does not support.
FOX uses a technique similar to the Java Swing -style approach to display a graphical user interface to the screen, using only graphical primitives available on that platform, as opposed to the original Java AWT -style approach which used native widgets. This means that applications will have a similar Look And Feel across platforms. In theory, porting FOX to a new platform should also be easier than implementing support for native widgets.
On the downside, it usually means that on at least some platforms FOX applications will Look And Feel different from other, native applications for those platforms, which some users may find confusing. Also, certain native platform features may not be available immediately, such as comprehensive printing support, support for anti-aliased fonts, or internationalized input handling, because they will need to be re-implemented in a cross-platform way before they can be used in FOX.
MESSAGING SYSTEM
A major advantage of the FOX toolkit is the simplicity and clarity of the code and programming paradigm that results in a steep learning curve. It offers a bi-directional messaging system that is transparent. Each Widget sends its message to a certain target. Each message is composed by a selector that identifies its kind and an id that is unique and provided by the widget's enumeration. The advantage is that each widget can call a target widget's method in a transparent manner, even if the method does not exist. Vice versa, in the implementation of the individual message handler, since the sender is known, the target can also dispatch a message to the sender. This is a particularly important feature in component oriented software, where components may be written by different people, or even different organizations.
N updates must be executed and at most M---N messages must be implemented. On the other hand, if widgets request for update, only N command messages and at most M update messages are implemented. This strategy separates the GUI update from data changes, making the GUI a real-time reflection of the underlying data structures.
HELLO WORLD
The following example creates a FOX application and a dialog with a button:
Goggles Music Manager is a music collection manager and player that automatically categorizes MP3, MP4, Ogg Vorbis, FLAC, and Musepack files based on genre, artist, album, and song. It supports gapless playback and features easy tag editing.