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.10 by root, Mon Jul 26 18:01:19 2004 UTC vs.
Revision 1.22 by root, Thu Feb 20 18:59:13 2014 UTC

1/* 1/*
2 * $Id: command.h,v 1.10 2004/07/26 18:01:19 root 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.
9#define STRING_MAX 2048 /* max string size for process_rxvt_xterm_seq() */
10
11#define ESC_ARGS 32 /* max # of args for esc sequences */ 8#define ESC_ARGS 32 /* max # of args for esc sequences */
12
13#ifdef OFFIX_DND
14# define DndFile 2
15# define DndDir 5
16# define DndLink 7
17#endif
18
19/* a large REFRESH_PERIOD causes problems with `cat' */
20#define REFRESH_PERIOD 2
21 9
22#ifndef MULTICLICK_TIME 10#ifndef MULTICLICK_TIME
23# define MULTICLICK_TIME 500 11# define MULTICLICK_TIME 500
24#endif 12#endif
25#ifndef SCROLLBAR_INITIAL_DELAY 13#ifndef SCROLLBAR_INITIAL_DELAY
27#endif 15#endif
28#ifndef SCROLLBAR_CONTINUOUS_DELAY 16#ifndef SCROLLBAR_CONTINUOUS_DELAY
29# define SCROLLBAR_CONTINUOUS_DELAY 0.05 17# define SCROLLBAR_CONTINUOUS_DELAY 0.05
30#endif 18#endif
31 19
32/*
33 * key-strings: if only these keys were standardized <sigh>
34 */
35#ifdef LINUX_KEYS
36# define KS_HOME "\033[1~" /* Home == Find */
37# define KS_END "\033[4~" /* End == Select */
38#else
39# define KS_HOME "\033[7~" /* Home */
40# define KS_END "\033[8~" /* End */
41#endif
42
43#ifdef SCROLL_ON_SHIFT 20#ifdef SCROLL_ON_SHIFT
44# define SCROLL_SHIFTKEY (shft) 21# define SCROLL_SHIFTKEY (shft)
22# define NOSCROLL_SHIFTKEY 0
45#else 23#else
46# define SCROLL_SHIFTKEY 0 24# define SCROLL_SHIFTKEY 0
25# define NOSCROLL_SHIFTKEY (shft)
47#endif 26#endif
48#ifdef SCROLL_ON_CTRL 27#ifdef SCROLL_ON_CTRL
49# define SCROLL_CTRLKEY (ctrl) 28# define SCROLL_CTRLKEY (ctrl)
29# define NOSCROLL_CTRLKEY 0
50#else 30#else
51# define SCROLL_CTRLKEY 0 31# define SCROLL_CTRLKEY 0
32# define NOSCROLL_CTRLKEY (ctrl)
52#endif 33#endif
53#ifdef SCROLL_ON_META 34#ifdef SCROLL_ON_META
54# define SCROLL_METAKEY (meta) 35# define SCROLL_METAKEY (meta)
36# define NOSCROLL_METAKEY 0
55#else 37#else
56# define SCROLL_METAKEY 0 38# define SCROLL_METAKEY 0
39# define NOSCROLL_METAKEY (meta)
57#endif 40#endif
58#define IS_SCROLL_MOD (SCROLL_SHIFTKEY || SCROLL_CTRLKEY || SCROLL_METAKEY) 41#define IS_SCROLL_MOD ((SCROLL_SHIFTKEY || SCROLL_CTRLKEY || SCROLL_METAKEY) \
42 && (!NOSCROLL_SHIFTKEY && !NOSCROLL_CTRLKEY && !NOSCROLL_METAKEY))
43
59 44
60/* 45/*
61 * ESC-Z processing: 46 * ESC-Z processing:
62 * 47 *
63 * By stealing a sequence to which other xterms respond, and sending the 48 * By stealing a sequence to which other xterms respond, and sending the
79#define VT100_ANS "\033[?1;2c" /* vt100 answerback */ 64#define VT100_ANS "\033[?1;2c" /* vt100 answerback */
80#ifndef ESCZ_ANSWER 65#ifndef ESCZ_ANSWER
81# define ESCZ_ANSWER VT100_ANS /* obsolete ANSI ESC[c */ 66# define ESCZ_ANSWER VT100_ANS /* obsolete ANSI ESC[c */
82#endif 67#endif
83 68
84#include "command.intpro" /* PROTOS for internal routines */
85#endif /* _COMMAND_H_ */ 69#endif /* _COMMAND_H_ */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines