Difference between revisions of "Backend"

From GNUstepWiki
Jump to navigation Jump to search
m
Line 3: Line 3:
 
GNUstep's '''backend''' provides a small set of functions used by the [[AppKit|GUI]] library to interface to the actual window system (X11, etc). It also has a drawing engine which emulates common PostScript functions.
 
GNUstep's '''backend''' provides a small set of functions used by the [[AppKit|GUI]] library to interface to the actual window system (X11, etc). It also has a drawing engine which emulates common PostScript functions.
  
The package gnustep-back provides the following backends
+
The package [[back|gnustep-back]] provides the following backends
 
* art – default backend on unixlike systems. Uses the vector-based PostScriptlike 2d graphics library libArt.
 
* art – default backend on unixlike systems. Uses the vector-based PostScriptlike 2d graphics library libArt.
 
* winlib – default backend on windows systems. Calls the Windows API.
 
* winlib – default backend on windows systems. Calls the Windows API.

Revision as of 22:03, 10 February 2008

This article or section is a stub (i.e., in need of additional material).
You can help us by expanding it


GNUstep's backend provides a small set of functions used by the GUI library to interface to the actual window system (X11, etc). It also has a drawing engine which emulates common PostScript functions.

The package gnustep-back provides the following backends

  • art – default backend on unixlike systems. Uses the vector-based PostScriptlike 2d graphics library libArt.
  • winlib – default backend on windows systems. Calls the Windows API.
  • xlib – old (deprecated) X11 backend.
  • cairo – experimental backend using the cairo 2D graphics library. Whilst being not ready for daily work it is planned to replace the current default backends and let cairo care about the underlying graphics system (xlib/xrender, win32, opengl...)

Related Links