]>
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"
43 BImageControl
*control
;
48 int red_offset
, green_offset
, blue_offset
, red_bits
, green_bits
, blue_bits
,
50 unsigned char *red
, *green
, *blue
, *red_table
, *green_table
, *blue_table
;
51 unsigned int width
, height
, *xtable
, *ytable
;
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
);
57 void OrderedPseudoColorDither(int bytes_per_line
, unsigned char *pixel_data
);
60 Pixmap
renderPixmap(void);
61 Pixmap
render_solid(const BTexture
&texture
);
62 Pixmap
render_gradient(const BTexture
&texture
);
64 XImage
*renderXImage(void);
75 void cdgradient(void);
76 void pcgradient(void);
80 BImage(BImageControl
*c
, int w
, int h
);
83 Pixmap
render(const BTexture
&texture
);
87 class BImageControl
: public TimeoutHandler
{
92 unsigned int count
, width
, height
;
93 unsigned long pixel1
, pixel2
, texture
;
96 BImageControl(BaseDisplay
*dpy
, const ScreenInfo
*scrn
,
97 bool _dither
= False
, int _cpc
= 4,
98 unsigned long cache_timeout
= 300000l,
99 unsigned long cmax
= 200l);
100 virtual ~BImageControl(void);
102 inline BaseDisplay
*getBaseDisplay(void) const { return basedisplay
; }
104 inline bool doDither(void) { return dither
; }
106 inline const ScreenInfo
*getScreenInfo(void) { return screeninfo
; }
108 inline Window
getDrawable(void) const { return window
; }
110 inline Visual
*getVisual(void) { return screeninfo
->getVisual(); }
112 inline int getBitsPerPixel(void) const { return bits_per_pixel
; }
113 inline int getDepth(void) const { return screen_depth
; }
114 inline int getColorsPerChannel(void) const
115 { return colors_per_channel
; }
117 unsigned long getSqrt(unsigned int x
);
119 Pixmap
renderImage(unsigned int width
, unsigned int height
,
120 const BTexture
&texture
);
122 void installRootColormap(void);
123 void removeImage(Pixmap pixmap
);
124 void getColorTables(unsigned char **rmt
, unsigned char **gmt
,
126 int *roff
, int *goff
, int *boff
,
127 int *rbit
, int *gbit
, int *bbit
);
128 void getXColorTable(XColor
**c
, int *n
);
129 void getGradientBuffers(unsigned int w
, unsigned int h
,
130 unsigned int **xbuf
, unsigned int **ybuf
);
131 void setDither(bool d
) { dither
= d
; }
132 void setColorsPerChannel(int cpc
);
134 virtual void timeout(void);
138 BaseDisplay
*basedisplay
;
139 const ScreenInfo
*screeninfo
;
148 int colors_per_channel
, ncolors
, screen_number
, screen_depth
,
149 bits_per_pixel
, red_offset
, green_offset
, blue_offset
,
150 red_bits
, green_bits
, blue_bits
;
151 unsigned char red_color_table
[256], green_color_table
[256],
152 blue_color_table
[256];
153 unsigned int *grad_xbuffer
, *grad_ybuffer
, grad_buffer_width
,
155 unsigned long *sqrt_table
, cache_max
;
157 typedef std::list
<CachedImage
> CacheContainer
;
158 CacheContainer cache
;
160 Pixmap
searchCache(const unsigned int width
, const unsigned int height
,
161 const unsigned long texture
,
162 const BColor
&c1
, const BColor
&c2
);
This page took 0.041558 seconds and 4 git commands to generate.