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

Comparing rxvt-unicode/src/rxvt.h (file contents):
Revision 1.374 by root, Wed Nov 12 02:37:58 2008 UTC vs.
Revision 1.391 by sf-exg, Thu Apr 1 00:12:33 2010 UTC

110 110
111#ifndef STDIN_FILENO 111#ifndef STDIN_FILENO
112# define STDIN_FILENO 0 112# define STDIN_FILENO 0
113# define STDOUT_FILENO 1 113# define STDOUT_FILENO 1
114# define STDERR_FILENO 2 114# define STDERR_FILENO 2
115#endif
116
117#if !defined (EACCESS) && defined(EAGAIN)
118# define EACCESS EAGAIN
119#endif 115#endif
120 116
121#ifndef EXIT_SUCCESS /* missing from <stdlib.h> */ 117#ifndef EXIT_SUCCESS /* missing from <stdlib.h> */
122# define EXIT_SUCCESS 0 /* exit function success */ 118# define EXIT_SUCCESS 0 /* exit function success */
123# define EXIT_FAILURE 1 /* exit function failure */ 119# define EXIT_FAILURE 1 /* exit function failure */
151char * rxvt_wcstombs (const wchar_t *str, int len = -1); 147char * rxvt_wcstombs (const wchar_t *str, int len = -1);
152wchar_t * rxvt_mbstowcs (const char *str, int len = -1); 148wchar_t * rxvt_mbstowcs (const char *str, int len = -1);
153char * rxvt_wcstoutf8 (const wchar_t *str, int len = -1); 149char * rxvt_wcstoutf8 (const wchar_t *str, int len = -1);
154wchar_t * rxvt_utf8towcs (const char *str, int len = -1); 150wchar_t * rxvt_utf8towcs (const char *str, int len = -1);
155 151
156char * rxvt_basename (const char *str) NOTHROW; 152const char * rxvt_basename (const char *str) NOTHROW;
157void rxvt_vlog (const char *fmt, va_list arg_ptr) NOTHROW; 153void rxvt_vlog (const char *fmt, va_list arg_ptr) NOTHROW;
158void rxvt_log (const char *fmt,...) NOTHROW; 154void rxvt_log (const char *fmt,...) NOTHROW;
159void rxvt_warn (const char *fmt,...) NOTHROW; 155void rxvt_warn (const char *fmt,...) NOTHROW;
160void rxvt_fatal (const char *fmt, ...) THROW ((class rxvt_failure_exception)) NORETURN; 156void rxvt_fatal (const char *fmt, ...) THROW ((class rxvt_failure_exception)) NORETURN;
161void rxvt_exit_failure () THROW ((class rxvt_failure_exception)) NORETURN; 157void rxvt_exit_failure () THROW ((class rxvt_failure_exception)) NORETURN;
310 SECONDARY, 306 SECONDARY,
311}; 307};
312 308
313#define RS_None 0 309#define RS_None 0
314 310
315#define RS_fgMask 0x0000007fUL // 128 colors 311#ifndef USE_256_COLORS
316#define RS_bgMask 0x00003f80UL // 128 colors 312#define RS_colorMask 0x0000007fUL // 128 colors
313#else
314#define RS_colorMask 0x000001ffUL
315#endif
316#define RS_fgShift 0
317#define RS_bgShift Color_Bits
318#define RS_fgMask (RS_colorMask << RS_fgShift)
319#define RS_bgMask (RS_colorMask << RS_bgShift)
317 320
318// font styles 321// font styles
319#define RS_Bold 0x00004000UL // value 1 322#define RS_Bold 0x08000000UL // value 1
320#define RS_Italic 0x00008000UL // value 2 323#define RS_Italic 0x10000000UL // value 2
321 324
322// fake styles 325// fake styles
323#define RS_Blink 0x00010000UL // blink 326#define RS_Blink 0x20000000UL // blink
324#define RS_RVid 0x00020000UL // reverse video 327#define RS_RVid 0x40000000UL // reverse video
325#define RS_Uline 0x00040000UL // underline 328#define RS_Uline 0x80000000UL // underline
326
327// toggle this to force redraw, must be != RS_Careful
328#define RS_redraw 0x01000000UL
329 329
330// 5 custom bits for extensions 330// 5 custom bits for extensions
331#define RS_customCount 32 331#define RS_customCount 16
332#define RS_customMask 0x00f80000UL 332#define RS_customMask 0x07800000UL
333#define RS_customShift 19 333#define RS_customShift 23
334 334
335// other flags 335// must have space for rxvt_fontset::fontCount * 2 + 2 values
336#define RS_fontMask 0x007c0000UL // includes RS_Careful
337#define RS_fontShift 18
336#define RS_Careful 0x80000000UL /* be careful when drawing these */ 338#define RS_Careful 0x00010000UL /* be careful when drawing these */
339
340// toggle this to force redraw, must be != RS_Careful and otherwise "pretty neutral"
341#define RS_redraw 0x00020000UL
337 342
338#define RS_styleCount 4 343#define RS_styleCount 4
339#define RS_styleMask (RS_Bold | RS_Italic) 344#define RS_styleMask (RS_Bold | RS_Italic)
340#define RS_styleShift 14 345#define RS_styleShift 27
341 346
342#define RS_baseattrMask (RS_Italic | RS_Bold | RS_Blink | RS_RVid | RS_Uline) 347#define RS_baseattrMask (RS_Italic | RS_Bold | RS_Blink | RS_RVid | RS_Uline)
343#define RS_attrMask (RS_baseattrMask | RS_fontMask) 348#define RS_attrMask (RS_baseattrMask | RS_fontMask)
344 349
345#define RS_fontCount 127 // not 127 or 256, see rxvtfont.h
346#define RS_fontMask 0xff000000UL // plenty(?) of fonts, includes RS_Careful
347#define RS_fontShift 24
348
349#define DEFAULT_RSTYLE (RS_None | Color_fg | (Color_bg << Color_Bits)) 350#define DEFAULT_RSTYLE (RS_None | (Color_fg << RS_fgShift) | (Color_bg << RS_bgShift))
350#define OVERLAY_RSTYLE (RS_None | Color_Black | (Color_Yellow << Color_Bits)) 351#define OVERLAY_RSTYLE (RS_None | (Color_Black << RS_fgShift) | (Color_Yellow << RS_bgShift))
351 352
352#define Sel_none 0 /* Not waiting */ 353#define Sel_none 0 /* Not waiting */
353#define Sel_normal 0x01 /* normal selection */ 354#define Sel_normal 0x01 /* normal selection */
354#define Sel_incr 0x02 /* incremental selection */ 355#define Sel_incr 0x02 /* incremental selection */
355#define Sel_direct 0x00 356#define Sel_direct 0x00
461 Color_White = maxBrightCOLOR, 462 Color_White = maxBrightCOLOR,
462#else 463#else
463 Color_White = maxCOLOR, 464 Color_White = maxCOLOR,
464#endif 465#endif
465 minTermCOLOR = Color_White + 1, 466 minTermCOLOR = Color_White + 1,
467#ifndef USE_256_COLORS
466 maxTermCOLOR = Color_White + 72, 468 maxTermCOLOR = Color_White + 72,
469#else
470 maxTermCOLOR = Color_White + 240,
471#endif
467#ifndef NO_CURSORCOLOR 472#ifndef NO_CURSORCOLOR
468 Color_cursor, 473 Color_cursor,
469 Color_cursor2, 474 Color_cursor2,
470#endif 475#endif
471 Color_pointer_fg, 476 Color_pointer_fg,
501#else 506#else
502 TOTAL_COLORS = NRS_COLORS 507 TOTAL_COLORS = NRS_COLORS
503#endif 508#endif
504}; 509};
505 510
511#ifndef USE_256_COLORS
506#define Color_Bits 7 // 0 .. maxTermCOLOR 512#define Color_Bits 7 // 0 .. maxTermCOLOR
513#else
514#define Color_Bits 9 // 0 .. maxTermCOLOR
515#endif
507 516
508/* 517/*
509 * Resource list 518 * Resource list
510 */ 519 */
511enum { 520enum {
622 631
623#define LINENO(n) LINENO_of (this, n) 632#define LINENO(n) LINENO_of (this, n)
624#define ROW(n) ROW_of (this, n) 633#define ROW(n) ROW_of (this, n)
625 634
626/* how to build & extract colors and attributes */ 635/* how to build & extract colors and attributes */
627#define GET_BASEFG(x) (((x) & RS_fgMask)) 636#define GET_BASEFG(x) (((x) & RS_fgMask) >> RS_fgShift)
628#define GET_BASEBG(x) (((x) & RS_bgMask)>>Color_Bits) 637#define GET_BASEBG(x) (((x) & RS_bgMask) >> RS_bgShift)
629 638
630#define GET_FONT(x) (((x) & RS_fontMask) >> RS_fontShift) 639#define GET_FONT(x) (((x) & RS_fontMask) >> RS_fontShift)
631#define SET_FONT(x,fid) (((x) & ~RS_fontMask) | ((fid) << RS_fontShift)) 640#define SET_FONT(x,fid) (((x) & ~RS_fontMask) | ((fid) << RS_fontShift))
632 641
633#define GET_STYLE(x) (((x) & RS_styleMask) >> RS_styleShift) 642#define GET_STYLE(x) (((x) & RS_styleMask) >> RS_styleShift)
634#define SET_STYLE(x,style) (((x) & ~RS_styleMask) | ((style) << RS_styleShift)) 643#define SET_STYLE(x,style) (((x) & ~RS_styleMask) | ((style) << RS_styleShift))
635 644
636#define GET_ATTR(x) (((x) & RS_attrMask)) 645#define GET_ATTR(x) (((x) & RS_attrMask))
637#define GET_BGATTR(x) \ 646#define GET_BGATTR(x) \
638 (((x) & RS_RVid) ? (((x) & (RS_attrMask & ~RS_RVid)) \ 647 (((x) & RS_RVid) ? (((x) & (RS_attrMask & ~RS_RVid)) \
639 | (((x) & RS_fgMask)<<Color_Bits)) \ 648 | (((x) & RS_colorMask) << RS_bgShift)) \
640 : ((x) & (RS_attrMask | RS_bgMask))) 649 : ((x) & (RS_attrMask | RS_bgMask)))
641#define SET_FGCOLOR(x,fg) (((x) & ~RS_fgMask) | (fg)) 650#define SET_FGCOLOR(x,fg) (((x) & ~RS_fgMask) | ((fg) << RS_fgShift))
642#define SET_BGCOLOR(x,bg) (((x) & ~RS_bgMask) | ((bg)<<Color_Bits)) 651#define SET_BGCOLOR(x,bg) (((x) & ~RS_bgMask) | ((bg) << RS_bgShift))
643#define SET_ATTR(x,a) (((x) & ~RS_attrMask) | (a)) 652#define SET_ATTR(x,a) (((x) & ~RS_attrMask) | (a))
644 653
645#define RS_SAME(a,b) (!(((a) ^ (b)) & ~RS_Careful)) 654#define RS_SAME(a,b) (!(((a) ^ (b)) & ~RS_Careful))
646 655
647#define PIXCOLOR_NAME(idx) rs[Rs_color + (idx)] 656#define PIXCOLOR_NAME(idx) rs[Rs_color + (idx)]
847 int focus; /* window has focus */ 856 int focus; /* window has focus */
848 int mapped; /* window state mapped? */ 857 int mapped; /* window state mapped? */
849 int int_bwidth; /* internal border width */ 858 int int_bwidth; /* internal border width */
850 int ext_bwidth; /* external border width */ 859 int ext_bwidth; /* external border width */
851 int lineSpace; /* number of extra pixels between rows */ 860 int lineSpace; /* number of extra pixels between rows */
861 int letterSpace; /* number of extra pixels between columns */
852 int saveLines; /* number of lines that fit in scrollback */ 862 int saveLines; /* number of lines that fit in scrollback */
853 int total_rows; /* total number of rows in this terminal */ 863 int total_rows; /* total number of rows in this terminal */
854 int term_start; /* term lines start here */ 864 int term_start; /* term lines start here */
855 int view_start; /* scrollback view starts here */ 865 int view_start; /* scrollback view starts here */
856 int top_row; /* topmost row index of scrollback */ 866 int top_row; /* topmost row index of scrollback */
911 selection_op_t op; /* current operation */ 921 selection_op_t op; /* current operation */
912 bool rect; /* rectangular selection? */ 922 bool rect; /* rectangular selection? */
913 row_col_t beg; /* beginning of selection <= mark */ 923 row_col_t beg; /* beginning of selection <= mark */
914 row_col_t mark; /* point of initial click <= end */ 924 row_col_t mark; /* point of initial click <= end */
915 row_col_t end; /* one character past end point */ 925 row_col_t end; /* one character past end point */
926 wchar_t *clip_text; /* text copied to the clipboard */
927 unsigned int clip_len; /* length of clipboard text */
916}; 928};
917 929
918/* ------------------------------------------------------------------------- */ 930/* ------------------------------------------------------------------------- */
919 931
920/* screen_t flags */ 932/* screen_t flags */
987 hidden_text:1, 999 hidden_text:1,
988#endif 1000#endif
989#if POINTER_BLANK 1001#if POINTER_BLANK
990 hidden_pointer:1, 1002 hidden_pointer:1,
991#endif 1003#endif
992 enc_utf8:1, /* wether locale uses utf-8 */ 1004 enc_utf8:1, /* whether locale uses utf-8 */
993 seen_input:1, /* wether we have seen some program output yet */ 1005 seen_input:1, /* whether we have seen some program output yet */
994 seen_resize:1, /* wether we had a resize event */ 1006 seen_resize:1, /* whether we had a resize event */
995 parsed_geometry:1; 1007 parsed_geometry:1;
996 1008
997 unsigned char refresh_type, 1009 unsigned char refresh_type,
998#ifdef META8_OPTION 1010#ifdef META8_OPTION
999 meta_char, /* Alt-key prefix */ 1011 meta_char, /* Alt-key prefix */
1003/* ---------- */ 1015/* ---------- */
1004 bool rvideo_state, rvideo_mode; 1016 bool rvideo_state, rvideo_mode;
1005#ifndef NO_BELL 1017#ifndef NO_BELL
1006 bool rvideo_bell; 1018 bool rvideo_bell;
1007#endif 1019#endif
1008 int num_scr; /* screen: number lines scrolled */ 1020 int num_scr; /* screen: number of lines scrolled */
1009 int prev_ncol, /* screen: previous number of columns */ 1021 int prev_ncol, /* screen: previous number of columns */
1010 prev_nrow; /* screen: previous number of rows */ 1022 prev_nrow; /* screen: previous number of rows */
1011/* ---------- */ 1023/* ---------- */
1012 rend_t rstyle; 1024 rend_t rstyle;
1013/* ---------- */ 1025/* ---------- */
1043 SavedModes; 1055 SavedModes;
1044/* ---------- */ 1056/* ---------- */
1045 Atom *xa; 1057 Atom *xa;
1046/* ---------- */ 1058/* ---------- */
1047 Time selection_time, 1059 Time selection_time,
1048 selection_request_time; 1060 selection_request_time,
1061 clipboard_time;
1049 pid_t cmd_pid; /* process id of child */ 1062 pid_t cmd_pid; /* process id of child */
1050 char * incr_buf; 1063 char * incr_buf;
1051 size_t incr_buf_size, incr_buf_fill; 1064 size_t incr_buf_size, incr_buf_fill;
1052/* ---------- */ 1065/* ---------- */
1053 struct mouse_event MEvent; 1066 struct mouse_event MEvent;
1254 void process_window_ops (const int *args, unsigned int nargs); 1267 void process_window_ops (const int *args, unsigned int nargs);
1255 char *get_to_st (unicode_t &ends_how); 1268 char *get_to_st (unicode_t &ends_how);
1256 void process_dcs_seq (); 1269 void process_dcs_seq ();
1257 void process_osc_seq (); 1270 void process_osc_seq ();
1258 void process_color_seq (int report, int color, const char *str, char resp); 1271 void process_color_seq (int report, int color, const char *str, char resp);
1259 void process_xterm_seq (int op, const char *str, char resp); 1272 void process_xterm_seq (int op, char *str, char resp);
1260 int privcases (int mode, unsigned long bit); 1273 int privcases (int mode, unsigned long bit);
1261 void process_terminal_mode (int mode, int priv, unsigned int nargs, const int *arg); 1274 void process_terminal_mode (int mode, int priv, unsigned int nargs, const int *arg);
1262 void process_sgr_mode (unsigned int nargs, const int *arg); 1275 void process_sgr_mode (unsigned int nargs, const int *arg);
1263 void process_graphics (); 1276 void process_graphics ();
1264 // init.C 1277 // init.C
1450 void selection_check (int check_more) NOTHROW; 1463 void selection_check (int check_more) NOTHROW;
1451 void selection_paste (Window win, Atom prop, bool delete_prop) NOTHROW; 1464 void selection_paste (Window win, Atom prop, bool delete_prop) NOTHROW;
1452 void selection_property (Window win, Atom prop) NOTHROW; 1465 void selection_property (Window win, Atom prop) NOTHROW;
1453 void selection_request (Time tm, int selnum = Sel_Primary) NOTHROW; 1466 void selection_request (Time tm, int selnum = Sel_Primary) NOTHROW;
1454 int selection_request_other (Atom target, int selnum) NOTHROW; 1467 int selection_request_other (Atom target, int selnum) NOTHROW;
1455 void selection_clear () NOTHROW; 1468 void selection_clear (bool clipboard = false) NOTHROW;
1469 void clipboard_copy (Time tm);
1456 void selection_make (Time tm); 1470 void selection_make (Time tm);
1457 bool selection_grab (Time tm) NOTHROW; 1471 bool selection_grab (Time tm, bool clipboard = false) NOTHROW;
1458 void selection_start_colrow (int col, int row) NOTHROW; 1472 void selection_start_colrow (int col, int row) NOTHROW;
1459 void selection_delimit_word (enum page_dirn dirn, const row_col_t *mark, row_col_t *ret) NOTHROW; 1473 void selection_delimit_word (enum page_dirn dirn, const row_col_t *mark, row_col_t *ret) NOTHROW;
1460 void selection_extend_colrow (int32_t col, int32_t row, int button3, int buttonpress, int clickchange) NOTHROW; 1474 void selection_extend_colrow (int32_t col, int32_t row, int button3, int buttonpress, int clickchange) NOTHROW;
1461 void selection_remove_trailing_spaces () NOTHROW; 1475 void selection_remove_trailing_spaces () NOTHROW;
1462 void selection_send (const XSelectionRequestEvent &rq) NOTHROW; 1476 void selection_send (const XSelectionRequestEvent &rq) NOTHROW;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines