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.33 by root, Tue Jan 17 15:17:39 2006 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
37/*-------------------------------SECURITY-------------------------------*/
38
39/*
40 * define if you want to use a separate process for pty/tty handling
41 * when running setuid/setgid. You need this when making it setuid/setgid.
42 */
43#define PTYTTY_HELPER 1
36 44
37/*-----------------------SCREEN OPTIONS AND COLOURS---------------------*/ 45/*-----------------------SCREEN OPTIONS AND COLOURS---------------------*/
38 46
39/* 47/*
40 * NOTE: 48 * NOTE:
41 * 49 *
42 * Most of these configuration options have not been tested within the new 50 * Most of these configuration options have not been tested within the new
43 * rxvt-unicode framework. Changing them might work, might have no effect, 51 * rxvt-unicode framework. Changing them should work, might have no effect,
44 * destroy your disks or have any other effects. You may freely try (and 52 * destroy your disks or have any other effects. You may freely try (and
45 * report bugs, too!), but don't _expect_ them to work. 53 * report bugs, too!), but don't _expect_ them to work.
46 */ 54 */
47 55
48/* 56/*
49 * Define the name of the environment variable to be used in
50 * addition to the "PATH" environment and the `path' resource.
51 * Usually it should point to where you keep your background pixmaps and/or
52 * your menu files
53 */
54#define PATH_ENV "RXVTPATH"
55
56/*
57 * Avoid enabling the colour cursor (-cr, cursorColor, cursorColor2) 57 * Avoid enabling the colour cursor (-cr, cursorColor, cursorColor2)
58 */ 58 */
59/* #define NO_CURSORCOLOR */ 59/* #define NO_CURSORCOLOR */
60 60
61/* 61/*
62 * Suppress use of BOLD and BLINK attributes for setting bright foreground
63 * and background, respectively. Simulate BOLD using colorBD or
64 * overstrike characters.
65 */
66/* #define NO_BRIGHTCOLOR */
67
68/*
69 * Make colours match xterm colours instead of `traditional' rxvt colours 62 * Make colours match xterm colours instead of `traditional' rxvt colours
70 */ 63 */
71#define XTERM_COLORS 64#define XTERM_COLORS
72 65
73/* 66/*
76/* #define NO_BOLD_UNDERLINE_REVERSE */ 69/* #define NO_BOLD_UNDERLINE_REVERSE */
77 70
78/* 71/*
79 * Define maximum possible columns and rows 72 * Define maximum possible columns and rows
80 */ 73 */
81#define MAX_COLS 4000 74#define MAX_COLS 10000
82#define MAX_ROWS 1000 75#define MAX_ROWS 10000
76
77/*
78 * Define maximum possible savelines
79 */
80#define MAX_SAVELINES 10000000
83 81
84/* 82/*
85 * Define default colours for certain items. If you have a low colour 83 * Define default colours for certain items. If you have a low colour
86 * display, then consider using colours which are already pre-allocated: 84 * display, then consider using colours which are already pre-allocated:
87 * Black (#000000) 85 * Black (#000000)
118 116
119/* 117/*
120 * Define to remove support for XCopyArea () support. XCopyArea () is useful 118 * Define to remove support for XCopyArea () support. XCopyArea () is useful
121 * for scrolling on non-local X displays 119 * for scrolling on non-local X displays
122 */ 120 */
123/* #define NO_SLOW_LINK_SUPPORT */ 121#undef NO_SLOW_LINK_SUPPORT
124 122
125/* 123/*
126 * Printer pipe which will be used for emulation of attached vt100 printer 124 * Printer pipe which will be used for emulation of attached vt100 printer
127 */ 125 */
128#define PRINTPIPE "lpr" 126#define PRINTPIPE "lpr"
130/* 128/*
131 * Allow 80/132 mode switching on startup 129 * Allow 80/132 mode switching on startup
132 */ 130 */
133/* #define ALLOW_132_MODE */ 131/* #define ALLOW_132_MODE */
134 132
135/*------------------------------RESOURCES-------------------------------*/
136/*
137 * Define to find installed application defaults for rxvt
138 * Only if USE_XGETDEFAULT is not defined.
139 */
140#define USE_XAPPLOADDIR
141
142/* 133/*
143 * Add support for the Offix DND (Drag 'n' Drop) protocol 134 * Add support for the Offix DND (Drag 'n' Drop) protocol
144 */ 135 */
145/* #define OFFIX_DND */ 136/* #define OFFIX_DND */
146 137
148 139
149/* 140/*
150 * Define defaults for backspace and delete keys - unless they have been 141 * Define defaults for backspace and delete keys - unless they have been
151 * configured out with --disable-backspace-key / --disable-delete-key 142 * configured out with --disable-backspace-key / --disable-delete-key
152 */ 143 */
153//#define DEFAULT_BACKSPACE "DEC" /* SPECIAL */ 144#define DEFAULT_BACKSPACE "DEC" /* SPECIAL */
154#define DEFAULT_BACKSPACE "\010" /* wrong, but match terminfo etc. */
155#define DEFAULT_DELETE "\033[3~" 145#define DEFAULT_DELETE "\033[3~"
156 146
157/* 147/*
158 * To use 148 * To use
159 * Home = "\E[1~", End = "\E[4~" 149 * Home = "\E[1~", End = "\E[4~"
163/* #define LINUX_KEYS */ 153/* #define LINUX_KEYS */
164 154
165/* 155/*
166 * Enable the keysym resource which allows you to define strings associated 156 * Enable the keysym resource which allows you to define strings associated
167 * with various KeySyms (0xFF00 - 0xFFFF). 157 * with various KeySyms (0xFF00 - 0xFFFF).
168 * Only works with the default hand-rolled resources. 158 * Required by perl.
169 */ 159 */
170#ifndef NO_RESOURCES 160#if ENABLE_FRILLS || ENABLE_PERL
171# define KEYSYM_RESOURCE 161# define KEYSYM_RESOURCE
172#endif 162#endif
173 163
174/* 164/*
175 * Modifier/s to use to allow up/down arrows and Priot/Next keys 165 * Modifier/s to use to allow up/down arrows and Prior/Next keys
176 * to scroll single or page-fulls 166 * to scroll single or page-fulls
177 */ 167 */
178#define SCROLL_ON_SHIFT 168#define SCROLL_ON_SHIFT
179/* #define SCROLL_ON_CTRL */ 169/* #define SCROLL_ON_CTRL */
180/* #define SCROLL_ON_META */ 170/* #define SCROLL_ON_META */
216 206
217/* 207/*
218 * Default separating chars for multiple-click selection 208 * Default separating chars for multiple-click selection
219 * Space and tab are separate separating characters and are not settable 209 * Space and tab are separate separating characters and are not settable
220 */ 210 */
221#define CUTCHARS "\"&'()*,;<=>?@[\\]^`{|}~" 211#define CUTCHARS "\"&'()*,;<=>?@[\\]^`{|}"
222 212
223/* 213/*
224 * Add run-time support for changing the cutchars for double click selection 214 * Add run-time support for changing the cutchars for double click selection
225 */ 215 */
226#define CUTCHAR_RESOURCE 216#define CUTCHAR_RESOURCE
227 217
228/* 218/*
229 * Have mouse reporting include double-click info for button1 219 * Have mouse reporting include double-click info for button1
230 */ 220 */
231/* #define MOUSE_REPORT_DOUBLECLICK */ 221//#define MOUSE_REPORT_DOUBLECLICK
232 222
233/* 223/*
234 * Set delay between multiple click events [default: 500 milliseconds] 224 * Set delay between multiple click events [default: 500 milliseconds]
235 */ 225 */
236/* #define MULTICLICK_TIME 500 */ 226/* #define MULTICLICK_TIME 500 */
240 * this long after the last mouse click [default: 50 milliseconds] 230 * this long after the last mouse click [default: 50 milliseconds]
241 */ 231 */
242#define MOUSE_THRESHOLD 50 232#define MOUSE_THRESHOLD 50
243 233
244/* 234/*
245 * If mouse wheel is defined, then scrolling is by 5 lines (or 1 line
246 * if the shift key is down). Scrolling can be smooth or jump scrolling
247 */
248#define JUMP_MOUSE_WHEEL
249
250/*
251 * Set delay periods for continuous scrolling with scrollbar buttons 235 * Set delay periods for continuous scrolling with scrollbar buttons
252 */ 236 */
253/* #define SCROLLBAR_INITIAL_DELAY 40 */ 237/* #define SCROLLBAR_INITIAL_DELAY 0.33 */
254/* #define SCROLLBAR_CONTINUOUS_DELAY 2 */ 238/* #define SCROLLBAR_CONTINUOUS_DELAY 0.05 */
255 239
256/* 240/*
257 * The speed of selection scrolling is proportional to the distance 241 * The speed of selection scrolling is proportional to the distance
258 * the mouse pointer is out of the text window. This is the max 242 * the mouse pointer is out of the text window. This is the max
259 * number of lines to scroll at a time. 243 * number of lines to scroll at a time.
260 */ 244 */
261#define SELECTION_SCROLL_MAX_LINES 2 245#define SELECTION_SCROLL_MAX_LINES 8
262 246
263/* 247/*
264 * The number of lines (measured in character's heights, not pixels) 248 * 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 249 * the pointer must be out of the window for each increase in the
266 * number of lines scrolled. 250 * number of lines scrolled.
267 */ 251 */
268#define SELECTION_SCROLL_LINE_SPEEDUP 4 252#define SELECTION_SCROLL_LINE_SPEEDUP 3
269 253
270/*--------------------------------MISC----------------------------------*/ 254/*--------------------------------MISC----------------------------------*/
271/* 255/*
272 * Disable to reset tty device to pre-incovation state 256 * Disable to reset tty device to pre-incovation state
273 */ 257 */
317/* 301/*
318 * (Hops) draw an internal border line on inside edge of the scrollbar 302 * (Hops) draw an internal border line on inside edge of the scrollbar
319 */ 303 */
320/* #define SB_BORDER */ 304/* #define SB_BORDER */
321 305
322/*------------------------------MENU BAR--------------------------------*/
323/*
324 * Choose how many of (experimental) menuBars you want to be able to stack at
325 * one time.
326 * A value of 1 disables menuBar stacking.
327 * A value of 0 disables menuBar all together.
328 * Note that the amount of memory overhead is the same for any value >= 2.
329 */
330#define MENUBAR_MAX 16
331
332/*
333 * Change the default shadow style
334 */
335/* #define MENUBAR_SHADOW_IN */
336
337/*
338 * Change the default shadow style
339 */
340#define MENU_SHADOW_IN
341
342/*---------------------------MULTILINGUAL-------------------------------*/ 306/*---------------------------MULTILINGUAL-------------------------------*/
343/* 307/*
344 * Allow run-time selection of Meta (Alt) to set the 8th bit on 308 * Allow run-time selection of Meta (Alt) to set the 8th bit on
345 */ 309 */
346#define META8_OPTION 310#define META8_OPTION
360 * Change what ESC Z transmits instead of the default "\E[?1;2c" 324 * Change what ESC Z transmits instead of the default "\E[?1;2c"
361 */ 325 */
362/* #define ESCZ_ANSWER "\033[?1;2C" */ 326/* #define ESCZ_ANSWER "\033[?1;2C" */
363 327
364/* 328/*
365 * Check the current value of the window-time/icon-name and avoid
366 * re-setting it to the same value -- avoids unnecessary window refreshes
367 */
368#define SMART_WINDOW_TITLE
369
370/*
371 * Allow foreground/background colour to be changed with an 329 * Allow foreground/background colour to be changed with an
372 * xterm escape sequence "\E]39;colour^G" -- still experimental 330 * xterm escape sequence "\E]39;colour^G"
373 */ 331 */
374#define XTERM_COLOR_CHANGE 332#define XTERM_COLOR_CHANGE
375 333
376/* 334/*
377 * Remove secondary screen's independent cursor position, a la xterm 335 * Remove secondary screen's independent cursor position, a la xterm
394#define LINESPACE 0 352#define LINESPACE 0
395 353
396/* 354/*
397 * Default number of lines in the scrollback buffer 355 * Default number of lines in the scrollback buffer
398 */ 356 */
399#define SAVELINES 64 357#define SAVELINES 1000
400 358
401/* 359/*
402 * Provide termcap/terminfo bw support (wrap backwards on cub1) 360 * Provide termcap/terminfo bw support (wrap backwards on cub1)
403 */ 361 */
404/* #define TERMCAP_HAS_BW */ 362#define TERMCAP_HAS_BW
405 363
406/* 364/*
407 * Some (older, e.g. fvwm 2.2.2) window managers need some time when 365 * Some (older, e.g. fvwm 2.2.2) window managers need some time when
408 * updating window positions. If transparency isn't working correctly 366 * updating window positions. If transparency isn't working correctly
409 * then you might try out this one. 367 * then you might try out this one.
410 */ 368 */
411/* #define WAIT_FOR_WM */ 369/* #define WAIT_FOR_WM */
412 370
371/*
372 * The duration of the visual bell flash in µs. The default of 20ms
373 * corresponds to the delay given in the terminfo flash code.
374 */
375#define VISUAL_BELL_DURATION 20000
376
413#endif 377#endif
378

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines