0.51.1 pre snapshot. Be careful, it may be buggy. It fixes some bugs though.
[wmaker-crm.git] / wrlib / wraster.h
blob04c8d9bfb72f3f71569aa66f92e695af6f9eb653
1 /*
2 * Raster graphics library
3 *
4 * Copyright (c) 1997, 1998 Alfredo K. Kojima
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the Free
18 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 * Environment variables:
24 * WRASTER_GAMMA <rgamma>/<ggamma>/<bgamma>
25 * gamma correction value. Must be greater than 0
26 * Only for PseudoColor visuals.
28 * Default:
29 * WRASTER_GAMMA 1/1/1
32 * If you want a specific value for a screen, append the screen number
33 * preceded by a hash to the variable name as in
34 * WRASTER_GAMMA#1
35 * for screen number 1
38 #ifndef RLRASTER_H_
39 #define RLRASTER_H_
42 /* version of the header for the library: 0.12 */
43 #define WRASTER_HEADER_VERSION 12
46 #include <X11/Xlib.h>
47 #include <X11/Xutil.h>
49 #ifdef XSHM
50 #include <X11/extensions/XShm.h>
51 #endif
53 /* RM_MATCH or RM_DITHER */
54 #define RC_RenderMode (1<<0)
56 /* number of colors per channel for colormap in PseudoColor mode */
57 #define RC_ColorsPerChannel (1<<1)
59 /* do gamma correction */
60 #define RC_GammaCorrection (1<<2)
62 /* visual id to use */
63 #define RC_VisualID (1<<3)
65 /* shared memory usage */
66 #define RC_UseSharedMemory (1<<4)
68 /* use default instead of best visual */
69 #define RC_DefaultVisual (1<<5)
71 #ifdef __cplusplus
72 extern "C" {
73 #endif /* __cplusplus */
75 typedef struct RContextAttributes {
76 int flags;
77 int render_mode;
78 int colors_per_channel; /* for PseudoColor */
79 float rgamma; /* gamma correction for red, */
80 float ggamma; /* green, */
81 float bgamma; /* and blue */
82 VisualID visualid; /* visual ID to use */
83 int use_shared_memory; /* True of False */
84 } RContextAttributes;
88 * describes a screen in terms of depth, visual, number of colors
89 * we can use, if we should do dithering, and what colors to use for
90 * dithering.
92 typedef struct RContext {
93 Display *dpy;
94 int screen_number;
95 Colormap cmap;
97 RContextAttributes *attribs;
99 GC copy_gc;
101 Visual *visual;
102 int depth;
103 Window drawable; /* window to pass for XCreatePixmap().*/
104 /* generally = root */
105 int vclass;
107 unsigned long black;
108 unsigned long white;
110 int red_offset; /* only used in 24bpp */
111 int green_offset;
112 int blue_offset;
114 /* only used for pseudocolor and grayscale */
116 XStandardColormap *std_rgb_map; /* standard RGB colormap */
117 XStandardColormap *std_gray_map; /* standard grayscale colormap */
119 int ncolors; /* total number of colors we can use */
120 XColor *colors; /* internal colormap */
122 struct {
123 unsigned int use_shared_pixmap:1;
124 } flags;
125 } RContext;
128 typedef struct RColor {
129 unsigned char red;
130 unsigned char green;
131 unsigned char blue;
132 unsigned char alpha;
133 } RColor;
136 typedef struct RHSVColor {
137 unsigned short hue; /* 0-359 */
138 unsigned char saturation; /* 0-255 */
139 unsigned char value; /* 0-255 */
140 } RHSVColor;
144 typedef struct RPoint {
145 int x, y;
146 } RPoint;
149 typedef struct RSegment {
150 int x1, y1, x2, y2;
151 } RSegment;
155 * internal 24bit+alpha image representation
157 typedef struct RImage {
158 unsigned width, height; /* size of the image */
159 RColor background; /* background color */
160 unsigned char *data[4]; /* image data (R,G,B,A) */
161 } RImage;
165 * internal wrapper for XImage. Used for shm abstraction
167 typedef struct RXImage {
168 XImage *image;
170 /* Private data. Do not access */
171 #ifdef XSHM
172 XShmSegmentInfo info;
173 char is_shared;
174 #endif
175 } RXImage;
178 /* note that not all operations are supported in all functions */
179 enum {
180 RClearOperation, /* clear with 0 */
181 RCopyOperation,
182 RNormalOperation, /* same as combine */
183 RAddOperation,
184 RSubtractOperation
188 /* image display modes */
189 enum {
190 RDitheredRendering = 0,
191 RBestMatchRendering = 1
194 /* bw compat */
195 #define RM_DITHER RDitheredRendering
196 #define RM_MATCH RBestMatchRendering
198 enum {
199 RAbsoluteCoordinates = 0,
200 RRelativeCoordinates = 1
204 enum {
205 RSunkenBevel = -1,
206 RRaisedBevel = 1
208 /* bw compat */
209 #define RBEV_SUNKEN RSunkenBevel
210 /* 1 pixel wide */
211 #define RBEV_RAISED RRaisedBevel
212 /* 1 pixel wide on top/left 2 on bottom/right */
213 #define RBEV_RAISED2 2
214 /* 2 pixel width */
215 #define RBEV_RAISED3 3
217 enum {
218 RHorizontalGradient = 2,
219 RVerticalGradient = 3,
220 RDiagonalGradient = 4
222 /* for backwards compatibility */
223 #define RGRD_HORIZONTAL RHorizontalGradient
224 #define RGRD_VERTICAL RVerticalGradient
225 #define RGRD_DIAGONAL RDiagonalGradient
229 /* error codes */
230 #define RERR_NONE 0
231 #define RERR_OPEN 1 /* cant open file */
232 #define RERR_READ 2 /* error reading from file */
233 #define RERR_WRITE 3 /* error writing to file */
234 #define RERR_NOMEMORY 4 /* out of memory */
235 #define RERR_NOCOLOR 5 /* out of color cells */
236 #define RERR_BADIMAGEFILE 6 /* image file is corrupted or invalid */
237 #define RERR_BADFORMAT 7 /* image file format is unknown */
238 #define RERR_BADINDEX 8 /* no such image index in file */
240 #define RERR_BADVISUALID 16 /* invalid visual ID requested for context */
242 #define RERR_XERROR 127 /* internal X error */
243 #define RERR_INTERNAL 128 /* should not happen */
247 * Returns a NULL terminated array of strings containing the
248 * supported formats, such as: TIFF, XPM, PNG, JPEG, PPM, GIF
249 * Do not free the returned data.
251 char **RSupportedFileFormats(void);
254 * Xlib contexts
256 RContext *RCreateContext(Display *dpy, int screen_number,
257 RContextAttributes *attribs);
259 void RDestroyContext(RContext *context);
261 Bool RGetClosestXColor(RContext *context, RColor *color, XColor *retColor);
264 * RImage creation
266 RImage *RCreateImage(unsigned width, unsigned height, int alpha);
268 RImage *RCreateImageFromXImage(RContext *context, XImage *image, XImage *mask);
270 RImage *RCreateImageFromDrawable(RContext *context, Drawable drawable,
271 Pixmap mask);
273 RImage *RLoadImage(RContext *context, char *file, int index);
276 void RDestroyImage(RImage *image);
278 RImage *RGetImageFromXPMData(RContext *context, char **data);
281 * RImage storing
283 Bool RSaveImage(RImage *image, char *filename, char *format);
286 * Area manipulation
288 RImage *RCloneImage(RImage *image);
290 RImage *RGetSubImage(RImage *image, int x, int y, unsigned width,
291 unsigned height);
293 void RCombineImageWithColor(RImage *image, RColor *color);
295 void RCombineImages(RImage *image, RImage *src);
297 void RCombineArea(RImage *image, RImage *src, int sx, int sy, unsigned width,
298 unsigned height, int dx, int dy);
300 void RCombineImagesWithOpaqueness(RImage *image, RImage *src, int opaqueness);
302 void RCombineAreaWithOpaqueness(RImage *image, RImage *src, int sx, int sy,
303 unsigned width, unsigned height, int dx, int dy,
304 int opaqueness);
306 RImage *RScaleImage(RImage *image, unsigned new_width, unsigned new_height);
308 RImage *RMakeTiledImage(RImage *tile, unsigned width, unsigned height);
310 RImage* RMakeCenteredImage(RImage *image, unsigned width, unsigned height,
311 RColor *color);
314 * Drawing
316 Bool RGetPixel(RImage *image, int x, int y, RColor *color);
318 void RPutPixel(RImage *image, int x, int y, RColor *color);
320 void ROperatePixel(RImage *image, int operation, int x, int y, RColor *color);
322 void RPutPixels(RImage *image, RPoint *points, int npoints, int mode,
323 RColor *color);
325 void ROperatePixels(RImage *image, int operation, RPoint *points,
326 int npoints, int mode, RColor *color);
328 int RDrawLine(RImage *image, int x0, int y0, int x1, int y1, RColor *color);
330 int ROperateLine(RImage *image, int operation, int x0, int y0, int x1, int y1,
331 RColor *color);
333 void RDrawLines(RImage *image, RPoint *points, int npoints, int mode,
334 RColor *color);
336 void ROperateLines(RImage *image, int operation, RPoint *points, int npoints,
337 int mode, RColor *color);
339 void RDrawSegments(RImage *image, RSegment *segs, int nsegs, RColor *color);
341 void ROperateSegments(RImage *image, int operation, RSegment *segs, int nsegs,
342 RColor *color);
345 * Color convertion
347 void RRGBtoHSV(RColor *color, RHSVColor *hsv);
348 void RHSVtoRGB(RHSVColor *hsv, RColor *rgb);
351 * Painting
353 void RClearImage(RImage *image, RColor *color);
355 void RBevelImage(RImage *image, int bevel_type);
357 RImage *RRenderGradient(unsigned width, unsigned height, RColor *from,
358 RColor *to, int style);
361 RImage *RRenderMultiGradient(unsigned width, unsigned height, RColor **colors,
362 int style);
367 * Convertion into X Pixmaps
369 int RConvertImage(RContext *context, RImage *image, Pixmap *pixmap);
371 int RConvertImageMask(RContext *context, RImage *image, Pixmap *pixmap,
372 Pixmap *mask, int threshold);
376 * misc. utilities
378 RXImage *RCreateXImage(RContext *context, int depth,
379 unsigned width, unsigned height);
381 void RDestroyXImage(RContext *context, RXImage *ximage);
383 void RPutXImage(RContext *context, Drawable d, GC gc, RXImage *ximage,
384 int src_x, int src_y, int dest_x, int dest_y,
385 unsigned width, unsigned height);
387 /* do not free the returned string! */
388 const char *RMessageForError(int errorCode);
390 int RBlurImage(RImage *image);
392 /****** Global Variables *******/
394 extern int RErrorCode;
396 #ifdef __cplusplus
398 #endif /* __cplusplus */
400 #endif