ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/feature.h
(Generate patch)

Comparing rxvt-unicode/src/feature.h (file contents):
Revision 1.13 by pcg, Fri Apr 2 18:00:01 2004 UTC vs.
Revision 1.26 by root, Wed Dec 21 23:57:12 2005 UTC

29#ifndef X11LIBDIR 29#ifndef X11LIBDIR
30# define X11LIBDIR X11USRLIBDIR "/X11" 30# define X11LIBDIR X11USRLIBDIR "/X11"
31#endif 31#endif
32#ifndef XAPPLOADDIR 32#ifndef XAPPLOADDIR
33# define XAPPLOADDIR X11LIBDIR "/app-defaults" 33# define XAPPLOADDIR X11LIBDIR "/app-defaults"
34# define XAPPLOADDIRLOCALE X11LIBDIR "/%-.*s/app-defaults" 34# define XAPPLOADDIRLOCALE X11LIBDIR "/%s/app-defaults"
35#endif 35#endif
36 36
37/*-----------------------SCREEN OPTIONS AND COLOURS---------------------*/ 37/*-----------------------SCREEN OPTIONS AND COLOURS---------------------*/
38 38
39/* 39/*
76/* #define NO_BOLD_UNDERLINE_REVERSE */ 76/* #define NO_BOLD_UNDERLINE_REVERSE */
77 77
78/* 78/*
79 * Define maximum possible columns and rows 79 * Define maximum possible columns and rows
80 */ 80 */
81#define MAX_COLS 4000 81#define MAX_COLS 10000
82#define MAX_ROWS 1000 82#define MAX_ROWS 10000
83
84/*
85 * Define maximum possible savelines
86 */
87#define MAX_SAVELINES 10000000
83 88
84/* 89/*
85 * Define default colours for certain items. If you have a low colour 90 * Define default colours for certain items. If you have a low colour
86 * display, then consider using colours which are already pre-allocated: 91 * display, then consider using colours which are already pre-allocated:
87 * Black (#000000) 92 * Black (#000000)
118 123
119/* 124/*
120 * Define to remove support for XCopyArea () support. XCopyArea () is useful 125 * Define to remove support for XCopyArea () support. XCopyArea () is useful
121 * for scrolling on non-local X displays 126 * for scrolling on non-local X displays
122 */ 127 */
123/* #define NO_SLOW_LINK_SUPPORT */ 128#undef NO_SLOW_LINK_SUPPORT
124 129
125/* 130/*
126 * Printer pipe which will be used for emulation of attached vt100 printer 131 * Printer pipe which will be used for emulation of attached vt100 printer
127 */ 132 */
128#define PRINTPIPE "lpr" 133#define PRINTPIPE "lpr"
148 153
149/* 154/*
150 * Define defaults for backspace and delete keys - unless they have been 155 * Define defaults for backspace and delete keys - unless they have been
151 * configured out with --disable-backspace-key / --disable-delete-key 156 * configured out with --disable-backspace-key / --disable-delete-key
152 */ 157 */
153//#define DEFAULT_BACKSPACE "DEC" /* SPECIAL */ 158#define DEFAULT_BACKSPACE "DEC" /* SPECIAL */
154#define DEFAULT_BACKSPACE "\010" /* wrong, but match terminfo etc. */
155#define DEFAULT_DELETE "\033[3~" 159#define DEFAULT_DELETE "\033[3~"
156 160
157/* 161/*
158 * To use 162 * To use
159 * Home = "\E[1~", End = "\E[4~" 163 * Home = "\E[1~", End = "\E[4~"
165/* 169/*
166 * Enable the keysym resource which allows you to define strings associated 170 * Enable the keysym resource which allows you to define strings associated
167 * with various KeySyms (0xFF00 - 0xFFFF). 171 * with various KeySyms (0xFF00 - 0xFFFF).
168 * Only works with the default hand-rolled resources. 172 * Only works with the default hand-rolled resources.
169 */ 173 */
170#ifndef NO_RESOURCES 174#if !NO_RESOURCES && ENABLE_FRILLS
171# define KEYSYM_RESOURCE 175# define KEYSYM_RESOURCE
172#endif 176#endif
173 177
174/* 178/*
175 * Modifier/s to use to allow up/down arrows and Priot/Next keys 179 * Modifier/s to use to allow up/down arrows and Prior/Next keys
176 * to scroll single or page-fulls 180 * to scroll single or page-fulls
177 */ 181 */
178#define SCROLL_ON_SHIFT 182#define SCROLL_ON_SHIFT
179/* #define SCROLL_ON_CTRL */ 183/* #define SCROLL_ON_CTRL */
180/* #define SCROLL_ON_META */ 184/* #define SCROLL_ON_META */
216 220
217/* 221/*
218 * Default separating chars for multiple-click selection 222 * Default separating chars for multiple-click selection
219 * Space and tab are separate separating characters and are not settable 223 * Space and tab are separate separating characters and are not settable
220 */ 224 */
221#define CUTCHARS "\"&'()*,;<=>?@[\\]^`{|}~" 225#define CUTCHARS "\"&'()*,;<=>?@[\\]^`{|}"
222 226
223/* 227/*
224 * Add run-time support for changing the cutchars for double click selection 228 * Add run-time support for changing the cutchars for double click selection
225 */ 229 */
226#define CUTCHAR_RESOURCE 230#define CUTCHAR_RESOURCE
227 231
228/* 232/*
229 * Have mouse reporting include double-click info for button1 233 * Have mouse reporting include double-click info for button1
230 */ 234 */
231/* #define MOUSE_REPORT_DOUBLECLICK */ 235//#define MOUSE_REPORT_DOUBLECLICK
232 236
233/* 237/*
234 * Set delay between multiple click events [default: 500 milliseconds] 238 * Set delay between multiple click events [default: 500 milliseconds]
235 */ 239 */
236/* #define MULTICLICK_TIME 500 */ 240/* #define MULTICLICK_TIME 500 */
248#define JUMP_MOUSE_WHEEL 252#define JUMP_MOUSE_WHEEL
249 253
250/* 254/*
251 * Set delay periods for continuous scrolling with scrollbar buttons 255 * Set delay periods for continuous scrolling with scrollbar buttons
252 */ 256 */
253/* #define SCROLLBAR_INITIAL_DELAY 40 */ 257/* #define SCROLLBAR_INITIAL_DELAY 0.33 */
254/* #define SCROLLBAR_CONTINUOUS_DELAY 2 */ 258/* #define SCROLLBAR_CONTINUOUS_DELAY 0.05 */
255 259
256/* 260/*
257 * The speed of selection scrolling is proportional to the distance 261 * The speed of selection scrolling is proportional to the distance
258 * the mouse pointer is out of the text window. This is the max 262 * the mouse pointer is out of the text window. This is the max
259 * number of lines to scroll at a time. 263 * number of lines to scroll at a time.
260 */ 264 */
261#define SELECTION_SCROLL_MAX_LINES 2 265#define SELECTION_SCROLL_MAX_LINES 8
262 266
263/* 267/*
264 * The number of lines (measured in character's heights, not pixels) 268 * The number of lines (measured in character's heights, not pixels)
265 * the pointer must be out of the window for each increase in the 269 * the pointer must be out of the window for each increase in the
266 * number of lines scrolled. 270 * number of lines scrolled.
267 */ 271 */
268#define SELECTION_SCROLL_LINE_SPEEDUP 4 272#define SELECTION_SCROLL_LINE_SPEEDUP 3
269 273
270/*--------------------------------MISC----------------------------------*/ 274/*--------------------------------MISC----------------------------------*/
271/* 275/*
272 * Disable to reset tty device to pre-incovation state 276 * Disable to reset tty device to pre-incovation state
273 */ 277 */
363 367
364/* 368/*
365 * Check the current value of the window-time/icon-name and avoid 369 * Check the current value of the window-time/icon-name and avoid
366 * re-setting it to the same value -- avoids unnecessary window refreshes 370 * re-setting it to the same value -- avoids unnecessary window refreshes
367 */ 371 */
368#define SMART_WINDOW_TITLE 372//#define SMART_WINDOW_TITLE // currently disabled, needs to be reimplemented
369 373
370/* 374/*
371 * Allow foreground/background colour to be changed with an 375 * Allow foreground/background colour to be changed with an
372 * xterm escape sequence "\E]39;colour^G" -- still experimental 376 * xterm escape sequence "\E]39;colour^G" -- still experimental
373 */ 377 */
399#define SAVELINES 64 403#define SAVELINES 64
400 404
401/* 405/*
402 * Provide termcap/terminfo bw support (wrap backwards on cub1) 406 * Provide termcap/terminfo bw support (wrap backwards on cub1)
403 */ 407 */
404/* #define TERMCAP_HAS_BW */ 408#define TERMCAP_HAS_BW
405 409
406/* 410/*
407 * Some (older, e.g. fvwm 2.2.2) window managers need some time when 411 * Some (older, e.g. fvwm 2.2.2) window managers need some time when
408 * updating window positions. If transparency isn't working correctly 412 * updating window positions. If transparency isn't working correctly
409 * then you might try out this one. 413 * then you might try out this one.
410 */ 414 */
411/* #define WAIT_FOR_WM */ 415/* #define WAIT_FOR_WM */
412 416
417/*
418 * The duration of the visual bell flash in µs. The default of 20ms
419 * corresponds to the delay given in the terminfo flash code.
420 */
421#define VISUAL_BELL_DURATION 20000
422
413#endif 423#endif
424

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines