MrmFetchColorLiteral(3X)MrmFetchColorLiteral(3X)NAME
MrmFetchColorLiteral - Fetches a named color literal from a UID file
SYNOPSIS
#include <Mrm/MrmPublic.h>
int MrmFetchColorLiteral(hierarchy_id, index, display, colormap_id, pixel)
MrmHierarchy hierarchy_id;
String index;
Display *display;
Colormap colormap_id;
Pixel *pixel;
DESCRIPTION
The MrmFetchColorLiteral function fetches a named color literal from a UID file, and converts the color literal to a pixel color value.
Specifies the ID of the UID hierarchy that contains the specified literal. The hierarchy_id was returned in a previous call to MrmOpenHier-
archyPerDisplay. Specifies the UIL name of the color literal to fetch. You must define this name in UIL as an exported value. Specifies
the display used for the pixmap. The display argument specifies the connection to the X server. For more information on the Display struc-
ture, see the Xlib function XOpenDisplay. Specifies the ID of the color map. If NULL, the default color map is used. Returns the ID of
the color literal.
RETURN VALUE
This function returns one of these status return constants: The function executed successfully. The hierarchy ID was invalid. The color
literal was not found in the UIL file. The caller tried to fetch a literal of a type not supported by this function. The function failed.
SEE ALSO MrmFetchBitmapLiteral(3X), MrmOpenHierarchyPerDisplay(3X), MrmFetchIconLiteral(3X), MrmFetchLiteral(3X), XOpenDisplay(3X11)MrmFetchColorLiteral(3X)
Check Out this Related Man Page
MrmFetchLiteral(3X)MrmFetchLiteral(3X)NAME
MrmFetchLiteral - Fetches a literal from a UID file
SYNOPSIS
#include <Mrm/MrmPublic.h>
int MrmFetchLiteral(hierarchy_id, index, display, value, type)
MrmHierarchy hierarchy_id;
String index;
Display *display;
XtPointer *value;
MrmCode *type;
DESCRIPTION
The MrmFetchLiteral function reads and returns the value and type of a literal (named value) that is stored as a public resource in a sin-
gle UID file. This function returns a pointer to the value of the literal. For example, an integer is always returned as a pointer to an
integer, and a string is always returned as a pointer to a string.
Applications should not use MrmFetchLiteral for fetching icon or color literals. If this is attempted, MrmFetchLiteral returns an error.
Specifies the ID of the UID hierarchy that contains the specified literal. The hierarchy_id was returned in a previous call to MrmOpenHier-
archyPerDisplay. Specifies the UIL name of the literal (pixmap) to fetch. You must define this name in UIL as an exported value. Speci-
fies the display used for the pixmap. The display argument specifies the connection to the X server. For more information on the Display
structure see the Xlib function XOpenDisplay. Returns the ID of the named literal's value. Returns the named literal's data type. Types
are defined in the include file <Mrm/MrmPublic.h>.
RETURN VALUE
This function returns one of these status return constants: The function executed successfully. The hierarchy ID was invalid. The literal
was not found in the UIL file. The caller tried to fetch a literal of a type not supported by this function. The function failed.
SEE ALSO MrmFetchBitmapLiteral(3X), MrmOpenHierarchyPerDisplay(3X), MrmFetchIconLiteral(3X), MrmFetchColorLiteral(3X), XOpenDisplay(3X11)MrmFetchLiteral(3X)
I am installing Oracle 10g on UNIX. I have prepared the server in various fields. Then when I started installation, one error message came out like this:
Could not execute auto check for display colors using command /usr/openwin/bin/xdpyinfo. Check if the DISPLAY variable is set.
So I check... (3 Replies)
I have a Zsh script which invokes another program. One of the paramters to be passed, should be a literal tab, i.e what in common programming languages is often written as "\t".
If it were bash, I think I could use the special form
$"\t"
but this doesn't seem to work (the called program... (5 Replies)