<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://mediawiki.gnustep.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Awiebe</id>
	<title>GNUstepWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://mediawiki.gnustep.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Awiebe"/>
	<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php/Special:Contributions/Awiebe"/>
	<updated>2026-04-12T01:07:19Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.7</generator>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NSWindow&amp;diff=6572</id>
		<title>NSWindow</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NSWindow&amp;diff=6572"/>
		<updated>2013-08-24T02:45:03Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The NSWindow class creates a drawing surface and fills the background based on its style mask.&lt;br /&gt;
==XIB Fields==&lt;br /&gt;
'''N.B.''' Unarchiver class = NSWindowTemplate&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
! align=&amp;quot;left&amp;quot;| Name&lt;br /&gt;
! Type&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
!NSWindowStyleMask&lt;br /&gt;
|int&lt;br /&gt;
|A bitmask that is interpreted by the window to select it's style. [https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/Classes/NSWindow_Class/Reference/Reference.html#//apple_ref/doc/constant_group/Window_Style_Masks Values]&lt;br /&gt;
|-&lt;br /&gt;
!NSWindowBacking&lt;br /&gt;
|enum NSBackingStoreType : int&lt;br /&gt;
|Retained,Non-Retained,Buffered&lt;br /&gt;
|-&lt;br /&gt;
!NSWindowRect&lt;br /&gt;
|NSRect&lt;br /&gt;
|The initial window size.&lt;br /&gt;
|-&lt;br /&gt;
!NSWTFFlags&lt;br /&gt;
|int&lt;br /&gt;
|A bitmask, don't know what it does.&lt;br /&gt;
|-&lt;br /&gt;
!NSWindowTitle&lt;br /&gt;
|NSString&lt;br /&gt;
|What is the shown in the window titlebar.&lt;br /&gt;
|-&lt;br /&gt;
!NSWindowClass&lt;br /&gt;
|NSString&lt;br /&gt;
|The type of window the template represents.&lt;br /&gt;
|-&lt;br /&gt;
!NSViewClass&lt;br /&gt;
|NSString&lt;br /&gt;
|The name of the class backing the window's content area&lt;br /&gt;
|-&lt;br /&gt;
!NSWindowContentMaxSize&lt;br /&gt;
|NSSize&lt;br /&gt;
|Self explanitory.&lt;br /&gt;
|-&lt;br /&gt;
!NSWindowContentMinSize&lt;br /&gt;
|NSSize&lt;br /&gt;
|Self explanitory.&lt;br /&gt;
|-&lt;br /&gt;
!NSMinSize&lt;br /&gt;
|NSSize&lt;br /&gt;
|Seems to apply to the content view rather than the window.&lt;br /&gt;
|-&lt;br /&gt;
!NSMaxSize&lt;br /&gt;
|NSSize&lt;br /&gt;
|Seems to apply to the content view rather than the window.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
!NSScreenRect&lt;br /&gt;
|NSRect&lt;br /&gt;
|The screen size on which the view was encoded(used for scaling), should probably be an NSSize, but don't argue with Apple, or compatability issues will arise.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NSAlert&amp;diff=6535</id>
		<title>NSAlert</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NSAlert&amp;diff=6535"/>
		<updated>2013-04-15T08:13:22Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}&lt;br /&gt;
NSAlert is a modal dialog or [[sheet]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c_max&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
/**&lt;br /&gt;
NS Alert Example*/&lt;br /&gt;
&lt;br /&gt;
NSAlert* a = [ NSAlert alertWithMessageText:@&amp;quot;title&amp;quot; defaultButton:@&amp;quot;ok&amp;quot; alternateButton:@&amp;quot;cancel&amp;quot; otherButton:nil informativeTextWithFormat:@&amp;quot;more information ];&lt;br /&gt;
&lt;br /&gt;
//Run as a dialog&lt;br /&gt;
NSInteger returnCode = [a runModal];&lt;br /&gt;
switch(returnCode)&lt;br /&gt;
{&lt;br /&gt;
case 1:&lt;br /&gt;
&lt;br /&gt;
//ok&lt;br /&gt;
break;&lt;br /&gt;
&lt;br /&gt;
case 2:&lt;br /&gt;
&lt;br /&gt;
//cancel&lt;br /&gt;
break;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
//Attach to window&lt;br /&gt;
[a beginSheetModalForWindow:windowP modalDelegate:self didEndSelector:@selector(alertDidEnd:) contextInfo:nil];&lt;br /&gt;
&lt;br /&gt;
- (void) alertDidEnd:(NSAlert *)alert returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo&lt;br /&gt;
{&lt;br /&gt;
switch(returnCode)&lt;br /&gt;
{&lt;br /&gt;
case 1:&lt;br /&gt;
//ok&lt;br /&gt;
break;&lt;br /&gt;
case 2:&lt;br /&gt;
//cancel&lt;br /&gt;
break;&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
==See also==&lt;br /&gt;
* [https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/Classes/NSAlert_Class/Reference/Reference.html Apple on NSAlert]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=User_FAQ&amp;diff=6534</id>
		<title>User FAQ</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=User_FAQ&amp;diff=6534"/>
		<updated>2013-04-15T07:56:41Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: /* Why not use framework bundles? */ changed dynamic link to symbolic link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== GNUstep General Information ==&lt;br /&gt;
&lt;br /&gt;
=== What is GNUstep? ===&lt;br /&gt;
&lt;br /&gt;
GNUstep is the Free Software Foundation's effort to implement Apple, Inc's (formerly NeXT Software, Inc.'s)  [[Cocoa]] APIs (formerly the [[OpenStep]] Standard). Also we are building developer and user applications based on this standard which may be used to form a complete desktop experience. For more details, take a look at the [[Introduction to GNUstep|introduction]].&lt;br /&gt;
&lt;br /&gt;
=== What is Cocoa? ===&lt;br /&gt;
&lt;br /&gt;
Cocoa is an Application Programming Interface (API) for creating applications using the Objective-C language. It was published by Apple, Inc.(Formerly NeXT Software, Inc.).&lt;br /&gt;
&lt;br /&gt;
Cocoa consists of three parts: the `Foundation Kit', a library of non-graphical objects; the `Application Kit', a library of objects useful in creating graphical applications; and the Quartz display system.&lt;br /&gt;
&lt;br /&gt;
=== What platforms does GNUstep run on? ===&lt;br /&gt;
&lt;br /&gt;
See the list of [[Platform compatibility|supported platforms]] for information on what machines GNUstep builds on and what the status of the ports is. Probably a few days porting to any other UNIX system where current gcc compilers and gdb debugger work. &lt;br /&gt;
&lt;br /&gt;
=== Does GNUstep run on Windows? ===&lt;br /&gt;
&lt;br /&gt;
The primary targets for GNUstep are free UNIX system-based platforms such as GNU/Linux and FreeBSD.&lt;br /&gt;
&lt;br /&gt;
That being said, the whole environment has been ported to [http://www.mingw.org MinGW environment]&lt;br /&gt;
and the non-gui libraries are reported to work well.&lt;br /&gt;
&lt;br /&gt;
The GUI library uses the win32 backend library to work under Windows. The backend library is a thin layer that converts the GNUstep methods to handle drawing of GUI elements to calls to the Windows API. This project is currently in beta.&lt;br /&gt;
&lt;br /&gt;
=== What is GNUstep's position towards KDE and the GNOME project? ===  &lt;br /&gt;
&lt;br /&gt;
You can use GNUstep with GNOME and/or KDE (See [[IconManager.app]]). GNUstep displays on top of X11. You can still do programming in C (since Objective-C is just a super-set of C), and if you're using gcc 4.1 or later, you can mix C++ and Objective-C code in the same file.&lt;br /&gt;
&lt;br /&gt;
GNUstep, is much more than a window manager or desktop environment. It frees you to develop cross-platform applications without the work of developing an OS independent framework from scratch. It gives you lots of basic functionality, from font panels to Unicode strings to distributed objects.&lt;br /&gt;
&lt;br /&gt;
=== How can I get GNUstep? ===&lt;br /&gt;
&lt;br /&gt;
Many distributions include packaged versions of GNUstep (Debian, etc.). To compile from scratch, download the GNUstep Startup package or take a look at the [[Platform compatibility]] list. Get the latest releases from [ftp://ftp.gnustep.org/pub/gnustep/core FTP].&lt;br /&gt;
&lt;br /&gt;
=== How do you run GNUstep? ===&lt;br /&gt;
&lt;br /&gt;
You are presumably under the misapprehension that GNUstep is some sort of program or window manager.  It isn't!  GNUstep is a whole load of things -- primarily a set of libraries for developing software.  At present, it's those libraries, plus various command-line based support tools and service providing daemons, plus various GUI development tools, a GUI desktop/workspace application, etc.  At no stage will you ever 'run' GNUstep -- you will run applications and tools and will use it's services. At some point you may well find packages distributed as 'GNUstep' systems in the way that you get 'GNU/Linux' systems packaged today. For instance, look at the [http://io.debian.net/~tar/gnustep/ GNUstep Live CD].&lt;br /&gt;
&lt;br /&gt;
If you want to see a sample GUI application running you need to build GNUstep and look at the example applications in the gnustep-examples package. Build 'Finger' or 'Ink' and start it with 'openapp Finger.app' or 'openapp Ink.app'&lt;br /&gt;
&lt;br /&gt;
For the best look, use WindowMaker (preferred GNUstep window manager) as your window manager. In others desktops (that have its how window manager) you can use [[IconManager.app]]&lt;br /&gt;
&lt;br /&gt;
=== Is there a web site? ===&lt;br /&gt;
&lt;br /&gt;
See [http://www.gnustep.org/ GNUstep Website] and [[Main_Page | GNUstep Wiki]].&lt;br /&gt;
&lt;br /&gt;
=== When is GNUstep intended to be available? ===&lt;br /&gt;
&lt;br /&gt;
It's usable now. Major releases are made about every six months. However, if you are a serious developer, it's probably best to use the latest snapshots.&lt;br /&gt;
&lt;br /&gt;
=== What is usable? ===   &lt;br /&gt;
&lt;br /&gt;
Most of GNUstep is quite usable and there are many complex applications that work well. However, GNUstep does not completely track the latest changes that Apple makes to their interface and there are still some parts that need some work).  This means many applications will run quite well. Applications that require very complex text handling and some unusual features and/or some of the latest additions to Cocoa may not work as well.  See the Compatibility and layout section for more information.&lt;br /&gt;
&lt;br /&gt;
== Compiling and Installing ==&lt;br /&gt;
&lt;br /&gt;
=== How do I compile GNUstep on my machine? ===&lt;br /&gt;
&lt;br /&gt;
Read the file 'GNUstep-HOWTO', which comes with the GNUstep distribution (gnustep-make), and also is available separately on the GNUstep web site. To check beforehand, take a look at the [[Platform compatibility]] list.&lt;br /&gt;
NB. gnustep-base-1.23.0 is the last release which supports pre gcc-4.0.0 compilers.  For later releases you will want to ensure you have a more recent Objective-C compiler.&lt;br /&gt;
&lt;br /&gt;
=== Are there any precompiled packages available? ===&lt;br /&gt;
&lt;br /&gt;
Check the [http://www.gnustep.org/resources/sources.html Download Section] for links to RPMs, Debian packages, and BSD ports. There are also Windows installers, Mac OS X binaries and others.&lt;br /&gt;
&lt;br /&gt;
=== How do I start the applications I just installed? ===&lt;br /&gt;
&lt;br /&gt;
First, read http://www.gnustep.org/resources/documentation/User/GNUstep/gnustep-howto_4.html#SEC7 to make sure you have set up your environment correctly. Then from a terminal enter:&lt;br /&gt;
&lt;br /&gt;
 openapp Application.app&lt;br /&gt;
&lt;br /&gt;
=== What are these type and size warnings? ===&lt;br /&gt;
&lt;br /&gt;
These warnings:&lt;br /&gt;
  /usr/bin/ld: warning: type and size of dynamic symbol&lt;br /&gt;
  `__objc_class_name_NSConstantString' are not defined&lt;br /&gt;
are a common occurence and are due to a mismatch between the gcc compiler and the ld linker. They don't do any harm so they can be safely ignored. They have been fixed in the 3.1 version of the GCC compiler.&lt;br /&gt;
&lt;br /&gt;
=== What are these import warnings? ===  &lt;br /&gt;
&lt;br /&gt;
Do you get this obnoxious warning whenever you compile an application, tool, or Objective-C program:&lt;br /&gt;
  warning: using `#import' is not recommended&lt;br /&gt;
  [...]&lt;br /&gt;
Up until version 3.4 of the GCC compiler, the #import directive was improperly implemented. As a result, the compiler automatically emitted a warning whenever the #import directive was used. As of gcc 3.4, this problem has been fixed, so presumably, this warning is no longer emitted when code is compiled. If you are using an earlier compiler, you can suppress these warnings by adding -Wno-import to your include (cpp) flags.&lt;br /&gt;
&lt;br /&gt;
== Compatibility and Layout ==&lt;br /&gt;
&lt;br /&gt;
=== Can I run NeXT OPENSTEP or Mac OS X programs on GNUstep? ===&lt;br /&gt;
&lt;br /&gt;
You can't run these programs on GNUstep, but if you have the source code for the programs, you should be able to port them to GNUstep and compile them. Whether or not you will be able to run them depends on how complete GNUstep is at the time.&lt;br /&gt;
&lt;br /&gt;
=== Is GNUstep following changes to OpenStep and Mac OS X? ===&lt;br /&gt;
&lt;br /&gt;
Yes, gnustep-base already contains the documented changes in the Foundation library. GNUstep aims to be compatible with both the OpenStep specification and with Mac OS X. It should be easy to write an application that compiles cleanly under both GNUstep and Cocoa.  GNUstep can be expected to support the OSX 10.4 version of the Cocoa APIs (we consider it a bug if it does not), but also actually supports many APIs from OSX 10.5 and later (contributions of methods from these later versions are very welcome).&lt;br /&gt;
&lt;br /&gt;
=== Do we have to have the NEXTSTEP look and feel? ===&lt;br /&gt;
&lt;br /&gt;
GNUstep is aiming for something like the NEXTSTEP 3.3 look and feel. Although we don't want to force anyone into this, a lot of the power and ease of use comes from this feel. The look of GNUstep is something different -- buttons and other widgets can look different but still act the same way. We hope to implement themes which will allow this.&lt;br /&gt;
&lt;br /&gt;
For a different desktop feel please see [[Themability]].&lt;br /&gt;
&lt;br /&gt;
=== What's up with the directory structure? ===&lt;br /&gt;
&lt;br /&gt;
First of all, GNUstep uses a slightly different directory structure than NEXTSTEP or Mac OS X. Part of this is historical, part is because we can't do things the same way (see the section [[User FAQ#Why not use framework bundles?]]). Although currently the structure is very similar to the one used in Mac OS X.&lt;br /&gt;
&lt;br /&gt;
It's also possible to configure GNUstep run using the standard FHS directory structured used under GNU/Linux&lt;br /&gt;
and other unices so that it blends better in the host environment.&lt;br /&gt;
&lt;br /&gt;
=== Why not use framework bundles? ===  &lt;br /&gt;
&lt;br /&gt;
Framework bundles are much more difficult to port and to use, and are very unnatural on a UNIX system; extremely unnatural on Windows. In a framework bundle, the shared dynamic library is inside a framework wrapper directory. Because of this, the dynamic linker can't find it.&lt;br /&gt;
&lt;br /&gt;
We have frameworks, so how do we work around that? Well, we create symbolic links from a directory inside the dynamic linker path into the framework, which work, but then you can't move the framework anywhere else on the system, otherwise you break the link, such that nothing will find the framework any longer! On systems without symbolic links, like Windows, we can't even do this! We have to copy the library from the framework into the dynamic linker path, but that is simply a shared library then! Absolutely no difference. You put the dynamic library in a system directory in the dynamic linker path, and associate with that library a resource directory. OpenStep for Windows did that, and still called them frameworks. So we can do the same, and call our libraries frameworks.&lt;br /&gt;
&lt;br /&gt;
Shared libraries are all in a flat directory where the dynamic linker can easily find them. This is how it works on Unixoids, Windows and probably most other systems. The OpenStep API requires us to provide some stuff for frameworks, like creating and registering a framework object automatically each time a framework is used (linked at runtime, or linked into the app), and attaching to it the list of classes inside the framework, which are not particularly trivial to implement and might make trouble when porting, as they depend on playing with the linker and the object file format. However, shared libraries are handled by the operating system for us, so we never have to use these facilities.&lt;br /&gt;
&lt;br /&gt;
It's easier for Apple's Mac OS X. They can modify the system linker, compiler, the system dynamical linker as they please, because they have full control over the platform these run on. They can modify the system to support frameworks natively. GNUstep, however, is meant to run on many different platforms, platforms which we don't control (Windows, Sun Solaris, Darwin, GNU/Linux, UNIX system variants) and which have different linkers and do not support frameworks natively. On some systems it's difficult to just load a bundle or compile a shared library!&lt;br /&gt;
&lt;br /&gt;
So building the core libraries as 'libraries' means that it's much easier to port them, and it's much more difficult to break them. Sure, frameworks have a bundle of resources associated with it -- but we can very easily associate a bundle of resource with a shared library, no reason why not. We are doing it. So please note that GNUstep libraries are meant to be much similar to Mac OS X frameworks. They are composed of a shared library and associated with a bundle of resources. There is a difference in terminology, in where the resources are installed, and possibly a slight difference in the NSBundle API to get to the resource bundle (anyway, it's a one line difference between Mac OS X and GNUstep, so it looks like very easy to &amp;lt;tt&amp;gt;#ifdef&amp;lt;/tt&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
In other words, GNUstep libraries are meant to basically do the same as frameworks do on Mac OS X, but to be portable to very different platforms (such as Windows).&lt;br /&gt;
&lt;br /&gt;
=== Why not use native widgets? ===  &lt;br /&gt;
&lt;br /&gt;
The GNUstep GUI code is divided into two libraries ... the gui proper (gnustep-gui), which handles most of the work of implementing the AppKit API, and the backend (gnustep-back) which handles the interface to the native operating system.  The display server (GSDisplayServer) is one of the two classes which provide the main interface between the two parts. The other class is the graphics context (NSGraphicsContext). The later does the actual drawing whereas the former manages windows and events. This separation is just great to have multiple graphics backends like art, xlib and cairo share the same x11 display server.&lt;br /&gt;
So code in gnustep-gui calls methods of the display server, and code in gnustep-back translates those calls to native calls of the system you are running on.&lt;br /&gt;
&lt;br /&gt;
This means that application developers use the OpenStep/GNUstep/MacOS-X AppKit API to write their applications, and the gnustep-back library uses the native functionality to do the job where possible.&lt;br /&gt;
For instance, you do cut and paste or DnD using the OpenStep API for that, and on an ms-windows system, the actual calls to perform the operations are the native win32 ones.  ie we leave the job to the operating system, so cut and paste from gnustep applications can interact with cut and paste from native win32 applications.&lt;br /&gt;
Of course, where the two APIs (OpenStep and win32) operate in very different ways, the conversion between the two is hard, but often the layer between the two is quite thin.&lt;br /&gt;
&lt;br /&gt;
One area where there is not much scope for overlap is drawing within a window ... the way that the OpenStep API operates is so different from ms-widnows or X-windows that high level code for drawing things inside a windows using the native operating system generally cannot fit with OpenStep, so the gui library does all the drawing inside the window with quite low level code rather than trying to map OpenStep 'controls' to native 'widgets'.&lt;br /&gt;
&lt;br /&gt;
Since the basic design of the two (frontend and backend) libraries is, to draw OpenStep controls rather than try to map to native controls (because that's generally easier and makes the code very portable), we generally make no use of native widgets.&lt;br /&gt;
However, the gui frontend can dynamically load a theme engine to draw it's controls, and a theme engine is free to try to draw parts of a window using its own code ... so it can use the native controls where that's a practical solution.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
=== Problems compiling (loading shared libs) ===&lt;br /&gt;
&lt;br /&gt;
If you get something like&lt;br /&gt;
&lt;br /&gt;
  plmerge: error while loading shared libraries:&lt;br /&gt;
  libgnustep-base.so.1: cannot open shared object file: No such file or directory&lt;br /&gt;
&lt;br /&gt;
or this:&lt;br /&gt;
&lt;br /&gt;
  Making all for service example...&lt;br /&gt;
  make[2]: *** [example.service/Resources/Info-gnustep.plist] Error 1&lt;br /&gt;
  make[1]: *** [example.all.service.variables] Error 2&lt;br /&gt;
  make[1]: Leaving directory `/home/multix/gnustep-gui-0.8.6/Tools'&lt;br /&gt;
  make: *** [internal-all] Error 2&lt;br /&gt;
&lt;br /&gt;
This means your GNU make is being overly protective. When you try to become root (e.g. to install something), certain environment variables like LD_LIBRARY_PATH are unset in order to reduce the possibility of a security breach. If you are becoming root to install something, you need to exec the GNUstep.sh file as root, just as you do when you login. Although for simplicity, you can also try this:&lt;br /&gt;
&lt;br /&gt;
  make LD_LIBRARY_PATH=$LD_LIBRARY_PATH&lt;br /&gt;
&lt;br /&gt;
You could also be having problems with gcc. gcc 2.96 does not work (Mandrake 8.1, perhaps others). Use a different compiler, like gcc 3.x.&lt;br /&gt;
&lt;br /&gt;
=== Problems compiling (GNUstep Internal Error) ===&lt;br /&gt;
&lt;br /&gt;
If you get&lt;br /&gt;
&lt;br /&gt;
  GNUSTEP Internal Error:&lt;br /&gt;
  The private GNUstep function to establish the argv and environment&lt;br /&gt;
  variables was not called.&lt;br /&gt;
  Please report the error to bug-gnustep@gnu.org.&lt;br /&gt;
&lt;br /&gt;
when compiling the gui library, there could be several things wrong. One is that you installed the gnustep-objc library, but the compiler found another Objecive-C library (like the one that came with gcc). If you are using gcc 3.x, DO NOT use the gnustep-objc library.&lt;br /&gt;
&lt;br /&gt;
There could also be a mismatch between the base and gui library versions. Make sure you have the latest release of each library installed.&lt;br /&gt;
&lt;br /&gt;
=== Problems with Alt key ===&lt;br /&gt;
&lt;br /&gt;
It's possible the Alt key is not where you think it is or is defined incorrectly. Try running the GSTest application, KeyboardInput test (located in the examples package at [ftp://ftp.gnustep.org/pub/gnustep/core FTP]) to test it. See [http://www.gnustep.org/resources/documentation/User/Gui/KeyboardSetup.html keyboard setup] for information on how to change the settings.&lt;br /&gt;
&lt;br /&gt;
If you are using WindowMaker, it's possible it is grabing this key and using it for itself. To check, open Window Maker's WPrefs and go to the Mouse Preferences. Then use another value for the &amp;quot;Mouse grab modifier&amp;quot; (bottom right). That will allow you to alt-drag things.&lt;br /&gt;
&lt;br /&gt;
=== Problems with gcc3 ===&lt;br /&gt;
&lt;br /&gt;
Don't forget you need to update binutils and libc also.&lt;br /&gt;
&lt;br /&gt;
=== Problems with fonts ===  &lt;br /&gt;
&lt;br /&gt;
Why do the characters get changed to asterisks ('*')?&lt;br /&gt;
&lt;br /&gt;
The problem you are getting come from the fact that the xlib backend (when not using Xft) will only use one fixed X font for a given font name. If the font &amp;quot;helvetica&amp;quot; is used inside of GNUstep the one selected X font, in your case &amp;quot;-*-helvetica-medium-r-normal--12-*-*-*-p-*-iso8859-1&amp;quot; is used. So only characters (or glyphs) that are available in that font can be displayed. The selection of which font name to use happens inside the font_cacher and is more or less at random (the order fonts are listed by the X system).&lt;br /&gt;
&lt;br /&gt;
You can influence the fonts that are available by setting:&lt;br /&gt;
&lt;br /&gt;
  defaults write NSGlobalDomain GSFontMask &amp;quot;*iso8859-13&amp;quot;&lt;br /&gt;
  font_cacher&lt;br /&gt;
&lt;br /&gt;
(or using a different character set, like iso8859-2). This is really a bug in GNUstep, but it hasn't been fixed yet.&lt;br /&gt;
&lt;br /&gt;
The other option is the use the art backend, which handles fonts much better. When compiling gnustep-back, start with&lt;br /&gt;
&lt;br /&gt;
  ./configure --enable-graphics=art&lt;br /&gt;
&lt;br /&gt;
=== No characters displayed ===&lt;br /&gt;
&lt;br /&gt;
When using the xlib backend, no characters are displayed in any GNUstep applications.&lt;br /&gt;
&lt;br /&gt;
The xlib backend has font anti-aliasing turned on by default. It's possible that GNUstep can't find any fonts on your system that can be properly anti- aliased. Try&lt;br /&gt;
&lt;br /&gt;
  defaults write NSGlobalDomain GSFontAntiAlias NO&lt;br /&gt;
&lt;br /&gt;
to turn off font anti-aliasing.&lt;br /&gt;
&lt;br /&gt;
=== No Makefile ===&lt;br /&gt;
&lt;br /&gt;
I tried to compile something and I get:&lt;br /&gt;
&lt;br /&gt;
  GNUmakefile:27: /Makefiles/common.make: No such file or directory &lt;br /&gt;
  GNUmakefile:39: /Makefiles/aggregate.make: No such file or directory &lt;br /&gt;
  gmake: *** No rule to make target `/Makefiles/aggregate.make'.  Stop. &lt;br /&gt;
&lt;br /&gt;
Make sure you have installed the gnustep-make package and also type something like&lt;br /&gt;
&lt;br /&gt;
  source /usr/GNUstep/System/Library/Makefiles/GNUstep.sh&lt;br /&gt;
&lt;br /&gt;
depending on your GNUstep's installation path.&lt;br /&gt;
&lt;br /&gt;
You can put this line in your `.profile' or `.bash_profile' file so that it is done automatically when you log in.&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
&lt;br /&gt;
=== Why don't you just have Gorm output Renaissance files? ===&lt;br /&gt;
&lt;br /&gt;
Philosophical and architectural incompatibilities.&lt;br /&gt;
&lt;br /&gt;
=== Is there a way to install GNUstep on Mac OS X? ===&lt;br /&gt;
&lt;br /&gt;
Yes! Please see [[Platform:BSD#Mac_OS_X | MacOS X installation notes]]. &lt;br /&gt;
&lt;br /&gt;
=== Is there any way to use gnustep-make and gnustep-base without using openapp/opentool? ===&lt;br /&gt;
&lt;br /&gt;
opentool is obsolete and you should be able to run command-line programs directly from your&lt;br /&gt;
shell prompt like any other command-line program.&lt;br /&gt;
&lt;br /&gt;
openapp is useful to run applications but in standard situations you can also run directly&lt;br /&gt;
the program from within the .app folder.&lt;br /&gt;
&lt;br /&gt;
=== Can GNUstep help with porting applications from MacOS-X? Is there any HOWTO on that? ===&lt;br /&gt;
&lt;br /&gt;
See for example Tamsys.&lt;br /&gt;
&lt;br /&gt;
=== How difficult it should be to port it to Linux and GNUstep? ===&lt;br /&gt;
&lt;br /&gt;
Somehow relevant may be discussion on How to port to GNUstep Answered. Unfortunately this link is broken now. Dredge around in the google discussion group, I guess. I couldn't find anything helpful. &lt;br /&gt;
&lt;br /&gt;
=== Can I deploy my GNUstep application without requiring people to install GNUstep? ===&lt;br /&gt;
&lt;br /&gt;
No. Compare it to running Java applications without people requiring to install Java runtime environment. &lt;br /&gt;
&lt;br /&gt;
=== How can I get more information on Objective-C ? ===&lt;br /&gt;
&lt;br /&gt;
Take a look at the [[Objective-C]] page.&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQ]]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=XIB&amp;diff=6489</id>
		<title>XIB</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=XIB&amp;diff=6489"/>
		<updated>2012-12-27T08:41:18Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As of MacOS 10.3 Apple moved away from the binary encoded nib files, and towards the xml encoded XIB files, for their interface definitions.&lt;br /&gt;
&lt;br /&gt;
The xib file format is actually quite easy to understand, it is the responsability of the object encodeing and decoding, it to insure that it's attributes are read correctly.&lt;br /&gt;
&lt;br /&gt;
Here is a [http://www.multiupload.nl/B2A8HXDBI0 commented example] of a XIB file.  For easy reading open it in a syntax highliting editor using XML highlighting.&lt;br /&gt;
&lt;br /&gt;
To provide cross platform compatability, review the &amp;quot;XIB fields&amp;quot; section of the gnustep wiki article on the interface you intend to provide a codec for.  Also be sure to read the apple article on [[#See Also|KVC]].&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
*[http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/KeyValueCoding/Articles/Overview.html Apple on KVC] - Encoded objects must be KVC complient&lt;br /&gt;
*[http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/KeyValueObserving/KeyValueObserving.html#//apple_ref/doc/uid/10000177i Apple on KVO] -KVO explains how to decode KVC objects.&lt;br /&gt;
*[http://www.monobjc.net/index.php?page=xib-file-format XIB File Format Definition as understod by MonoObjc]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=3DKit&amp;diff=6488</id>
		<title>3DKit</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=3DKit&amp;diff=6488"/>
		<updated>2012-11-23T03:13:26Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Unmaintained}}&lt;br /&gt;
{{Framework|&lt;br /&gt;
shortdescription = The GNU 3DKit provides an object oriented graphics API for writing 3D graphics applications using GNUstep or Cocoa. |&lt;br /&gt;
currentversion =  0.4 |&lt;br /&gt;
releasedate =  |&lt;br /&gt;
license = [http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License] |&lt;br /&gt;
overview = The GNU 3DKit is officially part of the GNU project! It is an extension to GNUstep, which provides an object oriented application development framework and tool set for use on a wide variety of computer platforms. GNUstep is based on the original OpenStep specification provided by NeXT, Inc. (now Apple). Additionally the GNU 3DKit may also be used on Mac OS X using the Cocoa API. |&lt;br /&gt;
features =  Instead of developing yet another OpenGL based scene graph API the new GNU 3DKit will become an object oriented graphics framework based on global illumination concepts which will use OpenGL only for preview capabilities. More information will be reveiled as soon as the time is ready for it.|&lt;br /&gt;
maintainer = [http://www.nice.ch/~phip/ Philippe C.D. Robert] |&lt;br /&gt;
relatedlinks = * [http://www.gnu.org/software/gnu3dkit/ GNU 3DKit]&lt;br /&gt;
* [http://savannah.gnu.org/projects/gnu3dkit/ Savannah] |&lt;br /&gt;
category = [[Category:Graphics_Frameworks]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=TextEdit.app&amp;diff=6487</id>
		<title>TextEdit.app</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=TextEdit.app&amp;diff=6487"/>
		<updated>2012-11-23T03:03:02Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Unmaintained}}&lt;br /&gt;
{{stub}}&lt;br /&gt;
&lt;br /&gt;
{{Application|&lt;br /&gt;
&lt;br /&gt;
shortdescription = TextEdit is a relatively basic text editor. It handles plain text or RTF, has a nice &amp;quot;Wrap to Page&amp;quot; mode, has search/replace functionality, and can display any file as text. |&lt;br /&gt;
&lt;br /&gt;
currentversion = [http://www.gtlib.cc.gatech.edu/pub/debian/pool/main/t/textedit.app/textedit.app_4.0.orig.tar.gz 4.0] |&lt;br /&gt;
&lt;br /&gt;
releasedate = Nov 29, 2004 |&lt;br /&gt;
&lt;br /&gt;
license = freely copy, distribute, and reuse the code |&lt;br /&gt;
&lt;br /&gt;
overview = &amp;lt; ... &amp;gt; |&lt;br /&gt;
&lt;br /&gt;
features = &amp;lt; ... &amp;gt; |&lt;br /&gt;
&lt;br /&gt;
maintainer = &amp;lt; ... &amp;gt; |&lt;br /&gt;
&lt;br /&gt;
relatedlinks = http://www.nongnu.org/backbone/apps.html |&lt;br /&gt;
&lt;br /&gt;
category = [[Category:Editor Applications]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NeXTGo.app&amp;diff=6486</id>
		<title>NeXTGo.app</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NeXTGo.app&amp;diff=6486"/>
		<updated>2012-11-23T02:52:27Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Unmaintained}}&lt;br /&gt;
{{stub}}&lt;br /&gt;
&lt;br /&gt;
{{Application|&lt;br /&gt;
shortdescription = '''NeXTGo''' is the classic Go game |&lt;br /&gt;
&lt;br /&gt;
currentversion = [http://savannah.nongnu.org/download/gap/NeXTGo-3.0.tar.gz 3.0] |&lt;br /&gt;
&lt;br /&gt;
releasedate = Nov 5, 2005  |&lt;br /&gt;
&lt;br /&gt;
license = GPL 2 |&lt;br /&gt;
&lt;br /&gt;
overview = &amp;lt; ... &amp;gt; |&lt;br /&gt;
&lt;br /&gt;
features = &amp;lt; ... &amp;gt; |&lt;br /&gt;
&lt;br /&gt;
maintainer = Gregory John Casamento |&lt;br /&gt;
&lt;br /&gt;
relatedlinks =&lt;br /&gt;
* [http://www.nongnu.org/gap/nextgo/index.html Official NeXTGo Page] &lt;br /&gt;
* [http://www.nongnu.org/gap/index.html GNUstep Application Project]|&lt;br /&gt;
&lt;br /&gt;
category = [[Category:Games Applications]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Ladder.app&amp;diff=6485</id>
		<title>Ladder.app</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Ladder.app&amp;diff=6485"/>
		<updated>2012-11-23T02:51:53Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Unmaintained}}&lt;br /&gt;
{{stub}}&lt;br /&gt;
{{Application|&lt;br /&gt;
shortdescription=Ladder is a graphically pleasing implementation of Go. It uses [http://www.gnu.org/software/gnugo/gnugo.html GNU Go] as it's engine and you must have a recent version of GNU Go installed in order to run it.|&lt;br /&gt;
&lt;br /&gt;
currentversion=[http://savannah.nongnu.org/download/gap/Ladder-1.0.tar.gz 1.0]|&lt;br /&gt;
&lt;br /&gt;
releasedate=Unknown|&lt;br /&gt;
&lt;br /&gt;
license=GPL 2.0|&lt;br /&gt;
&lt;br /&gt;
overview=|&lt;br /&gt;
&lt;br /&gt;
features=|&lt;br /&gt;
&lt;br /&gt;
maintainer=&lt;br /&gt;
* [mailto:object@gmail.com Banlu Kemiyatorn]|&lt;br /&gt;
&lt;br /&gt;
relatedlinks=http://www.nongnu.org/gap/ladder/index.html|&lt;br /&gt;
&lt;br /&gt;
category=[[Category:Games_Applications]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Gridlock.app&amp;diff=6484</id>
		<title>Gridlock.app</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Gridlock.app&amp;diff=6484"/>
		<updated>2012-11-23T02:46:00Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Unmaintained}}&lt;br /&gt;
{{Application|&lt;br /&gt;
shortdescription = Gridlock is a collection of over 30 grid-based strategy games, including Ataxx, Reversi, Checkers, Gomoku, Connect Four, and more. |&lt;br /&gt;
&lt;br /&gt;
currentversion = [http://www.dozingcatsoftware.com/Gridlock/Gridlock-gnustep-1.10.tar.gz 1.10] |&lt;br /&gt;
&lt;br /&gt;
releasedate = Nov 26 2005 |&lt;br /&gt;
&lt;br /&gt;
license = MIT |&lt;br /&gt;
&lt;br /&gt;
overview = See the [http://www.dozingcatsoftware.com/Gridlock/readme.html Readme] for a detailed description. |&lt;br /&gt;
&lt;br /&gt;
features =  * 31 different games&lt;br /&gt;
* network play|&lt;br /&gt;
&lt;br /&gt;
maintainer =&lt;br /&gt;
* [mailto:brian@dozingcatsoftware.com Brian Nenninger] |&lt;br /&gt;
&lt;br /&gt;
relatedlinks = &lt;br /&gt;
* [http://www.dozingcatsoftware.com/Gridlock/readme.html Official Page] |&lt;br /&gt;
&lt;br /&gt;
category = [[Category:Games Applications]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=GRubik.app&amp;diff=6483</id>
		<title>GRubik.app</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=GRubik.app&amp;diff=6483"/>
		<updated>2012-11-22T05:53:52Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Unmaintained}}&lt;br /&gt;
{{stub}}&lt;br /&gt;
&lt;br /&gt;
{{Application|&lt;br /&gt;
&lt;br /&gt;
shortdescription = GRubik is a virtual 3D Rubik's cube for you to solve. |&lt;br /&gt;
&lt;br /&gt;
currentversion = [http://debian.uni-essen.de/misc/GNUstep/Apps/Recreational/GRubik.tgz 0.1] |&lt;br /&gt;
&lt;br /&gt;
releasedate = July 2002 |&lt;br /&gt;
&lt;br /&gt;
license = GPL2 |&lt;br /&gt;
&lt;br /&gt;
overview = |&lt;br /&gt;
&lt;br /&gt;
features =&lt;br /&gt;
* simple but functional and fast 3D&lt;br /&gt;
* a smart scramble that ensures you get a solvable cube&lt;br /&gt;
* interesting code that you might enjoy reading and which uses a variety of programming techniques.|&lt;br /&gt;
&lt;br /&gt;
maintainer = Marko Riedel |&lt;br /&gt;
&lt;br /&gt;
relatedlinks = |&lt;br /&gt;
&lt;br /&gt;
category = [[Category:Games Applications]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=GPuzzle.app&amp;diff=6482</id>
		<title>GPuzzle.app</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=GPuzzle.app&amp;diff=6482"/>
		<updated>2012-11-22T05:44:09Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Unmaintained}}&lt;br /&gt;
{{stub}}&lt;br /&gt;
{{Application|&lt;br /&gt;
shortdescription = Simulates a jigsaw puzzle and illustrates the use of clipping paths. |&lt;br /&gt;
&lt;br /&gt;
currentversion = [http://www.gnustep.it/marko/GPuzzle2/GPuzzle2.tgz 0.2] |&lt;br /&gt;
&lt;br /&gt;
releasedate = July 16, 2006 (?) |&lt;br /&gt;
&lt;br /&gt;
license = GPL2 |&lt;br /&gt;
&lt;br /&gt;
overview = &lt;br /&gt;
&lt;br /&gt;
'''NOTE: GPuzzle was renamed to Jigsaw, latest version can be found when looking for [[Jigsaw.app]]'''&lt;br /&gt;
&lt;br /&gt;
You need a medium-sized TIFF file to play this game.&lt;br /&gt;
Left-click and drag to move a piece or cluster.&lt;br /&gt;
Ctrl-left-click and drag to connect knobs to slots.&lt;br /&gt;
Right-click to disassemble a cluster.&lt;br /&gt;
Ctrl-right-click to extract a piece from a cluster. |&lt;br /&gt;
&lt;br /&gt;
features =  |&lt;br /&gt;
&lt;br /&gt;
maintainer = &lt;br /&gt;
* [mailto:markoriedelde@yahoo.de Marko Riedel] |&lt;br /&gt;
&lt;br /&gt;
relatedlinks = &lt;br /&gt;
* [http://www.gnustep.it/marko/GPuzzle2/ Official Page] |&lt;br /&gt;
&lt;br /&gt;
category = [[Category:Games Applications]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=GFractal.app&amp;diff=6481</id>
		<title>GFractal.app</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=GFractal.app&amp;diff=6481"/>
		<updated>2012-11-22T05:42:04Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Unmaintained}}&lt;br /&gt;
{{stub}}&lt;br /&gt;
&lt;br /&gt;
{{Application|&lt;br /&gt;
&lt;br /&gt;
shortdescription = Computes five different fractals including the Mandelbrot set. |&lt;br /&gt;
&lt;br /&gt;
currentversion = [http://www.gnustep.it/marko/GFractal/GFractal.tgz 0.1]|&lt;br /&gt;
&lt;br /&gt;
releasedate = May 2002 |&lt;br /&gt;
&lt;br /&gt;
license = GPL2 |&lt;br /&gt;
&lt;br /&gt;
overview = |&lt;br /&gt;
&lt;br /&gt;
features = |&lt;br /&gt;
&lt;br /&gt;
maintainer = Marko Riedel |&lt;br /&gt;
&lt;br /&gt;
relatedlinks =&lt;br /&gt;
* [http://www.gnustep.it/marko/GFractal/index.html Official Page] |&lt;br /&gt;
&lt;br /&gt;
category = [[Category:Science Applications]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Emacs.app&amp;diff=6480</id>
		<title>Emacs.app</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Emacs.app&amp;diff=6480"/>
		<updated>2012-11-22T04:45:55Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{dated}}&lt;br /&gt;
{{Application|&lt;br /&gt;
&lt;br /&gt;
shortdescription = [[Image:EmacsApp.png|thumb|Emacs.app browsing the manual]]&lt;br /&gt;
'''Emacs.app''' is a port of GNU Emacs, the ''&amp;quot;extensible, customizable, self-documenting, real-time display editor&amp;quot;'' to OS X and GNUstep. |&lt;br /&gt;
&lt;br /&gt;
currentversion = [http://downloads.sourceforge.net/emacs-app/emacs-23.0.0_NS-9.0rc1.tar.bz2 9.0-rc1]|&lt;br /&gt;
&lt;br /&gt;
releasedate = Dec 24, 2006 |&lt;br /&gt;
&lt;br /&gt;
license = [[GPL]] 2 |&lt;br /&gt;
&lt;br /&gt;
overview = Emacs for GNUstep and MacOS X is a version of&lt;br /&gt;
GNU Emacs CVS unicode-2 branch (currently planned to be released as&lt;br /&gt;
Emacs 23) which adds support for the GNUstep and MacOS X systems via&lt;br /&gt;
the OpenStep APIs (referred to as &amp;quot;Cocoa&amp;quot; under OS X).&lt;br /&gt;
&amp;lt;font color=&amp;quot;#808080&amp;quot;&amp;gt;&amp;amp;ndash; From the manual.&amp;lt;/font&amp;gt; |&lt;br /&gt;
&lt;br /&gt;
features = This port leaves most of the core functions of Emacs unchanged and is&lt;br /&gt;
fully-compatible with all Emacs Lisp packages, however it has a number&lt;br /&gt;
of step-ish features which do not have any equivalent in Emacs's X11&lt;br /&gt;
interface.  The design aim was to make it look as similar as possible&lt;br /&gt;
to an X application to Emacs Lisp programs and to make it look like a&lt;br /&gt;
normal GNUstep or MacOS X application to users.&lt;br /&gt;
&amp;lt;font color=&amp;quot;#808080&amp;quot;&amp;gt;&amp;amp;ndash; From the manual.&amp;lt;/font&amp;gt; |&lt;br /&gt;
&lt;br /&gt;
maintainer = Adrian Robert |&lt;br /&gt;
&lt;br /&gt;
relatedlinks = *[http://emacs-app.sourceforge.net Emacs.app website]&lt;br /&gt;
*[http://www.gnu.org/software/emacs GNU Emacs website]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Emacs Emacs wikipedia entry]|&lt;br /&gt;
&lt;br /&gt;
category = [[Category:Editor Applications]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Template:Dated&amp;diff=6479</id>
		<title>Template:Dated</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Template:Dated&amp;diff=6479"/>
		<updated>2012-11-22T04:39:35Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;text-align:center; border-style:solid;border-width:2px;&amp;quot;&amp;gt;&lt;br /&gt;
This article is out of date, it requires the attention of an editor or its original author.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=CodeEditor.app&amp;diff=6478</id>
		<title>CodeEditor.app</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=CodeEditor.app&amp;diff=6478"/>
		<updated>2012-11-22T04:33:55Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Unmaintained}}&lt;br /&gt;
{{Application|&lt;br /&gt;
&lt;br /&gt;
shortdescription = This application is unmantained and show problems with the current GNUstep. You can use [[Gemas.app]] instead.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
CodeEditor is a text and code editor. |&lt;br /&gt;
&lt;br /&gt;
currentversion = [http://savannah.nongnu.org/projects/codeeditor/ 0.4.4] |&lt;br /&gt;
&lt;br /&gt;
releasedate = April 08, 2004 |&lt;br /&gt;
&lt;br /&gt;
license = GPL2 |&lt;br /&gt;
&lt;br /&gt;
overview = The goal of CodeEditor is to be a good non-rich text code editor. CodeEditorView offers a subclass of NSTextView and supports syntax highlight, mark delimiters, etc. It can be used in other projects. |&lt;br /&gt;
&lt;br /&gt;
features =&lt;br /&gt;
* Faster than ever&lt;br /&gt;
* Tab View: Don't need to open so many terminals again.&lt;br /&gt;
* Toolbar: Use &amp;quot;Alt (left) - t&amp;quot; to open/close a simple toolbar on the fly.&lt;br /&gt;
* Find (Regular Express support) and replace.&lt;br /&gt;
* File Inspector.&lt;br /&gt;
* Change font attributes and preference instantly without restart.&lt;br /&gt;
* Periodically or manually Highlight keyword with difference attributes according to the language.&lt;br /&gt;
* Automatically or manually find delimiter pair.&lt;br /&gt;
* Automatically indentation according to the preference.&lt;br /&gt;
* Support scripting (need StepTalk). |&lt;br /&gt;
&lt;br /&gt;
maintainer = Yen-Ju Chen |&lt;br /&gt;
&lt;br /&gt;
relatedlinks = &lt;br /&gt;
* [http://www.nongnu.org/codeeditor CodeEditor website]|&lt;br /&gt;
&lt;br /&gt;
category = [[Category:Development Applications]] [[Category:Editor Applications]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=FreeTar.app&amp;diff=6477</id>
		<title>FreeTar.app</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=FreeTar.app&amp;diff=6477"/>
		<updated>2012-11-22T04:32:56Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Unmaintained}}&lt;br /&gt;
{{stub}}&lt;br /&gt;
&lt;br /&gt;
{{Application|&lt;br /&gt;
&lt;br /&gt;
shortdescription = TAR archiver |&lt;br /&gt;
&lt;br /&gt;
currentversion = 1.1.1 |&lt;br /&gt;
&lt;br /&gt;
releasedate = September 2002 |&lt;br /&gt;
&lt;br /&gt;
license = GPL |&lt;br /&gt;
&lt;br /&gt;
overview = |&lt;br /&gt;
&lt;br /&gt;
features = |&lt;br /&gt;
&lt;br /&gt;
maintainer = Fabien Vallon |&lt;br /&gt;
&lt;br /&gt;
relatedlinks =&lt;br /&gt;
* https://gna.org/projects/freetar/ |&lt;br /&gt;
&lt;br /&gt;
category = [[Category:Archiver Applications]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Template:Unmaintained&amp;diff=6476</id>
		<title>Template:Unmaintained</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Template:Unmaintained&amp;diff=6476"/>
		<updated>2012-11-22T04:32:33Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;border-style:solid;&lt;br /&gt;
border-width:2px;border-color:red; background-color:beige; margin:2px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;h1&amp;gt;Unmaintained&amp;lt;/h1&amp;gt;&lt;br /&gt;
This project is either unmaintained, or its status is unknown.&lt;br /&gt;
Please do not remove this until the status of this project has been determined.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Template:Unmaintained&amp;diff=6475</id>
		<title>Template:Unmaintained</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Template:Unmaintained&amp;diff=6475"/>
		<updated>2012-11-22T04:31:41Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;border-style:solid;&lt;br /&gt;
border-width:2px;border-color:red; background-color:beige&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;h1&amp;gt;Unmaintained&amp;lt;/h1&amp;gt;&lt;br /&gt;
This project is either unmaintained, or its status is unknown.&lt;br /&gt;
Please do not remove this until the status of this project has been determined.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Template:Unmaintained&amp;diff=6474</id>
		<title>Template:Unmaintained</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Template:Unmaintained&amp;diff=6474"/>
		<updated>2012-11-22T04:29:59Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;border-style:solid;&lt;br /&gt;
border-width:2px;border-color:red&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;h1&amp;gt;Unmaintained&amp;lt;/h1&amp;gt;&lt;br /&gt;
This project is either unmaintained, or its status is unknown.&lt;br /&gt;
Please do not remove this until the status of this project has been determined.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NSControl&amp;diff=6469</id>
		<title>NSControl</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NSControl&amp;diff=6469"/>
		<updated>2012-11-04T00:34:53Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;NSControl ithe the a very important framework in [[AppKit]], it is the superclass for items that recieve user input messages from the window(see [http://developer.apple.com/library/ios/#documentation/general/conceptual/Devpedia-CocoaApp/Responder.html Responder Object ]&lt;br /&gt;
==XIBFields==&lt;br /&gt;
{{:NSControlXIB}}&lt;br /&gt;
==See also==&lt;br /&gt;
*[http://developer.apple.com/library/ios/#documentation/general/conceptual/Devpedia-CocoaApp/Responder.html  Apple on responder chains]&lt;br /&gt;
*[http://developer.apple.com/library/ios/#documentation/general/conceptual/Devpedia-CocoaApp/Responder.html  Apple on event handeling]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NSComboBox&amp;diff=6468</id>
		<title>NSComboBox</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NSComboBox&amp;diff=6468"/>
		<updated>2012-11-04T00:34:00Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Comperable to an [[NSPopUpButton]] a combobox also allows for textual input.&lt;br /&gt;
==XIB Fileds==&lt;br /&gt;
{{:NSControlXIB}}&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NSComboBox&amp;diff=6467</id>
		<title>NSComboBox</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NSComboBox&amp;diff=6467"/>
		<updated>2012-11-04T00:15:06Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Comperable to an [[NSPopUpButton]] a combobox also allows for textual input.&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Foundation&amp;diff=6466</id>
		<title>Foundation</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Foundation&amp;diff=6466"/>
		<updated>2012-11-04T00:02:34Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Dynamic List}}&lt;br /&gt;
The GNUstep base library (aka gnustep-base) contains a powerful set of non-graphical [[Objective-C]] classes that can readily be used in your programs. At present there are approximately 70 different classes available, including classes to handle [[NSString|strings]] and [[NSArray|arrays]], [[NSDate|dates]] and times, [[NSConnection|distributed objects]], [[NSURL|URLs]] and [[NSFileManager|file systems]] to name but a few.&lt;br /&gt;
&lt;br /&gt;
You can find the automatically generated API documentation [http://www.gnustep.org/resources/documentation/Developer/Base/Reference/index.html here].&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
* [[Strings]]&lt;br /&gt;
* [[Collections]] (arrays, sets, and dictionaries) and [[NSEnumerator|enumerators]]&lt;br /&gt;
* [[File management]]&lt;br /&gt;
* [[Archiving|Object Archiving]]&lt;br /&gt;
* Advanced calendar [[Date|date]] manipulation&lt;br /&gt;
* [[Distributed Objects]] and inter-process communication&lt;br /&gt;
* [[URL]] handling&lt;br /&gt;
* [[Notifications]] (and distributed notifications)&lt;br /&gt;
* Easy [[Threading|multi-threading]]&lt;br /&gt;
* [[Timer]]s&lt;br /&gt;
* [[Lock]]s&lt;br /&gt;
* [[Exception handling]]&lt;br /&gt;
&lt;br /&gt;
== Notes and Snippets ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
! Class Reference        !! Protocol Reference&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
* [[NSAffineTransform]]&lt;br /&gt;
* [[NSArchiver]]&lt;br /&gt;
* [[NSArray]]&lt;br /&gt;
* [[NSAssertionHandler]]&lt;br /&gt;
* [[NSAttributedString]]&lt;br /&gt;
* [[NSAutoreleasePool]]&lt;br /&gt;
* [[NSBundle]]&lt;br /&gt;
* [[NSCachedURLResponse]]&lt;br /&gt;
* [[NSCalendarDate]]&lt;br /&gt;
* [[NSCharacterSet]]&lt;br /&gt;
* [[NSClassDescription]]&lt;br /&gt;
* [[NSCoder]]&lt;br /&gt;
* [[NSComparisonPredicate]]&lt;br /&gt;
* [[NSCompoundPredicate]]&lt;br /&gt;
* [[NSConditionLock]]&lt;br /&gt;
* [[NSConnection]]&lt;br /&gt;
* [[NSCountedSet]]&lt;br /&gt;
* [[NSData]]&lt;br /&gt;
* [[NSDate]]&lt;br /&gt;
* [[NSDateFormatter]]&lt;br /&gt;
* [[NSDecimalNumber]]&lt;br /&gt;
* [[NSDecimalNumberHandler]]&lt;br /&gt;
* [[NSDeserializer]]&lt;br /&gt;
* [[NSDictionary]]&lt;br /&gt;
* [[NSDirectoryEnumerator]]&lt;br /&gt;
* [[NSDistantObject]]&lt;br /&gt;
* [[NSDistributedLock]]&lt;br /&gt;
* [[NSDistributedNotificationCenter]]&lt;br /&gt;
* [[NSEnumerator]]&lt;br /&gt;
* [[NSError]]&lt;br /&gt;
* [[NSException]]&lt;br /&gt;
* [[NSExpression]]&lt;br /&gt;
* [[NSFileHandle]]&lt;br /&gt;
* [[NSFileManager]]&lt;br /&gt;
* [[NSFormatter]]&lt;br /&gt;
* [[NSHTTPCookie]]&lt;br /&gt;
* [[NSHTTPCookieStorage]]&lt;br /&gt;
* [[NSHTTPURLResponse]]&lt;br /&gt;
* [[NSHost]]&lt;br /&gt;
* [[NSIndexPath]]&lt;br /&gt;
* [[NSIndexSet]]&lt;br /&gt;
* [[NSInputStream]]&lt;br /&gt;
* [[NSInvocation]]&lt;br /&gt;
* [[NSKeyedArchiver]]&lt;br /&gt;
* [[NSKeyedUnarchiver]]&lt;br /&gt;
* [[NSLocale]]&lt;br /&gt;
* [[NSLock]]&lt;br /&gt;
* [[NSMessagePort]]&lt;br /&gt;
* [[NSMessagePortNameServer]]&lt;br /&gt;
* [[NSMethodSignature]]&lt;br /&gt;
* [[NSMutableArray]]&lt;br /&gt;
* [[NSMutableAttributedString]]&lt;br /&gt;
* [[NSMutableCharacterSet]]&lt;br /&gt;
* [[NSMutableData]]&lt;br /&gt;
* [[NSMutableDictionary]]&lt;br /&gt;
* [[NSMutableIndexSet]]&lt;br /&gt;
* [[NSMutableSet]]&lt;br /&gt;
* [[NSMutableString]]&lt;br /&gt;
* [[NSMutableURLRequest]]&lt;br /&gt;
* [[NSNetService]]&lt;br /&gt;
* [[NSNetServiceBrowser]]&lt;br /&gt;
* [[NSNotification]]&lt;br /&gt;
* [[NSNotificationCenter]]&lt;br /&gt;
* [[NSNotificationQueue]]&lt;br /&gt;
* [[NSNull]]&lt;br /&gt;
* [[NSNumber]]&lt;br /&gt;
* [[NSNumberFormatter]]&lt;br /&gt;
* [[NSObject]]&lt;br /&gt;
* [[NSOutputStream]]&lt;br /&gt;
* [[NSPipe]]&lt;br /&gt;
* [[NSPort]]&lt;br /&gt;
* [[NSPortCoder]]&lt;br /&gt;
* [[NSPortMessage]]&lt;br /&gt;
* [[NSPortNameServer]]&lt;br /&gt;
* [[NSPredicate]]&lt;br /&gt;
* [[NSProcessInfo]]&lt;br /&gt;
* [[NSPropertyListSerialization]]&lt;br /&gt;
* [[NSProtocolChecker]]&lt;br /&gt;
* [[NSProxy]]&lt;br /&gt;
* [[NSRecursiveLock]]&lt;br /&gt;
* [[NSRunLoop]]&lt;br /&gt;
* [[NSScanner]]&lt;br /&gt;
* [[NSSerializer]]&lt;br /&gt;
* [[NSSet]]&lt;br /&gt;
* [[NSSocketPort]]&lt;br /&gt;
* [[NSSocketPortNameServer]]&lt;br /&gt;
* [[NSSortDescriptor]]&lt;br /&gt;
* [[NSStream]]&lt;br /&gt;
* [[NSString]]&lt;br /&gt;
* [[NSTask]]&lt;br /&gt;
* [[NSThread]]&lt;br /&gt;
* [[NSTimeZone]]&lt;br /&gt;
* [[NSTimeZoneDetail]]&lt;br /&gt;
* [[NSTimer]]&lt;br /&gt;
* [[NSURL]]&lt;br /&gt;
* [[NSURLAuthenticationChallenge]]&lt;br /&gt;
* [[NSURLCache]]&lt;br /&gt;
* [[NSURLConnection]]&lt;br /&gt;
* [[NSURLCredential]]&lt;br /&gt;
* [[NSURLCredentialStorage]]&lt;br /&gt;
* [[NSURLDownload]]&lt;br /&gt;
* [[NSURLHandle]]&lt;br /&gt;
* [[NSURLProtectionSpace]]&lt;br /&gt;
* [[NSURLProtocol]]&lt;br /&gt;
* [[NSURLRequest]]&lt;br /&gt;
* [[NSURLResponse]]&lt;br /&gt;
* [[NSUnarchiver]]&lt;br /&gt;
* [[NSUndoManager]]&lt;br /&gt;
* [[NSUserDefaults]]&lt;br /&gt;
* [[NSValue]]&lt;br /&gt;
* [[NSValueTransformer]]&lt;br /&gt;
* [[NSXMLParser]]&lt;br /&gt;
* [[NSConstantString]]&lt;br /&gt;
&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
* [[NSCoding]]&lt;br /&gt;
* [[NSCopying]]&lt;br /&gt;
* [[NSDecimalNumberBehaviors]]&lt;br /&gt;
* [[NSLocking]]&lt;br /&gt;
* [[NSMutableCopying]]&lt;br /&gt;
* [[NSObjCTypeSerializationCallBack]]&lt;br /&gt;
* [[NSObject]]&lt;br /&gt;
* [[NSURLAuthenticationChallengeSender]]     &lt;br /&gt;
* [[NSURLHandleClient]]&lt;br /&gt;
* [[NSURLProtocolClient]]  &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Frameworks]]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Template:Dynamic_List&amp;diff=6465</id>
		<title>Template:Dynamic List</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Template:Dynamic_List&amp;diff=6465"/>
		<updated>2012-11-04T00:01:24Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;border-style:solid;&lt;br /&gt;
border-width:3px; text-align:center;&amp;quot;&amp;gt;&lt;br /&gt;
'''Dynamic List''' &amp;lt;br /&amp;gt;&lt;br /&gt;
This is a list which is constantly changing and may never be considered complete.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Template:Dynamic_List&amp;diff=6464</id>
		<title>Template:Dynamic List</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Template:Dynamic_List&amp;diff=6464"/>
		<updated>2012-11-04T00:00:37Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;border-style:solid;&lt;br /&gt;
border-width:3px; text-align:center;&amp;quot;&amp;gt;&lt;br /&gt;
This is a list which is constantly changing and may never be considered complete.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NSControl&amp;diff=6463</id>
		<title>NSControl</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NSControl&amp;diff=6463"/>
		<updated>2012-11-03T23:55:47Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;NSControl ithe the a very important framework in [[AppKit]], it is the superclass for items that recieve user input messages from the window(see [http://developer.apple.com/library/ios/#documentation/general/conceptual/Devpedia-CocoaApp/Responder.html Responder Object ]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[http://developer.apple.com/library/ios/#documentation/general/conceptual/Devpedia-CocoaApp/Responder.html  Apple on responder chains]&lt;br /&gt;
*[http://developer.apple.com/library/ios/#documentation/general/conceptual/Devpedia-CocoaApp/Responder.html  Apple on event handeling]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=User:Awiebe&amp;diff=6455</id>
		<title>User:Awiebe</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=User:Awiebe&amp;diff=6455"/>
		<updated>2012-09-24T22:52:23Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://stackoverflow.com/users/888715/awiebe  http://stackexchange.com/users/flair/795711.png]&lt;br /&gt;
&lt;br /&gt;
Currently a Computer Science student, long time macintosh user (as of 1995, so don't give me that mac fanboy crap)–  but became interested in GNUStep after apple started making some questionable design decisions.  Always been interested in having a system to (at least partially) call his own.&lt;br /&gt;
&lt;br /&gt;
==Languages==&lt;br /&gt;
*English,French&lt;br /&gt;
*C&lt;br /&gt;
*C++&lt;br /&gt;
*Objc/C++&lt;br /&gt;
*C#(kind of)&lt;br /&gt;
*Java&lt;br /&gt;
*Javascript&lt;br /&gt;
*Bash&lt;br /&gt;
*Php&lt;br /&gt;
*SQL&lt;br /&gt;
*X/HTML&lt;br /&gt;
*XML&lt;br /&gt;
*VB(Only because I used some in a course)&lt;br /&gt;
&lt;br /&gt;
==Comp Sci Interests==&lt;br /&gt;
*DSP&lt;br /&gt;
*BSP&lt;br /&gt;
*Graphics (3D &amp;amp; 2D)&lt;br /&gt;
*Audio Processing&lt;br /&gt;
*Video Processing&lt;br /&gt;
*Games&lt;br /&gt;
===Likes using, but has others write===&lt;br /&gt;
*Databases&lt;br /&gt;
*Compression&lt;br /&gt;
*Physics Engines&lt;br /&gt;
*Drawing Libraries&lt;br /&gt;
*Web rendering Agents&lt;br /&gt;
&lt;br /&gt;
==Turn Ons==&lt;br /&gt;
*Clean, crisp code.&lt;br /&gt;
*Descriptive varible names.&lt;br /&gt;
==Turn Offs==&lt;br /&gt;
*Endianness Issues.&lt;br /&gt;
*Indentation and Bracketing issues&lt;br /&gt;
*People who think ( C ) int == int32_t&lt;br /&gt;
*People who take the above headers literally.&lt;br /&gt;
==How to Contact==&lt;br /&gt;
&lt;br /&gt;
Put &amp;quot;GNUStep&amp;quot; in the subject line.&lt;br /&gt;
awiebe ;a-t; Burningthumb  com&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=User_Guides&amp;diff=6454</id>
		<title>User Guides</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=User_Guides&amp;diff=6454"/>
		<updated>2012-09-19T20:59:37Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: /* Installing GNUstep */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended as a collection of guides for users.&lt;br /&gt;
&lt;br /&gt;
== Installing GNUstep ==&lt;br /&gt;
&lt;br /&gt;
Installation can be easy or complex, depending on the system you use. If you encounter problems that aren't discussed here, please [[Get Help|ask for help on the mailing lists]].&lt;br /&gt;
&lt;br /&gt;
* [http://www.gnustep.org/resources/documentation/User/GNUstep/gnustep-howto_toc.html GNUstep Installation] instructions or [[Installation | Simple Installation]] ([http://www.gnustep.org/resources/documentation/User/GNUstep/gnustep-howto.pdf PDF], [http://www.gnustep.org/resources/documentation/GNUstep-HOWTO-Italian.text Italian])&lt;br /&gt;
* Make sure you also check the [[Platform_compatibility|platform-specific]] instructions as well.&lt;br /&gt;
* Comprehensive [http://gnustep.made-it.com/BuildGuide/ build guide] for GNUstep on GNU/Linux.&lt;br /&gt;
* [http://www.gnustep.org/resources/documentation/User/Gui/KeyboardSetup.html User Keyboard Setup]&lt;br /&gt;
* [http://www.gnustep.org/resources/documentation/User/Gui/LanguageSetup.html Setup for East Asian Languages]&lt;br /&gt;
* User Defaults ([http://www.gnustep.org/resources/documentation/User/Gui/DefaultsSummary.html GUI]) ([http://www.gnustep.org/resources/documentation/Developer/Back/General/DefaultsSummary.html Back])&lt;br /&gt;
* [[GNUstep SVN Installation Guide]]&lt;br /&gt;
&lt;br /&gt;
* [http://svn.gna.org/svn/etoile/trunk/Etoile/INSTALL.Ubuntu GNUstep and Étoilé dependency list]&lt;br /&gt;
* [[Building GNUstep with Clang]]&lt;br /&gt;
&lt;br /&gt;
== Using GNUstep ==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Applications|User Applications]]&lt;br /&gt;
* [http://www.gnustep.org/resources/documentation/User/GNUstep/filesystem_toc.html Filesystem Layout] ([http://www.gnustep.org/resources/documentation/User/GNUstep/filesystem.pdf PDF])&lt;br /&gt;
* [[User_FAQ|GNUstep Users' FAQ]] ([http://www.gnustep.org/resources/documentation/User/GNUstep/userfaq.pdf PDF])&lt;br /&gt;
* [[Get Help|Mailing Lists, IRC and Newsgroups]]&lt;br /&gt;
* [[Cross Compiling]]&lt;br /&gt;
* [http://gnustep.files.wordpress.com/2010/11/objective-c_gnustep.pdf Manual de Objective-C y GNUstep (PDF en español)]&lt;br /&gt;
* [[Changing GNUStep Theme]]&lt;br /&gt;
&lt;br /&gt;
== Other Info ==&lt;br /&gt;
&lt;br /&gt;
* News and info:&lt;br /&gt;
** [http://freshmeat.net/browse/806/?topic_id=806 Freshmeat]&lt;br /&gt;
** [http://www.gnustep.wordpress.com/ GNUstep en español] - Noticias e información&lt;br /&gt;
* Projects:&lt;br /&gt;
** [[:Category:Desktop Environments|Desktop Environments]]&lt;br /&gt;
*** [http://www.nongnu.org/backbone/ Backbone] - GNUstep Desktop project&lt;br /&gt;
*** [http://www.etoile-project.org/ Étoilé] - GNUstep based user environment&lt;br /&gt;
*** [http://www.nongnu.org/gap/ GAP] - GNUstep Application Project&lt;br /&gt;
** Live CDs&lt;br /&gt;
*** [http://io.debian.net/~tar/gnustep/ GNUstep Live CD Project] - based on Debian&lt;br /&gt;
* Developer sites:&lt;br /&gt;
** [[For_Developers | Developers]] - List of developers&lt;br /&gt;
** [http://www.gnustep.it/ GNUstep.it] - Italian developer site&lt;br /&gt;
** [http://www.advogato.org/proj/GNUstep/ Advogato] - basic GNUstep project info and links to some developer diaries&lt;br /&gt;
** [http://www.collaboration-world.com/ Collaboration World] - home to GNUMail, Affiche and more&lt;br /&gt;
** [http://www.roard.com/docs/ GNUstep HelpCenter]&lt;br /&gt;
** [http://freshmeat.net/projects/gnustep-icons/ GNUstep Icons project]&lt;br /&gt;
* [[Success_Stories | GNUstep Success Stories]]&lt;br /&gt;
&lt;br /&gt;
== Stores ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cafepress.com/openlogic &amp;quot;Openlogic&amp;quot; GNUstep store] - A portion of these proceeds go to the FSF and GNUstep.&lt;br /&gt;
* The GNUstep project does not sponsor or benefit from these items:&lt;br /&gt;
** [http://www.cafepress.com/gnustep &amp;quot;GNUstep&amp;quot; store]&lt;br /&gt;
** [http://www.cafepress.com/opengnustep &amp;quot;OPENGNUstep&amp;quot; store]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Developer_FAQ&amp;diff=6453</id>
		<title>Developer FAQ</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Developer_FAQ&amp;diff=6453"/>
		<updated>2012-09-19T20:56:46Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:FAQ]]&lt;br /&gt;
&lt;br /&gt;
Please send corrections to gnustep-maintainer@gnu.org. Also look at the [[User FAQ]] for more user oriented questions.&lt;br /&gt;
&lt;br /&gt;
==Getting started==&lt;br /&gt;
===[[Installation]]===&lt;br /&gt;
How to install GNUStep&lt;br /&gt;
===Installation [[Troubleshooting]]===&lt;br /&gt;
What to do when installation screws up.&lt;br /&gt;
=== [[Configuration]]===&lt;br /&gt;
What to do once GNUStep is installed.&lt;br /&gt;
&lt;br /&gt;
== Compatibility ==&lt;br /&gt;
&lt;br /&gt;
=== Is it easy to port OPENSTEP programs to GNUstep? ===&lt;br /&gt;
&lt;br /&gt;
It is probably easy for simple programs. There are some portability tools to make this easier, or rewrite the Makefiles yourself. You will also have to translate the NIB files (if there are any) to GNUstep model files using the nib2gmodel program. See the [[Writing portable code#Porting_from_Cocoa_or_OPENSTEP_.28NS.2A.29_to_GNUstep|portability]] page for details.&lt;br /&gt;
&lt;br /&gt;
=== How about porting between Cocoa and GNUstep? ===&lt;br /&gt;
&lt;br /&gt;
It's easier from GNUstep to Cocoa than Cocoa to GNUstep. Cocoa is constantly changing, much faster than GNUstep could hope to keep up. They have added extensions and new classes that aren't available in GNUstep yet. Plus there are some other issues. See the [[Writing portable code#Porting_from_Cocoa_or_OPENSTEP_.28NS.2A.29_to_GNUstep|portability]] page for details.&lt;br /&gt;
&lt;br /&gt;
=== Tools for porting ===&lt;br /&gt;
&lt;br /&gt;
While the programming interface should be almost transparent between systems (expect for the unimplemented parts, of course), there are a variety of other files and tools that are necessary for porting programs.&lt;br /&gt;
&lt;br /&gt;
* '''nib2gmodel:''' This program coverts nib files from any system, such as Cocoa or OPENSTEP to a gmodel format file. Gmodel can be read directly by GNUstep or you can convert this to a more GNUstep-native gorm format (using the Gorm interface modeller).&lt;br /&gt;
* '''Renaissance:''' GNUstep Renaissance allows you to describe your user interfaces (that is, the windows in your application, and the buttons, boxes, textfields, etc in the windows) in simple and intuitive XML files, using an open, standard format describing the logic of the interface. It has a number of advantages over the proprietary nib format: portability, open standard, easy localization, themeability, and intelligent autolayout.&lt;br /&gt;
* '''[[Gorm]]:''' The equivalent of the Interface Builder in GNUstep. As of version 1.1.0 Gorm allows reading and writing of Mac OS 10.2 or later Cocoa NIB files.  Please see http://lists.gnu.org/archive/html/discuss-gnustep/2006-09/msg00008.html.&lt;br /&gt;
* '''OpenStep2GNUConverter and nfmake:''' Two programs that allow you to convert PB files to GNUstep makefiles or compile a program on GNUstep directly from PB files. They probably work only for OPENSTEP systems and are a little out-of-date.&lt;br /&gt;
* '''StepTalk:''' A portable scripting environment that lets your do scripting in almost any language you like.&lt;br /&gt;
&lt;br /&gt;
=== Can I transfer archived data from GNUstep to Cocoa? ===&lt;br /&gt;
&lt;br /&gt;
Apple's archiving format is proprietary and not documented, so this poses a problem for anyone wanting to implement compatibility with it. However, even if we reverse engineered the format, there are enough differences between the class and ivar layouts to make this sort of compatibility difficult. Not to mention the fact that we would constantly have to keep up with the changes Apple made. Also Apple's archiving format, as far as we know, would not be compatible between different machines because of endiness issues, although GNUstep doesn't have this problem.&lt;br /&gt;
&lt;br /&gt;
The new keyed archiving using XML file formats is much more portable, and GNUstep is trying to maintain compatibility with Apple for this type of archiving.&lt;br /&gt;
&lt;br /&gt;
=== Does distributed objects work between GNUstep and Cocoa? ===&lt;br /&gt;
&lt;br /&gt;
See the answer to the previous question (on archive compatibility) for why this won't work either.&lt;br /&gt;
&lt;br /&gt;
=== Is there an Interface Builder for GNUstep? ===&lt;br /&gt;
&lt;br /&gt;
There is an Interface Builder for GNUstep called [[Gorm]]. A lot of work has been put into it and it works very well. The project manager [[ProjectCenter]] is also available. There is also [[ProjectManager]].&lt;br /&gt;
&lt;br /&gt;
=== Can I use my original NIB files? ===&lt;br /&gt;
It is currently possible to use newer keyed archiving files which were created on Mac OS 10.2 or later.  &lt;br /&gt;
&lt;br /&gt;
Older nibs, such as those from Mac OS 10.1 or from OPENSTEP which don't use keyed archiving aren't readable since Apple/NeXT never documented their nib format.  These nibs must be translated into keyed nibs for use with GNUstep, if you have Mac OS 10.2 or later this is a simple matter of loading them into IB and saving them as keyed nibs.  Alternatively, if you only have OPENSTEP you can use nib2gmodel to translate them into gmodel format.&lt;br /&gt;
&lt;br /&gt;
=== Can one use the hybrid &amp;quot;Objective-C++&amp;quot; ? ===&lt;br /&gt;
&lt;br /&gt;
Yes.  As of release 4.1 the GNU C Compiler (GCC) supports &amp;quot;Objective-C++&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== Is there a plan to support the Java/YellowBox Bindings? ===&lt;br /&gt;
&lt;br /&gt;
Yes. The GNustep Java library/bridge called JIGS is available now. JIGS is a free (LGPL) Java Interface for GNUstep; it can automatically wrap Objective-C libraries based on GNUstep, making them accessible directly to the Java programmer as if they were Java libraries. As a side effect, it is also possible to use the whole engine in the reverse way: JIGS provides a high level API to allow Objective-C programmers to start java virtual machines inside GNUstep Objective-C code and access java objects in the java virtual machine transparently, as if they were objective-C objects. &lt;br /&gt;
&lt;br /&gt;
=== What if I compile GNUstep under OPENSTEP/MacOS X? ===&lt;br /&gt;
&lt;br /&gt;
GNUstep uses the X-windows display postscript extension. The interface to that is not the same as the interface to the OPENSTEP/MacOS-X windows server. While someone could write a backend library to provide the interface, nobody has bothered to date.&lt;br /&gt;
&lt;br /&gt;
You can, however, use a GNUstep program with an X11 server running on MacOSX.&lt;br /&gt;
&lt;br /&gt;
=== Is the Objective C API for GTK related? ===&lt;br /&gt;
&lt;br /&gt;
No. GNUstep applications provide their GUI via the OpenStep API, which provides fully object-oriented access to GUI manipulation.&lt;br /&gt;
&lt;br /&gt;
The object-oriented nature of the libraries and language make it much easier for new users to create their own subclasses rather than simply using the supplied widgets as in other frameworks. &lt;br /&gt;
&lt;br /&gt;
=== How about implementing parts of the Application Kit with GTK? ===&lt;br /&gt;
&lt;br /&gt;
Yes and No - The GNUstep architecture provides a single, platform-independent, API for handling all aspects of GUI interaction (implemented in the gstep-gui library), with a backend architecture that permits you to have different display models (display postscript, X-windows, win32, berlin ...) while letting you use the same code for printing as for displaying. Use of GTK in the frontend gui library would remove some of those advantages without adding any.&lt;br /&gt;
&lt;br /&gt;
That being said, a backend library could be implemented using gtk if anyone wanted to do so. Since the frontend library handles most of the work involved in implementing the OpenStep API, the backend is a relatively thin layer and the advantages of GTK over direct xlib or win32 calls is likely to be minimal. If/when GTK is ported to more systems, a backend written using it could be a valuable asset - volunteers are, as always, welcome. &lt;br /&gt;
&lt;br /&gt;
== Compiling and Developing ==&lt;br /&gt;
&lt;br /&gt;
=== How can I get started programming? ===&lt;br /&gt;
Good question.  Please refer to the tutorials for some suggestions.  Also look at Apple's documentation (pointers in the Resources section on the GNUstep web site.)&lt;br /&gt;
&lt;br /&gt;
=== Why doesn't GDB support Objective-C? ===&lt;br /&gt;
As of GDB 6.0, gdb supports debugging of Objective-C code.&lt;br /&gt;
&lt;br /&gt;
== How can I help with GNUstep? ==&lt;br /&gt;
&lt;br /&gt;
The first task is probably just to get familiar with it, then there's a lot you can do. Write library code or applications to get a feel for it. See the [[GNUstepWiki:Community_Portal|community portal]] for an overview of what a GNUstep developer should know.&lt;br /&gt;
&lt;br /&gt;
Another simple way to get familiar with GNUstep is to help write documentation. A lot of documentation is written in the source code itself, and autogenerated. You could also improve on several of the manuals that explain the overall usage of GNUstep. &lt;br /&gt;
&lt;br /&gt;
Here are the next steps: &lt;br /&gt;
* Start off by fixing [http://savannah.gnu.org/bugs/?group_id=99 bugs]&lt;br /&gt;
* Look at the [[#How_do_I_update_the_task_list.3F|list of tasks]] for longer term work and check [[Ideas]] for other ideas.&lt;br /&gt;
* For a bigger challenge, finish off part of the [[Roadmap]]&lt;br /&gt;
&lt;br /&gt;
=== How do I start writing applications? ===&lt;br /&gt;
&lt;br /&gt;
You can either look at the links on the GNUstep website for applications that have been started, and email their owners to volunteer to help, or you can start your own project.&lt;br /&gt;
&lt;br /&gt;
Let people know what you are doing. Break your project up into the smallest units you can. Feed back frequent updates to the maintainers. Ask questions in the discussion mailing list.&lt;br /&gt;
&lt;br /&gt;
=== Helping develop GNUstep === &lt;br /&gt;
&lt;br /&gt;
There is plenty of unimplemented stuff in the gui library and backend libraries that volunteers can work on, just browse through the code and see if it conforms to the documentation.&lt;br /&gt;
&lt;br /&gt;
Do remember that any changes beyond a few lines of code (or documentation) require a disclaimer or copyright assignment to the Free Software Foundation before they can be incorporated into the project. [[#How_do_I_assign_my_contribution.3F|See below]].&lt;br /&gt;
&lt;br /&gt;
Don't start with large-scale reorganization of anything -- instead, get a general idea in mind of what you want to do, and proceed as much as possible with incremental changes that don't break anything - that way you can make those incremental changes available to the rest of the community at frequent intervals.&lt;br /&gt;
&lt;br /&gt;
Don't be afraid to give up - there is no shame in finding out that you have take on too large/complex a project. It's much better to 'resign' and take on a smaller job than to just stop without telling anyone.&lt;br /&gt;
&lt;br /&gt;
Please document the code you add or change (using autogsdoc comments that begin with a slash and two asterices) and maybe write a testcase for it. But PLEASE, do not copy from the Apple documentation or any other copyrighted documentation. &lt;br /&gt;
&lt;br /&gt;
Specific tasks are noted in the developers section on the GNUstep website.&lt;br /&gt;
&lt;br /&gt;
=== Helping document GNUstep ===&lt;br /&gt;
&lt;br /&gt;
All class documentation is written directly in the source code itself and translated using the autogsdoc program. See the source code and documentation for autogsdoc for information on documenting the classes.&lt;br /&gt;
&lt;br /&gt;
Newcomers could write documentation for individual classes by comparing the OpenStep specification, the MacOS-X documentation, and the GNUstep source. Documentation should clearly note where individual methods are specific to OpenStep, MacOS-X or are GNustep extensions.&lt;br /&gt;
&lt;br /&gt;
More experienced people could write documentation on general programming topics, and tutorials for new users. Contributors to the wiki are welcome!&lt;br /&gt;
&lt;br /&gt;
Anyone willing to write documentation, either tutorials for using GNUstep, or reference documentation for individual classes, should either write it in gsdoc or as plain ascii text for someone else to format into gsdoc.&lt;br /&gt;
&lt;br /&gt;
GNUstep documentation should have copyright assigned to the Free Software Foundation.&lt;br /&gt;
&lt;br /&gt;
=== How do I assign my contribution? ===&lt;br /&gt;
&lt;br /&gt;
Everyone who contributes more than 20 lines of code or so needs to sign a copyright assignment so that the FSF can have legal control of the copyright. This makes it easier to defend against any copyright infringement suits. Contact the GNUstep maintainer for instructions on how to do this or download and fill out the form http://www.gnustep.org/resources/request-assign.future (instructions are included).&lt;br /&gt;
&lt;br /&gt;
=== How do I update the task list? ===&lt;br /&gt;
&lt;br /&gt;
The [http://savannah.gnu.org/pm/?group_id=99 task list] is supposed to tell people what jobs are waiting to be done. Feel free to add to it or update the tasks that are there (you need to create a login for yourself first).&lt;br /&gt;
&lt;br /&gt;
One job of major importance that pretty much anyone can do is to look for jobs to add to the task list. In the case of methods from the OpenStep specification or the MacOS-X documentation not being present in the GNUstep libraries, it is also helpful to add the method prototypes to the library header files.&lt;br /&gt;
&lt;br /&gt;
Send any changes or additions to bug-gnustep@gnu.org.&lt;br /&gt;
&lt;br /&gt;
A beginner can look through the MacOS-X documentation, the OpenStep specification and the GNUstep source and contribute task items.&lt;br /&gt;
&lt;br /&gt;
If a class or method is&lt;br /&gt;
&lt;br /&gt;
* in MacOS-X and OpenStep but is not in GNUstep, it's a high priority TODO and should at least be added to the GNUstep headers and a dummy version added to the source with a FIXME comment.&lt;br /&gt;
* in MacOS-X but not OpenStep or GNUstep, it's a low priority TODO. It should be added to the GNUstep headers bracketed in #ifndef STRICT_OPENSTEP&lt;br /&gt;
* in OpenStep but not in MacOS-X or GNUstep, it's a low priority TODO. It should be added to the GNUstep headers bracketed in #ifndef STRICT_MACOS_X&lt;br /&gt;
&lt;br /&gt;
There are a couple of people working on this already, so it's a good idea to get in touch with Adam or Richard to coordinate efforts.&lt;br /&gt;
&lt;br /&gt;
=== How do I start writing tests? ===&lt;br /&gt;
&lt;br /&gt;
You can write testcases - where the libraries fail tests, you could either fix the problem, or add it to the task list.&lt;br /&gt;
&lt;br /&gt;
To write testcases, you need to use svn to install the latest GNUstep sourcecode you can find. Then checkout the 'gnustep/tools/testsuite' module from svn.&lt;br /&gt;
&lt;br /&gt;
=== How can I help with the GNUstep website? ===&lt;br /&gt;
&lt;br /&gt;
'''Please consider contributing to this Wiki as opposed to the website.'''&lt;br /&gt;
Contact Adam Fedor fedor@gnu.org, the maintainer.&lt;br /&gt;
&lt;br /&gt;
The GNUstep website is kept as a CVS module, but the largest portions of it (the FAQ and the Documentation) are actually generated from files in the individual GNUstep packages.&lt;br /&gt;
&lt;br /&gt;
If you want to update the FAQ or documentation - grab the latest snapshot of the GNUstep core you can find, update it from the svn repository, and work with the contents of the appropriate documentation directory.&lt;br /&gt;
&lt;br /&gt;
If you want to work on other parts of the website, you can grab a copy of the website via anonymous CVS. See http://savannah.gnu.org/cvs/?group_id=99 for instructions on how to do that.&lt;br /&gt;
&lt;br /&gt;
The main task with the website is to figure out which bits are out-of-date (or wrong) and update/mark-as-outdated as required.&lt;br /&gt;
&lt;br /&gt;
=== How can I take part with a GNUstep autobuilder for the testfarm? ===&lt;br /&gt;
* General Procedure&lt;br /&gt;
** Make sure your build system  have a gcc compiler with objc support.&lt;br /&gt;
*** run &amp;quot;gcc -v&amp;quot; to see if obc is on the list of --enable-language option&lt;br /&gt;
** (Preferred Option): Get the source code via SVN:&lt;br /&gt;
*** svn co http://svn.gna.org/svn/gnustep/autotest gnustep-testfarm&lt;br /&gt;
** (Alternate Option): ...Or download the source code and test files&lt;br /&gt;
*** mkdir gnustep-testfarm &amp;amp;&amp;amp; cd gnustep-testfarm&lt;br /&gt;
*** wget http://ftp.gnustep.org/pub/daily-snapshots/startup.current.tar.bz2&lt;br /&gt;
*** wget http://ftp.gnustep.org/pub/daily-snapshots/core.current.tar.bz2&lt;br /&gt;
*** wget http://ftp.gnustep.org/pub/daily-snapshots/tests.current.tar.bz2&lt;br /&gt;
*** tar xjf startup.current.tar.bz2 ; tar xjf core.current.tar.bz2; tar xjf tests.current.tar.bz2&lt;br /&gt;
** cd startup/scripts&lt;br /&gt;
** ./test-gnustep&lt;br /&gt;
&lt;br /&gt;
If you want to test this on a remote machine with X, make sure you don't forget the -X or -Y parameter&lt;br /&gt;
for ssh.&lt;br /&gt;
&lt;br /&gt;
The results get posted to http://www.gnustep.org/developers/testfarm.html &lt;br /&gt;
The test script will automatically update using SVN if possible. See more documentation&lt;br /&gt;
in the test-gnustep script&lt;br /&gt;
&lt;br /&gt;
== GNU Objective C Compiler and Runtime ==&lt;br /&gt;
&lt;br /&gt;
=== What is the Objective C Runtime? ===&lt;br /&gt;
&lt;br /&gt;
The [[Objective-C runtime]] Library provides C functions and data structures required to execute an Objective C program.&lt;br /&gt;
&lt;br /&gt;
The GNU Objective C Runtime Library offers everything NeXT's runtime does, including Categories, Protocols, `+poseAs:', thread-safety, class initialization on demand, delayed loading of classes, and initialization of static instances (such as @&amp;quot;&amp;quot;-style string objects).&lt;br /&gt;
&lt;br /&gt;
It also has several differences over NeXT's implementation:&lt;br /&gt;
&lt;br /&gt;
* GNU's runtime provides &amp;quot;selector-types&amp;quot; along with each selector; NeXT's does not. A selector-type is a string that describes the C variable types for the method's return and argument values. Among other uses, selector-types is extremely helpful for fast distributed objects implementations, (see GNUstep Base Library Section, below).&lt;br /&gt;
&lt;br /&gt;
* Many of the GNU functions have different names than their corresponding NeXT functions; the GNU names conform to the GNU coding standards. The GNUstep base library contains a compatibility header that works with both runtimes. You should use functions there or use OpenStep Foundation methods/functions instead of the basic runtime functions so that you code can run with either system.&lt;br /&gt;
&lt;br /&gt;
Apple has recently added new functionality to their runtime, including built-in exception handling, etc. Hopefully these will be ported to the GNU runtime in the future.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Where can I get a gcc compiler with Objective C support? ===&lt;br /&gt;
*TBA.&lt;br /&gt;
=== How I can compile my own gcc compiler with objective-C support ? ===&lt;br /&gt;
* TBA.&lt;br /&gt;
=== How I check if my gcc compiler has good objective C environment ? ===&lt;br /&gt;
* TBA.&lt;br /&gt;
&lt;br /&gt;
== GNUstep Base Library ==&lt;br /&gt;
&lt;br /&gt;
=== What is the GNUstep Base Library? ===&lt;br /&gt;
&lt;br /&gt;
The GNUstep Base Library is a library of general-purpose, non-graphical Objective C objects. For example, it includes classes for strings, object collections, byte streams, typed coders, invocations, notifications, notification dispatchers, moments in time, network ports, remote object messaging support (distributed objects), event loops etc.&lt;br /&gt;
&lt;br /&gt;
It provides functionality that aims to implement the non-graphical portion of the OpenStep standard (the Foundation library).&lt;br /&gt;
&lt;br /&gt;
=== What is its current state of development? ===&lt;br /&gt;
&lt;br /&gt;
GNUstep base is currently stable and, to the best of our knowledge, implements all of the OpenStep functionality (except for a few classes that we feel are not useful). It also implements most all of the new Cocoa classes. However we do some things, like scripting, differently, so we don't implement all the Cocoa classes.&lt;br /&gt;
&lt;br /&gt;
=== What are the features of GNU Distributed Objects? ===&lt;br /&gt;
&lt;br /&gt;
GNU Distributed Objects has many of the features of other distributed objects implementations, but, since it is free software, it can be ported to platforms for which other distributed objects implementations are not available.&lt;br /&gt;
&lt;br /&gt;
NOTE: The GNU distributed object facilities have the same ease-of-use as Apple's; be warned, however, that they are not compatible with each other. They have different class hierarchies, different instance variables, different method names, different implementation strategies and different network message formats. You cannot communicate with a Apple NSConnection using a GNU NSConnection.&lt;br /&gt;
Here are some differences between GNU distributed objects and Apple's distributed objects: Apple NSDistantObject asks it's remote target for the method encoding types and caches the results; GNU NSDistantObject gets the types directly from the local GNU &amp;quot;typed selector&amp;quot; mechanism if the information is known locally and only queries the remote target or caching encoding types when using a method that is not known to the local process. The NSProxy for the remote root object always has name and, once set, you cannot change the root object of a NSConnection; the GNU Proxy for the remote root object has a target address value just like all other Proxy's, and you can change the root object as many times as you like. &lt;br /&gt;
&lt;br /&gt;
== GNUstep GUI Library ==&lt;br /&gt;
&lt;br /&gt;
=== What is the GUI Library? ===&lt;br /&gt;
&lt;br /&gt;
The GNUstep GUI Library is a library of objects useful for writing graphical applications. For example, it includes classes for drawing and manipulating graphics objects on the screen: windows, menus, buttons, sliders, text fields, and events. There are also many peripheral classes that offer operating-system-independent interfaces to images, cursors, colors, fonts, pasteboards, printing. There are also workspace support classes such as data links, open/save panels, context-dependent help, spell checking.&lt;br /&gt;
&lt;br /&gt;
It provides functionality that aims to implement the `AppKit' portion of the OpenStep standard. However the implementation has been written to take advantage of GNUstep enhancements wherever possible.&lt;br /&gt;
&lt;br /&gt;
=== Explain the organization of the front- and back-ends ===&lt;br /&gt;
&lt;br /&gt;
The GNUstep GUI Library is divided into a front- and back-end. The front-end contains the majority of implementation, but leaves out the low-level drawing and event code. A back-end can override whatever methods necessary in order to implement low-level drawing event receiving. Different back-ends will make GNUstep available on various platforms. The default GNU back-end will run on top of X-Window. Other back-ends could allow GNUstep to run on OpenGL and WIN32 graphics/event platforms. Much work will be saved by this clean separation between front- and back-end, because it allows different platforms to share the large amount of front-end code.&lt;br /&gt;
&lt;br /&gt;
=== What is the current state of development of the front-end? ===&lt;br /&gt;
Many of the classes are well implemented, if not thoroughly tested. See the GNUstep web sites and read status information contained in the distribution for the most up-to-date information.&lt;br /&gt;
&lt;br /&gt;
=== What is the current state of development of the back-ends? ===&lt;br /&gt;
&lt;br /&gt;
There are several backends currently available:&lt;br /&gt;
&lt;br /&gt;
* '''xlib:''' This backend runs on X11 and uses standard xlib calls for implementing drawing. It works well, but is limited in many areas due to the limitations of xlib drawing. &lt;br /&gt;
* '''art:''' This is a very good backend that draws using the libart package and freetype with near PostScript quality and functionality.&lt;br /&gt;
* '''w32:''' This backend works on Windows and uses basic Windows drawing &lt;br /&gt;
* '''cairo:''' A backend based on the cairo graphics library. It is the standard backend (as long as the required libraries are installed).&lt;br /&gt;
&lt;br /&gt;
== GNUstep DisplayGhostScript Server ==&lt;br /&gt;
&lt;br /&gt;
=== What is the Display Ghostscript Server? ===&lt;br /&gt;
&lt;br /&gt;
It is a free implementation of a Display PostScript server based on the GNU Ghostscript program developed by Aladdin Enterprises and now owned by artofcode LLC.&lt;br /&gt;
&lt;br /&gt;
At one point, GNUstep was using this for display purposes. However the development of DGS has stopped as it is too difficult to maintain and no one wanted to work on it. Now we are using other means of drawing.&lt;br /&gt;
&lt;br /&gt;
=== What is its current state of development? ===&lt;br /&gt;
&lt;br /&gt;
GNU contracted with Aladdin Enterprises to add some key features to GNU Ghostscript so it could be used as a DPS server. This work has mostly been done, although Aladdin did not completely finish the work that they were contracted for. (Because the work took longer than specified and was not completed, Aladdin agreed to waive approximately $10,000 in promised fees for the work that was actually done and delivered.) DGS works fairly well with a single context. Alpha channel and compositing doesn't work.&lt;br /&gt;
&lt;br /&gt;
Further development on DGS has been abandoned in favor of libraries such as Cairo and libart.&lt;br /&gt;
&lt;br /&gt;
=== What is the relationship between the Display Ghostscript Server and X-Window? ===&lt;br /&gt;
&lt;br /&gt;
Display Ghostscript runs on top of X-Window.&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Developer_Guides&amp;diff=6452</id>
		<title>Developer Guides</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Developer_Guides&amp;diff=6452"/>
		<updated>2012-09-19T20:53:44Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended as a collection of guides for developers.&lt;br /&gt;
&lt;br /&gt;
== Introductory Articles on GNUstep Development ==&lt;br /&gt;
&lt;br /&gt;
{{Stub}}&lt;br /&gt;
&lt;br /&gt;
=== [[Installation]] ===&lt;br /&gt;
How to get started using GNUStep, because it is not immediately obvious, and we appologize for that.&lt;br /&gt;
&lt;br /&gt;
=== [[GNUstep Suite|GNUstep Libraries and Tools]] ===&lt;br /&gt;
&lt;br /&gt;
A general overview of GNUstep.&lt;br /&gt;
&lt;br /&gt;
=== [http://www.gnustep.org/resources/documentation/Developer/Base/ProgrammingManual/manual_toc.html GNUstep Base Programming Manual] ===&lt;br /&gt;
&lt;br /&gt;
The aim of this manual is to introduce you to the Objective-C language and the GNUstep development environment, in particular the Base library. The manual is organised to give you a tutorial introduction to the language and APIs, by using examples whenever possible, rather than providing a lengthy abstract description. &lt;br /&gt;
&lt;br /&gt;
While Objective-C is not a difficult language to learn or use, some of the terms may be unfamiliar, especially to those that have not programmed using an object-oriented programming language before. Whenever possible, concepts will be explained in simple terms rather than in more advanced programming terms, and comparisons to other languages will be used to aid in illustration.&lt;br /&gt;
&lt;br /&gt;
===[[GNUStep Macros]]===&lt;br /&gt;
See a define, but don't know what it's for, you are not alone.  See this article for a reference to various macros, or otherwise unusual language extensions that you may see when reading the GNUStep Code.&lt;br /&gt;
&lt;br /&gt;
=== [http://www.roard.com/docs/lmf2.article/en.html (GUI) Programming under GNUstep] ===&lt;br /&gt;
&lt;br /&gt;
This tutorial will introduce you to the [[AppKit]] classes and how to use [[Gorm]] to create graphical interfaces.&lt;br /&gt;
&lt;br /&gt;
=== [[Writing Makefiles]] ===&lt;br /&gt;
&lt;br /&gt;
The Makefile package is a system of make commands that is designed to encapsulate all the complex details of building and installing various types of projects from libraries to applications to documentation. This frees the developer to focus on the details of their particular project. Only a fairly simple main makefile need to be written which specifies the type of project and files involved in the project.&lt;br /&gt;
&lt;br /&gt;
=== [ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-examples-1.1.0.tar.gz Sample GNUstep Programs] ===&lt;br /&gt;
&lt;br /&gt;
This isn't really an article but rather a collection of small &amp;quot;codified guides&amp;quot; for the pragmatic programmer who wants to explore GNUstep by looking at and messing around with example code. This is best done while reading about basic concepts of OpenStep or Cocoa with the API documentation ([[Foundation]], [[AppKit]]) open in the background.&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
&lt;br /&gt;
=== [[Writing portable code|Coding for Portability]] ===&lt;br /&gt;
&lt;br /&gt;
Writing code that will compile and then run on different platforms can be surprisingly easy. This guide describes &lt;br /&gt;
some straight-forward steps to take to make your program easy to port to new platforms.&lt;br /&gt;
&lt;br /&gt;
=== [[Property Lists|Using Property Lists]] ===&lt;br /&gt;
&lt;br /&gt;
A regular issue that programmers face is storing structured configuration information, and reading it back. GNUstep has a standard mechanism that can be used for this task, amongst others: Property Lists.&lt;br /&gt;
&lt;br /&gt;
=== [[Deployment on Windows]] ===&lt;br /&gt;
&lt;br /&gt;
This article will tell you how to deploy GNUstep applications on Windows.&lt;br /&gt;
&lt;br /&gt;
=== [[Adding a new Natural Language to GNUstep|Translating GNUstep]] ===&lt;br /&gt;
&lt;br /&gt;
Translation of GNUstep applications involves a number of steps, including translation of GNUstep Base and GNUstep GUI.&lt;br /&gt;
&lt;br /&gt;
=== [[Contributing to GNUstep core libraries]] ===&lt;br /&gt;
&lt;br /&gt;
Contributing to the core libraries is what everyone loves you for the most ... but it's quite a step to go from simple bug fixes/patches to major new code contributions.  Follow the link above to see how.&lt;br /&gt;
&lt;br /&gt;
When you read the information on [[Contributing to GNUstep core libraries]], please keep in mind that while it was written primarily form the point of view of contributing  code to the gnustep-base library, the principles all apply to the gnustep-gui library (and other library code too).  Also, a lot of the information is also relevant to contributions to application/tool code, not just library code.&lt;br /&gt;
&lt;br /&gt;
== Graphical Applications ==&lt;br /&gt;
&lt;br /&gt;
=== Simple Graphical Application Design ===&lt;br /&gt;
GNUstep includes several sophisticated development tools. GNUstep GUI interfaces are designed using [[Gorm]] (Graphical Object Relationship Modeler), an elegant application developed by Gregory Casamento. (See his [http://heronsperch.blogspot.com/ blog] for the latest news on GORM.) There are two proto-IDEs, [[ProjectCenter]] and [[ProjectManager]].&lt;br /&gt;
&lt;br /&gt;
There are several introductory tutorials for using these development tools. The first [http://www.gnustep.it/pierre-yves/index.html tutorial] by Pierre-Yves Rivaille is a classic demonstrating the process used to create the ubiquitous currency converter application. A second [http://www.nongnu.org/gstutorial/ tutorial] by Yen-Ju Chen is somewhat more in-depth and extensive.&lt;br /&gt;
&lt;br /&gt;
Nicolas Roard created a [http://gnustep.org/experience/DevelopmentDemonstration.html video] demonstrating the process of developing a simple calculator, and another [http://home.gna.org/pmanager/videos.html video] here by Sašo Kiselkov if you feel the need to create another currency converter.&lt;br /&gt;
&lt;br /&gt;
=== [[Document based applications|Document-based Application Design]] ===&lt;br /&gt;
&lt;br /&gt;
One of the most common use-patterns of applications on modern platforms is that of document-based applications --- applications which can have several active user-controlled contexts. Some familar examples might be a word processor where the user may have multiple document windows concurrently, or a web browser which allows a user to have a number of different browser windows open at the same time. This guide provides information and tips on how to code this style of application.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Web Applications ==&lt;br /&gt;
&lt;br /&gt;
Please have a look at [[Creating A Simple GSWeb Application]] to learn how to create a [[GNUstepWeb|GNUstep Web]] application.&lt;br /&gt;
&lt;br /&gt;
== Other Information ==&lt;br /&gt;
&lt;br /&gt;
=== Developer sites ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.roard.com/docs/ GNUstep HelpCenter]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NSMenu&amp;diff=6451</id>
		<title>NSMenu</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NSMenu&amp;diff=6451"/>
		<updated>2012-09-19T20:50:43Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GNUStep provides 3 menus.  The system menu, the contextual menu, and the window menu.  Their behaviours are not specifically defined, however the observed behaviour is.&lt;br /&gt;
&lt;br /&gt;
== Under linux ==&lt;br /&gt;
*If a context menu is available when right clicking provide it, if not provide the application menu, otherwise provide the system menu.&lt;br /&gt;
&lt;br /&gt;
==Under MacOS X==&lt;br /&gt;
*If a context menu is available provide it, applications menus appear in the menubar at the top of the screen according to the application in the foreground.&lt;br /&gt;
&lt;br /&gt;
==Under Windows==&lt;br /&gt;
Untested.&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Pasteboard&amp;diff=6450</id>
		<title>Pasteboard</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Pasteboard&amp;diff=6450"/>
		<updated>2012-09-19T20:44:57Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The GNUStep clipboard is a generic wrapper for information to be shared between applications.&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
The GNUStep clipboard is not bridged to the gnome clipboard, and may or may not be bridged to the windows clipboard.  They are one and the same on MacOS as a native system call is used.&lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
*[https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/PasteboardGuide106/Introduction/Introduction.html Apple on Copy and Paste]&lt;br /&gt;
&lt;br /&gt;
*[https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/DragandDrop/DragandDrop.html Apple on Drag and Drop]&lt;br /&gt;
&lt;br /&gt;
*[https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/SysServices/introduction.html Apple on &amp;quot;Services&amp;quot;]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=AppKit&amp;diff=6449</id>
		<title>AppKit</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=AppKit&amp;diff=6449"/>
		<updated>2012-09-19T20:20:31Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Dynamic List}}&lt;br /&gt;
&lt;br /&gt;
The GNUstep GUI Library is a library of objects useful for writing graphical applications. For example, it includes classes for drawing and manipulating graphics objects on the screen: [[NSWindow|windows]], [[NSMenu|menus]], [[NSButton|buttons]], [[NSSlider|sliders]], [[NSTextField|text fields]], and [[NSEvent|events]]. There are also many classes that offer operating-system-independent interfaces to [[NSImage|images]], [[NSCursor|cursors]], [[NSColor|colors]], [[NSFont|fonts]], [[NSPasteboard|pasteboards]], printing. There are also workspace support classes such as data links, open/save panels, context-dependent help, spell checking.&lt;br /&gt;
&lt;br /&gt;
It provides functionality that aims to implement the `AppKit' portion of the [[Cocoa]] API (formerly [[OpenStep]] standard) however the implementation has been written to take advantage of GNUstep enhancements wherever possible.&lt;br /&gt;
&lt;br /&gt;
The GNUstep GUI Library is divided into a front and back-end. The front-end contains the majority of the implementation, but leaves out the low-level drawing and event code. Different back-ends will make GNUstep available on various platforms. The default GNU back-end currently runs on top of the X Window System and uses only Xlib calls for graphics. Another backend uses a Display Postscript Server for graphics. Much work will be saved by this clean separation between front and back-end, because it allows different platforms to share the large amount of front-end code. Documentation for how the individual backends work is covered in a separate document.&lt;br /&gt;
&lt;br /&gt;
You can find the automatically generated API documentation [http://www.gnustep.org/resources/documentation/Developer/Gui/Reference/index.html here].&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
* User interface elements: table views, browsers, matrices, scroll views, ...&lt;br /&gt;
* Graphics: WYSIWYG, Postscript-like graphics, Bezier paths, image handling with multiple representations, graphical contexts&lt;br /&gt;
* [[Color|Color management]]: calibrated vs. device colors, CMYK, RGB, HSB, gray and named color representations, alpha transparency&lt;br /&gt;
* [[Text]] system features: rich text format, text attachments, layout manager, typesetter, rules, paragraph styles, font management, [[Spell checking|spell checking]]&lt;br /&gt;
* [[Document architecture|Document management]]&lt;br /&gt;
* [[Printing|Printing features]]: print operations, print panel and page layout&lt;br /&gt;
* Help manager&lt;br /&gt;
* [[Pasteboard|Pasteboard]] (a.k.a. clip board) services&lt;br /&gt;
* [[Spelling|Spell checker]]&lt;br /&gt;
* [[Workspace|Workspace]] bindings for applications&lt;br /&gt;
* [[Drag and drop]] operations&lt;br /&gt;
* [[Service|Services]] shared among applications&lt;br /&gt;
* [[XIB]] WYSIWIG GUI definition language – To be implemented&lt;br /&gt;
&lt;br /&gt;
== Notes and Snippets ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
! Class Reference        !! Protocol Reference&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
* [[NSActionCell]]&lt;br /&gt;
* [[NSAffineTransform]]&lt;br /&gt;
* [[NSAlert]]&lt;br /&gt;
* [[NSApplication]]&lt;br /&gt;
* [[NSBezierPath]]&lt;br /&gt;
* [[NSBitmapImageRep]]&lt;br /&gt;
* [[NSBox]]&lt;br /&gt;
* [[NSBrowser]]&lt;br /&gt;
* [[NSBrowserCell]]&lt;br /&gt;
* [[NSButton]]&lt;br /&gt;
* [[NSButtonCell]]&lt;br /&gt;
* [[NSCachedImageRep]]&lt;br /&gt;
* [[NSCell]]&lt;br /&gt;
* [[NSClipView]]&lt;br /&gt;
* [[NSColor]]&lt;br /&gt;
* [[NSColorList]]&lt;br /&gt;
* [[NSColorPanel]]&lt;br /&gt;
* [[NSColorPicker]]&lt;br /&gt;
* [[NSColorWell]]&lt;br /&gt;
* [[NSComboBox]]&lt;br /&gt;
* [[NSComboBoxCell]]&lt;br /&gt;
* [[NSControl]]&lt;br /&gt;
* [[NSCursor]]&lt;br /&gt;
* [[NSCustomImageRep]]&lt;br /&gt;
* [[NSDataLink]]&lt;br /&gt;
* [[NSDataLinkManager]]&lt;br /&gt;
* [[NSDataLinkPanel]]&lt;br /&gt;
* [[NSDocument]]&lt;br /&gt;
* [[NSDocumentController]]&lt;br /&gt;
* [[NSDrawer]]&lt;br /&gt;
* [[NSDrawerDelegate]]&lt;br /&gt;
* [[NSEPSImageRep]]&lt;br /&gt;
* [[NSEvent]]&lt;br /&gt;
* [[NSFileWrapper]]&lt;br /&gt;
* [[NSFont]]&lt;br /&gt;
* [[NSFontManager]]&lt;br /&gt;
* [[NSFontPanel]]&lt;br /&gt;
* [[NSForm]]&lt;br /&gt;
* [[NSFormCell]]&lt;br /&gt;
* [[NSGraphicsContext]]&lt;br /&gt;
* [[NSHelpManager]]&lt;br /&gt;
* [[NSHelpPanel]]&lt;br /&gt;
* [[NSImage]]&lt;br /&gt;
* [[NSImageCell]]&lt;br /&gt;
* [[NSImageRep]]&lt;br /&gt;
* [[NSImageView]]&lt;br /&gt;
* [[NSInputManager]]&lt;br /&gt;
* [[NSInputServer]]&lt;br /&gt;
* [[NSLayoutManager]]&lt;br /&gt;
* [[NSMatrix]]&lt;br /&gt;
* [[NSMenu]]&lt;br /&gt;
* [[NSMenuItem]]&lt;br /&gt;
* [[NSMenuItemCell]]&lt;br /&gt;
* [[NSMenuView]]&lt;br /&gt;
* [[NSMovie]]&lt;br /&gt;
* [[NSMovieView]]&lt;br /&gt;
* [[NSMutableParagraphStyle]]&lt;br /&gt;
* [[NSNib]]&lt;br /&gt;
* [[NSNibConnector]]&lt;br /&gt;
* [[NSNibControlConnector]]&lt;br /&gt;
* [[NSNibOutletConnector]]&lt;br /&gt;
* [[NSOpenGLContext]]&lt;br /&gt;
* [[NSOpenGLPixelFormat]]&lt;br /&gt;
* [[NSOpenGLView]]&lt;br /&gt;
* [[NSOpenPanel]]&lt;br /&gt;
* [[NSOutlineView]]&lt;br /&gt;
* [[NSPageLayout]]&lt;br /&gt;
* [[NSPanel]]&lt;br /&gt;
* [[NSParagraphStyle]]&lt;br /&gt;
* [[NSPasteboard]]&lt;br /&gt;
* [[NSPopUpButton]]&lt;br /&gt;
* [[NSPopUpButtonCell]]&lt;br /&gt;
* [[NSPrintInfo]]&lt;br /&gt;
* [[NSPrintOperation]]&lt;br /&gt;
* [[NSPrintPanel]]&lt;br /&gt;
* [[NSPrinter]]&lt;br /&gt;
* [[NSProgressIndicator]]&lt;br /&gt;
* [[NSResponder]]&lt;br /&gt;
* [[NSRulerMarker]]&lt;br /&gt;
* [[NSRulerView]]&lt;br /&gt;
* [[NSSavePanel]]&lt;br /&gt;
* [[NSScreen]]&lt;br /&gt;
* [[NSScrollView]]&lt;br /&gt;
* [[NSScroller]]&lt;br /&gt;
* [[NSSearchField]]&lt;br /&gt;
* [[NSSearchFieldCell]]&lt;br /&gt;
* [[NSSecureTextField]]&lt;br /&gt;
* [[NSSecureTextFieldCell]]&lt;br /&gt;
* [[NSSelection]]&lt;br /&gt;
* [[NSSlider]]&lt;br /&gt;
* [[NSSliderCell]]&lt;br /&gt;
* [[NSSound]]&lt;br /&gt;
* [[NSSpellChecker]]&lt;br /&gt;
* [[NSSpellServer]]&lt;br /&gt;
* [[NSSplitView]]&lt;br /&gt;
* [[NSStepper]]&lt;br /&gt;
* [[NSStepperCell]]&lt;br /&gt;
* [[NSTabView]]&lt;br /&gt;
* [[NSTabViewItem]]&lt;br /&gt;
* [[NSTableColumn]]&lt;br /&gt;
* [[NSTableHeaderCell]]&lt;br /&gt;
* [[NSTableHeaderView]]&lt;br /&gt;
* [[NSTableView]]&lt;br /&gt;
* [[NSText]]&lt;br /&gt;
* [[NSTextAttachment]]&lt;br /&gt;
* [[NSTextAttachmentCell]]&lt;br /&gt;
* [[NSTextContainer]]&lt;br /&gt;
* [[NSTextField]]&lt;br /&gt;
* [[NSTextFieldCell]]&lt;br /&gt;
* [[NSTextStorage]]&lt;br /&gt;
* [[NSTextTab]]&lt;br /&gt;
* [[NSTextView]]&lt;br /&gt;
* [[NSToolbar]]&lt;br /&gt;
* [[NSToolbarItem]]&lt;br /&gt;
* [[NSView]]&lt;br /&gt;
* [[NSWindow]]&lt;br /&gt;
* [[NSWindowController]]&lt;br /&gt;
* [[NSWorkspace]]&lt;br /&gt;
&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
* [[NSChangeSpelling]]&lt;br /&gt;
* [[NSColorPickingCustom]]&lt;br /&gt;
* [[NSColorPickingDefault]]&lt;br /&gt;
* [[NSDraggingInfo]]&lt;br /&gt;
* [[NSIgnoreMisspelledWords]]&lt;br /&gt;
* [[NSInputServerMouseTracker]]&lt;br /&gt;
* [[NSInputServiceProvider]]&lt;br /&gt;
* [[NSMenuItem]]&lt;br /&gt;
* [[NSMenuValidation]]&lt;br /&gt;
* [[NSMenuView]]&lt;br /&gt;
* [[NSTextAttachmentCell]]&lt;br /&gt;
* [[NSTextInput]]&lt;br /&gt;
* [[NSUserInterfaceValidations]]&lt;br /&gt;
* [[NSValidatedUserInterfaceItem]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Frameworks]]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Template:Dynamic_List&amp;diff=6448</id>
		<title>Template:Dynamic List</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Template:Dynamic_List&amp;diff=6448"/>
		<updated>2012-09-19T20:20:23Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list which is constantly changing and may never be considered complete.&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NSClipView&amp;diff=6447</id>
		<title>NSClipView</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NSClipView&amp;diff=6447"/>
		<updated>2012-09-19T20:17:58Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;NSClipView is an abstract superclass for objects that draw subviews that overflow a rect masking them.  For example an [[NSScrollView]] uses an NSClipView to obsucre the portion of the scrollview that is not currently rendered.&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=URL&amp;diff=6426</id>
		<title>URL</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=URL&amp;diff=6426"/>
		<updated>2012-07-21T20:36:45Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All APIs that used &amp;quot;paths&amp;quot;(file) are now moving towards using URLs for obvious reasons:&lt;br /&gt;
*No confusion between windows and *NIX paths&lt;br /&gt;
*URLs can declare a protocol for transport when accessing remote paths.&lt;br /&gt;
*URLs provide a standard, unambiguous reference to any resource.&lt;br /&gt;
&lt;br /&gt;
==URL Related Classes==&lt;br /&gt;
* [[NSURL]]&lt;br /&gt;
* [[NSFileHandle]]&lt;br /&gt;
* [[NSOpenPanel]]&lt;br /&gt;
* [[NSSavePanel]]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Reference_counting&amp;diff=6425</id>
		<title>Reference counting</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Reference_counting&amp;diff=6425"/>
		<updated>2012-07-21T20:21:16Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reference counting is used to automatically deallocate objects when they are no longer needed.&lt;br /&gt;
&lt;br /&gt;
==Using reference counting==&lt;br /&gt;
By convention when using an autorelased object you must &amp;quot;retain&amp;quot; before using it, and release it when you are done with it. For consistency you may &amp;quot;retain the object you want at the beginign of your method, and release it at the end, though in a tight loop you may wish to only retain once.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;objc&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
-(void)myMethod:(NSObject*)myObject&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
[myObject retain]&lt;br /&gt;
//my code&lt;br /&gt;
[myObject release]&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
===Tight Loop===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
-(void)myMethod:(NSObject*)myObject&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
[myObject retain]&lt;br /&gt;
for(int64_t i = 0; i&amp;lt;LONG_LONG_MAX; i++)&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
[self mySubMethod:myObject]&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
[myObject release]&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
-(void)mySubMethod:(NSObject*)myObject&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
//Remove retain/relase overhead&lt;br /&gt;
&lt;br /&gt;
//[myObject* retain]&lt;br /&gt;
&lt;br /&gt;
//my code&lt;br /&gt;
&lt;br /&gt;
//[myObject* release]&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[http://en.wikipedia.org/wiki/Reference_counting Wikipedia on reference counting]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NSAutoreleasePool&amp;diff=6424</id>
		<title>NSAutoreleasePool</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NSAutoreleasePool&amp;diff=6424"/>
		<updated>2012-07-21T20:13:49Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The autorelease pool is responsible for freeing objects with a [[reference counting|reference count]] of zero.&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Reference_counting&amp;diff=6423</id>
		<title>Reference counting</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Reference_counting&amp;diff=6423"/>
		<updated>2012-07-21T20:13:35Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reference counting is used to automatically deallocate objects when they are no longer needed.&lt;br /&gt;
&lt;br /&gt;
==Using reference counting==&lt;br /&gt;
By convention when using an autorelased object you must &amp;quot;retain&amp;quot; before using it, and release it when you are done with it. For consistency you may &amp;quot;retain the object you want at the beginign of your method, and release it at the end, though in a tight loop you may wish to only retain once.&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
-(void)myMethod:(NSObject*)myObject&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
[myObject retain]&lt;br /&gt;
//my code&lt;br /&gt;
[myObject release]&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
===Tight Loop===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
-(void)myMethod:(NSObject*)myObject&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
[myObject retain]&lt;br /&gt;
for(int64_t i = 0; i&amp;lt;LONG_LONG_MAX; i++)&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
[self mySubMethod:myObject]&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
[myObject release]&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
-(void)mySubMethod:(NSObject*)myObject&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
//Remove retain/relase overhead&lt;br /&gt;
&lt;br /&gt;
//[myObject* retain]&lt;br /&gt;
&lt;br /&gt;
//my code&lt;br /&gt;
&lt;br /&gt;
//[myObject* release]&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[http://en.wikipedia.org/wiki/Reference_counting Wikipedia on reference counting]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NSNumber&amp;diff=6422</id>
		<title>NSNumber</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NSNumber&amp;diff=6422"/>
		<updated>2012-07-21T19:54:44Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A container fromat for numeric interchange.&lt;br /&gt;
&lt;br /&gt;
NSNumber is used in GNUStep frameworks to provide an abstraction for numbers until they must be used to call native APIs, at the expense of a minor performance hit.  Operations requiring values to be computed in a tight loop should consider using primitive datatypes to avoid overhead.&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NSBitmapImageRep&amp;diff=6421</id>
		<title>NSBitmapImageRep</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NSBitmapImageRep&amp;diff=6421"/>
		<updated>2012-07-21T19:49:46Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;An internal representation of an [[NSImage]] that is stored as a bitmap.&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NSGraphicsContext&amp;diff=6420</id>
		<title>NSGraphicsContext</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NSGraphicsContext&amp;diff=6420"/>
		<updated>2012-07-21T19:37:05Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A graphics context is and ADT that allows for a the [[Appkit]] drawing protocols to be used for drawing to a view(the most common), or an image, file, printer, ect. In essence it provides a canvas on which to draw.&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NSEvent&amp;diff=6419</id>
		<title>NSEvent</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NSEvent&amp;diff=6419"/>
		<updated>2012-07-21T19:32:47Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A container for user input information. When an event such as a key or mousedown occurs, an event will be dispatched by the NSInputServer.&lt;br /&gt;
==See Also==&lt;br /&gt;
[https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/Classes/nsevent_Class/Reference/Reference.html Apple On NSEvent]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Plist&amp;diff=6418</id>
		<title>Plist</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Plist&amp;diff=6418"/>
		<updated>2012-07-21T07:44:10Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Plists allow certain types to be archived and later restored, they are usually used for storing prefernces.&lt;br /&gt;
&lt;br /&gt;
==Special Plists===&lt;br /&gt;
* [[Info Plist]] - Contains bundle information for MacOS Applications.&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Archiving&amp;diff=6417</id>
		<title>Archiving</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Archiving&amp;diff=6417"/>
		<updated>2012-07-21T07:41:10Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Allowing objects to be archived ==&lt;br /&gt;
&lt;br /&gt;
To permit an object to be archived (also known as serialisation) its class needs to implement the NSCoding protocol. This protocol exposes two methods: -encoderWithCoder and -initWithCoder:. By implementing these methods, your object can be serialised/deserialised (for [[plist]]s or RPC) as well as sent over GNUstep's Distributed objects mechanism.&lt;br /&gt;
&lt;br /&gt;
See the reference manual for more details.&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NSSound&amp;diff=6416</id>
		<title>NSSound</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NSSound&amp;diff=6416"/>
		<updated>2012-07-21T02:11:55Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A representation of an audio object, may be initialized with serveral differenet kinds of files, as well as with serveral system defined audio files.&lt;br /&gt;
&lt;br /&gt;
===System sounds===&lt;br /&gt;
System sounds are located under&lt;br /&gt;
$GNUSTEP_ROOT/System/Lbrary/Sounds/name.wav&lt;br /&gt;
&lt;br /&gt;
*Basso&lt;br /&gt;
*Blow&lt;br /&gt;
*Frog&lt;br /&gt;
*Glass&lt;br /&gt;
*Hero&lt;br /&gt;
*Ping&lt;br /&gt;
*Pop&lt;br /&gt;
*Sosumi&lt;br /&gt;
*Submarine&lt;br /&gt;
*Tink&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=AppKit&amp;diff=6415</id>
		<title>AppKit</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=AppKit&amp;diff=6415"/>
		<updated>2012-07-21T01:50:30Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: /* Features */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The GNUstep GUI Library is a library of objects useful for writing graphical applications. For example, it includes classes for drawing and manipulating graphics objects on the screen: [[NSWindow|windows]], [[NSMenu|menus]], [[NSButton|buttons]], [[NSSlider|sliders]], [[NSTextField|text fields]], and [[NSEvent|events]]. There are also many classes that offer operating-system-independent interfaces to [[NSImage|images]], [[NSCursor|cursors]], [[NSColor|colors]], [[NSFont|fonts]], [[NSPasteboard|pasteboards]], printing. There are also workspace support classes such as data links, open/save panels, context-dependent help, spell checking.&lt;br /&gt;
&lt;br /&gt;
It provides functionality that aims to implement the `AppKit' portion of the [[Cocoa]] API (formerly [[OpenStep]] standard) however the implementation has been written to take advantage of GNUstep enhancements wherever possible.&lt;br /&gt;
&lt;br /&gt;
The GNUstep GUI Library is divided into a front and back-end. The front-end contains the majority of the implementation, but leaves out the low-level drawing and event code. Different back-ends will make GNUstep available on various platforms. The default GNU back-end currently runs on top of the X Window System and uses only Xlib calls for graphics. Another backend uses a Display Postscript Server for graphics. Much work will be saved by this clean separation between front and back-end, because it allows different platforms to share the large amount of front-end code. Documentation for how the individual backends work is covered in a separate document.&lt;br /&gt;
&lt;br /&gt;
You can find the automatically generated API documentation [http://www.gnustep.org/resources/documentation/Developer/Gui/Reference/index.html here].&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
* User interface elements: table views, browsers, matrices, scroll views, ...&lt;br /&gt;
* Graphics: WYSIWYG, Postscript-like graphics, Bezier paths, image handling with multiple representations, graphical contexts&lt;br /&gt;
* [[Color|Color management]]: calibrated vs. device colors, CMYK, RGB, HSB, gray and named color representations, alpha transparency&lt;br /&gt;
* [[Text]] system features: rich text format, text attachments, layout manager, typesetter, rules, paragraph styles, font management, [[Spell checking|spell checking]]&lt;br /&gt;
* [[Document architecture|Document management]]&lt;br /&gt;
* [[Printing|Printing features]]: print operations, print panel and page layout&lt;br /&gt;
* Help manager&lt;br /&gt;
* [[Pasteboard|Pasteboard]] (a.k.a. clip board) services&lt;br /&gt;
* [[Spelling|Spell checker]]&lt;br /&gt;
* [[Workspace|Workspace]] bindings for applications&lt;br /&gt;
* [[Drag and drop]] operations&lt;br /&gt;
* [[Service|Services]] shared among applications&lt;br /&gt;
* [[XIB]] WYSIWIG GUI definition language – To be implemented&lt;br /&gt;
&lt;br /&gt;
== Notes and Snippets ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
! Class Reference        !! Protocol Reference&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
* [[NSActionCell]]&lt;br /&gt;
* [[NSAffineTransform]]&lt;br /&gt;
* [[NSAlert]]&lt;br /&gt;
* [[NSApplication]]&lt;br /&gt;
* [[NSBezierPath]]&lt;br /&gt;
* [[NSBitmapImageRep]]&lt;br /&gt;
* [[NSBox]]&lt;br /&gt;
* [[NSBrowser]]&lt;br /&gt;
* [[NSBrowserCell]]&lt;br /&gt;
* [[NSButton]]&lt;br /&gt;
* [[NSButtonCell]]&lt;br /&gt;
* [[NSCachedImageRep]]&lt;br /&gt;
* [[NSCell]]&lt;br /&gt;
* [[NSClipView]]&lt;br /&gt;
* [[NSColor]]&lt;br /&gt;
* [[NSColorList]]&lt;br /&gt;
* [[NSColorPanel]]&lt;br /&gt;
* [[NSColorPicker]]&lt;br /&gt;
* [[NSColorWell]]&lt;br /&gt;
* [[NSComboBox]]&lt;br /&gt;
* [[NSComboBoxCell]]&lt;br /&gt;
* [[NSControl]]&lt;br /&gt;
* [[NSCursor]]&lt;br /&gt;
* [[NSCustomImageRep]]&lt;br /&gt;
* [[NSDataLink]]&lt;br /&gt;
* [[NSDataLinkManager]]&lt;br /&gt;
* [[NSDataLinkPanel]]&lt;br /&gt;
* [[NSDocument]]&lt;br /&gt;
* [[NSDocumentController]]&lt;br /&gt;
* [[NSDrawer]]&lt;br /&gt;
* [[NSDrawerDelegate]]&lt;br /&gt;
* [[NSEPSImageRep]]&lt;br /&gt;
* [[NSEvent]]&lt;br /&gt;
* [[NSFileWrapper]]&lt;br /&gt;
* [[NSFont]]&lt;br /&gt;
* [[NSFontManager]]&lt;br /&gt;
* [[NSFontPanel]]&lt;br /&gt;
* [[NSForm]]&lt;br /&gt;
* [[NSFormCell]]&lt;br /&gt;
* [[NSGraphicsContext]]&lt;br /&gt;
* [[NSHelpManager]]&lt;br /&gt;
* [[NSHelpPanel]]&lt;br /&gt;
* [[NSImage]]&lt;br /&gt;
* [[NSImageCell]]&lt;br /&gt;
* [[NSImageRep]]&lt;br /&gt;
* [[NSImageView]]&lt;br /&gt;
* [[NSInputManager]]&lt;br /&gt;
* [[NSInputServer]]&lt;br /&gt;
* [[NSLayoutManager]]&lt;br /&gt;
* [[NSMatrix]]&lt;br /&gt;
* [[NSMenu]]&lt;br /&gt;
* [[NSMenuItem]]&lt;br /&gt;
* [[NSMenuItemCell]]&lt;br /&gt;
* [[NSMenuView]]&lt;br /&gt;
* [[NSMovie]]&lt;br /&gt;
* [[NSMovieView]]&lt;br /&gt;
* [[NSMutableParagraphStyle]]&lt;br /&gt;
* [[NSNib]]&lt;br /&gt;
* [[NSNibConnector]]&lt;br /&gt;
* [[NSNibControlConnector]]&lt;br /&gt;
* [[NSNibOutletConnector]]&lt;br /&gt;
* [[NSOpenGLContext]]&lt;br /&gt;
* [[NSOpenGLPixelFormat]]&lt;br /&gt;
* [[NSOpenGLView]]&lt;br /&gt;
* [[NSOpenPanel]]&lt;br /&gt;
* [[NSOutlineView]]&lt;br /&gt;
* [[NSPageLayout]]&lt;br /&gt;
* [[NSPanel]]&lt;br /&gt;
* [[NSParagraphStyle]]&lt;br /&gt;
* [[NSPasteboard]]&lt;br /&gt;
* [[NSPopUpButton]]&lt;br /&gt;
* [[NSPopUpButtonCell]]&lt;br /&gt;
* [[NSPrintInfo]]&lt;br /&gt;
* [[NSPrintOperation]]&lt;br /&gt;
* [[NSPrintPanel]]&lt;br /&gt;
* [[NSPrinter]]&lt;br /&gt;
* [[NSProgressIndicator]]&lt;br /&gt;
* [[NSResponder]]&lt;br /&gt;
* [[NSRulerMarker]]&lt;br /&gt;
* [[NSRulerView]]&lt;br /&gt;
* [[NSSavePanel]]&lt;br /&gt;
* [[NSScreen]]&lt;br /&gt;
* [[NSScrollView]]&lt;br /&gt;
* [[NSScroller]]&lt;br /&gt;
* [[NSSearchField]]&lt;br /&gt;
* [[NSSearchFieldCell]]&lt;br /&gt;
* [[NSSecureTextField]]&lt;br /&gt;
* [[NSSecureTextFieldCell]]&lt;br /&gt;
* [[NSSelection]]&lt;br /&gt;
* [[NSSlider]]&lt;br /&gt;
* [[NSSliderCell]]&lt;br /&gt;
* [[NSSound]]&lt;br /&gt;
* [[NSSpellChecker]]&lt;br /&gt;
* [[NSSpellServer]]&lt;br /&gt;
* [[NSSplitView]]&lt;br /&gt;
* [[NSStepper]]&lt;br /&gt;
* [[NSStepperCell]]&lt;br /&gt;
* [[NSTabView]]&lt;br /&gt;
* [[NSTabViewItem]]&lt;br /&gt;
* [[NSTableColumn]]&lt;br /&gt;
* [[NSTableHeaderCell]]&lt;br /&gt;
* [[NSTableHeaderView]]&lt;br /&gt;
* [[NSTableView]]&lt;br /&gt;
* [[NSText]]&lt;br /&gt;
* [[NSTextAttachment]]&lt;br /&gt;
* [[NSTextAttachmentCell]]&lt;br /&gt;
* [[NSTextContainer]]&lt;br /&gt;
* [[NSTextField]]&lt;br /&gt;
* [[NSTextFieldCell]]&lt;br /&gt;
* [[NSTextStorage]]&lt;br /&gt;
* [[NSTextTab]]&lt;br /&gt;
* [[NSTextView]]&lt;br /&gt;
* [[NSToolbar]]&lt;br /&gt;
* [[NSToolbarItem]]&lt;br /&gt;
* [[NSView]]&lt;br /&gt;
* [[NSWindow]]&lt;br /&gt;
* [[NSWindowController]]&lt;br /&gt;
* [[NSWorkspace]]&lt;br /&gt;
&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
* [[NSChangeSpelling]]&lt;br /&gt;
* [[NSColorPickingCustom]]&lt;br /&gt;
* [[NSColorPickingDefault]]&lt;br /&gt;
* [[NSDraggingInfo]]&lt;br /&gt;
* [[NSIgnoreMisspelledWords]]&lt;br /&gt;
* [[NSInputServerMouseTracker]]&lt;br /&gt;
* [[NSInputServiceProvider]]&lt;br /&gt;
* [[NSMenuItem]]&lt;br /&gt;
* [[NSMenuValidation]]&lt;br /&gt;
* [[NSMenuView]]&lt;br /&gt;
* [[NSTextAttachmentCell]]&lt;br /&gt;
* [[NSTextInput]]&lt;br /&gt;
* [[NSUserInterfaceValidations]]&lt;br /&gt;
* [[NSValidatedUserInterfaceItem]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Frameworks]]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Color&amp;diff=6414</id>
		<title>Color</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Color&amp;diff=6414"/>
		<updated>2012-07-21T01:49:50Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/Classes/NSColorSpace_Class/Reference/Reference.html Apple on NSColorSpace]]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Foundation&amp;diff=6413</id>
		<title>Foundation</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Foundation&amp;diff=6413"/>
		<updated>2012-07-21T01:45:23Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: /* Notes and Snippets */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The GNUstep base library (aka gnustep-base) contains a powerful set of non-graphical [[Objective-C]] classes that can readily be used in your programs. At present there are approximately 70 different classes available, including classes to handle [[NSString|strings]] and [[NSArray|arrays]], [[NSDate|dates]] and times, [[NSConnection|distributed objects]], [[NSURL|URLs]] and [[NSFileManager|file systems]] to name but a few.&lt;br /&gt;
&lt;br /&gt;
You can find the automatically generated API documentation [http://www.gnustep.org/resources/documentation/Developer/Base/Reference/index.html here].&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
* [[Strings]]&lt;br /&gt;
* [[Collections]] (arrays, sets, and dictionaries) and [[NSEnumerator|enumerators]]&lt;br /&gt;
* [[File management]]&lt;br /&gt;
* [[Archiving|Object Archiving]]&lt;br /&gt;
* Advanced calendar [[Date|date]] manipulation&lt;br /&gt;
* [[Distributed Objects]] and inter-process communication&lt;br /&gt;
* [[URL]] handling&lt;br /&gt;
* [[Notifications]] (and distributed notifications)&lt;br /&gt;
* Easy [[Threading|multi-threading]]&lt;br /&gt;
* [[Timer]]s&lt;br /&gt;
* [[Lock]]s&lt;br /&gt;
* [[Exception handling]]&lt;br /&gt;
&lt;br /&gt;
== Notes and Snippets ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
! Class Reference        !! Protocol Reference&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
* [[NSAffineTransform]]&lt;br /&gt;
* [[NSArchiver]]&lt;br /&gt;
* [[NSArray]]&lt;br /&gt;
* [[NSAssertionHandler]]&lt;br /&gt;
* [[NSAttributedString]]&lt;br /&gt;
* [[NSAutoreleasePool]]&lt;br /&gt;
* [[NSBundle]]&lt;br /&gt;
* [[NSCachedURLResponse]]&lt;br /&gt;
* [[NSCalendarDate]]&lt;br /&gt;
* [[NSCharacterSet]]&lt;br /&gt;
* [[NSClassDescription]]&lt;br /&gt;
* [[NSCoder]]&lt;br /&gt;
* [[NSComparisonPredicate]]&lt;br /&gt;
* [[NSCompoundPredicate]]&lt;br /&gt;
* [[NSConditionLock]]&lt;br /&gt;
* [[NSConnection]]&lt;br /&gt;
* [[NSCountedSet]]&lt;br /&gt;
* [[NSData]]&lt;br /&gt;
* [[NSDate]]&lt;br /&gt;
* [[NSDateFormatter]]&lt;br /&gt;
* [[NSDecimalNumber]]&lt;br /&gt;
* [[NSDecimalNumberHandler]]&lt;br /&gt;
* [[NSDeserializer]]&lt;br /&gt;
* [[NSDictionary]]&lt;br /&gt;
* [[NSDirectoryEnumerator]]&lt;br /&gt;
* [[NSDistantObject]]&lt;br /&gt;
* [[NSDistributedLock]]&lt;br /&gt;
* [[NSDistributedNotificationCenter]]&lt;br /&gt;
* [[NSEnumerator]]&lt;br /&gt;
* [[NSError]]&lt;br /&gt;
* [[NSException]]&lt;br /&gt;
* [[NSExpression]]&lt;br /&gt;
* [[NSFileHandle]]&lt;br /&gt;
* [[NSFileManager]]&lt;br /&gt;
* [[NSFormatter]]&lt;br /&gt;
* [[NSHTTPCookie]]&lt;br /&gt;
* [[NSHTTPCookieStorage]]&lt;br /&gt;
* [[NSHTTPURLResponse]]&lt;br /&gt;
* [[NSHost]]&lt;br /&gt;
* [[NSIndexPath]]&lt;br /&gt;
* [[NSIndexSet]]&lt;br /&gt;
* [[NSInputStream]]&lt;br /&gt;
* [[NSInvocation]]&lt;br /&gt;
* [[NSKeyedArchiver]]&lt;br /&gt;
* [[NSKeyedUnarchiver]]&lt;br /&gt;
* [[NSLocale]]&lt;br /&gt;
* [[NSLock]]&lt;br /&gt;
* [[NSMessagePort]]&lt;br /&gt;
* [[NSMessagePortNameServer]]&lt;br /&gt;
* [[NSMethodSignature]]&lt;br /&gt;
* [[NSMutableArray]]&lt;br /&gt;
* [[NSMutableAttributedString]]&lt;br /&gt;
* [[NSMutableCharacterSet]]&lt;br /&gt;
* [[NSMutableData]]&lt;br /&gt;
* [[NSMutableDictionary]]&lt;br /&gt;
* [[NSMutableIndexSet]]&lt;br /&gt;
* [[NSMutableSet]]&lt;br /&gt;
* [[NSMutableString]]&lt;br /&gt;
* [[NSMutableURLRequest]]&lt;br /&gt;
* [[NSNetService]]&lt;br /&gt;
* [[NSNetServiceBrowser]]&lt;br /&gt;
* [[NSNotification]]&lt;br /&gt;
* [[NSNotificationCenter]]&lt;br /&gt;
* [[NSNotificationQueue]]&lt;br /&gt;
* [[NSNull]]&lt;br /&gt;
* [[NSNumber]]&lt;br /&gt;
* [[NSNumberFormatter]]&lt;br /&gt;
* [[NSObject]]&lt;br /&gt;
* [[NSOutputStream]]&lt;br /&gt;
* [[NSPipe]]&lt;br /&gt;
* [[NSPort]]&lt;br /&gt;
* [[NSPortCoder]]&lt;br /&gt;
* [[NSPortMessage]]&lt;br /&gt;
* [[NSPortNameServer]]&lt;br /&gt;
* [[NSPredicate]]&lt;br /&gt;
* [[NSProcessInfo]]&lt;br /&gt;
* [[NSPropertyListSerialization]]&lt;br /&gt;
* [[NSProtocolChecker]]&lt;br /&gt;
* [[NSProxy]]&lt;br /&gt;
* [[NSRecursiveLock]]&lt;br /&gt;
* [[NSRunLoop]]&lt;br /&gt;
* [[NSScanner]]&lt;br /&gt;
* [[NSSerializer]]&lt;br /&gt;
* [[NSSet]]&lt;br /&gt;
* [[NSSocketPort]]&lt;br /&gt;
* [[NSSocketPortNameServer]]&lt;br /&gt;
* [[NSSortDescriptor]]&lt;br /&gt;
* [[NSStream]]&lt;br /&gt;
* [[NSString]]&lt;br /&gt;
* [[NSTask]]&lt;br /&gt;
* [[NSThread]]&lt;br /&gt;
* [[NSTimeZone]]&lt;br /&gt;
* [[NSTimeZoneDetail]]&lt;br /&gt;
* [[NSTimer]]&lt;br /&gt;
* [[NSURL]]&lt;br /&gt;
* [[NSURLAuthenticationChallenge]]&lt;br /&gt;
* [[NSURLCache]]&lt;br /&gt;
* [[NSURLConnection]]&lt;br /&gt;
* [[NSURLCredential]]&lt;br /&gt;
* [[NSURLCredentialStorage]]&lt;br /&gt;
* [[NSURLDownload]]&lt;br /&gt;
* [[NSURLHandle]]&lt;br /&gt;
* [[NSURLProtectionSpace]]&lt;br /&gt;
* [[NSURLProtocol]]&lt;br /&gt;
* [[NSURLRequest]]&lt;br /&gt;
* [[NSURLResponse]]&lt;br /&gt;
* [[NSUnarchiver]]&lt;br /&gt;
* [[NSUndoManager]]&lt;br /&gt;
* [[NSUserDefaults]]&lt;br /&gt;
* [[NSValue]]&lt;br /&gt;
* [[NSValueTransformer]]&lt;br /&gt;
* [[NSXMLParser]]&lt;br /&gt;
* [[NSConstantString]]&lt;br /&gt;
&lt;br /&gt;
| valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
* [[NSCoding]]&lt;br /&gt;
* [[NSCopying]]&lt;br /&gt;
* [[NSDecimalNumberBehaviors]]&lt;br /&gt;
* [[NSLocking]]&lt;br /&gt;
* [[NSMutableCopying]]&lt;br /&gt;
* [[NSObjCTypeSerializationCallBack]]&lt;br /&gt;
* [[NSObject]]&lt;br /&gt;
* [[NSURLAuthenticationChallengeSender]]     &lt;br /&gt;
* [[NSURLHandleClient]]&lt;br /&gt;
* [[NSURLProtocolClient]]  &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Frameworks]]&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=NSSlider&amp;diff=6412</id>
		<title>NSSlider</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=NSSlider&amp;diff=6412"/>
		<updated>2012-07-21T01:42:51Z</updated>

		<summary type="html">&lt;p&gt;Awiebe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The NSSlider performs a linear interpolation between '''min''' and '''max''' based on its position from left to right, where right is '''max'''.&lt;/div&gt;</summary>
		<author><name>Awiebe</name></author>
	</entry>
</feed>