FOX 1.7.14 (Development branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News FOX 1.7.14 (Development branch)
# 1  
Old 01-04-2008
FOX 1.7.14 (Development branch)

ImageFOX is a C++-based toolkit for GUI development. It includes a rich set of widgets and has powerful yet simple layout managers, MDI widgets, and mega-widgets. FOX incorporates support for XDND for drag and drop, X clipboard and X Selection, watching other I/O channels and sockets, timers and idle processing, object serialization and deserialization, a registry to save persistent settings, and 3D widgets using Mesa or OpenGL. FOX works on Linux, IRIX, Solaris, HP/UX, AIX, Tru64 Unix, Windows 9x,NT,2K (VC++, GNUWIN32, Borland, VisualAge C++), FreeBSD, and Sequent. License: GNU Lesser General Public License (LGPL)Changes:
This release adds 3DConnexion SpaceNavigator support (currently under Unix only). The SpaceNavigator device is a 6DOF motion controller. The FXGLViewer now has build in support (rotation, panning, and zooming) for this device as well. Revamped OpenGL support with GLX 1.3 or higher (frame buffer config supprt). A flag to force visual ID in FXVisual, which allows you to create a 2D drawable with a compatible visual to a 3D drawable. Spinlock support on Windows was added. FXGLCanvas now has the ability to use externally created FXGLContext (thus FXGLContext may be shared across different viewers).Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
itk(n)								     [incr Tk]								    itk(n)

__________________________________________________________________________________________________________________________________________________

NAME
itk - framework for building mega-widgets in Tcl/Tk _________________________________________________________________ DESCRIPTION
Mega-widgets are high-level widgets that are constructed using Tk widgets as component parts, usually without any C code. A fileselection- box, for example, may have a few listboxes, some entry widgets and some control buttons. These individual widgets are put together in a way that makes them act like one big widget. A fileselectionbox mega-widget can be created with a command like: fileselectionbox .fsb -background blue -foreground white Once it has been created, it can be reconfigured with a command like: .fsb configure -background green -foreground black and all of its internal components will change color. Each mega-widget has a set of methods that can be used to manipulate it. For exam- ple, the current selection can be queried from a fileselectionbox like this: set fileName [.fsb get] In effect, a mega-widget looks and acts exactly like a Tk widget, but is considerably easier to implement. [incr Tk] is a framework for building mega-widgets. It uses [incr Tcl] to support the object paradigm, and adds base classes which provide default widget behaviors. All [incr Tk] widgets are derived from the Archetype base class. This class manages internal component widgets, and provides methods like "configure" and "cget" to access configuration options. The Widget base class inherits everything from Archetype, and adds a Tk frame which acts as a container for the mega-widget. It is used to build mega-widgets that sit inside of other frames and toplevels. Derived classes create other internal components and pack them into the "hull" frame created by the Widget base class. The Toplevel base class inherits everything from Archetype, but adds a Tk toplevel which acts as a container for the mega-widget. It is used to build mega-widgets, such as dialog boxes, that have their own toplevel window. Derived classes create other internal components and pack them into the "hull" toplevel created by the Toplevel base class. [incr Widgets] LIBRARY [incr Widgets] is a mega-widget library built using [incr Tk]. It can be used right out of the box, and contains more than 30 different widget classes, including: - fileselectiondialog - tabnotebook - panedwindow - combobox - optionmenu - scrolledlistbox - scrolledframe - messagedialog - and many others... The catalog demo in the "iwidgets/demos" directory shows all of the available widgets in action. Each widget class has its own man page describing the features available. KEYWORDS
class, object, object-oriented, mega-widget itk 3.0 itk(n)