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.6 by root, Sun Jun 3 18:14:13 2012 UTC vs.
Revision 1.16 by sf-exg, Thu Jun 7 06:08:10 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 && BG_IMAGE_FROM_FILE && ENABLE_TRANSPARENCY && HAVE_PIXBUF
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
10#define float_to_component(d) ((d) * 65535.99)
9 11
10#include <X11/extensions/Xrender.h> 12#include <X11/extensions/Xrender.h>
11 13
12struct rxvt_img 14struct rxvt_img
13{ 15{
14 rxvt_screen *s; 16 rxvt_screen *s;
15 Pixmap pm; 17 Pixmap pm;
16 int w, h; 18 int x, y, w, h, repeat;
17 XRenderPictFormat *format; 19 XRenderPictFormat *format;
18 bool shared; // true if we don't own it 20 bool shared; // true if we don't own it
19 21
20 rxvt_img (rxvt_screen *screen, XRenderPictFormat *format, int width, int height); 22 rxvt_img (rxvt_screen *screen, XRenderPictFormat *format, int width, int height);
21 rxvt_img (rxvt_screen *screen, XRenderPictFormat *format, int width, int height, Pixmap pixmap); 23 rxvt_img (rxvt_screen *screen, XRenderPictFormat *format, int width, int height, Pixmap pixmap);
29 shared = true; 31 shared = true;
30 return pm; 32 return pm;
31 } 33 }
32 34
33 // inplace 35 // inplace
36 void move (int dx, int dy)
37 {
38 x += dx;
39 y += dy;
40 }
41
42 void repeat_mode (int repeat)
43 {
44 this->repeat = repeat;
45 }
46
47 void unshare (); // create a copy of the pixmap if !shared
34 void fill (const rxvt_color &c); 48 void fill (const rxvt_color &c);
35 void blur (int rh, int rv); 49 void brightness (unsigned short r, unsigned short g, unsigned short b, unsigned short a);
50 void contrast (unsigned short r, unsigned short g, unsigned short b, unsigned short a);
51
36 void brightness (double r, double g, double b, double a = 1.); 52 void brightness (double r, double g, double b, double a = 1.)
53 {
54 brightness (float_to_component (r),
55 float_to_component (g),
56 float_to_component (b),
57 float_to_component (a));
58 }
59
37 void contrast (double r, double g, double b, double a = 1.); 60 void contrast (double r, double g, double b, double a = 1.)
61 {
62 contrast (float_to_component (r),
63 float_to_component (g),
64 float_to_component (b),
65 float_to_component (a));
66 }
67
38 void render (GdkPixbuf *pixbuf, int src_x, int src_y, int width, int height, int dst_x, int dst_y); 68 bool render_pixbuf (GdkPixbuf *pixbuf, int src_x, int src_y, int width, int height, int dst_x, int dst_y);
39 69
40 // copy 70 // copy
71 rxvt_img *blur (int rh, int rv);
41 rxvt_img *copy (); 72 rxvt_img *clone ();
73 rxvt_img *sub_rect (int x, int y, int width, int height);
74 rxvt_img *transform (int new_width, int new_height, double matrix[9]);
42 rxvt_img *scale (int new_width, int new_height); 75 rxvt_img *scale (int new_width, int new_height);
43 rxvt_img *transform (int new_width, int new_height, double matrix[16]); 76 rxvt_img *rotate (int new_width, int new_height, int x, int y, double phi);
77 rxvt_img *convert_to (XRenderPictFormat *format, const rxvt_color &bg);
78 rxvt_img *blend (rxvt_img *img, double factor);
44}; 79};
45 80
46#endif 81#endif
47 82
48#endif 83#endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines