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.382 by root, Tue Mar 30 22:46:25 2010 UTC vs.
Revision 1.391 by sf-exg, Thu Apr 1 00:12:33 2010 UTC

306 SECONDARY, 306 SECONDARY,
307}; 307};
308 308
309#define RS_None 0 309#define RS_None 0
310 310
311#define RS_fgMask 0x0000007fUL // 128 colors 311#ifndef USE_256_COLORS
312#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)
313 320
314// font styles 321// font styles
315#define RS_Bold 0x00004000UL // value 1 322#define RS_Bold 0x08000000UL // value 1
316#define RS_Italic 0x00008000UL // value 2 323#define RS_Italic 0x10000000UL // value 2
317 324
318// fake styles 325// fake styles
319#define RS_Blink 0x00010000UL // blink 326#define RS_Blink 0x20000000UL // blink
320#define RS_RVid 0x00020000UL // reverse video 327#define RS_RVid 0x40000000UL // reverse video
321#define RS_Uline 0x00040000UL // underline 328#define RS_Uline 0x80000000UL // underline
322
323// toggle this to force redraw, must be != RS_Careful
324#define RS_redraw 0x01000000UL
325 329
326// 5 custom bits for extensions 330// 5 custom bits for extensions
327#define RS_customCount 32 331#define RS_customCount 16
328#define RS_customMask 0x00f80000UL 332#define RS_customMask 0x07800000UL
329#define RS_customShift 19 333#define RS_customShift 23
330 334
331// 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
332#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
333 342
334#define RS_styleCount 4 343#define RS_styleCount 4
335#define RS_styleMask (RS_Bold | RS_Italic) 344#define RS_styleMask (RS_Bold | RS_Italic)
336#define RS_styleShift 14 345#define RS_styleShift 27
337 346
338#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)
339#define RS_attrMask (RS_baseattrMask | RS_fontMask) 348#define RS_attrMask (RS_baseattrMask | RS_fontMask)
340 349
341#define RS_fontCount rxvt_fontset::fontCount
342#define RS_fontMask 0xff000000UL // plenty(?) of fonts, includes RS_Careful
343#define RS_fontShift 24
344
345#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))
346#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))
347 352
348#define Sel_none 0 /* Not waiting */ 353#define Sel_none 0 /* Not waiting */
349#define Sel_normal 0x01 /* normal selection */ 354#define Sel_normal 0x01 /* normal selection */
350#define Sel_incr 0x02 /* incremental selection */ 355#define Sel_incr 0x02 /* incremental selection */
351#define Sel_direct 0x00 356#define Sel_direct 0x00
457 Color_White = maxBrightCOLOR, 462 Color_White = maxBrightCOLOR,
458#else 463#else
459 Color_White = maxCOLOR, 464 Color_White = maxCOLOR,
460#endif 465#endif
461 minTermCOLOR = Color_White + 1, 466 minTermCOLOR = Color_White + 1,
467#ifndef USE_256_COLORS
462 maxTermCOLOR = Color_White + 72, 468 maxTermCOLOR = Color_White + 72,
469#else
470 maxTermCOLOR = Color_White + 240,
471#endif
463#ifndef NO_CURSORCOLOR 472#ifndef NO_CURSORCOLOR
464 Color_cursor, 473 Color_cursor,
465 Color_cursor2, 474 Color_cursor2,
466#endif 475#endif
467 Color_pointer_fg, 476 Color_pointer_fg,
497#else 506#else
498 TOTAL_COLORS = NRS_COLORS 507 TOTAL_COLORS = NRS_COLORS
499#endif 508#endif
500}; 509};
501 510
511#ifndef USE_256_COLORS
502#define Color_Bits 7 // 0 .. maxTermCOLOR 512#define Color_Bits 7 // 0 .. maxTermCOLOR
513#else
514#define Color_Bits 9 // 0 .. maxTermCOLOR
515#endif
503 516
504/* 517/*
505 * Resource list 518 * Resource list
506 */ 519 */
507enum { 520enum {
618 631
619#define LINENO(n) LINENO_of (this, n) 632#define LINENO(n) LINENO_of (this, n)
620#define ROW(n) ROW_of (this, n) 633#define ROW(n) ROW_of (this, n)
621 634
622/* how to build & extract colors and attributes */ 635/* how to build & extract colors and attributes */
623#define GET_BASEFG(x) (((x) & RS_fgMask)) 636#define GET_BASEFG(x) (((x) & RS_fgMask) >> RS_fgShift)
624#define GET_BASEBG(x) (((x) & RS_bgMask)>>Color_Bits) 637#define GET_BASEBG(x) (((x) & RS_bgMask) >> RS_bgShift)
625 638
626#define GET_FONT(x) (((x) & RS_fontMask) >> RS_fontShift) 639#define GET_FONT(x) (((x) & RS_fontMask) >> RS_fontShift)
627#define SET_FONT(x,fid) (((x) & ~RS_fontMask) | ((fid) << RS_fontShift)) 640#define SET_FONT(x,fid) (((x) & ~RS_fontMask) | ((fid) << RS_fontShift))
628 641
629#define GET_STYLE(x) (((x) & RS_styleMask) >> RS_styleShift) 642#define GET_STYLE(x) (((x) & RS_styleMask) >> RS_styleShift)
630#define SET_STYLE(x,style) (((x) & ~RS_styleMask) | ((style) << RS_styleShift)) 643#define SET_STYLE(x,style) (((x) & ~RS_styleMask) | ((style) << RS_styleShift))
631 644
632#define GET_ATTR(x) (((x) & RS_attrMask)) 645#define GET_ATTR(x) (((x) & RS_attrMask))
633#define GET_BGATTR(x) \ 646#define GET_BGATTR(x) \
634 (((x) & RS_RVid) ? (((x) & (RS_attrMask & ~RS_RVid)) \ 647 (((x) & RS_RVid) ? (((x) & (RS_attrMask & ~RS_RVid)) \
635 | (((x) & RS_fgMask)<<Color_Bits)) \ 648 | (((x) & RS_colorMask) << RS_bgShift)) \
636 : ((x) & (RS_attrMask | RS_bgMask))) 649 : ((x) & (RS_attrMask | RS_bgMask)))
637#define SET_FGCOLOR(x,fg) (((x) & ~RS_fgMask) | (fg)) 650#define SET_FGCOLOR(x,fg) (((x) & ~RS_fgMask) | ((fg) << RS_fgShift))
638#define SET_BGCOLOR(x,bg) (((x) & ~RS_bgMask) | ((bg)<<Color_Bits)) 651#define SET_BGCOLOR(x,bg) (((x) & ~RS_bgMask) | ((bg) << RS_bgShift))
639#define SET_ATTR(x,a) (((x) & ~RS_attrMask) | (a)) 652#define SET_ATTR(x,a) (((x) & ~RS_attrMask) | (a))
640 653
641#define RS_SAME(a,b) (!(((a) ^ (b)) & ~RS_Careful)) 654#define RS_SAME(a,b) (!(((a) ^ (b)) & ~RS_Careful))
642 655
643#define PIXCOLOR_NAME(idx) rs[Rs_color + (idx)] 656#define PIXCOLOR_NAME(idx) rs[Rs_color + (idx)]
986 hidden_text:1, 999 hidden_text:1,
987#endif 1000#endif
988#if POINTER_BLANK 1001#if POINTER_BLANK
989 hidden_pointer:1, 1002 hidden_pointer:1,
990#endif 1003#endif
991 enc_utf8:1, /* wether locale uses utf-8 */ 1004 enc_utf8:1, /* whether locale uses utf-8 */
992 seen_input:1, /* wether we have seen some program output yet */ 1005 seen_input:1, /* whether we have seen some program output yet */
993 seen_resize:1, /* wether we had a resize event */ 1006 seen_resize:1, /* whether we had a resize event */
994 parsed_geometry:1; 1007 parsed_geometry:1;
995 1008
996 unsigned char refresh_type, 1009 unsigned char refresh_type,
997#ifdef META8_OPTION 1010#ifdef META8_OPTION
998 meta_char, /* Alt-key prefix */ 1011 meta_char, /* Alt-key prefix */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines