Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.atnf.csiro.au/computing/software/gipsy/sub/GgiSetResources.dc2
Дата изменения: Thu Mar 14 05:19:25 2002
Дата индексирования: Sat Jan 17 03:28:35 2009
Кодировка:

Поисковые слова: п п п п п п п п п п п п п
Function: GgiSetResources

Purpose: Modify default fallback resources for Ggi

Category: USER-INTERFACE, SYSTEM

File: ggi.src

Author: J.P. Terlouw

Use:
#include "ggi.h"
char **resources;

GgiSetResources(resources);

resources - fallback resources as defined by the Xt,
the X Toolkit: a NULL-terminated array
of character pointers.

Description: GgiSetResources allows the programmer to deviate from the
default fallback resources defined by Ggi. Examples of things
that can be modified are colours and fonts. A practical way
of doing this is to inspect the resource string in this source
file (ggi.c) and then define any new or deviating strings.

There is a limited possiblity for setting resources of
individual elements. This can only be done for elements
created by GgiLabel(), GgiButton() or GgiMenu(). The name
to be used in the resource specification is the text string
used when GgiLabel was called, or the keyword without the
equals sign for GgiButton and GgiMenu.

GgiSetResources must be called before any element is created,
i.e. in the initialization phase of the program.

Updates: Jan 13, 1998: JPT, Document created.
Jun 23, 1999: JPT, Specified resources now are merged.
Dec 14, 2001: JPT, Fixed documentation w.r.t. argument.