]> icculus.org git repositories - mikachu/openbox.git/blob - src/Image.hh
no more menus, at last. woop
[mikachu/openbox.git] / src / Image.hh
1 // -*- mode: C++; indent-tabs-mode: nil; -*-
2 // Image.hh for Blackbox - an X11 Window manager
3 // Copyright (c) 2001 - 2002 Sean 'Shaleh' Perry <shaleh@debian.org>
4 // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining a
7 // copy of this software and associated documentation files (the "Software"),
8 // to deal in the Software without restriction, including without limitation
9 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 // and/or sell copies of the Software, and to permit persons to whom the
11 // Software is furnished to do so, subject to the following conditions:
12 //
13 // The above copyright notice and this permission notice shall be included in
14 // all copies or substantial portions of the Software.
15 //
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 // DEALINGS IN THE SOFTWARE.
23
24 #ifndef   __Image_hh
25 #define   __Image_hh
26
27 extern "C" {
28 #include <X11/Xlib.h>
29 #include <X11/Xutil.h>
30 }
31
32 #include <list>
33
34 #include "Timer.hh"
35 #include "BaseDisplay.hh"
36 #include "Color.hh"
37
38 class BImageControl;
39 class BTexture;
40
41 class BImage {
42 private:
43   BImageControl *control;
44   bool interlaced;
45   XColor *colors;
46
47   BColor from, to;
48   int red_offset, green_offset, blue_offset, red_bits, green_bits, blue_bits,
49     ncolors, cpc, cpccpc;
50   unsigned char *red, *green, *blue, *red_table, *green_table, *blue_table;
51   unsigned int width, height, *xtable, *ytable;
52
53   void TrueColorDither(unsigned int bit_depth, int bytes_per_line,
54                        unsigned char *pixel_data);
55   void PseudoColorDither(int bytes_per_line, unsigned char *pixel_data);
56 #ifdef ORDEREDPSEUDO
57   void OrderedPseudoColorDither(int bytes_per_line, unsigned char *pixel_data);
58 #endif
59
60   Pixmap renderPixmap(void);
61   Pixmap render_solid(const BTexture &texture);
62   Pixmap render_gradient(const BTexture &texture);
63
64   XImage *renderXImage(void);
65
66   void invert(void);
67   void bevel1(void);
68   void bevel2(void);
69   void border(const BTexture &texture);
70   void dgradient(void);
71   void egradient(void);
72   void hgradient(void);
73   void pgradient(void);
74   void rgradient(void);
75   void vgradient(void);
76   void cdgradient(void);
77   void pcgradient(void);
78
79
80 public:
81   BImage(BImageControl *c, int w, int h);
82   ~BImage(void);
83
84   Pixmap render(const BTexture &texture);
85 };
86
87
88 class BImageControl : public TimeoutHandler {
89 public:
90   struct CachedImage {
91     Pixmap pixmap;
92
93     unsigned int count, width, height;
94     unsigned long pixel1, pixel2, texture;
95   };
96
97   BImageControl(BaseDisplay *dpy, const ScreenInfo *scrn,
98                 bool _dither= False, int _cpc = 4,
99                 unsigned long cache_timeout = 300000l,
100                 unsigned long cmax = 200l);
101   virtual ~BImageControl(void);
102
103   inline BaseDisplay *getBaseDisplay(void) const { return basedisplay; }
104
105   inline bool doDither(void) { return dither; }
106
107   inline const ScreenInfo *getScreenInfo(void) { return screeninfo; }
108
109   inline Window getDrawable(void) const { return window; }
110
111   inline Visual *getVisual(void) { return screeninfo->getVisual(); }
112
113   inline int getBitsPerPixel(void) const { return bits_per_pixel; }
114   inline int getDepth(void) const { return screen_depth; }
115   inline int getColorsPerChannel(void) const
116     { return colors_per_channel; }
117
118   unsigned long getSqrt(unsigned int x);
119
120   Pixmap renderImage(unsigned int width, unsigned int height,
121                      const BTexture &texture);
122
123   void installRootColormap(void);
124   void removeImage(Pixmap pixmap);
125   void getColorTables(unsigned char **rmt, unsigned char **gmt,
126                       unsigned char **bmt,
127                       int *roff, int *goff, int *boff,
128                       int *rbit, int *gbit, int *bbit);
129   void getXColorTable(XColor **c, int *n);
130   void getGradientBuffers(unsigned int w, unsigned int h,
131                           unsigned int **xbuf, unsigned int **ybuf);
132   void setDither(bool d) { dither = d; }
133   void setColorsPerChannel(int cpc);
134
135   virtual void timeout(void);
136
137 private:
138   bool dither;
139   BaseDisplay *basedisplay;
140   const ScreenInfo *screeninfo;
141 #ifdef    TIMEDCACHE
142   BTimer *timer;
143 #endif // TIMEDCACHE
144
145   Colormap colormap;
146
147   Window window;
148   XColor *colors;
149   int colors_per_channel, ncolors, screen_number, screen_depth,
150     bits_per_pixel, red_offset, green_offset, blue_offset,
151     red_bits, green_bits, blue_bits;
152   unsigned char red_color_table[256], green_color_table[256],
153     blue_color_table[256];
154   unsigned int *grad_xbuffer, *grad_ybuffer, grad_buffer_width,
155     grad_buffer_height;
156   unsigned long *sqrt_table, cache_max;
157
158   typedef std::list<CachedImage> CacheContainer;
159   CacheContainer cache;
160
161   Pixmap searchCache(const unsigned int width, const unsigned int height,
162                      const unsigned long texture,
163                      const BColor &c1, const BColor &c2);
164 };
165
166
167 #endif // __Image_hh
168