Part 2 - some doc updates

This commit is contained in:
William McBrine 2019-02-09 07:56:30 -05:00
parent 5471eb94a4
commit b377549532
2 changed files with 6 additions and 13 deletions

View File

@ -1,4 +1,4 @@
/* The PDCurses logo as #include'able BMP (from icon32.xbm), /* The PDCurses logo as #include'able BMP (from icon32.xpm),
for use by SDL. */ for use by SDL. */
unsigned char iconbmp[] = unsigned char iconbmp[] =

View File

@ -42,14 +42,9 @@ process created to manage the X stuff.
When compiling your application, you need to include the \<curses.h\> When compiling your application, you need to include the \<curses.h\>
that comes with PDCurses. You also need to link your code with that comes with PDCurses. You also need to link your code with
libXCurses. You may need to link with the following libraries under libXCurses. You may need to link with the following libraries:
X11R5:
Xaw Xmu Xt X11 Xaw Xmu Xt X11 SM ICE Xext Xpm
or, under X11R6:
Xaw Xmu Xt X11 SM ICE Xext
You can run "xcurses-config --libs" to show the link parameters for your You can run "xcurses-config --libs" to show the link parameters for your
system. If using dynamic linking, on some systems, "-lXCurses" suffices. system. If using dynamic linking, on some systems, "-lXCurses" suffices.
@ -193,16 +188,14 @@ COLOR_WHITE combined with A_BOLD. Default: White
### bitmap ### bitmap
The name of a valid bitmap file of depth 1 (black and white) used for The name of a valid bitmap file of depth 1 (black and white) used for
the application's icon. The file is an X bitmap. Default: a 32x32 or the application's icon. The file is an X bitmap. Default: none
64x64 pixmap depending on the window manager
### pixmap ### pixmap
The name of a valid pixmap file of any depth supported by the window The name of a valid pixmap file of any depth supported by the window
manager (color) for the application's icon, The file is an X11 pixmap. manager (color) for the application's icon, The file is an X11 pixmap.
This resource is only available if the libXpm package has been installed This resource overrides the "bitmap" resource. Default: a 32x32 or 64x64
(most systems have this by default). This resource overrides the pixmap depending on the window manager
"bitmap" resource. Default: none, uses default bitmap above
### translations ### translations