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

Comparing rxvt-unicode/src/background.h (file contents):
Revision 1.7 by sasha, Wed Nov 14 22:25:41 2007 UTC vs.
Revision 1.29 by sf-exg, Fri Oct 22 18:03:10 2010 UTC

9# include <afterimage.h> 9# include <afterimage.h>
10# undef min 10# undef min
11# undef max 11# undef max
12#endif 12#endif
13 13
14#ifdef HAVE_PIXBUF
15#include <gdk-pixbuf-xlib/gdk-pixbuf-xlib.h>
16#endif
17
14#if defined(BG_IMAGE_FROM_FILE) || defined(ENABLE_TRANSPARENCY) 18#if defined(BG_IMAGE_FROM_FILE) || defined(ENABLE_TRANSPARENCY)
15# define HAVE_BG_PIXMAP 1/* to simplify further usage */ 19# define HAVE_BG_PIXMAP 1 /* to simplify further usage */
16struct bgPixmap_t { 20struct bgPixmap_t
17 21{
18 bgPixmap_t(); 22 bgPixmap_t ();
19 ~bgPixmap_t(); 23 void destroy ();
20 24
21 enum { 25 enum {
22 geometrySet = (1UL<<0), 26 geometrySet = 1 << 0,
23 propScale = (1UL<<1), 27 propScale = 1 << 1,
28 rootAlign = 1 << 2,
24 geometryFlags = (geometrySet|propScale), 29 geometryFlags = geometrySet | propScale | rootAlign,
25 30
26 tintSet = (1UL<<8), 31 tintSet = 1 << 8,
27 tintNeeded = (1UL<<9), 32 tintNeeded = 1 << 9,
28 tintWholesome = (1UL<<10), 33 tintWholesome = 1 << 10,
29 tintServerSide = (1UL<<11), 34 tintServerSide = 1 << 11,
30 tintFlags = (tintSet|tintServerSide|tintNeeded|tintWholesome), 35 tintFlags = tintSet | tintServerSide | tintNeeded | tintWholesome,
31 blurNeeded = (1UL<<12),
32 blurServerSide = (1UL<<13), /* this don't work yet */
33 36
37 blurNeeded = 1 << 12,
38 blurServerSide = 1 << 13,
39
34 isTransparent = (1UL<<16), 40 isTransparent = 1 << 16,
35 isInvalid = (1UL<<17), 41 isInvalid = 1 << 17,
36 isVtOrigin = (1UL<<18), /* if set pixmap has origin at corner of
37 vt window instead of parent[0]! */
38 hasChanged = (1UL<<19) 42 hasChanged = 1 << 19,
43 sizeSensitive = 1 << 20,
39 }; 44 };
40 45
41 unsigned long flags; 46 unsigned int flags;
42 47
43 enum { 48 enum {
44 transpPmapTiled = (1UL<<0), 49 transpPmapTiled = 1 << 0,
45 transpPmapTinted = tintNeeded, 50 transpPmapTinted = tintNeeded,
46 transpPmapBlured = blurNeeded, 51 transpPmapBlurred = blurNeeded,
47 transpTransformations = (tintNeeded|blurNeeded) 52 transpTransformations = tintNeeded | blurNeeded,
48 }; /* this flags are returned by make_transparency_pixmap if called */ 53 }; /* these flags are returned by make_transparency_pixmap if called */
49
50 bool check_clearChanged () { bool r = flags & hasChanged; flags &= ~hasChanged; return r; };
51 54
52# ifdef BG_IMAGE_FROM_FILE 55# ifdef BG_IMAGE_FROM_FILE
53# ifdef HAVE_AFTERIMAGE 56# ifdef HAVE_AFTERIMAGE
54 ASImage *original_asim; 57 ASImage *original_asim;
55 bool render_asim (ASImage *background, ARGB32 background_tint);
56# endif 58# endif
57 59
58 enum { defaultScale = 100, defaultAlign = 50 }; 60# ifdef HAVE_PIXBUF
61 GdkPixbuf *pixbuf;
62# endif
63
64 void get_image_geometry (int image_width, int image_height, int &w, int &h, int &x, int &y);
65 bool render_image (unsigned long background_flags);
66 bool have_image;
67
68 enum {
69 noScale = 0,
70 windowScale = 100,
71 defaultScale = windowScale,
72 centerAlign = 50,
73 defaultAlign = centerAlign,
74 };
59 75
60 unsigned int h_scale, v_scale;/* percents of the window size */ 76 unsigned int h_scale, v_scale;/* percents of the window size */
61 int h_align, v_align; /* percents of the window size: 77 int h_align, v_align; /* percents of the window size:
62 0 - left align, 50 - center, 100 - right */ 78 0 - left align, 50 - center, 100 - right */
63 void unset_geometry () { flags = flags & ~geometryFlags; }; 79 void unset_geometry ()
80 {
81 flags = flags & ~geometryFlags;
82 };
64 bool set_geometry (const char *geom); 83 bool set_geometry (const char *geom);
65 void set_defaultGeometry () 84 void set_defaultGeometry ()
66 { 85 {
67 h_scale = v_scale = defaultScale; 86 h_scale = v_scale = defaultScale;
68 h_align = v_align = defaultAlign; 87 h_align = v_align = defaultAlign;
85 bool set_transparent (); 104 bool set_transparent ();
86 bool set_blur_radius (const char *geom); 105 bool set_blur_radius (const char *geom);
87 bool set_tint (rxvt_color &new_tint); 106 bool set_tint (rxvt_color &new_tint);
88 bool unset_tint (); 107 bool unset_tint ();
89 bool set_shade (const char *shade_str); 108 bool set_shade (const char *shade_str);
109 bool blur_pixmap (Pixmap pixmap, Visual *visual, int width, int height);
110 bool tint_pixmap (Pixmap pixmap, Visual *visual, int width, int height);
90 bool set_root_pixmap (); 111 bool set_root_pixmap ();
91 112
92 unsigned long make_transparency_pixmap ();/* returns combination of the transpTransformations flags */ 113 unsigned long make_transparency_pixmap ();/* returns combination of the transpTransformations flags */
93# endif 114# endif
94 double invalid_since; 115 double invalid_since, valid_since;
95 116
96 Pixmap pixmap; 117 Pixmap pixmap;
97 unsigned int pmap_width, pmap_height; 118 unsigned int pmap_width, pmap_height;
98 unsigned int pmap_depth; 119 unsigned int pmap_depth;
99 120
100 bool window_size_sensitive (); 121 bool window_size_sensitive ();
101 bool window_position_sensitive () { 122 bool window_position_sensitive ();
102 return (flags & isTransparent);
103 };
104
105 bool is_parentOrigin () {
106 return !(flags & isVtOrigin);
107 };
108 123
109 bool need_client_side_rendering (); 124 bool need_client_side_rendering ();
110 void apply (); 125 void apply ();
111 bool render (); 126 bool render ();
112 void invalidate () { 127 void invalidate ()
128 {
113 if (!(flags & isInvalid)) 129 if (!(flags & isInvalid))
114 { 130 {
115 flags |= isInvalid; 131 flags |= isInvalid;
116 invalid_since = ev::now (); 132 invalid_since = ev::now ();
117 } 133 }
121# undef HAVE_BG_PIXMAP 137# undef HAVE_BG_PIXMAP
122#endif 138#endif
123 139
124 140
125 141
126#endif /* _BACKGROUND_H_ */ 142#endif /* _BACKGROUND_H_ */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines