mirror of
https://github.com/gnustep/libs-back.git
synced 2025-05-30 17:00:52 +00:00
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. ***
* Source/x11/XGServerEvent.m (-receivedEvent:type:extra:forMode:): Only read one event from the xlib event queue, instead of all of them. * Source/x11/XGServerEvent.m (-getEventMatchingMask:beforeDate:inMode:): Remove call to -receivedEvent:type:extra:forMode: * Source/x11/XGServerEvent.m (-discardEventsMatchingMask:beforeEvent:): Remove call to -receivedEvent:type:extra:forMode: These changes are an attempt to fix a bug where a steady stream of X events can postpone autodisplay indefinitely. To see it, open a long document in Ink and scroll with the mousewheel slowly but continuously. If you scroll steadily enough, the window will not update until you stop scrolling. This occurs beacuse autodisplay only occurs when the AppKit event queue is empty and the runloop runs, and without the above changes, the AppKit event queue was filling up and not emptying until the mousewheel events stopped arriving. In the long run I think we should get rid of the AppKit event queue and have XGServer override the default implementation of -[GSDisplayServer getEventMatchingMask:beforeDate:inMode:dequeue:] and related methods with custom ones that interact directly with the Xlib event queue. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@34553 72102866-910b-0410-8b05-ffd578937521 |
||
---|---|---|
Documentation | ||
Fonts | ||
Headers | ||
Source | ||
Tools | ||
.cvsignore | ||
ANNOUNCE | ||
back.make.in | ||
ChangeLog | ||
config.h.in | ||
config.make.in | ||
configure | ||
configure.ac | ||
COPYING | ||
COPYING.LIB | ||
GNUmakefile | ||
GNUmakefile.postamble | ||
gnustep-back.spec.in | ||
INSTALL | ||
install-sh | ||
install.sh | ||
NEWS | ||
pkg.m4 | ||
README | ||
Version |
1 README ******** This is version 0.20.0 of the GNUstep GUI Backend (`gnustep-back'). Here is some introductory info to get you started: 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 How can you help? ===================== * Give us feedback! Tell us what you like; tell us what you think could be better. Send us bug reports at <bug-gnustep@gnu.org>.