ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtimg.h
Revision: 1.16
Committed: Thu Jun 7 06:08:10 2012 UTC (11 years, 11 months ago) by sf-exg
Content type: text/plain
Branch: MAIN
Changes since 1.15: +21 -2 lines
Log Message:
Add versions of contrast/brightness that take integer arguments.

File Contents

# Content
1 #ifndef IMG_H
2 #define IMG_H
3
4 #if HAVE_BG_PIXMAP && BG_IMAGE_FROM_FILE && ENABLE_TRANSPARENCY && HAVE_PIXBUF
5 #define HAVE_IMG 1
6 #endif
7
8 #if HAVE_IMG
9
10 #define float_to_component(d) ((d) * 65535.99)
11
12 #include <X11/extensions/Xrender.h>
13
14 struct rxvt_img
15 {
16 rxvt_screen *s;
17 Pixmap pm;
18 int x, y, w, h, repeat;
19 XRenderPictFormat *format;
20 bool shared; // true if we don't own it
21
22 rxvt_img (rxvt_screen *screen, XRenderPictFormat *format, int width, int height);
23 rxvt_img (rxvt_screen *screen, XRenderPictFormat *format, int width, int height, Pixmap pixmap);
24 static rxvt_img *new_from_root (rxvt_screen *s); // get root pixmap
25 static rxvt_img *new_from_file (rxvt_screen *s, const char *filename); // from pixbuf
26
27 ~rxvt_img ();
28
29 Pixmap steal ()
30 {
31 shared = true;
32 return pm;
33 }
34
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
48 void fill (const rxvt_color &c);
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
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
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
68 bool render_pixbuf (GdkPixbuf *pixbuf, int src_x, int src_y, int width, int height, int dst_x, int dst_y);
69
70 // copy
71 rxvt_img *blur (int rh, int rv);
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]);
75 rxvt_img *scale (int new_width, int new_height);
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);
79 };
80
81 #endif
82
83 #endif
84