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.476 by sf-exg, Thu May 17 10:31:26 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>
71 69
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
77#ifdef HAVE_AFTERIMAGE
78# include <afterimage.h>
79# undef min
80# undef max
81#endif
82 74
83#ifdef HAVE_PIXBUF 75#ifdef HAVE_PIXBUF
84# include <gdk-pixbuf/gdk-pixbuf.h> 76# include <gdk-pixbuf/gdk-pixbuf.h>
85#endif 77#endif
86 78
215 ~localise_env () 207 ~localise_env ()
216 { 208 {
217 environ = orig_env; 209 environ = orig_env;
218 } 210 }
219}; 211};
212
213#ifdef HAVE_BG_PIXMAP
214# ifdef BG_IMAGE_FROM_FILE
215enum {
216 IM_IS_SET = 1 << 0,
217 IM_IS_SIZE_SENSITIVE = 1 << 1,
218 IM_KEEP_ASPECT = 1 << 2,
219 IM_ROOT_ALIGN = 1 << 3,
220 IM_TILE = 1 << 4,
221 IM_GEOMETRY_FLAGS = IM_KEEP_ASPECT | IM_ROOT_ALIGN | IM_TILE,
222};
223
224enum {
225 noScale = 0,
226 windowScale = 100,
227 defaultScale = windowScale,
228 centerAlign = 50,
229 defaultAlign = centerAlign,
230};
231
232struct rxvt_image
233{
234 uint8_t flags;
235 unsigned int h_scale, v_scale; /* percents of the window size */
236 int h_align, v_align; /* percents of the window size:
237 0 - left align, 50 - center, 100 - right */
238
239# ifdef HAVE_PIXBUF
240 GdkPixbuf *pixbuf;
241# endif
242
243 ~rxvt_image ()
244 {
245# ifdef HAVE_PIXBUF
246 if (pixbuf)
247 g_object_unref (pixbuf);
248# endif
249 }
250
251 int width ()
252 {
253# ifdef HAVE_PIXBUF
254 return gdk_pixbuf_get_width (pixbuf);
255# endif
256 }
257 int height ()
258 {
259# ifdef HAVE_PIXBUF
260 return gdk_pixbuf_get_height (pixbuf);
261# endif
262 }
263 bool set_file (const char *file);
264 bool set_geometry (const char *geom, bool update = false);
265 void set_default_geometry ()
266 {
267 h_scale = v_scale = defaultScale;
268 h_align = v_align = defaultAlign;
269 flags |= IM_IS_SIZE_SENSITIVE;
270 }
271};
272# endif
273#endif
220 274
221/* 275/*
222 ***************************************************************************** 276 *****************************************************************************
223 * STRUCTURES AND TYPEDEFS 277 * STRUCTURES AND TYPEDEFS
224 ***************************************************************************** 278 *****************************************************************************
1090#ifdef HAVE_BG_PIXMAP 1144#ifdef HAVE_BG_PIXMAP
1091 void bg_init (); 1145 void bg_init ();
1092 void bg_destroy (); 1146 void bg_destroy ();
1093 1147
1094 enum { 1148 enum {
1095 //subset returned by make_transparency_pixmap
1096 BG_IS_VALID = 1 << 0, 1149 BG_IS_VALID = 1 << 0,
1097 BG_NEEDS_TINT = 1 << 1,
1098 BG_NEEDS_BLUR = 1 << 2,
1099
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 1150
1107 BG_TINT_SET = 1 << 5, 1151 BG_TINT_SET = 1 << 5,
1108 BG_TINT_BITAND = 1 << 6, 1152 BG_TINT_BITAND = 1 << 6,
1109 BG_TINT_FLAGS = BG_NEEDS_TINT | BG_TINT_BITAND,
1110 1153
1111 BG_HAS_RENDER = 1 << 7, 1154 BG_HAS_RENDER = 1 << 7,
1112 BG_HAS_RENDER_CONV = 1 << 8, 1155 BG_HAS_RENDER_CONV = 1 << 8,
1113 BG_CLIENT_RENDER = 1 << 9, 1156 BG_CLIENT_RENDER = 1 << 9,
1114 1157
1115 BG_IS_TRANSPARENT = 1 << 10, 1158 BG_IS_TRANSPARENT = 1 << 10,
1116 BG_NEEDS_REFRESH = 1 << 11, 1159 BG_NEEDS_REFRESH = 1 << 11,
1117 BG_IS_SIZE_SENSITIVE = 1 << 12,
1118 BG_IS_FROM_FILE = 1 << 13,
1119 }; 1160 };
1120 1161
1121 unsigned int bg_flags; 1162 unsigned int bg_flags;
1122 1163
1123# ifdef BG_IMAGE_FROM_FILE 1164# ifdef BG_IMAGE_FROM_FILE
1165 rxvt_image bg_image;
1124 void get_image_geometry (int image_width, int image_height, int &w, int &h, int &x, int &y); 1166 void get_image_geometry (rxvt_image &image, int &w, int &h, int &x, int &y);
1125 bool render_image (unsigned long tr_flags); 1167 bool render_image (rxvt_image &image);
1126
1127 enum {
1128 noScale = 0,
1129 windowScale = 100,
1130 defaultScale = windowScale,
1131 centerAlign = 50,
1132 defaultAlign = centerAlign,
1133 };
1134
1135 unsigned int h_scale, v_scale; /* percents of the window size */
1136 int h_align, v_align; /* percents of the window size:
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 1168# endif
1148 1169
1149# ifdef ENABLE_TRANSPARENCY 1170# ifdef ENABLE_TRANSPARENCY
1150 Pixmap root_pixmap; /* current root pixmap set */ 1171 Pixmap root_pixmap; /* current root pixmap set */
1151 rxvt_color tint; 1172 rxvt_color tint;
1152 int shade; 1173 int shade;
1153 int h_blurRadius, v_blurRadius; 1174 int h_blurRadius, v_blurRadius;
1154 1175
1155 bool bg_set_transparent (); 1176 void bg_set_transparent ()
1177 {
1178 bg_flags |= BG_IS_TRANSPARENT;
1179 }
1156 void bg_set_root_pixmap (); 1180 void bg_set_root_pixmap ();
1157 void set_tint_shade_flags ();
1158 bool bg_set_tint (rxvt_color &new_tint); 1181 bool bg_set_tint (rxvt_color &new_tint);
1159 bool bg_set_shade (const char *shade_str); 1182 bool bg_set_shade (const char *shade_str);
1160 bool bg_set_blur (const char *geom); 1183 bool bg_set_blur (const char *geom);
1161 1184
1162 bool blur_pixmap (Pixmap pixmap, Visual *visual, int width, int height, int depth); 1185 bool blur_pixmap (Pixmap pixmap, int width, int height);
1163 bool tint_pixmap (Pixmap pixmap, Visual *visual, int width, int height); 1186 bool tint_pixmap (Pixmap pixmap, int width, int height);
1164 void tint_ximage (Visual *visual, XImage *ximage); 1187 void tint_ximage (XImage *ximage);
1165 unsigned long make_transparency_pixmap (); 1188 bool make_transparency_pixmap ();
1166# endif 1189# endif
1167 1190
1168 ev_tstamp bg_valid_since; 1191 ev_tstamp bg_valid_since;
1169 1192
1170 Pixmap bg_pixmap; 1193 Pixmap bg_pixmap;
1180 void bg_invalidate () 1203 void bg_invalidate ()
1181 { 1204 {
1182 bg_flags &= ~BG_IS_VALID; 1205 bg_flags &= ~BG_IS_VALID;
1183 } 1206 }
1184#endif 1207#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 1208#ifdef HAVE_PIXBUF
1197 GdkPixbuf *pixbuf;
1198 bool pixbuf_to_pixmap (GdkPixbuf *pixbuf, Pixmap pixmap, GC gc, 1209 bool pixbuf_to_pixmap (GdkPixbuf *pixbuf, Pixmap pixmap, GC gc,
1199 int src_x, int src_y, int dst_x, int dst_y, 1210 int src_x, int src_y, int dst_x, int dst_y,
1200 unsigned int width, unsigned int height); 1211 unsigned int width, unsigned int height);
1201#endif 1212#endif
1202 1213
1281 void cmdbuf_append (const char *str, size_t count); 1292 void cmdbuf_append (const char *str, size_t count);
1282 bool pty_fill (); 1293 bool pty_fill ();
1283 void pty_cb (ev::io &w, int revents); ev::io pty_ev; 1294 void pty_cb (ev::io &w, int revents); ev::io pty_ev;
1284 1295
1285#ifdef CURSOR_BLINK 1296#ifdef CURSOR_BLINK
1297 void cursor_blink_reset ();
1286 void cursor_blink_cb (ev::timer &w, int revents); ev::timer cursor_blink_ev; 1298 void cursor_blink_cb (ev::timer &w, int revents); ev::timer cursor_blink_ev;
1287#endif 1299#endif
1288#ifdef TEXT_BLINK 1300#ifdef TEXT_BLINK
1289 void text_blink_cb (ev::timer &w, int revents); ev::timer text_blink_ev; 1301 void text_blink_cb (ev::timer &w, int revents); ev::timer text_blink_ev;
1290#endif 1302#endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines