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.377 by root, Sat May 30 08:51:23 2009 UTC vs.
Revision 1.404 by sf-exg, Sun Apr 18 11:06:46 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 */
251# define COLORTERMENVFULL COLORTERMENV "-xpm" 247# define COLORTERMENVFULL COLORTERMENV "-xpm"
252#else 248#else
253# define COLORTERMENVFULL COLORTERMENV 249# define COLORTERMENVFULL COLORTERMENV
254#endif 250#endif
255#ifndef TERMENV 251#ifndef TERMENV
252# ifdef USE_256_COLORS
253# define TERMENV "rxvt-unicode-256color"
254# else
256# define TERMENV "rxvt-unicode" 255# define TERMENV "rxvt-unicode"
256# endif
257#endif 257#endif
258 258
259#if defined (NO_MOUSE_REPORT) && !defined (NO_MOUSE_REPORT_SCROLLBAR) 259#if defined (NO_MOUSE_REPORT) && !defined (NO_MOUSE_REPORT_SCROLLBAR)
260# define NO_MOUSE_REPORT_SCROLLBAR 1 260# define NO_MOUSE_REPORT_SCROLLBAR 1
261#endif 261#endif
308enum { 308enum {
309 PRIMARY = 0, 309 PRIMARY = 0,
310 SECONDARY, 310 SECONDARY,
311}; 311};
312 312
313// define various rendition bits and masks. the rendition word
314// is 32 bits in size, and we should use it as efficiently as possible
315
313#define RS_None 0 316#define RS_None 0
314 317
315#define RS_fgMask 0x0000007fUL // 128 colors 318// GET_BGATTR depends on RS_fgShift > RS_bgShift
316#define RS_bgMask 0x00003f80UL // 128 colors 319#define RS_colorMask ((1UL << Color_Bits) - 1UL)
320#define RS_bgShift 0
321#define RS_fgShift (RS_bgShift + Color_Bits)
322#define RS_bgMask (RS_colorMask << RS_bgShift)
323#define RS_fgMask (RS_colorMask << RS_fgShift)
324
325// must have space for rxvt_fontset::fontCount * 2 + 2 values
326#define RS_fontShift (RS_fgShift + Color_Bits)
327#define RS_Careful (1UL << RS_fontShift) /* be careful when drawing these */
328#define RS_fontMask ((rxvt_fontset::fontCount << (RS_fontShift + 1)) | RS_Careful) // includes RS_Careful
329
330// toggle this to force redraw, must be != RS_Careful and otherwise "pretty neutral"
331#define RS_redraw (2UL << RS_fontShift)
332
333#define RS_Sel (1UL << 22)
334
335// 5 custom bits for extensions
336#define RS_customCount 16UL
337#define RS_customShift 23
338#define RS_customMask ((RS_customCount - 1UL) << RS_customShift)
317 339
318// font styles 340// font styles
319#define RS_Bold 0x00004000UL // value 1 341#define RS_Bold (1UL << RS_styleShift)
320#define RS_Italic 0x00008000UL // value 2 342#define RS_Italic (2UL << RS_styleShift)
343
344#define RS_styleCount 4
345#define RS_styleShift 27
346#define RS_styleMask (RS_Bold | RS_Italic)
321 347
322// fake styles 348// fake styles
323#define RS_Blink 0x00010000UL // blink 349#define RS_Blink (1UL << 29)
324#define RS_RVid 0x00020000UL // reverse video 350#define RS_RVid (1UL << 30) // reverse video
325#define RS_Uline 0x00040000UL // underline 351#define RS_Uline (1UL << 31) // underline
326
327// toggle this to force redraw, must be != RS_Careful
328#define RS_redraw 0x01000000UL
329
330// 5 custom bits for extensions
331#define RS_customCount 32
332#define RS_customMask 0x00f80000UL
333#define RS_customShift 19
334
335// other flags
336#define RS_Careful 0x80000000UL /* be careful when drawing these */
337
338#define RS_styleCount 4
339#define RS_styleMask (RS_Bold | RS_Italic)
340#define RS_styleShift 14
341 352
342#define RS_baseattrMask (RS_Italic | RS_Bold | RS_Blink | RS_RVid | RS_Uline) 353#define RS_baseattrMask (RS_Italic | RS_Bold | RS_Blink | RS_RVid | RS_Uline)
343#define RS_attrMask (RS_baseattrMask | RS_fontMask) 354#define RS_attrMask (RS_baseattrMask | RS_fontMask)
344 355
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)) 356#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)) 357#define OVERLAY_RSTYLE (RS_None | (Color_Black << RS_fgShift) | (Color_Yellow << RS_bgShift))
351 358
352#define Sel_none 0 /* Not waiting */ 359#define Sel_none 0 /* Not waiting */
353#define Sel_normal 0x01 /* normal selection */ 360#define Sel_normal 0x01 /* normal selection */
354#define Sel_incr 0x02 /* incremental selection */ 361#define Sel_incr 0x02 /* incremental selection */
355#define Sel_direct 0x00 362#define Sel_direct 0x00
384 XTerm_Color_cursor = 12, // change actual 'Cursor' color 391 XTerm_Color_cursor = 12, // change actual 'Cursor' color
385 XTerm_Color_pointer_fg = 13, // change actual 'Pointer' fg color 392 XTerm_Color_pointer_fg = 13, // change actual 'Pointer' fg color
386 XTerm_Color_pointer_bg = 14, // change actual 'Pointer' bg color 393 XTerm_Color_pointer_bg = 14, // change actual 'Pointer' bg color
387 XTerm_Color05 = 15, // not implemented (tektronix fg) 394 XTerm_Color05 = 15, // not implemented (tektronix fg)
388 XTerm_Color06 = 16, // not implemented (tektronix bg) 395 XTerm_Color06 = 16, // not implemented (tektronix bg)
389 XTerm_Color_RV = 17, // change actual 'Highlight' color 396 XTerm_Color_HC = 17, // change actual 'Highlight' color
390 XTerm_logfile = 46, // not implemented 397 XTerm_logfile = 46, // not implemented
391 XTerm_font = 50, 398 XTerm_font = 50,
392 399
393 XTerm_konsole30 = 30, // reserved for konsole 400 XTerm_konsole30 = 30, // reserved for konsole
394 XTerm_konsole31 = 31, // reserved for konsole 401 XTerm_konsole31 = 31, // reserved for konsole
396 /* 403 /*
397 * rxvt extensions of XTerm OSCs: ESC ] Ps;Pt (ST|BEL) 404 * rxvt extensions of XTerm OSCs: ESC ] Ps;Pt (ST|BEL)
398 */ 405 */
399 406
400 // deprecated 407 // deprecated
401 Rxvt_Color_BD = 18,
402 Rxvt_Color_UL = 19,
403 Rxvt_restoreFG = 39, 408 Rxvt_restoreFG = 39,
404 Rxvt_restoreBG = 49, 409 Rxvt_restoreBG = 49,
405 410
406 Rxvt_Pixmap = 20, // new bg pixmap 411 Rxvt_Pixmap = 20, // new bg pixmap
407 Rxvt_dumpscreen = 55, // dump scrollback and all of screen 412 Rxvt_dumpscreen = 55, // dump scrollback and all of screen
461 Color_White = maxBrightCOLOR, 466 Color_White = maxBrightCOLOR,
462#else 467#else
463 Color_White = maxCOLOR, 468 Color_White = maxCOLOR,
464#endif 469#endif
465 minTermCOLOR = Color_White + 1, 470 minTermCOLOR = Color_White + 1,
471#ifndef USE_256_COLORS
466 maxTermCOLOR = Color_White + 72, 472 maxTermCOLOR = Color_White + 72,
473#else
474 maxTermCOLOR = Color_White + 240,
475#endif
467#ifndef NO_CURSORCOLOR 476#ifndef NO_CURSORCOLOR
468 Color_cursor, 477 Color_cursor,
469 Color_cursor2, 478 Color_cursor2,
470#endif 479#endif
471 Color_pointer_fg, 480 Color_pointer_fg,
480#if ENABLE_FRILLS 489#if ENABLE_FRILLS
481 Color_underline, 490 Color_underline,
482#endif 491#endif
483#ifdef OPTION_HC 492#ifdef OPTION_HC
484 Color_HC, 493 Color_HC,
494 Color_HTC,
485#endif 495#endif
486 Color_scroll, 496 Color_scroll,
487#ifdef RXVT_SCROLLBAR 497#ifdef RXVT_SCROLLBAR
488 Color_trough, 498 Color_trough,
489#endif 499#endif
501#else 511#else
502 TOTAL_COLORS = NRS_COLORS 512 TOTAL_COLORS = NRS_COLORS
503#endif 513#endif
504}; 514};
505 515
516#ifndef USE_256_COLORS
506#define Color_Bits 7 // 0 .. maxTermCOLOR 517#define Color_Bits 7 // 0 .. maxTermCOLOR
518#else
519#define Color_Bits 9 // 0 .. maxTermCOLOR
520#endif
507 521
508/* 522/*
509 * Resource list 523 * Resource list
510 */ 524 */
511enum { 525enum {
622 636
623#define LINENO(n) LINENO_of (this, n) 637#define LINENO(n) LINENO_of (this, n)
624#define ROW(n) ROW_of (this, n) 638#define ROW(n) ROW_of (this, n)
625 639
626/* how to build & extract colors and attributes */ 640/* how to build & extract colors and attributes */
627#define GET_BASEFG(x) (((x) & RS_fgMask)) 641#define GET_BASEFG(x) (((x) & RS_fgMask) >> RS_fgShift)
628#define GET_BASEBG(x) (((x) & RS_bgMask)>>Color_Bits) 642#define GET_BASEBG(x) (((x) & RS_bgMask) >> RS_bgShift)
629 643
630#define GET_FONT(x) (((x) & RS_fontMask) >> RS_fontShift) 644#define GET_FONT(x) (((x) & RS_fontMask) >> RS_fontShift)
631#define SET_FONT(x,fid) (((x) & ~RS_fontMask) | ((fid) << RS_fontShift)) 645#define SET_FONT(x,fid) (((x) & ~RS_fontMask) | ((fid) << RS_fontShift))
632 646
633#define GET_STYLE(x) (((x) & RS_styleMask) >> RS_styleShift) 647#define GET_STYLE(x) (((x) & RS_styleMask) >> RS_styleShift)
634#define SET_STYLE(x,style) (((x) & ~RS_styleMask) | ((style) << RS_styleShift)) 648#define SET_STYLE(x,style) (((x) & ~RS_styleMask) | ((style) << RS_styleShift))
635 649
636#define GET_ATTR(x) (((x) & RS_attrMask)) 650#define GET_ATTR(x) (((x) & RS_attrMask))
651// return attributes defining the background, encoding doesn't matter
652// depends on RS_fgShift > RS_bgShift
637#define GET_BGATTR(x) \ 653#define GET_BGATTR(x) \
654 (expect_false ((x) & RS_RVid) \
638 (((x) & RS_RVid) ? (((x) & (RS_attrMask & ~RS_RVid)) \ 655 ? (((x) & (RS_attrMask & ~RS_RVid)) \
639 | (((x) & RS_fgMask)<<Color_Bits)) \ 656 | (((x) & RS_fgMask) >> (RS_fgShift - RS_bgShift))) \
640 : ((x) & (RS_attrMask | RS_bgMask))) 657 : ((x) & (RS_attrMask | RS_bgMask)))
641#define SET_FGCOLOR(x,fg) (((x) & ~RS_fgMask) | (fg)) 658#define SET_FGCOLOR(x,fg) (((x) & ~RS_fgMask) | ((fg) << RS_fgShift))
642#define SET_BGCOLOR(x,bg) (((x) & ~RS_bgMask) | ((bg)<<Color_Bits)) 659#define SET_BGCOLOR(x,bg) (((x) & ~RS_bgMask) | ((bg) << RS_bgShift))
643#define SET_ATTR(x,a) (((x) & ~RS_attrMask) | (a)) 660#define SET_ATTR(x,a) (((x) & ~RS_attrMask) | (a))
644 661
645#define RS_SAME(a,b) (!(((a) ^ (b)) & ~RS_Careful)) 662#define RS_SAME(a,b) (!(((a) ^ (b)) & ~RS_Careful))
646 663
647#define PIXCOLOR_NAME(idx) rs[Rs_color + (idx)] 664#define PIXCOLOR_NAME(idx) rs[Rs_color + (idx)]
912 selection_op_t op; /* current operation */ 929 selection_op_t op; /* current operation */
913 bool rect; /* rectangular selection? */ 930 bool rect; /* rectangular selection? */
914 row_col_t beg; /* beginning of selection <= mark */ 931 row_col_t beg; /* beginning of selection <= mark */
915 row_col_t mark; /* point of initial click <= end */ 932 row_col_t mark; /* point of initial click <= end */
916 row_col_t end; /* one character past end point */ 933 row_col_t end; /* one character past end point */
934 wchar_t *clip_text; /* text copied to the clipboard */
935 unsigned int clip_len; /* length of clipboard text */
917}; 936};
918 937
919/* ------------------------------------------------------------------------- */ 938/* ------------------------------------------------------------------------- */
920 939
921/* screen_t flags */ 940/* screen_t flags */
943 scrollBar_t scrollBar; 962 scrollBar_t scrollBar;
944 uint8_t options[(Opt_count + 7) >> 3]; 963 uint8_t options[(Opt_count + 7) >> 3];
945 XSizeHints szHint; 964 XSizeHints szHint;
946 rxvt_color *pix_colors; 965 rxvt_color *pix_colors;
947 Cursor TermWin_cursor; /* cursor for vt window */ 966 Cursor TermWin_cursor; /* cursor for vt window */
948 int numlock_state;
949 line_t *row_buf; // all lines, scrollback + terminal, circular, followed by temp_buf 967 line_t *row_buf; // all lines, scrollback + terminal, circular, followed by temp_buf
950 line_t *drawn_buf; // text on screen 968 line_t *drawn_buf; // text on screen
951 line_t *swap_buf; // lines for swap buffer 969 line_t *swap_buf; // lines for swap buffer
952 char *tabs; /* per location: 1 == tab-stop */ 970 char *tabs; /* per location: 1 == tab-stop */
953 screen_t screen; 971 screen_t screen;
988 hidden_text:1, 1006 hidden_text:1,
989#endif 1007#endif
990#if POINTER_BLANK 1008#if POINTER_BLANK
991 hidden_pointer:1, 1009 hidden_pointer:1,
992#endif 1010#endif
993 enc_utf8:1, /* wether locale uses utf-8 */ 1011 enc_utf8:1, /* whether locale uses utf-8 */
994 seen_input:1, /* wether we have seen some program output yet */ 1012 seen_input:1, /* whether we have seen some program output yet */
995 seen_resize:1, /* wether we had a resize event */ 1013 seen_resize:1, /* whether we had a resize event */
996 parsed_geometry:1; 1014 parsed_geometry:1;
997 1015
998 unsigned char refresh_type, 1016 unsigned char refresh_type,
999#ifdef META8_OPTION 1017#ifdef META8_OPTION
1000 meta_char, /* Alt-key prefix */ 1018 meta_char, /* Alt-key prefix */
1004/* ---------- */ 1022/* ---------- */
1005 bool rvideo_state, rvideo_mode; 1023 bool rvideo_state, rvideo_mode;
1006#ifndef NO_BELL 1024#ifndef NO_BELL
1007 bool rvideo_bell; 1025 bool rvideo_bell;
1008#endif 1026#endif
1009 int num_scr; /* screen: number lines scrolled */ 1027 int num_scr; /* screen: number of lines scrolled */
1010 int prev_ncol, /* screen: previous number of columns */ 1028 int prev_ncol, /* screen: previous number of columns */
1011 prev_nrow; /* screen: previous number of rows */ 1029 prev_nrow; /* screen: previous number of rows */
1012/* ---------- */ 1030/* ---------- */
1013 rend_t rstyle; 1031 rend_t rstyle;
1014/* ---------- */ 1032/* ---------- */
1044 SavedModes; 1062 SavedModes;
1045/* ---------- */ 1063/* ---------- */
1046 Atom *xa; 1064 Atom *xa;
1047/* ---------- */ 1065/* ---------- */
1048 Time selection_time, 1066 Time selection_time,
1049 selection_request_time; 1067 selection_request_time,
1068 clipboard_time;
1050 pid_t cmd_pid; /* process id of child */ 1069 pid_t cmd_pid; /* process id of child */
1051 char * incr_buf; 1070 char * incr_buf;
1052 size_t incr_buf_size, incr_buf_fill; 1071 size_t incr_buf_size, incr_buf_fill;
1053/* ---------- */ 1072/* ---------- */
1054 struct mouse_event MEvent; 1073 struct mouse_event MEvent;
1451 void selection_check (int check_more) NOTHROW; 1470 void selection_check (int check_more) NOTHROW;
1452 void selection_paste (Window win, Atom prop, bool delete_prop) NOTHROW; 1471 void selection_paste (Window win, Atom prop, bool delete_prop) NOTHROW;
1453 void selection_property (Window win, Atom prop) NOTHROW; 1472 void selection_property (Window win, Atom prop) NOTHROW;
1454 void selection_request (Time tm, int selnum = Sel_Primary) NOTHROW; 1473 void selection_request (Time tm, int selnum = Sel_Primary) NOTHROW;
1455 int selection_request_other (Atom target, int selnum) NOTHROW; 1474 int selection_request_other (Atom target, int selnum) NOTHROW;
1456 void selection_clear () NOTHROW; 1475 void selection_clear (bool clipboard = false) NOTHROW;
1476 void clipboard_copy (Time tm);
1457 void selection_make (Time tm); 1477 void selection_make (Time tm);
1458 bool selection_grab (Time tm) NOTHROW; 1478 bool selection_grab (Time tm, bool clipboard = false) NOTHROW;
1459 void selection_start_colrow (int col, int row) NOTHROW; 1479 void selection_start_colrow (int col, int row) NOTHROW;
1460 void selection_delimit_word (enum page_dirn dirn, const row_col_t *mark, row_col_t *ret) NOTHROW; 1480 void selection_delimit_word (enum page_dirn dirn, const row_col_t *mark, row_col_t *ret) NOTHROW;
1461 void selection_extend_colrow (int32_t col, int32_t row, int button3, int buttonpress, int clickchange) NOTHROW; 1481 void selection_extend_colrow (int32_t col, int32_t row, int button3, int buttonpress, int clickchange) NOTHROW;
1462 void selection_remove_trailing_spaces () NOTHROW; 1482 void selection_remove_trailing_spaces () NOTHROW;
1463 void selection_send (const XSelectionRequestEvent &rq) NOTHROW; 1483 void selection_send (const XSelectionRequestEvent &rq) NOTHROW;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines