mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-24 06:28:54 +00:00
Move backend defaults to back/Documentation/Back/DefaultsSummary.gsdoc.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@17159 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2efa950522
commit
2fb9b6b544
2 changed files with 3 additions and 123 deletions
|
@ -2,6 +2,9 @@
|
|||
|
||||
* configure.ac: Add openbsd flags like freebsd.
|
||||
|
||||
* Documentation/Gui/DefaultsSummary.gsdoc: Move backend defaults
|
||||
to back/Documentation/Back/DefaultsSummary.gsdoc.
|
||||
|
||||
2003-07-05 18:02 Alexander Malmberg <alexander@malmberg.org>
|
||||
|
||||
* Source/NSLayoutManager.m
|
||||
|
|
|
@ -233,129 +233,6 @@
|
|||
</deflist>
|
||||
|
||||
</section>
|
||||
<section>
|
||||
<heading>Backend Defaults</heading>
|
||||
<p>
|
||||
Below is a list of defaults used to control the x11-based
|
||||
backend. These defaults generally control system specific
|
||||
display and user interaction options which may not be available
|
||||
on all systems.
|
||||
</p>
|
||||
<deflist>
|
||||
<term>NSDefaultVisual</term>
|
||||
<desc>
|
||||
<p>
|
||||
An integer that specifies the X-Windows visual class to use
|
||||
in the application. For instance one could display the
|
||||
application using the PsuedoColor visual class by setting
|
||||
the value to the id of this class. The default is the
|
||||
X-Windows default visual class.
|
||||
</p>
|
||||
</desc>
|
||||
<term>NSColorsPerChannel</term>
|
||||
<desc>
|
||||
<p>
|
||||
An integer which limits the maximum number of colors to
|
||||
display, per channel. For a psuedo-color display, this would
|
||||
limit the total number of colors that the application could
|
||||
use (normally 256). For a true-color display, this would
|
||||
limit the range of red, green, and blue values that could be used.
|
||||
</p>
|
||||
</desc>
|
||||
<term>GSAppOwnsMiniwindow</term>
|
||||
<desc>
|
||||
<p>
|
||||
GSAppOwnsMiniwindow is for miniwindows (not app icons). If
|
||||
it's YES or absent, GNUstep handles miniaturization itself
|
||||
and doesn't let the window manager do it. If it's NO, the
|
||||
window manager is allowed to do its own iconification. This
|
||||
does not affect app icons at all.
|
||||
</p>
|
||||
</desc>
|
||||
<term>GSFontAntiAlias</term>
|
||||
<desc>
|
||||
<p>
|
||||
A boolean value which defaults to <code>NO</code>. If set to
|
||||
<code>YES</code> and the X-Windows system has the XFT
|
||||
extension, then the application will use anti-aliased fonts
|
||||
as provided by the X-Windows system.
|
||||
</p>
|
||||
</desc>
|
||||
<term>GSFontMask</term>
|
||||
<desc>
|
||||
<p>
|
||||
A string value which defaults to <code>"*"</code>. It defines
|
||||
the pattern used to get the installed fonts from the
|
||||
X-Server. A value of <code>"*-iso8859-1"</code> would only
|
||||
include fonts available with ISO Western encoding. This
|
||||
feature might be helpfull if the font_cacher program is having
|
||||
problem with the X-Server (Xlib backend only).
|
||||
</p>
|
||||
</desc>
|
||||
<term>GraphicCompositing</term>
|
||||
<desc>
|
||||
<p>
|
||||
A boolean value which defaults to <code>YES</code>. If set to
|
||||
<code>YES</code>, then the application uses various tricks
|
||||
to get alpha colors to work when compositing images. This
|
||||
may slow down drawing of images, but it is generally
|
||||
recommended anyway, particularly on fast systems
|
||||
(Xlib backend only).
|
||||
</p>
|
||||
</desc>
|
||||
<term>Keyboard Modifiers</term>
|
||||
<desc>
|
||||
<p>
|
||||
The OPENstep specification requires 3 main different
|
||||
keyboard modifiers: <code>CONTROL</code>,
|
||||
<code>COMMAND</code> and <code>ALTERNATE</code>. Some systems
|
||||
may not have these set up correctly. You can changed the defaults
|
||||
with the default keys.
|
||||
</p>
|
||||
<list>
|
||||
<item>GSFirstControlKey</item>
|
||||
<item>GSSecondControlKey</item>
|
||||
<item>GSFirstCommandKey</item>
|
||||
<item>GSSecondCommandKey</item>
|
||||
<item>GSFirstAlternateKey</item>
|
||||
<item>GSSecondAlternateKey</item>
|
||||
</list>
|
||||
<p>
|
||||
Default values are respectively:
|
||||
</p>
|
||||
<list>
|
||||
<item>Control_L</item>
|
||||
<item>Control_R</item>
|
||||
<item>Alt_L</item>
|
||||
<item>NoSymbol</item>
|
||||
<item>Alt_R</item>
|
||||
<item>NoSymbol</item>
|
||||
</list>
|
||||
<p>
|
||||
This is described more completely in the GUI documentation.
|
||||
</p>
|
||||
</desc>
|
||||
<term>UseWindowMakerIcons</term>
|
||||
<desc>
|
||||
<p>
|
||||
UseWindowMakerIcons is for app icons, and has no effect when
|
||||
the window manager isn't Window Maker. It displays the
|
||||
application's icon window in the window Window Maker
|
||||
provides instead of creating one controlled by the app. This
|
||||
allows the icon to be docked. It is a boolean value which
|
||||
defaults to <code>YES</code>.
|
||||
</p>
|
||||
</desc>
|
||||
<term>XGPS-Shm</term>
|
||||
<desc>
|
||||
<p>
|
||||
A boolean value which defaults to <code>YES</code> (as long as shared
|
||||
memory is available). If set to <code>NO</code>, shared memory is not
|
||||
used for various display specific operations.
|
||||
</p>
|
||||
</desc>
|
||||
</deflist>
|
||||
</section>
|
||||
</chapter>
|
||||
</body>
|
||||
</gsdoc>
|
||||
|
|
Loading…
Reference in a new issue