The GNUstep gui library is a library of graphical user interface classes written completely in the Objective-C language; the classes are based upon Apple's Cocoa framework (which came from the OpenStep specification). *** Larger patches require copyright assignment to FSF. please file bugs here. ***
Find a file
Gregory John Casamento 6a9dfe8d61 * Source/NSWindow.m: Don't use the flags for key/main window tracking.
These flags are getting out of sync due to different behavior on
	different backends.  Also, it's better to keep the state in one place
	instead of keeping them in sync.  I changed all of the instances of
	_f.is_key to [self isKeyWindow] and all of the instances of _f.is_main
	to [self isMainWindow] and those methods now check with NSApp to 
	determine if the current window is main.   I realize this is slower
	than the previous method of using flags, but it is also more resilient
	and reliable when the backend sends extra events.  This corrects the
	issue on Windows where we were losing the main window and had two 
	windows marked as "main".


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@29295 72102866-910b-0410-8b05-ffd578937521
2010-01-16 19:56:27 +00:00
ColorPickers Fixed some spanish characters 2010-01-01 00:29:20 +00:00
Documentation Correct formatting. 2009-09-12 18:10:17 +00:00
Headers Finished to implement the NSTable/OutlineView sort descriptor support. 2010-01-16 14:45:13 +00:00
Images Better implementation of NSProgressIndicator based on patch by Uli 2009-10-27 22:21:01 +00:00
KeyBindings Enable Ctrl-l keybinding and add Ctrl-o keybinding as in Emacs and Cocoa. 2009-11-05 22:41:45 +00:00
Model Removed GNUSTEP_CORE_SOFTWARE=YES from makefiles and instead set PACKAGE_NAME=gnustep-gui 2008-12-19 13:00:47 +00:00
Panels Changed some strings 2010-01-03 22:52:55 +00:00
PrinterTypes Removed GNUSTEP_CORE_SOFTWARE=YES from makefiles and instead set PACKAGE_NAME=gnustep-gui 2008-12-19 13:00:47 +00:00
Printing Removed GNUSTEP_CORE_SOFTWARE=YES from makefiles and instead set PACKAGE_NAME=gnustep-gui 2008-12-19 13:00:47 +00:00
Resources Update Italian localisation file. 2010-01-11 20:48:28 +00:00
Sounds Standardize installation of gnustep-gui Images, Sounds and Themes (should also automatically fix installation issue on Solaris 7) 2009-09-04 14:58:04 +00:00
Source * Source/NSWindow.m: Don't use the flags for key/main window tracking. 2010-01-16 19:56:27 +00:00
TextConverters Better handling of text attachtment. Fixes bug #28464 2010-01-11 12:32:27 +00:00
Themes Standardize installation of gnustep-gui Images, Sounds and Themes (should also automatically fix installation issue on Solaris 7) 2009-09-04 14:58:04 +00:00
Tools Fixed the name of GSOSSSoundSink 2009-08-23 21:35:56 +00:00
.cvsignore Moved text conversion classes to separate bundle 2001-08-21 14:52:00 +00:00
ANNOUNCE Version 0.17.1 2009-07-31 14:10:07 +00:00
BUGS Version 0.13.2 2008-03-19 03:03:45 +00:00
ChangeLog * Source/NSWindow.m: Don't use the flags for key/main window tracking. 2010-01-16 19:56:27 +00:00
ChangeLog.1 Renamed ChangeLog to ChangeLog.1 1999-12-13 02:55:20 +00:00
ChangeLog.2 Moved back some entries from ChangeLog.2 to ChangeLog to keep the size 2001-12-16 02:10:58 +00:00
ChangeLog.3 Rotate ChangeLog:s. 2005-01-14 14:57:29 +00:00
config.make.in Moved sound bundles to Tools/ 2009-08-23 15:35:58 +00:00
configure Moved sound bundles to Tools/ 2009-08-23 15:35:58 +00:00
configure.ac Moved sound bundles to Tools/ 2009-08-23 15:35:58 +00:00
COPYING Change all files to use GPL 3 and LGPL 3. 2007-10-29 21:16:17 +00:00
COPYING.LIB Revert library license version to 2 until applications can be converted 2008-06-10 04:01:49 +00:00
GNUmakefile Added autoconf changes for recent NSSound modifications by Stefan. 2009-08-23 07:46:51 +00:00
GNUmakefile.postamble Revert library license version to 2 until applications can be converted 2008-06-10 04:01:49 +00:00
gnustep-gui.spec.in Version 0.13.0 2007-11-08 19:37:34 +00:00
gui.make.in Revert library license version to 2 until applications can be converted 2008-06-10 04:01:49 +00:00
INSTALL Change all files to use GPL 3 and LGPL 3. 2007-10-29 21:16:17 +00:00
install.sh Fix header syntax in install.sh and provide default for make command 2008-11-30 17:39:33 +00:00
NEWS Version 0.17.1 2009-07-31 14:10:07 +00:00
README Version 0.13.0 2007-11-08 19:37:34 +00:00
Version Version 0.17.1 2009-07-31 14:10:07 +00:00

1 README
********

The GNUstep gui library is a library of graphical user interface classes
written completely in the Objective-C language; the classes are based
upon the OpenStep specification as release by NeXT Software, Inc.  These
classes include graphical objects such as buttons, text fields, popup
lists, browser lists, and windows; there are also many associated
classes for handling events, colors, fonts, pasteboards and images.

1.1 Initial reading
===================

   * The file `ANNOUNCE' contains a very brief overview of the library.
     It also tells you where to get the most recent version.

   * The file `NEWS' has the library's feature history.

   * The file `INSTALL' gives instructions for installing the library.

1.2 License
===========

The GNUstep libraries and library resources are covered under the GNU
Lesser Public License.  This means you can use these libraries in any
program (even non-free programs). If you distribute the libraries along
with your program, you must make the improvements you have made to the
libraries freely available. You should read the COPYING.LIB file for
more information. All files in this package EXCEPT files in the `Tools'
directories and subdirectories under this are covered under the GLPL.

   GNUstep tools, test programs, and other files are covered under the
GNU General Public License. This means if you make changes to these
programs, you cannot charge a fee, other than distribution fees, for
others to use the program. You should read the COPYING file for more
information.  All files in the `Tools' directory are covered under the
GPL.

1.3 How can you help?
=====================

   * Give us feedback!  Tell us what you like; tell us what you think
     could be better.  Send bug reports to <bug-gnustep@gnu.org>.