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.22 by sf-exg, Sun Oct 3 20:48:34 2010 UTC vs.
Revision 1.30 by sf-exg, Sat Oct 30 10:57:53 2010 UTC

23 void destroy (); 23 void destroy ();
24 24
25 enum { 25 enum {
26 geometrySet = 1 << 0, 26 geometrySet = 1 << 0,
27 propScale = 1 << 1, 27 propScale = 1 << 1,
28 rootAlign = 1 << 2,
28 geometryFlags = geometrySet | propScale, 29 geometryFlags = geometrySet | propScale | rootAlign,
29 30
30 tintSet = 1 << 8, 31 tintSet = 1 << 8,
31 tintNeeded = 1 << 9, 32 tintNeeded = 1 << 9,
32 tintWholesome = 1 << 10, 33 tintWholesome = 1 << 10,
33 tintServerSide = 1 << 11, 34 tintServerSide = 1 << 11,
34 tintFlags = tintSet | tintServerSide | tintNeeded | tintWholesome, 35 tintFlags = tintSet | tintServerSide | tintNeeded | tintWholesome,
35 36
36 blurNeeded = 1 << 12, 37 blurNeeded = 1 << 12,
37 blurServerSide = 1 << 13, /* this doesn't work yet */ 38 blurServerSide = 1 << 13,
38 39
39 isTransparent = 1 << 16, 40 isTransparent = 1 << 16,
40 isInvalid = 1 << 17, 41 isInvalid = 1 << 17,
41 isVtOrigin = 1 << 18, /* if set pixmap has origin at corner of
42 vt window instead of parent[0]! */
43 hasChanged = 1 << 19, 42 hasChanged = 1 << 19,
44 sizeSensitive = 1 << 20, 43 sizeSensitive = 1 << 20,
45 }; 44 };
46 45
47 unsigned int flags; 46 unsigned int flags;
48 47
49 enum { 48 enum {
50 transpPmapTiled = 1 << 0, 49 transpPmapTiled = 1 << 0,
51 transpPmapTinted = tintNeeded, 50 transpPmapTinted = tintNeeded,
52 transpPmapBlured = blurNeeded, 51 transpPmapBlurred = blurNeeded,
53 transpTransformations = tintNeeded | blurNeeded, 52 transpTransformations = tintNeeded | blurNeeded,
54 }; /* these flags are returned by make_transparency_pixmap if called */ 53 }; /* these flags are returned by make_transparency_pixmap if called */
55
56 bool check_clearChanged ()
57 {
58 bool r = flags & hasChanged;
59 flags &= ~hasChanged;
60 return r;
61 };
62 54
63# ifdef BG_IMAGE_FROM_FILE 55# ifdef BG_IMAGE_FROM_FILE
64# ifdef HAVE_AFTERIMAGE 56# ifdef HAVE_AFTERIMAGE
65 ASImage *original_asim; 57 ASImage *original_asim;
66# endif 58# endif
77 noScale = 0, 69 noScale = 0,
78 windowScale = 100, 70 windowScale = 100,
79 defaultScale = windowScale, 71 defaultScale = windowScale,
80 centerAlign = 50, 72 centerAlign = 50,
81 defaultAlign = centerAlign, 73 defaultAlign = centerAlign,
82 rootAlign = -10000
83 }; 74 };
84 75
85 unsigned int h_scale, v_scale;/* percents of the window size */ 76 unsigned int h_scale, v_scale;/* percents of the window size */
86 int h_align, v_align; /* percents of the window size: 77 int h_align, v_align; /* percents of the window size:
87 0 - left align, 50 - center, 100 - right */ 78 0 - left align, 50 - center, 100 - right */
113 bool set_transparent (); 104 bool set_transparent ();
114 bool set_blur_radius (const char *geom); 105 bool set_blur_radius (const char *geom);
115 bool set_tint (rxvt_color &new_tint); 106 bool set_tint (rxvt_color &new_tint);
116 bool unset_tint (); 107 bool unset_tint ();
117 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);
118 bool set_root_pixmap (); 111 void set_root_pixmap ();
119 112
120 unsigned long make_transparency_pixmap ();/* returns combination of the transpTransformations flags */ 113 unsigned long make_transparency_pixmap ();/* returns combination of the transpTransformations flags */
121# endif 114# endif
122 double invalid_since, valid_since; 115 double invalid_since, valid_since;
123 116
125 unsigned int pmap_width, pmap_height; 118 unsigned int pmap_width, pmap_height;
126 unsigned int pmap_depth; 119 unsigned int pmap_depth;
127 120
128 bool window_size_sensitive (); 121 bool window_size_sensitive ();
129 bool window_position_sensitive (); 122 bool window_position_sensitive ();
130
131 bool is_parentOrigin ()
132 {
133 return !(flags & isVtOrigin);
134 };
135 123
136 bool need_client_side_rendering (); 124 bool need_client_side_rendering ();
137 void apply (); 125 void apply ();
138 bool render (); 126 bool render ();
139 void invalidate () 127 void invalidate ()

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines