ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/feature.h
Revision: 1.31
Committed: Wed Jan 11 02:13:56 2006 UTC (18 years, 4 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-7_0
Changes since 1.30: +0 -6 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 /*
2 * File: feature.h
3 *
4 * Compile-time configuration.
5 *-----------------------------------------------------------------------
6 * Copyright (c) 1997,1998 Oezguer Kesim <kesim@math.fu-berlin.de>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 *
22 *----------------------------------------------------------------------*/
23 #ifndef FEATURE_H
24 #define FEATURE_H
25
26 #ifndef X11USRLIBDIR
27 # define X11USRLIBDIR "/usr/X11R6/lib"
28 #endif
29 #ifndef X11LIBDIR
30 # define X11LIBDIR X11USRLIBDIR "/X11"
31 #endif
32 #ifndef XAPPLOADDIR
33 # define XAPPLOADDIR X11LIBDIR "/app-defaults"
34 # define XAPPLOADDIRLOCALE X11LIBDIR "/%s/app-defaults"
35 #endif
36
37 /*-----------------------SCREEN OPTIONS AND COLOURS---------------------*/
38
39 /*
40 * NOTE:
41 *
42 * Most of these configuration options have not been tested within the new
43 * 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
45 * report bugs, too!), but don't _expect_ them to work.
46 */
47
48 /*
49 * Avoid enabling the colour cursor (-cr, cursorColor, cursorColor2)
50 */
51 /* #define NO_CURSORCOLOR */
52
53 /*
54 * Make colours match xterm colours instead of `traditional' rxvt colours
55 */
56 #define XTERM_COLORS
57
58 /*
59 * Disable separate colours for bold, underline and reverse video
60 */
61 /* #define NO_BOLD_UNDERLINE_REVERSE */
62
63 /*
64 * Define maximum possible columns and rows
65 */
66 #define MAX_COLS 10000
67 #define MAX_ROWS 10000
68
69 /*
70 * Define maximum possible savelines
71 */
72 #define MAX_SAVELINES 10000000
73
74 /*
75 * Define default colours for certain items. If you have a low colour
76 * display, then consider using colours which are already pre-allocated:
77 * Black (#000000)
78 * Red3 (#CD0000) + these
79 * Green3 (#00CD00) + colours
80 * Yellow3 (#CDCD00) + are
81 * Blue3 (#0000CD) + not
82 * Magenta3 (#CD00CD) + pre-allocated
83 * Cyan3 (#00CDCD) + if
84 * AntiqueWhite (#FAEBD7) + NO_BRIGHTCOLOR
85 * Grey25 (#404040) + defined
86 * Red (#FF0000)
87 * Green (#00FF00)
88 * Yellow (#FFFF00)
89 * Blue (#0000FF)
90 * Magenta (#FF00FF)
91 * Cyan (#00FFFF)
92 * White (#FFFFFF)
93 */
94 /* These colours MUST be defined */
95 #define COLOR_FOREGROUND "Black"
96 #define COLOR_BACKGROUND "White"
97 #define COLOR_SCROLLBAR "#B2B2B2" /* scrollColor match Netscape */
98 #define COLOR_SCROLLTROUGH "#969696"
99
100 /*
101 * The cursor colours are special. Be very careful about setting these:
102 * foreground/background colours may be modified by command line or resources
103 * prior to this allocation. Also, they are not valid if NO_CURSORCOLOR is
104 * defined
105 */
106 #define COLOR_CURSOR_FOREGROUND NULL /* if NULL, use background colour */
107 #define COLOR_CURSOR_BACKGROUND NULL /* if NULL, use foreground colour */
108
109 /*
110 * Define to remove support for XCopyArea () support. XCopyArea () is useful
111 * for scrolling on non-local X displays
112 */
113 #undef NO_SLOW_LINK_SUPPORT
114
115 /*
116 * Printer pipe which will be used for emulation of attached vt100 printer
117 */
118 #define PRINTPIPE "lpr"
119
120 /*
121 * Allow 80/132 mode switching on startup
122 */
123 /* #define ALLOW_132_MODE */
124
125 /*
126 * Add support for the Offix DND (Drag 'n' Drop) protocol
127 */
128 /* #define OFFIX_DND */
129
130 /*---------------------------------KEYS---------------------------------*/
131
132 /*
133 * Define defaults for backspace and delete keys - unless they have been
134 * configured out with --disable-backspace-key / --disable-delete-key
135 */
136 #define DEFAULT_BACKSPACE "DEC" /* SPECIAL */
137 #define DEFAULT_DELETE "\033[3~"
138
139 /*
140 * To use
141 * Home = "\E[1~", End = "\E[4~"
142 * instead of
143 * Home = "\E[7~", End = "\E[8~" [default]
144 */
145 /* #define LINUX_KEYS */
146
147 /*
148 * Enable the keysym resource which allows you to define strings associated
149 * with various KeySyms (0xFF00 - 0xFFFF).
150 * Required by perl.
151 */
152 #if ENABLE_FRILLS || ENABLE_PERL
153 # define KEYSYM_RESOURCE
154 #endif
155
156 /*
157 * Modifier/s to use to allow up/down arrows and Prior/Next keys
158 * to scroll single or page-fulls
159 */
160 #define SCROLL_ON_SHIFT
161 /* #define SCROLL_ON_CTRL */
162 /* #define SCROLL_ON_META */
163
164 /*
165 * Allow scrolling with modifier+Up/Down keys, in addition
166 * to modifier+Prior/Next? (modifier is controlled with
167 * SCROLL_ON_* defines above.).
168 * Also for modifier+Home/End keys to move to top/bottom
169 */
170 /* #define SCROLL_ON_UPDOWN_KEYS */
171 /* #define SCROLL_ON_HOMEEND_KEYS */
172
173 /*
174 * Allow unshifted Next/Prior keys to scroll forward/back
175 * (in addition to shift+Next/shift+Prior) --pjh
176 */
177 /* #define UNSHIFTED_SCROLLKEYS */
178
179 /* (Hops) Set to choose a number of lines of context between pages
180 * (rather than a proportion (1/5) of savedlines buffer)
181 * when paging the savedlines with SHIFT-{Prior,Next} keys.
182 */
183 #define PAGING_CONTEXT_LINES 1 /* */
184
185 /*
186 * Have either Ctrl+Tab or Mod4+Tab emit \e\t
187 * Useful when window manager grabs Alt+Tab -- mg
188 */
189 /* #define CTRL_TAB_MAKES_META */
190 /* #define MOD4_TAB_MAKES_META */
191
192 /*--------------------------------MOUSE---------------------------------*/
193 /*
194 * Disable sending escape sequences (up, down, page up/down)
195 * from the scrollbar when XTerm mouse reporting is enabled
196 */
197 /* #define NO_SCROLLBAR_REPORT */
198
199 /*
200 * Default separating chars for multiple-click selection
201 * Space and tab are separate separating characters and are not settable
202 */
203 #define CUTCHARS "\"&'()*,;<=>?@[\\]^`{|}"
204
205 /*
206 * Add run-time support for changing the cutchars for double click selection
207 */
208 #define CUTCHAR_RESOURCE
209
210 /*
211 * Have mouse reporting include double-click info for button1
212 */
213 //#define MOUSE_REPORT_DOUBLECLICK
214
215 /*
216 * Set delay between multiple click events [default: 500 milliseconds]
217 */
218 /* #define MULTICLICK_TIME 500 */
219
220 /*
221 * Time factor to slow down a `jumpy' mouse. Motion isn't recognised until
222 * this long after the last mouse click [default: 50 milliseconds]
223 */
224 #define MOUSE_THRESHOLD 50
225
226 /*
227 * Set delay periods for continuous scrolling with scrollbar buttons
228 */
229 /* #define SCROLLBAR_INITIAL_DELAY 0.33 */
230 /* #define SCROLLBAR_CONTINUOUS_DELAY 0.05 */
231
232 /*
233 * The speed of selection scrolling is proportional to the distance
234 * the mouse pointer is out of the text window. This is the max
235 * number of lines to scroll at a time.
236 */
237 #define SELECTION_SCROLL_MAX_LINES 8
238
239 /*
240 * The number of lines (measured in character's heights, not pixels)
241 * the pointer must be out of the window for each increase in the
242 * number of lines scrolled.
243 */
244 #define SELECTION_SCROLL_LINE_SPEEDUP 3
245
246 /*--------------------------------MISC----------------------------------*/
247 /*
248 * Disable to reset tty device to pre-incovation state
249 */
250 #define RESET_TTY_TO_COMMON_DEFAULTS
251
252 /*
253 * Only log in wtmp file when we're a login shell (-ls option)
254 */
255 #define WTMP_ONLY_ON_LOGIN
256
257 /*--------------------------------BELL----------------------------------*/
258 /*
259 * Disable all bell indications
260 */
261 /* #define NO_BELL */
262
263 /*
264 * Disable automatic de-iconify when a bell is received
265 */
266 /* #define NO_MAPALERT */
267
268 /*
269 * Have mapAlert behaviour selectable with mapAlert resource
270 */
271 #define MAPALERT_OPTION
272
273 /*-----------------------------SCROLL BAR-------------------------------*/
274 /*
275 * Choose the rxvt style scrollbar width
276 * - should be an even number [default: 10]
277 */
278 /* #define SB_WIDTH_RXVT 10 */
279
280 /*
281 * Minimum and maximum widths of the scrollbar (all styles)
282 */
283 #define SB_WIDTH_MINIMUM 5
284 #define SB_WIDTH_MAXIMUM 100
285
286 /*
287 * When using Rxvt scrollbar, clicking above or below the slider will move
288 * 1/4 of the screen height, if possible. Setting RXVT_SCROLL_FULL will move
289 * it one screen height less one line, if possible
290 */
291 #define RXVT_SCROLL_FULL 1
292
293 /*
294 * (Hops) draw an internal border line on inside edge of the scrollbar
295 */
296 /* #define SB_BORDER */
297
298 /*------------------------------MENU BAR--------------------------------*/
299 /*
300 * Choose how many of (experimental) menuBars you want to be able to stack at
301 * one time.
302 * A value of 1 disables menuBar stacking.
303 * A value of 0 disables menuBar all together.
304 * Note that the amount of memory overhead is the same for any value >= 2.
305 */
306 #define MENUBAR_MAX 16
307
308 /*
309 * Change the default shadow style
310 */
311 /* #define MENUBAR_SHADOW_IN */
312
313 /*
314 * Change the default shadow style
315 */
316 #define MENU_SHADOW_IN
317
318 /*---------------------------MULTILINGUAL-------------------------------*/
319 /*
320 * Allow run-time selection of Meta (Alt) to set the 8th bit on
321 */
322 #define META8_OPTION
323
324 /*---------------------------DISPLAY OPTIONS----------------------------*/
325 /*
326 * Force local connection to be socket (or other local) communication
327 */
328 /* #define LOCAL_X_IS_UNIX */
329
330 /*
331 * Have DISPLAY environment variable & "\E[7n" transmit display with IP number
332 */
333 /* #define DISPLAY_IS_IP */
334
335 /*
336 * Change what ESC Z transmits instead of the default "\E[?1;2c"
337 */
338 /* #define ESCZ_ANSWER "\033[?1;2C" */
339
340 /*
341 * Allow foreground/background colour to be changed with an
342 * xterm escape sequence "\E]39;colour^G"
343 */
344 #define XTERM_COLOR_CHANGE
345
346 /*
347 * Remove secondary screen's independent cursor position, a la xterm
348 */
349 /* #define NO_SECONDARY_SCREEN_CURSOR */
350
351 /*
352 * Width of the term internal border
353 */
354 #define INTERNALBORDERWIDTH 2
355
356 /*
357 * Width of the term external border
358 */
359 #define EXTERNALBORDERWIDTH 0
360
361 /*
362 * Default number of extra dots between lines
363 */
364 #define LINESPACE 0
365
366 /*
367 * Default number of lines in the scrollback buffer
368 */
369 #define SAVELINES 1000
370
371 /*
372 * Provide termcap/terminfo bw support (wrap backwards on cub1)
373 */
374 #define TERMCAP_HAS_BW
375
376 /*
377 * Some (older, e.g. fvwm 2.2.2) window managers need some time when
378 * updating window positions. If transparency isn't working correctly
379 * then you might try out this one.
380 */
381 /* #define WAIT_FOR_WM */
382
383 /*
384 * The duration of the visual bell flash in µs. The default of 20ms
385 * corresponds to the delay given in the terminfo flash code.
386 */
387 #define VISUAL_BELL_DURATION 20000
388
389 #endif
390