--- rxvt-unicode/src/feature.h 2006/01/19 10:51:44 1.37 +++ rxvt-unicode/src/feature.h 2006/01/31 20:07:18 1.46 @@ -36,10 +36,11 @@ /*-------------------------------SECURITY-------------------------------*/ -/* Default mode to restore when releasing the PTS device. It is relaxed to be +/* + * Default mode to restore when releasing the PTS device. It is relaxed to be * compatible with most systems, change it to a more secure value if your * system supports it (0640 for example). - + */ #define RESTORE_TTY_MODE 0666 /* @@ -60,6 +61,16 @@ */ /* + * The cursor blink interval, in seconds. + */ +#define CURSOR_BLINK_INTERVAL 0.5 + +/* + * The text blink interval, in seconds. + */ +#define TEXT_BLINK_INTERVAL CURSOR_BLINK_INTERVAL + +/* * Avoid enabling the colour cursor (-cr, cursorColor, cursorColor2) */ /* #define NO_CURSORCOLOR */ @@ -88,15 +99,16 @@ /* * Define default colours for certain items. If you have a low colour * display, then consider using colours which are already pre-allocated: + * * Black (#000000) - * Red3 (#CD0000) + these - * Green3 (#00CD00) + colours - * Yellow3 (#CDCD00) + are - * Blue3 (#0000CD) + not - * Magenta3 (#CD00CD) + pre-allocated - * Cyan3 (#00CDCD) + if - * AntiqueWhite (#FAEBD7) + NO_BRIGHTCOLOR - * Grey25 (#404040) + defined + * Red3 (#CD0000) + * Green3 (#00CD00) + * Yellow3 (#CDCD00) + * Blue3 (#0000CD) + * Magenta3 (#CD00CD) + * Cyan3 (#00CDCD) + * AntiqueWhite (#FAEBD7) + * Grey25 (#404040) * Red (#FF0000) * Green (#00FF00) * Yellow (#FFFF00) @@ -106,10 +118,10 @@ * White (#FFFFFF) */ /* These colours MUST be defined */ -#define COLOR_FOREGROUND "Black" -#define COLOR_BACKGROUND "White" -#define COLOR_SCROLLBAR "#B2B2B2" /* scrollColor match Netscape */ -#define COLOR_SCROLLTROUGH "#969696" +#define COLOR_FOREGROUND "rgb:00/00/00" +#define COLOR_BACKGROUND "rgb:ff/ff/ff" +#define COLOR_SCROLLBAR "rgb:b2/b2/b2" /* scrollColor match Netscape */ +#define COLOR_SCROLLTROUGH "rgb:96/96/96" /* * The cursor colours are special. Be very careful about setting these: @@ -136,11 +148,6 @@ */ /* #define ALLOW_132_MODE */ -/* - * Add support for the Offix DND (Drag 'n' Drop) protocol - */ -/* #define OFFIX_DND */ - /*---------------------------------KEYS---------------------------------*/ /* @@ -259,11 +266,6 @@ /*--------------------------------MISC----------------------------------*/ /* - * Disable to reset tty device to pre-incovation state - */ -#define RESET_TTY_TO_COMMON_DEFAULTS - -/* * Only log in wtmp and lastlog files when we're a login shell (-ls option) */ #define LOG_ONLY_ON_LOGIN @@ -298,6 +300,11 @@ #define SB_WIDTH_MAXIMUM 100 /* + * rxvt scrollbar shadow width in pixels, must be 1 or 2 + */ +#define SHADOW_WIDTH 1 + +/* * When using Rxvt scrollbar, clicking above or below the slider will move * 1/4 of the screen height, if possible. Setting RXVT_SCROLL_FULL will move * it one screen height less one line, if possible @@ -365,20 +372,13 @@ /* * Provide termcap/terminfo bw support (wrap backwards on cub1) */ -#define TERMCAP_HAS_BW - -/* - * Some (older, e.g. fvwm 2.2.2) window managers need some time when - * updating window positions. If transparency isn't working correctly - * then you might try out this one. - */ -/* #define WAIT_FOR_WM */ +#define TERMCAP_HAS_BW 1 /* - * The duration of the visual bell flash in µs. The default of 20ms + * The duration of the visual bell flash in s. The default of 20ms * corresponds to the delay given in the terminfo flash code. */ -#define VISUAL_BELL_DURATION 20000 +#define VISUAL_BELL_DURATION .020 #endif