]>
Dogcows Code - chaz/openbox/blob - 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)
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:
13 // The above copyright notice and this permission notice shall be included in
14 // all copies or substantial portions of the Software.
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.
29 #include <X11/Xutil.h>
35 #include "BaseDisplay.hh"
44 BImageControl
*control
;
49 int red_offset
, green_offset
, blue_offset
, red_bits
, green_bits
, blue_bits
,
51 unsigned char *red
, *green
, *blue
, *red_table
, *green_table
, *blue_table
;
52 unsigned int width
, height
, *xtable
, *ytable
;
54 void TrueColorDither(unsigned int bit_depth
, int bytes_per_line
,
55 unsigned char *pixel_data
);
56 void PseudoColorDither(int bytes_per_line
, unsigned char *pixel_data
);
58 void OrderedPseudoColorDither(int bytes_per_line
, unsigned char *pixel_data
);
61 Pixmap
renderPixmap(void);
63 XImage
*renderXImage(void);
74 void cdgradient(void);
75 void pcgradient(void);
79 BImage(BImageControl
*c
, unsigned int w
, unsigned int h
);
82 Pixmap
render(const BTexture
&texture
);
83 Pixmap
render_solid(const BTexture
&texture
);
84 Pixmap
render_gradient(const BTexture
&texture
);
86 // static methods for the builtin cache
87 static unsigned long maximumCacheSize(void);
88 static void setMaximumCacheSize(const unsigned long cache_max
);
90 static unsigned long cacheTimeout(void);
91 static void setCacheTimeout(const unsigned long cache_timeout
);
95 static BImageCache
*imagecache
;
99 class BImageControl
: public TimeoutHandler
{
104 unsigned int count
, width
, height
;
105 unsigned long pixel1
, pixel2
, texture
;
108 BImageControl(BaseDisplay
*dpy
, const ScreenInfo
*scrn
,
109 bool _dither
= False
, int _cpc
= 4,
110 unsigned long cache_timeout
= 300000l,
111 unsigned long cmax
= 200l);
112 virtual ~BImageControl(void);
114 inline BaseDisplay
*getBaseDisplay(void) const { return basedisplay
; }
116 inline bool doDither(void) { return dither
; }
118 inline const ScreenInfo
*getScreenInfo(void) { return screeninfo
; }
120 inline Window
getDrawable(void) const { return window
; }
122 inline Visual
*getVisual(void) { return screeninfo
->getVisual(); }
124 inline int getBitsPerPixel(void) const { return bits_per_pixel
; }
125 inline int getDepth(void) const { return screen_depth
; }
126 inline int getColorsPerChannel(void) const
127 { return colors_per_channel
; }
129 unsigned long getSqrt(unsigned int x
);
131 Pixmap
renderImage(unsigned int width
, unsigned int height
,
132 const BTexture
&texture
);
134 void installRootColormap(void);
135 void removeImage(Pixmap pixmap
);
136 void getColorTables(unsigned char **rmt
, unsigned char **gmt
,
138 int *roff
, int *goff
, int *boff
,
139 int *rbit
, int *gbit
, int *bbit
);
140 void getXColorTable(XColor
**c
, int *n
);
141 void getGradientBuffers(unsigned int w
, unsigned int h
,
142 unsigned int **xbuf
, unsigned int **ybuf
);
143 void setDither(bool d
) { dither
= d
; }
144 void setColorsPerChannel(int cpc
);
146 virtual void timeout(void);
150 BaseDisplay
*basedisplay
;
151 const ScreenInfo
*screeninfo
;
160 int colors_per_channel
, ncolors
, screen_number
, screen_depth
,
161 bits_per_pixel
, red_offset
, green_offset
, blue_offset
,
162 red_bits
, green_bits
, blue_bits
;
163 unsigned char red_color_table
[256], green_color_table
[256],
164 blue_color_table
[256];
165 unsigned int *grad_xbuffer
, *grad_ybuffer
, grad_buffer_width
,
167 unsigned long *sqrt_table
, cache_max
;
169 typedef std::list
<CachedImage
> CacheContainer
;
170 CacheContainer cache
;
172 Pixmap
searchCache(const unsigned int width
, const unsigned int height
,
173 const unsigned long texture
,
174 const BColor
&c1
, const BColor
&c2
);
This page took 0.0397 seconds and 4 git commands to generate.