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

Comparing rxvt-unicode/src/command.h (file contents):
Revision 1.3 by pcg, Fri Dec 5 04:05:13 2003 UTC vs.
Revision 1.19 by ayin, Thu Nov 15 11:36:15 2007 UTC

1/* 1/*
2 * $Id: command.h,v 1.3 2003/12/05 04:05:13 pcg Exp $ 2 * command.h
3 */ 3 */
4 4
5#ifndef _COMMAND_H_ 5#ifndef COMMAND_H_
6#define _COMMAND_H_ 6#define COMMAND_H_
7 7
8// STRING_MAX __MUST__ not be larger than what CBUFSIZ can hold.
8#define STRING_MAX 512 /* max string size for process_rxvt_xterm_seq() */ 9#define STRING_MAX 2048 /* max string size for process_rxvt_xterm_seq() */
10
9#define ESC_ARGS 32 /* max # of args for esc sequences */ 11#define ESC_ARGS 32 /* max # of args for esc sequences */
10
11#ifdef OFFIX_DND
12# define DndFile 2
13# define DndDir 5
14# define DndLink 7
15#endif
16
17/* a large REFRESH_PERIOD causes problems with `cat' */
18#define REFRESH_PERIOD 1
19 12
20#ifndef MULTICLICK_TIME 13#ifndef MULTICLICK_TIME
21# define MULTICLICK_TIME 500 14# define MULTICLICK_TIME 500
22#endif 15#endif
23#ifndef SCROLLBAR_INITIAL_DELAY 16#ifndef SCROLLBAR_INITIAL_DELAY
24# ifdef NEXT_SCROLLER
25# define SCROLLBAR_INITIAL_DELAY 20 17# define SCROLLBAR_INITIAL_DELAY 0.33
26# else
27# define SCROLLBAR_INITIAL_DELAY 40
28# endif
29#endif 18#endif
30#ifndef SCROLLBAR_CONTINUOUS_DELAY 19#ifndef SCROLLBAR_CONTINUOUS_DELAY
31# define SCROLLBAR_CONTINUOUS_DELAY 2 20# define SCROLLBAR_CONTINUOUS_DELAY 0.05
32#endif 21#endif
33 22
34/* 23/*
35 * key-strings: if only these keys were standardized <sigh> 24 * key-strings: if only these keys were standardized <sigh>
36 */ 25 */
42# define KS_END "\033[8~" /* End */ 31# define KS_END "\033[8~" /* End */
43#endif 32#endif
44 33
45#ifdef SCROLL_ON_SHIFT 34#ifdef SCROLL_ON_SHIFT
46# define SCROLL_SHIFTKEY (shft) 35# define SCROLL_SHIFTKEY (shft)
36# define NOSCROLL_SHIFTKEY 0
47#else 37#else
48# define SCROLL_SHIFTKEY 0 38# define SCROLL_SHIFTKEY 0
39# define NOSCROLL_SHIFTKEY (shft)
49#endif 40#endif
50#ifdef SCROLL_ON_CTRL 41#ifdef SCROLL_ON_CTRL
51# define SCROLL_CTRLKEY (ctrl) 42# define SCROLL_CTRLKEY (ctrl)
43# define NOSCROLL_CTRLKEY 0
52#else 44#else
53# define SCROLL_CTRLKEY 0 45# define SCROLL_CTRLKEY 0
46# define NOSCROLL_CTRLKEY (ctrl)
54#endif 47#endif
55#ifdef SCROLL_ON_META 48#ifdef SCROLL_ON_META
56# define SCROLL_METAKEY (meta) 49# define SCROLL_METAKEY (meta)
50# define NOSCROLL_METAKEY 0
57#else 51#else
58# define SCROLL_METAKEY 0 52# define SCROLL_METAKEY 0
53# define NOSCROLL_METAKEY (meta)
59#endif 54#endif
60#define IS_SCROLL_MOD (SCROLL_SHIFTKEY || SCROLL_CTRLKEY || SCROLL_METAKEY) 55#define IS_SCROLL_MOD ((SCROLL_SHIFTKEY || SCROLL_CTRLKEY || SCROLL_METAKEY) \
56 && (!NOSCROLL_SHIFTKEY && !NOSCROLL_CTRLKEY && !NOSCROLL_METAKEY))
57
61 58
62/* 59/*
63 * ESC-Z processing: 60 * ESC-Z processing:
64 * 61 *
65 * By stealing a sequence to which other xterms respond, and sending the 62 * By stealing a sequence to which other xterms respond, and sending the
73 * I doubt anyone will even notice. We provide a #ifdef just in case they 70 * I doubt anyone will even notice. We provide a #ifdef just in case they
74 * don't care about auto-display setting. Just in case the ancient 71 * don't care about auto-display setting. Just in case the ancient
75 * software in question is broken enough to be case insensitive to the 'c' 72 * software in question is broken enough to be case insensitive to the 'c'
76 * character in the answerback string, we make the distinguishing 73 * character in the answerback string, we make the distinguishing
77 * characteristic be capitalization of that character. The length of the 74 * characteristic be capitalization of that character. The length of the
78 * two strings should be the same so that identical read(2) calls may be 75 * two strings should be the same so that identical read (2) calls may be
79 * used. 76 * used.
80 */ 77 */
81#define VT100_ANS "\033[?1;2c" /* vt100 answerback */ 78#define VT100_ANS "\033[?1;2c" /* vt100 answerback */
82#ifndef ESCZ_ANSWER 79#ifndef ESCZ_ANSWER
83# define ESCZ_ANSWER VT100_ANS /* obsolete ANSI ESC[c */ 80# define ESCZ_ANSWER VT100_ANS /* obsolete ANSI ESC[c */
84#endif 81#endif
85 82
86#include "command.intpro" /* PROTOS for internal routines */
87#endif /* _COMMAND_H_ */ 83#endif /* _COMMAND_H_ */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines