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

Comparing rxvt-unicode/src/rxvtlib.h.in (file contents):
Revision 1.58 by root, Wed Jan 4 20:43:38 2006 UTC vs.
Revision 1.61 by root, Sat Jan 7 23:18:56 2006 UTC

77typedef uint32_t text_t; 77typedef uint32_t text_t;
78#else 78#else
79typedef uint16_t text_t; // saves lots of memory 79typedef uint16_t text_t; // saves lots of memory
80#endif 80#endif
81typedef uint32_t rend_t; 81typedef uint32_t rend_t;
82typedef int32_t tlen_t; // was int16_t, but this result sin smaller code and memory use 82typedef int32_t tlen_t; // was int16_t, but this results in smaller code and memory use
83typedef int32_t tlen_t_; // specifically for use in the line_t structure
83 84
84#define LINE_CONT -1
85
86struct line_t { 85struct line_t;
87 text_t *t; // terminal the text
88 rend_t *r; // rendition, uses RS_ flags
89 tlen_t l; // length of each text line, LINE_CONT == continued on next line
90
91 bool is_longer ()
92 {
93 return l < 0;
94 }
95
96 void set_is_longer ()
97 {
98 l = LINE_CONT;
99 }
100
101 void clear ()
102 {
103 t = 0;
104 r = 0;
105 l = 0;
106 }
107};
108 86
109/* 87/*
110 * terminal limits: 88 * terminal limits:
111 * 89 *
112 * width : 1 <= width 90 * width : 1 <= width
226#define Screen_Insert (1<<3) /* insert mode (vs. overstrike) */ 204#define Screen_Insert (1<<3) /* insert mode (vs. overstrike) */
227#define Screen_WrapNext (1<<4) /* need to wrap for next char? */ 205#define Screen_WrapNext (1<<4) /* need to wrap for next char? */
228#define Screen_DefaultFlags (Screen_VisibleCursor | Screen_Autowrap) 206#define Screen_DefaultFlags (Screen_VisibleCursor | Screen_Autowrap)
229 207
230/* rxvt_vars.options */ 208/* rxvt_vars.options */
231#define Opt_console (1UL<<0) 209enum {
232#define Opt_loginShell (1UL<<1) 210# define def(name,idx) Opt_ ## name = 1UL << (idx),
233#define Opt_iconic (1UL<<2) 211# define nodef(name) Opt_ ## name = 0,
234#define Opt_visualBell (1UL<<3) 212# include "optinc.h"
235#define Opt_mapAlert (1UL<<4) 213# undef nodef
236#define Opt_reverseVideo (1UL<<5) 214# undef def
237#define Opt_utmpInhibit (1UL<<6) 215};
238#define Opt_scrollBar (1UL<<7)
239#define Opt_scrollBar_right (1UL<<8)
240#define Opt_scrollBar_floating (1UL<<9)
241#define Opt_meta8 (1UL<<10)
242#define Opt_scrollTtyOutput (1UL<<11)
243#define Opt_scrollTtyKeypress (1UL<<12)
244#define Opt_transparent (1UL<<13)
245#define Opt_tripleclickwords (1UL<<14)
246#define Opt_scrollWithBuffer (1UL<<15)
247#define Opt_jumpScroll (1UL<<16)
248#define Opt_mouseWheelScrollPage (1UL<<17)
249#define Opt_pointerBlank (1UL<<18)
250#define Opt_cursorBlink (1UL<<19)
251#define Opt_secondaryScreen (1UL<<20)
252#define Opt_secondaryScroll (1UL<<21)
253#define Opt_pastableTabs (1UL<<22)
254#define Opt_cursorUnderline (1UL<<23)
255#if ENABLE_FRILLS
256# define Opt_insecure (1UL<<24) // insecure esc sequences
257# define Opt_borderLess (1UL<<25) // mwm borderless hints
258# define Opt_hold (1UL<<26) // hold window open after exit
259# define Opt_skipBuiltinGlyphs (1UL<<27) // do not use internal glyphs
260#else
261# define Opt_insecure 0
262# define Opt_borderLess 0
263# define Opt_hold 0
264# define Opt_skipBuiltinGlyphs 0
265#endif
266#if ENABLE_STYLES
267# define Opt_intensityStyles (1UL<<28) // font styles imply intensity
268#else
269# define Opt_intensityStyles 0
270#endif
271 216
272#define SET_OPTION(opt) (options |= (opt)) 217#define SET_OPTION(opt) (options |= (opt))
273#define CLR_OPTION(opt) (options &= ~(opt)) 218#define CLR_OPTION(opt) (options &= ~(opt))
274#define OPTION(opt) (options & (opt)) 219#define OPTION(opt) (options & (opt))
275#define OPTION_R(opt) (r->options & (opt)) 220#define OPTION_R(opt) (r->options & (opt))

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines