]> icculus.org git repositories - dana/openbox.git/blob - otk/image.hh
new timer infrastructure. takes a function pointer for the timeout, with a void*...
[dana/openbox.git] / otk / image.hh
1 // -*- mode: C++; indent-tabs-mode: nil; -*-
2 #ifndef   __Image_hh
3 #define   __Image_hh
4
5 extern "C" {
6 #include <X11/Xlib.h>
7 #include <X11/Xutil.h>
8 }
9
10 #include <list>
11
12 #include "color.hh"
13 #include "screeninfo.hh"
14 #include "timer.hh"
15
16 namespace otk {
17
18 class BImageControl;
19 class BTexture;
20 class ScreenInfo;
21
22 class BImage {
23 private:
24   BImageControl *control;
25   bool interlaced;
26   XColor *colors;
27
28   BColor from, to;
29   int red_offset, green_offset, blue_offset, red_bits, green_bits, blue_bits,
30     ncolors, cpc, cpccpc;
31   unsigned char *red, *green, *blue, *red_table, *green_table, *blue_table;
32   unsigned int width, height, *xtable, *ytable;
33
34   void TrueColorDither(unsigned int bit_depth, int bytes_per_line,
35                        unsigned char *pixel_data);
36   void PseudoColorDither(int bytes_per_line, unsigned char *pixel_data);
37 #ifdef ORDEREDPSEUDO
38   void OrderedPseudoColorDither(int bytes_per_line, unsigned char *pixel_data);
39 #endif
40
41   Pixmap renderPixmap(void);
42   Pixmap render_solid(const BTexture &texture);
43   Pixmap render_gradient(const BTexture &texture);
44
45   XImage *renderXImage(void);
46
47   void invert(void);
48   void bevel1(void);
49   void bevel2(void);
50   void border(const BTexture &texture);
51   void dgradient(void);
52   void egradient(void);
53   void hgradient(void);
54   void pgradient(void);
55   void rgradient(void);
56   void vgradient(void);
57   void cdgradient(void);
58   void pcgradient(void);
59
60
61 public:
62   BImage(BImageControl *c, int w, int h);
63   ~BImage(void);
64
65   Pixmap render(const BTexture &texture);
66 };
67
68
69 class BImageControl {
70 public:
71   struct CachedImage {
72     Pixmap pixmap;
73
74     unsigned int count, width, height;
75     unsigned long pixel1, pixel2, texture;
76   };
77
78   BImageControl(OBTimerQueueManager *timermanager,
79                 const ScreenInfo *scrn,
80                 bool _dither= False, int _cpc = 4,
81                 unsigned long cache_timeout = 300000l,
82                 unsigned long cmax = 200l);
83   virtual ~BImageControl(void);
84
85   inline bool doDither(void) { return dither; }
86
87   inline const ScreenInfo* getScreenInfo() const { return screeninfo; }
88
89   inline Window getDrawable(void) const { return window; }
90
91   inline Visual *getVisual(void) { return screeninfo->getVisual(); }
92
93   inline int getBitsPerPixel(void) const { return bits_per_pixel; }
94   inline int getDepth(void) const { return screen_depth; }
95   inline int getColorsPerChannel(void) const
96     { return colors_per_channel; }
97
98   unsigned long getSqrt(unsigned int x);
99
100   Pixmap renderImage(unsigned int width, unsigned int height,
101                      const BTexture &texture);
102
103   void installRootColormap(void);
104   void removeImage(Pixmap pixmap);
105   void getColorTables(unsigned char **rmt, unsigned char **gmt,
106                       unsigned char **bmt,
107                       int *roff, int *goff, int *boff,
108                       int *rbit, int *gbit, int *bbit);
109   void getXColorTable(XColor **c, int *n);
110   void getGradientBuffers(unsigned int w, unsigned int h,
111                           unsigned int **xbuf, unsigned int **ybuf);
112   void setDither(bool d) { dither = d; }
113   void setColorsPerChannel(int cpc);
114
115   static void timeout(BImageControl *t);
116
117 private:
118   bool dither;
119   const ScreenInfo *screeninfo;
120   OBTimer *timer;
121
122   Colormap colormap;
123
124   Window window;
125   XColor *colors;
126   int colors_per_channel, ncolors, screen_number, screen_depth,
127     bits_per_pixel, red_offset, green_offset, blue_offset,
128     red_bits, green_bits, blue_bits;
129   unsigned char red_color_table[256], green_color_table[256],
130     blue_color_table[256];
131   unsigned int *grad_xbuffer, *grad_ybuffer, grad_buffer_width,
132     grad_buffer_height;
133   unsigned long *sqrt_table, cache_max;
134
135   typedef std::list<CachedImage> CacheContainer;
136   CacheContainer cache;
137
138   Pixmap searchCache(const unsigned int width, const unsigned int height,
139                      const unsigned long texture,
140                      const BColor &c1, const BColor &c2);
141 };
142
143 }
144
145 #endif // __Image_hh
146