2 * Copyright (C) 1989-95 GROUPE BULL
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to
6 * deal in the Software without restriction, including without limitation the
7 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
8 * sell copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 * Except as contained in this notice, the name of GROUPE BULL shall not be
22 * used in advertising or otherwise to promote the sale, use or other dealings
23 * in this Software without prior written authorization from GROUPE BULL.
26 /*****************************************************************************\
32 * Developed by Arnaud Le Hors *
33 \*****************************************************************************/
36 * The code related to FOR_MSW has been added by
37 * HeDu (hedu@cul-ipn.uni-kiel.de) 4/94
41 * The code related to AMIGA has been added by
42 * Lorens Younes (d93-hyo@nada.kth.se) 4/96
48 #if (defined(_WINDOWS) || defined(__WXMSW__) || defined(WIN32)) && !defined(FOR_MSW)
51 /* Piggyback on MSW for now */
52 #if (defined(__OS2__) || defined(__WXPM__) || defined(OS232)) && !defined(FOR_MSW)
57 * first some identification numbers:
58 * the version and revision numbers are determined with the following rule:
59 * SO Major number = LIB minor version number.
60 * SO Minor number = LIB sub-minor version number.
61 * e.g: Xpm version 3.2f
62 * we forget the 3 which is the format number, 2 gives 2, and f gives 6.
63 * thus we have XpmVersion = 2 and XpmRevision = 6
64 * which gives SOXPMLIBREV = 2.6
66 * Then the XpmIncludeVersion number is built from these numbers.
70 #define XpmRevision 11
71 #define XpmIncludeVersion ((XpmFormat * 100 + XpmVersion) * 100 + XpmRevision)
76 # define SYSV /* uses memcpy string.h etc. */
78 # include "simx.h" /* defines some X stuff using MSW types */
79 #define NEED_STRCASECMP /* at least for MSVC++ */
83 # else /* not AMIGA */
84 # include <X11/Xlib.h>
85 # include <X11/Xutil.h>
86 # endif /* not AMIGA */
89 /* let's define Pixel if it is not done yet */
90 #if ! defined(_XtIntrinsic_h) && ! defined(PIXEL_ALREADY_TYPEDEFED)
91 typedef unsigned long Pixel
; /* Index into colormap */
92 # define PIXEL_ALREADY_TYPEDEFED
95 /* make sure we know whether function prototypes are needed or not */
96 #ifndef NeedFunctionPrototypes
97 # if defined(__STDC__) || defined(__cplusplus) || defined(c_plusplus)
98 # define NeedFunctionPrototypes 1
100 # define NeedFunctionPrototypes 0
104 /* DW: bug in makefile seems to not want to define these, but they are needed! */
105 /* Guillermo, maybe you can look at it */
107 # define FUNC(f, t, p) extern t f p
108 # define LFUNC(f, t, p) static t f p
111 /* Return ErrorStatus codes:
112 * null if full success
113 * positive if partial success
114 * negative if failure
117 #define XpmColorError 1
119 #define XpmOpenFailed -1
120 #define XpmFileInvalid -2
121 #define XpmNoMemory -3
122 #define XpmColorFailed -4
125 char *name
; /* Symbolic color name */
126 char *value
; /* Color value */
127 Pixel pixel
; /* Color pixel */
131 char *name
; /* name of the extension */
132 unsigned int nlines
; /* number of lines in this extension */
133 char **lines
; /* pointer to the extension array of strings */
137 char *string
; /* characters string */
138 char *symbolic
; /* symbolic name */
139 char *m_color
; /* monochrom default */
140 char *g4_color
; /* 4 level grayscale default */
141 char *g_color
; /* other level grayscale default */
142 char *c_color
; /* color default */
146 unsigned int width
; /* image width */
147 unsigned int height
; /* image height */
148 unsigned int cpp
; /* number of characters per pixel */
149 unsigned int ncolors
; /* number of colors */
150 XpmColor
*colorTable
; /* list of related colors */
151 unsigned int *data
; /* image data */
155 unsigned long valuemask
; /* Specifies which attributes are defined */
156 char *hints_cmt
; /* Comment of the hints section */
157 char *colors_cmt
; /* Comment of the colors section */
158 char *pixels_cmt
; /* Comment of the pixels section */
159 unsigned int x_hotspot
; /* Returns the x hotspot's coordinate */
160 unsigned int y_hotspot
; /* Returns the y hotspot's coordinate */
161 unsigned int nextensions
; /* number of extensions */
162 XpmExtension
*extensions
; /* pointer to array of extensions */
165 typedef int (*XpmAllocColorFunc
)(
166 #if NeedFunctionPrototypes
167 Display
* /* display */,
168 Colormap
/* colormap */,
169 char* /* colorname */,
170 XColor
* /* xcolor */,
175 typedef int (*XpmFreeColorsFunc
)(
176 #if NeedFunctionPrototypes
177 Display
* /* display */,
178 Colormap
/* colormap */,
186 unsigned long valuemask
; /* Specifies which attributes are
189 Visual
*visual
; /* Specifies the visual to use */
190 Colormap colormap
; /* Specifies the colormap to use */
191 unsigned int depth
; /* Specifies the depth */
192 unsigned int width
; /* Returns the width of the created
194 unsigned int height
; /* Returns the height of the created
196 unsigned int x_hotspot
; /* Returns the x hotspot's
198 unsigned int y_hotspot
; /* Returns the y hotspot's
200 unsigned int cpp
; /* Specifies the number of char per
202 Pixel
*pixels
; /* List of used color pixels */
203 unsigned int npixels
; /* Number of used pixels */
204 XpmColorSymbol
*colorsymbols
; /* List of color symbols to override */
205 unsigned int numsymbols
; /* Number of symbols */
206 char *rgb_fname
; /* RGB text file name */
207 unsigned int nextensions
; /* Number of extensions */
208 XpmExtension
*extensions
; /* List of extensions */
210 unsigned int ncolors
; /* Number of colors */
211 XpmColor
*colorTable
; /* List of colors */
212 /* 3.2 backward compatibility code */
213 char *hints_cmt
; /* Comment of the hints section */
214 char *colors_cmt
; /* Comment of the colors section */
215 char *pixels_cmt
; /* Comment of the pixels section */
217 unsigned int mask_pixel
; /* Color table index of transparent
220 /* Color Allocation Directives */
221 Bool exactColors
; /* Only use exact colors for visual */
222 unsigned int closeness
; /* Allowable RGB deviation */
223 unsigned int red_closeness
; /* Allowable red deviation */
224 unsigned int green_closeness
; /* Allowable green deviation */
225 unsigned int blue_closeness
; /* Allowable blue deviation */
226 int color_key
; /* Use colors from this color set */
228 Pixel
*alloc_pixels
; /* Returns the list of alloc'ed color
230 int nalloc_pixels
; /* Returns the number of alloc'ed
233 Bool alloc_close_colors
; /* Specify whether close colors should
234 be allocated using XAllocColor
236 int bitmap_format
; /* Specify the format of 1bit depth
237 images: ZPixmap or XYBitmap */
239 /* Color functions */
240 XpmAllocColorFunc alloc_color
; /* Application color allocator */
241 XpmFreeColorsFunc free_colors
; /* Application color de-allocator */
242 void *color_closure
; /* Application private data to pass to
243 alloc_color and free_colors */
247 /* XpmAttributes value masks bits */
248 #define XpmVisual (1L<<0)
249 #define XpmColormap (1L<<1)
250 #define XpmDepth (1L<<2)
251 #define XpmSize (1L<<3) /* width & height */
252 #define XpmHotspot (1L<<4) /* x_hotspot & y_hotspot */
253 #define XpmCharsPerPixel (1L<<5)
254 #define XpmColorSymbols (1L<<6)
255 #define XpmRgbFilename (1L<<7)
256 /* 3.2 backward compatibility code */
257 #define XpmInfos (1L<<8)
258 #define XpmReturnInfos XpmInfos
260 #define XpmReturnPixels (1L<<9)
261 #define XpmExtensions (1L<<10)
262 #define XpmReturnExtensions XpmExtensions
264 #define XpmExactColors (1L<<11)
265 #define XpmCloseness (1L<<12)
266 #define XpmRGBCloseness (1L<<13)
267 #define XpmColorKey (1L<<14)
269 #define XpmColorTable (1L<<15)
270 #define XpmReturnColorTable XpmColorTable
272 #define XpmReturnAllocPixels (1L<<16)
273 #define XpmAllocCloseColors (1L<<17)
274 #define XpmBitmapFormat (1L<<18)
276 #define XpmAllocColor (1L<<19)
277 #define XpmFreeColors (1L<<20)
278 #define XpmColorClosure (1L<<21)
281 /* XpmInfo value masks bits */
282 #define XpmComments XpmInfos
283 #define XpmReturnComments XpmComments
285 /* XpmAttributes mask_pixel value when there is no mask */
287 #define XpmUndefPixel 0x80000000
289 /* int is only 16 bit for MSW */
290 #define XpmUndefPixel 0x8000
294 * color keys for visual type, they must fit along with the number key of
295 * each related element in xpmColorKeys[] defined in XpmI.h
305 /* macros for forward declarations of functions with prototypes */
306 #if NeedFunctionPrototypes
307 # define FUNC(f, t, p) extern t f p
308 # define LFUNC(f, t, p) static t f p
313 * functions declarations
320 /* FOR_MSW, all ..Pixmap.. are excluded, only the ..XImage.. are used */
321 /* Same for Amiga! */
323 #if !defined(FOR_MSW) && !defined(AMIGA)
324 FUNC(XpmCreatePixmapFromData
, int, (Display
*display
,
327 Pixmap
*pixmap_return
,
328 Pixmap
*shapemask_return
,
329 XpmAttributes
*attributes
));
331 FUNC(XpmCreateDataFromPixmap
, int, (Display
*display
,
335 XpmAttributes
*attributes
));
337 FUNC(XpmReadFileToPixmap
, int, (Display
*display
,
340 Pixmap
*pixmap_return
,
341 Pixmap
*shapemask_return
,
342 XpmAttributes
*attributes
));
344 FUNC(XpmWriteFileFromPixmap
, int, (Display
*display
,
348 XpmAttributes
*attributes
));
351 FUNC(XpmCreateImageFromData
, int, (Display
*display
,
353 XImage
**image_return
,
354 XImage
**shapemask_return
,
355 XpmAttributes
*attributes
));
357 FUNC(XpmCreateDataFromImage
, int, (Display
*display
,
361 XpmAttributes
*attributes
));
363 FUNC(XpmReadFileToImage
, int, (Display
*display
,
365 XImage
**image_return
,
366 XImage
**shapeimage_return
,
367 XpmAttributes
*attributes
));
369 FUNC(XpmWriteFileFromImage
, int, (Display
*display
,
373 XpmAttributes
*attributes
));
375 FUNC(XpmCreateImageFromBuffer
, int, (Display
*display
,
377 XImage
**image_return
,
378 XImage
**shapemask_return
,
379 XpmAttributes
*attributes
));
380 #if !defined(FOR_MSW) && !defined(AMIGA)
381 FUNC(XpmCreatePixmapFromBuffer
, int, (Display
*display
,
384 Pixmap
*pixmap_return
,
385 Pixmap
*shapemask_return
,
386 XpmAttributes
*attributes
));
388 FUNC(XpmCreateBufferFromImage
, int, (Display
*display
,
389 char **buffer_return
,
392 XpmAttributes
*attributes
));
394 FUNC(XpmCreateBufferFromPixmap
, int, (Display
*display
,
395 char **buffer_return
,
398 XpmAttributes
*attributes
));
400 FUNC(XpmReadFileToBuffer
, int, (char *filename
, char **buffer_return
));
401 FUNC(XpmWriteFileFromBuffer
, int, (char *filename
, char *buffer
));
403 FUNC(XpmReadFileToData
, int, (char *filename
, char ***data_return
));
404 FUNC(XpmWriteFileFromData
, int, (char *filename
, char **data
));
406 FUNC(XpmAttributesSize
, int, ());
407 FUNC(XpmFreeAttributes
, void, (XpmAttributes
*attributes
));
408 FUNC(XpmFreeExtensions
, void, (XpmExtension
*extensions
,
411 FUNC(XpmFreeXpmImage
, void, (XpmImage
*image
));
412 FUNC(XpmFreeXpmInfo
, void, (XpmInfo
*info
));
413 FUNC(XpmGetErrorString
, char *, (int errcode
));
414 FUNC(XpmLibraryVersion
, int, ());
416 /* XpmImage functions */
417 FUNC(XpmReadFileToXpmImage
, int, (char *filename
,
421 FUNC(XpmWriteFileFromXpmImage
, int, (char *filename
,
424 #if !defined(FOR_MSW) && !defined(AMIGA)
425 FUNC(XpmCreatePixmapFromXpmImage
, int, (Display
*display
,
428 Pixmap
*pixmap_return
,
429 Pixmap
*shapemask_return
,
430 XpmAttributes
*attributes
));
432 FUNC(XpmCreateImageFromXpmImage
, int, (Display
*display
,
434 XImage
**image_return
,
435 XImage
**shapeimage_return
,
436 XpmAttributes
*attributes
));
438 FUNC(XpmCreateXpmImageFromImage
, int, (Display
*display
,
442 XpmAttributes
*attributes
));
443 #if !defined(FOR_MSW) && !defined(AMIGA)
444 FUNC(XpmCreateXpmImageFromPixmap
, int, (Display
*display
,
448 XpmAttributes
*attributes
));
450 FUNC(XpmCreateDataFromXpmImage
, int, (char ***data_return
,
454 FUNC(XpmCreateXpmImageFromData
, int, (char **data
,
458 FUNC(XpmCreateXpmImageFromBuffer
, int, (char *buffer
,
462 FUNC(XpmCreateBufferFromXpmImage
, int, (char **buffer_return
,
466 FUNC(XpmGetParseError
, int, (char *filename
,
468 int *charnum_return
));
470 FUNC(XpmFree
, void, (void *ptr
));
477 /* backward compatibility */
479 /* for version 3.0c */
480 #define XpmPixmapColorError XpmColorError
481 #define XpmPixmapSuccess XpmSuccess
482 #define XpmPixmapOpenFailed XpmOpenFailed
483 #define XpmPixmapFileInvalid XpmFileInvalid
484 #define XpmPixmapNoMemory XpmNoMemory
485 #define XpmPixmapColorFailed XpmColorFailed
487 #define XpmReadPixmapFile(dpy, d, file, pix, mask, att) \
488 XpmReadFileToPixmap(dpy, d, file, pix, mask, att)
489 #define XpmWritePixmapFile(dpy, file, pix, mask, att) \
490 XpmWriteFileFromPixmap(dpy, file, pix, mask, att)
492 /* for version 3.0b */
493 #define PixmapColorError XpmColorError
494 #define PixmapSuccess XpmSuccess
495 #define PixmapOpenFailed XpmOpenFailed
496 #define PixmapFileInvalid XpmFileInvalid
497 #define PixmapNoMemory XpmNoMemory
498 #define PixmapColorFailed XpmColorFailed
500 #define ColorSymbol XpmColorSymbol
502 #define XReadPixmapFile(dpy, d, file, pix, mask, att) \
503 XpmReadFileToPixmap(dpy, d, file, pix, mask, att)
504 #define XWritePixmapFile(dpy, file, pix, mask, att) \
505 XpmWriteFileFromPixmap(dpy, file, pix, mask, att)
506 #define XCreatePixmapFromData(dpy, d, data, pix, mask, att) \
507 XpmCreatePixmapFromData(dpy, d, data, pix, mask, att)
508 #define XCreateDataFromPixmap(dpy, data, pix, mask, att) \
509 XpmCreateDataFromPixmap(dpy, data, pix, mask, att)
511 #endif /* XPM_NUMBERS */