mirror of
https://github.com/VARCem/PDCurses.git
synced 2026-09-24 07:45:21 +00:00
If cursorColor is obsolete, let's remove the remaining references.
This commit is contained in:
10
doc/x11.man
10
doc/x11.man
@@ -112,15 +112,11 @@ pointerForeColor: The foreground colour of the pointer.
|
||||
pointerBackColor: The background colour of the pointer.
|
||||
Default: white
|
||||
|
||||
cursorColor: The colour of the text cursor.
|
||||
Default: red
|
||||
*** This resource is now obsolete and is ignored. ***
|
||||
|
||||
textCursor: The alignment of the text cursor; horizontal or vertical.
|
||||
Default: horizontal
|
||||
|
||||
colorBlack: The color of the COLOR_BLACK attribute.
|
||||
Default: black
|
||||
Default: Black
|
||||
|
||||
colorRed: The color of the COLOR_RED attribute.
|
||||
Default: red3
|
||||
@@ -141,7 +137,7 @@ colorCyan: The color of the COLOR_CYAN attribute.
|
||||
Default: cyan3
|
||||
|
||||
colorWhite: The color of the COLOR_WHITE attribute.
|
||||
Default: grey
|
||||
Default: Grey
|
||||
|
||||
colorBoldBlack: COLOR_BLACK combined with A_BOLD.
|
||||
Default: grey40
|
||||
@@ -165,7 +161,7 @@ colorBoldCyan: COLOR_CYAN combined with A_BOLD.
|
||||
Default: cyan1
|
||||
|
||||
colorBoldWhite: COLOR_WHITE combined with A_BOLD.
|
||||
Default: white
|
||||
Default: White
|
||||
|
||||
bitmap: 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.
|
||||
|
||||
@@ -15,7 +15,6 @@ testcurs.colorBlack: midnightblue
|
||||
testcurs.lines: 30
|
||||
testcurs.normalFont: 7x13
|
||||
testcurs.boldFont: 7x13bold
|
||||
testcurs.cursorColor: orange
|
||||
!
|
||||
! resources for THE - Xcurses
|
||||
!
|
||||
|
||||
13
x11/pdcx11.c
13
x11/pdcx11.c
@@ -26,7 +26,7 @@
|
||||
|
||||
#ifdef PDCDEBUG
|
||||
const char *rcsid_PDCx11 =
|
||||
"$Id: pdcx11.c,v 1.47 2006/02/05 14:27:04 wmcbrine Exp $";
|
||||
"$Id: pdcx11.c,v 1.48 2006/02/14 00:21:53 wmcbrine Exp $";
|
||||
#endif
|
||||
|
||||
AppData app_data;
|
||||
@@ -446,16 +446,6 @@ XtResource app_resources[PDC_NUMBER_APP_RESOURCES] =
|
||||
(XtPointer)80,
|
||||
},
|
||||
|
||||
{
|
||||
XtNcursorColor,
|
||||
XtCCursorColor,
|
||||
XtRPixel,
|
||||
sizeof(Pixel),
|
||||
XtOffsetOf(AppData, cursorColor),
|
||||
XtRString,
|
||||
(XtPointer)"Red",
|
||||
},
|
||||
|
||||
{
|
||||
XtNcolorBlack,
|
||||
XtCColorBlack,
|
||||
@@ -810,7 +800,6 @@ XrmOptionDescRec options[PDC_NUMBER_OPTIONS] =
|
||||
{"-pointerForeColor", "*pointerForeColor", XrmoptionSepArg, NULL },
|
||||
{"-pointerBackColor", "*pointerBackColor", XrmoptionSepArg, NULL },
|
||||
{"-cursorBlinkRate", "*cursorBlinkRate", XrmoptionSepArg, NULL },
|
||||
{"-cursorColor", "*cursorColor", XrmoptionSepArg, NULL },
|
||||
{"-textCursor", "*textCursor", XrmoptionSepArg, NULL },
|
||||
{"-colorBlack", "*colorBlack", XrmoptionSepArg, NULL },
|
||||
{"-colorRed", "*colorRed", XrmoptionSepArg, NULL },
|
||||
|
||||
Reference in New Issue
Block a user