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.466 by sf-exg, Thu Jan 19 13:33:43 2012 UTC vs.
Revision 1.499 by root, Tue Jun 5 11:00:40 2012 UTC

23#if HAVE_WCHAR_H 23#if HAVE_WCHAR_H
24# include <wchar.h> 24# include <wchar.h>
25#else 25#else
26// stdlib.h might provide it 26// stdlib.h might provide it
27#endif 27#endif
28
29using namespace std;
30 28
31// we assume that Xlib.h defines XPointer, and it does since at least 1994... 29// we assume that Xlib.h defines XPointer, and it does since at least 1994...
32 30
33extern "C" { 31extern "C" {
34#include <X11/Xlib.h> 32#include <X11/Xlib.h>
72#include <X11/cursorfont.h> 70#include <X11/cursorfont.h>
73#include <X11/keysym.h> 71#include <X11/keysym.h>
74#include <X11/keysymdef.h> 72#include <X11/keysymdef.h>
75#include <X11/Xatom.h> 73#include <X11/Xatom.h>
76 74
77#ifdef HAVE_AFTERIMAGE
78# include <afterimage.h>
79# undef min
80# undef max
81#endif
82
83#ifdef HAVE_PIXBUF 75#if HAVE_PIXBUF
84# include <gdk-pixbuf/gdk-pixbuf.h> 76# include <gdk-pixbuf/gdk-pixbuf.h>
85#endif 77#endif
86 78
87#if defined(BG_IMAGE_FROM_FILE) || defined(ENABLE_TRANSPARENCY) 79#if defined(BG_IMAGE_FROM_FILE) || defined(ENABLE_TRANSPARENCY)
88# define HAVE_BG_PIXMAP 1 80# define HAVE_BG_PIXMAP 1
89#endif 81#endif
90 82
83#include <ecb.h>
91#include "encoding.h" 84#include "encoding.h"
92#include "rxvtutil.h" 85#include "rxvtutil.h"
93#include "rxvtfont.h" 86#include "rxvtfont.h"
94#include "rxvttoolkit.h" 87#include "rxvttoolkit.h"
88#include "rxvtimg.h"
95#include "scrollbar.h" 89#include "scrollbar.h"
96#include "ev_cpp.h" 90#include "ev_cpp.h"
97#include "salloc.h"
98#include "libptytty.h" 91#include "libptytty.h"
99 92
100#include "rxvtperl.h" 93#include "rxvtperl.h"
101 94
102// try to avoid some macros to decrease code size, on some systems 95// try to avoid some macros to decrease code size, on some systems
155 148
156const char * rxvt_basename (const char *str) NOTHROW; 149const char * rxvt_basename (const char *str) NOTHROW;
157void rxvt_vlog (const char *fmt, va_list arg_ptr) NOTHROW; 150void rxvt_vlog (const char *fmt, va_list arg_ptr) NOTHROW;
158void rxvt_log (const char *fmt,...) NOTHROW; 151void rxvt_log (const char *fmt,...) NOTHROW;
159void rxvt_warn (const char *fmt,...) NOTHROW; 152void rxvt_warn (const char *fmt,...) NOTHROW;
160void rxvt_fatal (const char *fmt, ...) THROW ((class rxvt_failure_exception)) ecb_noreturn; 153void rxvt_fatal (const char *fmt, ...) THROW ((class rxvt_failure_exception)) ecb_noreturn ecb_cold;
161void rxvt_exit_failure () THROW ((class rxvt_failure_exception)) ecb_noreturn; 154void rxvt_exit_failure () THROW ((class rxvt_failure_exception)) ecb_noreturn ecb_cold;
162 155
163char * rxvt_strtrim (char *str) NOTHROW; 156char * rxvt_strtrim (char *str) NOTHROW;
164char ** rxvt_strsplit (char delim, const char *str) NOTHROW; 157char ** rxvt_strsplit (char delim, const char *str) NOTHROW;
165 158
166static inline void 159static inline void
215 ~localise_env () 208 ~localise_env ()
216 { 209 {
217 environ = orig_env; 210 environ = orig_env;
218 } 211 }
219}; 212};
213
214#ifdef HAVE_BG_PIXMAP
215struct image_effects
216{
217 bool tint_set;
218 rxvt_color tint;
219 int shade;
220 int h_blurRadius, v_blurRadius;
221
222 image_effects ()
223 {
224 tint_set =
225 h_blurRadius =
226 v_blurRadius = 0;
227 shade = 100;
228 }
229
230 bool need_tint ()
231 {
232 return shade != 100 || tint_set;
233 }
234
235 bool need_blur ()
236 {
237 return h_blurRadius && v_blurRadius;
238 }
239
240 bool set_tint (const rxvt_color &new_tint);
241 bool set_shade (const char *shade_str);
242 bool set_blur (const char *geom);
243};
244
245# if BG_IMAGE_FROM_FILE
246enum {
247 IM_IS_SET = 1 << 0,
248 IM_IS_SIZE_SENSITIVE = 1 << 1,
249 IM_KEEP_ASPECT = 1 << 2,
250 IM_ROOT_ALIGN = 1 << 3,
251 IM_TILE = 1 << 4,
252 IM_GEOMETRY_FLAGS = IM_KEEP_ASPECT | IM_ROOT_ALIGN | IM_TILE,
253};
254
255enum {
256 noScale = 0,
257 windowScale = 100,
258 defaultScale = windowScale,
259 centerAlign = 50,
260 defaultAlign = centerAlign,
261};
262
263struct rxvt_image : image_effects
264{
265 unsigned short alpha;
266 uint8_t flags;
267 unsigned int h_scale, v_scale; /* percents of the window size */
268 int h_align, v_align; /* percents of the window size:
269 0 - left align, 50 - center, 100 - right */
270
271 bool is_size_sensitive ()
272 {
273 return (!(flags & IM_TILE)
274 || h_scale || v_scale
275 || (!(flags & IM_ROOT_ALIGN) && (h_align || v_align)));
276 }
277
278# if HAVE_PIXBUF
279 GdkPixbuf *pixbuf;
280
281 void destroy ()
282 {
283 if (pixbuf)
284 g_object_unref (pixbuf);
285 }
286
287 int width ()
288 {
289 return gdk_pixbuf_get_width (pixbuf);
290 }
291 int height ()
292 {
293 return gdk_pixbuf_get_height (pixbuf);
294 }
295# endif
296
297 rxvt_image ();
298 bool set_file_geometry (const char *file);
299 bool set_file (const char *file);
300 bool set_geometry (const char *geom, bool update = false);
301};
302# endif
303#endif
220 304
221/* 305/*
222 ***************************************************************************** 306 *****************************************************************************
223 * STRUCTURES AND TYPEDEFS 307 * STRUCTURES AND TYPEDEFS
224 ***************************************************************************** 308 *****************************************************************************
267 ***************************************************************************** 351 *****************************************************************************
268 */ 352 */
269 353
270/* COLORTERM, TERM environment variables */ 354/* COLORTERM, TERM environment variables */
271#define COLORTERMENV "rxvt" 355#define COLORTERMENV "rxvt"
272#ifdef BG_IMAGE_FROM_FILE 356#if BG_IMAGE_FROM_FILE
273# define COLORTERMENVFULL COLORTERMENV "-xpm" 357# define COLORTERMENVFULL COLORTERMENV "-xpm"
274#else 358#else
275# define COLORTERMENVFULL COLORTERMENV 359# define COLORTERMENVFULL COLORTERMENV
276#endif 360#endif
277#ifndef TERMENV 361#ifndef TERMENV
704 text_t *t; // terminal the text 788 text_t *t; // terminal the text
705 rend_t *r; // rendition, uses RS_ flags 789 rend_t *r; // rendition, uses RS_ flags
706 tlen_t_ l; // length of each text line 790 tlen_t_ l; // length of each text line
707 uint32_t f; // flags 791 uint32_t f; // flags
708 792
793 bool valid ()
794 {
795 return l >= 0;
796 }
797
798 void alloc ()
799 {
800 l = 0;
801 }
802
709 bool is_longer () 803 bool is_longer ()
710 { 804 {
711 return f & LINE_LONGER; 805 return f & LINE_LONGER;
712 } 806 }
713 807
777// that are not representable in unicode, as well as characters 871// that are not representable in unicode, as well as characters
778// not fitting in the BMP. 872// not fitting in the BMP.
779struct compose_char 873struct compose_char
780{ 874{
781 unicode_t c1, c2; // any chars != NOCHAR are valid 875 unicode_t c1, c2; // any chars != NOCHAR are valid
876 #if __cplusplus >= 201103L || ECB_GCC_VERSION(4,4)
877 compose_char () = default;
878 #endif
782 compose_char (unicode_t c1, unicode_t c2) 879 compose_char (unicode_t c1, unicode_t c2)
783 : c1(c1), c2(c2) 880 : c1(c1), c2(c2)
784 { } 881 { }
785}; 882};
786 883
980 scrollBar_t scrollBar; 1077 scrollBar_t scrollBar;
981 uint8_t options[(Opt_count + 7) >> 3]; 1078 uint8_t options[(Opt_count + 7) >> 3];
982 XSizeHints szHint; 1079 XSizeHints szHint;
983 rxvt_color *pix_colors; 1080 rxvt_color *pix_colors;
984 Cursor TermWin_cursor; /* cursor for vt window */ 1081 Cursor TermWin_cursor; /* cursor for vt window */
1082
985 line_t *row_buf; // all lines, scrollback + terminal, circular 1083 line_t *row_buf; // all lines, scrollback + terminal, circular
986 line_t *drawn_buf; // text on screen 1084 line_t *drawn_buf; // text on screen
987 line_t *swap_buf; // lines for swap buffer 1085 line_t *swap_buf; // lines for swap buffer
988 char *tabs; /* per location: 1 == tab-stop */ 1086 char *tabs; /* per location: 1 == tab-stop */
989 screen_t screen; 1087 screen_t screen;
1090#ifdef HAVE_BG_PIXMAP 1188#ifdef HAVE_BG_PIXMAP
1091 void bg_init (); 1189 void bg_init ();
1092 void bg_destroy (); 1190 void bg_destroy ();
1093 1191
1094 enum { 1192 enum {
1095 //subset returned by make_transparency_pixmap
1096 BG_IS_VALID = 1 << 0, 1193 BG_IS_VALID = 1 << 0,
1097 BG_NEEDS_TINT = 1 << 1,
1098 BG_NEEDS_BLUR = 1 << 2,
1099 1194
1100 BG_EFFECTS_FLAGS = BG_NEEDS_TINT | BG_NEEDS_BLUR,
1101
1102 BG_KEEP_ASPECT = 1 << 3,
1103 BG_ROOT_ALIGN = 1 << 4,
1104 BG_TILE = 1 << 14,
1105 BG_GEOMETRY_FLAGS = BG_KEEP_ASPECT | BG_ROOT_ALIGN | BG_TILE,
1106
1107 BG_TINT_SET = 1 << 5,
1108 BG_TINT_BITAND = 1 << 6,
1109 BG_TINT_FLAGS = BG_NEEDS_TINT | BG_TINT_BITAND,
1110
1111 BG_HAS_RENDER = 1 << 7,
1112 BG_HAS_RENDER_CONV = 1 << 8,
1113 BG_CLIENT_RENDER = 1 << 9,
1114
1115 BG_IS_TRANSPARENT = 1 << 10, 1195 BG_IS_TRANSPARENT = 1 << 1,
1116 BG_NEEDS_REFRESH = 1 << 11, 1196 BG_NEEDS_REFRESH = 1 << 2,
1117 BG_IS_SIZE_SENSITIVE = 1 << 12,
1118 BG_IS_FROM_FILE = 1 << 13,
1119 }; 1197 };
1120 1198
1121 unsigned int bg_flags; 1199 uint8_t bg_flags;
1122 1200
1123# ifdef BG_IMAGE_FROM_FILE 1201# if BG_IMAGE_FROM_FILE
1124 void get_image_geometry (int image_width, int image_height, int &w, int &h, int &x, int &y); 1202 vector<rxvt_image> image_vec;
1125 bool render_image (unsigned long tr_flags); 1203 rxvt_image *new_image ()
1126 1204 {
1127 enum { 1205 image_vec.resize (image_vec.size () + 1);
1128 noScale = 0, 1206 return &image_vec.back ();
1129 windowScale = 100,
1130 defaultScale = windowScale,
1131 centerAlign = 50,
1132 defaultAlign = centerAlign,
1133 }; 1207 }
1134 1208 void get_image_geometry (rxvt_image &image, int &w, int &h, int &x, int &y);
1135 unsigned int h_scale, v_scale; /* percents of the window size */ 1209 bool render_image (rxvt_image &image);
1136 int h_align, v_align; /* percents of the window size: 1210 void parse_image (int id, const char *type, const char *arg);
1137 0 - left align, 50 - center, 100 - right */
1138
1139 bool bg_set_geometry (const char *geom, bool update = false);
1140 void bg_set_default_geometry ()
1141 {
1142 h_scale = v_scale = defaultScale;
1143 h_align = v_align = defaultAlign;
1144 }
1145
1146 bool bg_set_file (const char *file);
1147# endif 1211# endif
1148 1212
1149# ifdef ENABLE_TRANSPARENCY 1213# if ENABLE_TRANSPARENCY
1150 Pixmap root_pixmap; /* current root pixmap set */ 1214 Pixmap root_pixmap; /* current root pixmap set */
1151 rxvt_color tint; 1215 image_effects root_effects;
1152 int shade;
1153 int h_blurRadius, v_blurRadius;
1154 1216
1155 bool bg_set_transparent (); 1217 void bg_set_transparent ()
1218 {
1219 bg_flags |= BG_IS_TRANSPARENT;
1220 }
1156 void bg_set_root_pixmap (); 1221 void bg_set_root_pixmap ();
1157 void set_tint_shade_flags (); 1222 bool render_root_image ();
1158 bool bg_set_tint (rxvt_color &new_tint);
1159 bool bg_set_shade (const char *shade_str);
1160 bool bg_set_blur (const char *geom);
1161
1162 bool blur_pixmap (Pixmap pixmap, Visual *visual, int width, int height, int depth);
1163 bool tint_pixmap (Pixmap pixmap, Visual *visual, int width, int height);
1164 void tint_ximage (Visual *visual, XImage *ximage);
1165 unsigned long make_transparency_pixmap ();
1166# endif 1223# endif
1224
1225 bool blur_pixmap (Pixmap pixmap, int width, int height, bool argb, int h_blurRadius, int v_blurRadius);
1226 bool tint_pixmap (Pixmap pixmap, int width, int height, bool argb, rxvt_color &tint, bool tint_set, int shade);
1227 void tint_ximage (XImage *ximage, rxvt_color &tint, bool tint_set, int shade);
1167 1228
1168 ev_tstamp bg_valid_since; 1229 ev_tstamp bg_valid_since;
1169 1230
1170 Pixmap bg_pixmap; 1231 Pixmap bg_pixmap;
1171 unsigned int bg_pmap_width, bg_pmap_height; 1232 unsigned int bg_pmap_width, bg_pmap_height;
1180 void bg_invalidate () 1241 void bg_invalidate ()
1181 { 1242 {
1182 bg_flags &= ~BG_IS_VALID; 1243 bg_flags &= ~BG_IS_VALID;
1183 } 1244 }
1184#endif 1245#endif
1185#ifdef HAVE_AFTERIMAGE
1186 ASImage *original_asim;
1187 ASVisual *asv;
1188 ASImageManager *asimman;
1189
1190 void init_asv ()
1191 {
1192 if (!asv)
1193 asv = create_asvisual_for_id (dpy, display->screen, depth, XVisualIDFromVisual (visual), cmap, NULL);
1194 }
1195#endif
1196#ifdef HAVE_PIXBUF 1246#if HAVE_PIXBUF
1197 GdkPixbuf *pixbuf;
1198 bool pixbuf_to_pixmap (GdkPixbuf *pixbuf, Pixmap pixmap, GC gc, 1247 bool pixbuf_to_pixmap (GdkPixbuf *pixbuf, Pixmap pixmap, GC gc,
1199 int src_x, int src_y, int dst_x, int dst_y, 1248 int src_x, int src_y, int dst_x, int dst_y,
1200 unsigned int width, unsigned int height); 1249 unsigned int width, unsigned int height, bool argb);
1201#endif 1250#endif
1202 1251
1203#if ENABLE_OVERLAY 1252#if ENABLE_OVERLAY
1204 overlay_base ov; 1253 overlay_base ov;
1205 1254
1213 void scr_overlay_set (int x, int y, const wchar_t *s) NOTHROW; 1262 void scr_overlay_set (int x, int y, const wchar_t *s) NOTHROW;
1214#endif 1263#endif
1215 1264
1216 vector<void *> allocated; // free these memory blocks with free() 1265 vector<void *> allocated; // free these memory blocks with free()
1217 1266
1267 int parent_x, parent_y; // parent window position relative to root, only updated on demand
1268
1218 char *locale; 1269 char *locale;
1219 char charsets[4]; 1270 char charsets[4];
1220 char *v_buffer; /* pointer to physical buffer */ 1271 char *v_buffer; /* pointer to physical buffer */
1221 unsigned int v_buflen; /* size of area to write */ 1272 unsigned int v_buflen; /* size of area to write */
1222 stringvec *argv, *envv; /* if != 0, will be freed at destroy time */ 1273 stringvec *argv, *envv; /* if != 0, will be freed at destroy time */
1233 char *cmdbuf_ptr, *cmdbuf_endp; 1284 char *cmdbuf_ptr, *cmdbuf_endp;
1234 char cmdbuf_base[CBUFSIZ]; 1285 char cmdbuf_base[CBUFSIZ];
1235 1286
1236 ptytty *pty; 1287 ptytty *pty;
1237 1288
1238 rxvt_salloc *talloc; // text line allocator 1289 // chunk contains all line_t's as well as rend_t and text_t buffers
1239 rxvt_salloc *ralloc; // rend line allocator 1290 // for drawn_buf, swap_buf and row_buf, in this order
1291 void *chunk;
1292 size_t chunk_size;
1240 1293
1241 static vector<rxvt_term *> termlist; // a vector of all running rxvt_term's 1294 static vector<rxvt_term *> termlist; // a vector of all running rxvt_term's
1242 1295
1243#if ENABLE_FRILLS || ISO_14755 1296#if ENABLE_FRILLS || ISO_14755
1244 // ISO 14755 entry support 1297 // ISO 14755 entry support
1281 void cmdbuf_append (const char *str, size_t count); 1334 void cmdbuf_append (const char *str, size_t count);
1282 bool pty_fill (); 1335 bool pty_fill ();
1283 void pty_cb (ev::io &w, int revents); ev::io pty_ev; 1336 void pty_cb (ev::io &w, int revents); ev::io pty_ev;
1284 1337
1285#ifdef CURSOR_BLINK 1338#ifdef CURSOR_BLINK
1339 void cursor_blink_reset ();
1286 void cursor_blink_cb (ev::timer &w, int revents); ev::timer cursor_blink_ev; 1340 void cursor_blink_cb (ev::timer &w, int revents); ev::timer cursor_blink_ev;
1287#endif 1341#endif
1288#ifdef TEXT_BLINK 1342#ifdef TEXT_BLINK
1289 void text_blink_cb (ev::timer &w, int revents); ev::timer text_blink_ev; 1343 void text_blink_cb (ev::timer &w, int revents); ev::timer text_blink_ev;
1290#endif 1344#endif
1413 char *get_colorfgbg (); 1467 char *get_colorfgbg ();
1414 bool set_color (rxvt_color &color, const char *name); 1468 bool set_color (rxvt_color &color, const char *name);
1415 void alias_color (int dst, int src); 1469 void alias_color (int dst, int src);
1416 void set_widthheight (unsigned int newwidth, unsigned int newheight); 1470 void set_widthheight (unsigned int newwidth, unsigned int newheight);
1417 void get_window_origin (int &x, int &y); 1471 void get_window_origin (int &x, int &y);
1418 Pixmap get_pixmap_property (Atom property);
1419 1472
1420 // screen.C 1473 // screen.C
1421
1422 void lalloc (line_t &l) const
1423 {
1424 l.t = (text_t *)talloc->alloc ();
1425 l.r = (rend_t *)ralloc->alloc ();
1426 }
1427
1428#if 0
1429 void lfree (line_t &l)
1430 {
1431 talloc->free (l.t);
1432 ralloc->free (l.r);
1433 }
1434#endif
1435
1436 void lresize (line_t &l) const
1437 {
1438 if (!l.t)
1439 return;
1440
1441 l.t = (text_t *)talloc->alloc (l.t, prev_ncol * sizeof (text_t));
1442 l.r = (rend_t *)ralloc->alloc (l.r, prev_ncol * sizeof (rend_t));
1443
1444 l.l = min (l.l, ncol);
1445
1446 if (ncol > prev_ncol)
1447 scr_blank_line (l, prev_ncol, ncol - prev_ncol, DEFAULT_RSTYLE);
1448 }
1449 1474
1450 int fgcolor_of (rend_t r) const NOTHROW 1475 int fgcolor_of (rend_t r) const NOTHROW
1451 { 1476 {
1452 int base = GET_BASEFG (r); 1477 int base = GET_BASEFG (r);
1453#ifndef NO_BRIGHTCOLOR 1478#ifndef NO_BRIGHTCOLOR
1483 void set_option (uint8_t opt, bool set = true) NOTHROW; 1508 void set_option (uint8_t opt, bool set = true) NOTHROW;
1484 1509
1485 // modifies first argument(!) 1510 // modifies first argument(!)
1486 void tt_paste (char *data, unsigned int len) NOTHROW; 1511 void tt_paste (char *data, unsigned int len) NOTHROW;
1487 void paste (char *data, unsigned int len) NOTHROW; 1512 void paste (char *data, unsigned int len) NOTHROW;
1513 void scr_alloc () NOTHROW;
1488 void scr_blank_line (line_t &l, unsigned int col, unsigned int width, rend_t efs) const NOTHROW; 1514 void scr_blank_line (line_t &l, unsigned int col, unsigned int width, rend_t efs) const NOTHROW;
1489 void scr_blank_screen_mem (line_t &l, rend_t efs) const NOTHROW; 1515 void scr_blank_screen_mem (line_t &l, rend_t efs) const NOTHROW;
1490 void scr_kill_char (line_t &l, int col) const NOTHROW; 1516 void scr_kill_char (line_t &l, int col) const NOTHROW;
1491 int scr_scroll_text (int row1, int row2, int count) NOTHROW; 1517 int scr_scroll_text (int row1, int row2, int count) NOTHROW;
1492 void scr_reset (); 1518 void scr_reset ();
1564 const char **get_options (int argc, const char *const *argv); 1590 const char **get_options (int argc, const char *const *argv);
1565 int parse_keysym (const char *str, const char *arg); 1591 int parse_keysym (const char *str, const char *arg);
1566 const char *x_resource (const char *name); 1592 const char *x_resource (const char *name);
1567 void extract_resources (); 1593 void extract_resources ();
1568 void extract_keysym_resources (); 1594 void extract_keysym_resources ();
1595 void find_resources (const char *n_prefix, const char *c_prefix, int mode,
1596 Bool (*proc)(XrmDatabase *, XrmBindingList, XrmQuarkList, XrmRepresentation *, XrmValue *, XPointer));
1597 bool parse_bool_resource (const char *str)
1598 {
1599 return (!strcasecmp (str, "TRUE")
1600 || !strcasecmp (str, "YES")
1601 || !strcasecmp (str, "ON")
1602 || !strcasecmp (str, "1"));
1603 }
1569}; 1604};
1570 1605
1571#endif /* _RXVT_H_ */ 1606#endif /* _RXVT_H_ */
1572 1607

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines