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

Comparing rxvt-unicode/src/rxvtimg.h (file contents):
Revision 1.4 by root, Sun Jun 3 16:54:04 2012 UTC vs.
Revision 1.40 by root, Fri Jun 15 19:50:56 2012 UTC

1#ifndef IMG_H 1#ifndef IMG_H),
2#define IMG_H 2#define IMG_H
3 3
4#if defined HAVE_BG_PIXMAP && defined BG_IMAGE_FROM_FILE && defined ENABLE_TRANSPARENCY && defined HAVE_PIXBUF 4#if HAVE_BG_PIXMAP
5 #define HAVE_IMG 1 5 #define HAVE_IMG 1
6#endif 6#endif
7 7
8#if HAVE_IMG 8#if HAVE_IMG
9 9
10#define float_to_component(d) (int32_t)((d) * 65535.99)
11
10#include <X11/extensions/Xrender.h> 12#include <X11/extensions/Xrender.h>
11 13
12struct rxvt_img 14struct rxvt_img
13{ 15{
16 typedef double nv;
17
18 // *could* also hold the Pixmap itself
19 struct pixref
20 {
21 int cnt;
22 int w, h;
23 bool ours; // false if we don't own the pixmap at all
24
25 pixref (int w, int h)
26 : cnt(1), w(w), h(h), ours(true)
27 {
28 }
29 };
30
14 rxvt_screen *s; 31 rxvt_screen *s;
15 Pixmap pm; 32 Pixmap pm;
16 int w, h; 33 pixref *ref; // shared refcnt
34 int x, y, w, h, repeat;
17 XRenderPictFormat *format; 35 XRenderPictFormat *format;
18 36
19 rxvt_img (rxvt_screen *screen, XRenderPictFormat *format, int width, int height); 37 rxvt_img (rxvt_screen *screen, XRenderPictFormat *format, int x, int y, int width, int height, int repeat = RepeatNormal);
20 rxvt_img (rxvt_screen *screen, XRenderPictFormat *format, int width, int height, Pixmap pixmap); 38 rxvt_img (const rxvt_img &img);
39 void alloc ();
40
41# if HAVE_PIXBUF
42 static rxvt_img *new_from_pixbuf (rxvt_screen *s, GdkPixbuf *pb); // from pixbuf
43 static rxvt_img *new_from_file (rxvt_screen *s, const char *filename); // via pixbuf
44# endif
21 rxvt_img (rxvt_screen *screen); // get root pixmap 45 static rxvt_img *new_from_root (rxvt_screen *s); // get root pixmap
22 rxvt_img (const char *filename); // from pixbuf
23 46
24 ~rxvt_img (); 47 ~rxvt_img ();
25 48
26 Pixmap steal () 49 Pixmap steal ()
27 { 50 {
28 Pixmap res = pm; 51 ref->ours = false;
29 pm = 0;
30 return res; 52 return pm;
31 } 53 }
32 54
33 // inplace 55 // inplace
56 void move (int dx, int dy)
57 {
58 x += dx;
59 y += dy;
60 }
61
62 void repeat_mode (int repeat)
63 {
64 this->repeat = repeat;
65 }
66
67 void unshare (); // prepare for write
34 void fill (const rxvt_color &c); 68 void fill (const rgba &c);
35 void blur (int rh, int rv); 69 void add_alpha ();
36 void brightness (double r, double g, double b, double a = 1.); 70 //void linear_gradient (const XLinearGradient *gradient, const XFixed *stops, const XRenderColor *colors, int nstops);
37 void contrast (double r, double g, double b, double a = 1.); 71 //void radial_gradient (const XRadialGradient *gradient, const XFixed *stops, const XRenderColor *colors, int nstops);
38 void render (GdkPixbuf *pixbuf, int src_x, int src_y, int width, int height, int dst_x, int dst_y); 72 //void conical_gradient (const XConicalGradient *gradient, const XFixed *stops, const XRenderColor *colors, int nstops);
73 void brightness (int32_t r, int32_t g, int32_t b, int32_t a);
74 void contrast (int32_t r, int32_t g, int32_t b, int32_t a);
75
76 void brightness (nv r, nv g, nv b, nv a = 1.)
77 {
78 brightness (float_to_component (r),
79 float_to_component (g),
80 float_to_component (b),
81 float_to_component (a));
82 }
83
84 void contrast (nv r, nv g, nv b, nv a = 1.)
85 {
86 contrast (float_to_component (r),
87 float_to_component (g),
88 float_to_component (b),
89 float_to_component (a));
90 }
91
92 void draw (rxvt_img *img, int op = PictOpOver, nv mask = 1.);
93#if 0
94 void draw (rxvt_img *img, int op = PictOpOver, nv mask = 1.,
95 nv px, nv py, nv qx, nv qy, nv rx, nv ry, nv sx, nv sy);
96#endif
39 97
40 // copy 98 // copy
99 rxvt_img *reify (); // make x, y 0, make real width/height
100 rxvt_img *blur (int rh, int rv);
41 rxvt_img *copy (); 101 rxvt_img *clone ();
102 rxvt_img *sub_rect (int x, int y, int width, int height);
103 rxvt_img *transform (const nv matrix[3][3]);
42 rxvt_img *scale (int new_width, int new_height); 104 rxvt_img *scale (int new_width, int new_height);
43 rxvt_img *transform (int new_width, int new_height, double matrix[16]); 105 rxvt_img *rotate (int cx, int cy, nv phi);
106 rxvt_img *convert_format (XRenderPictFormat *format, const rgba &bg);
107 rxvt_img *blend (rxvt_img *img, nv factor = 1.);
108
109 // egregiuous helper category
110 rxvt_img *replace (rxvt_img *&p)
111 {
112 delete p;
113 p = this;
114 return this;
115 }
116
117private:
118
119 void destroy ();
120 Picture picture ();
121 rxvt_img *transform (const nv *matrix);
44}; 122};
45 123
46#endif 124#endif
47 125
48#endif 126#endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines