]> code.delx.au - gnu-emacs/blob - src/nsimage.m
Fix warnings on OSX 10.10.
[gnu-emacs] / src / nsimage.m
1 /* Image support for the NeXT/Open/GNUstep and MacOSX window system.
2 Copyright (C) 1989, 1992-1994, 2005-2006, 2008-2015 Free Software
3 Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20 /*
21 Originally by Carl Edman
22 Updated by Christian Limpach (chris@nice.ch)
23 OpenStep/Rhapsody port by Scott Bender (sbender@harmony-ds.com)
24 MacOSX/Aqua port by Christophe de Dinechin (descubes@earthlink.net)
25 GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu)
26 */
27
28 /* This should be the first include, as it may set up #defines affecting
29 interpretation of even the system includes. */
30 #include <config.h>
31
32 #include "lisp.h"
33 #include "dispextern.h"
34 #include "nsterm.h"
35 #include "frame.h"
36
37 /* call tracing */
38 #if 0
39 int image_trace_num = 0;
40 #define NSTRACE(x) fprintf (stderr, "%s:%d: [%d] " #x "\n", \
41 __FILE__, __LINE__, ++image_trace_num)
42 #else
43 #define NSTRACE(x)
44 #endif
45
46
47 /* ==========================================================================
48
49 C interface. This allows easy calling from C files. We could just
50 compile everything as Objective-C, but that might mean slower
51 compilation and possible difficulties on some platforms..
52
53 ========================================================================== */
54
55 void *
56 ns_image_from_XBM (unsigned char *bits, int width, int height,
57 unsigned long fg, unsigned long bg)
58 {
59 NSTRACE (ns_image_from_XBM);
60 return [[EmacsImage alloc] initFromXBM: bits
61 width: width height: height
62 fg: fg bg: bg];
63 }
64
65 void *
66 ns_image_for_XPM (int width, int height, int depth)
67 {
68 NSTRACE (ns_image_for_XPM);
69 return [[EmacsImage alloc] initForXPMWithDepth: depth
70 width: width height: height];
71 }
72
73 void *
74 ns_image_from_file (Lisp_Object file)
75 {
76 NSTRACE (ns_image_from_bitmap_file);
77 return [EmacsImage allocInitFromFile: file];
78 }
79
80 bool
81 ns_load_image (struct frame *f, struct image *img,
82 Lisp_Object spec_file, Lisp_Object spec_data)
83 {
84 EmacsImage *eImg = nil;
85 NSSize size;
86
87 NSTRACE (ns_load_image);
88
89 if (STRINGP (spec_file))
90 {
91 eImg = [EmacsImage allocInitFromFile: spec_file];
92 }
93 else if (STRINGP (spec_data))
94 {
95 NSData *data;
96
97 data = [NSData dataWithBytes: SSDATA (spec_data)
98 length: SBYTES (spec_data)];
99 eImg = [[EmacsImage alloc] initWithData: data];
100 [eImg setPixmapData];
101 }
102
103 if (eImg == nil)
104 {
105 add_to_log ("Unable to load image %s", img->spec, Qnil);
106 return 0;
107 }
108
109 size = [eImg size];
110 img->width = size.width;
111 img->height = size.height;
112
113 /* 4) set img->pixmap = emacsimage */
114 img->pixmap = eImg;
115 return 1;
116 }
117
118
119 int
120 ns_image_width (void *img)
121 {
122 return [(id)img size].width;
123 }
124
125 int
126 ns_image_height (void *img)
127 {
128 return [(id)img size].height;
129 }
130
131 unsigned long
132 ns_get_pixel (void *img, int x, int y)
133 {
134 return [(EmacsImage *)img getPixelAtX: x Y: y];
135 }
136
137 void
138 ns_put_pixel (void *img, int x, int y, unsigned long argb)
139 {
140 unsigned char alpha = (argb >> 24) & 0xFF;
141 if (alpha == 0)
142 alpha = 0xFF;
143 [(EmacsImage *)img setPixelAtX: x Y: y toRed: (argb >> 16) & 0xFF
144 green: (argb >> 8) & 0xFF blue: (argb & 0xFF) alpha: alpha];
145 }
146
147 void
148 ns_set_alpha (void *img, int x, int y, unsigned char a)
149 {
150 [(EmacsImage *)img setAlphaAtX: x Y: y to: a];
151 }
152
153
154 /* ==========================================================================
155
156 Class supporting bitmaps and images of various sorts.
157
158 ========================================================================== */
159
160 @implementation EmacsImage
161
162 + allocInitFromFile: (Lisp_Object)file
163 {
164 NSImageRep *imgRep;
165 Lisp_Object found;
166 EmacsImage *image;
167
168 /* Search bitmap-file-path for the file, if appropriate. */
169 found = x_find_image_file (file);
170 if (!STRINGP (found))
171 return nil;
172
173 image = [[EmacsImage alloc] initByReferencingFile:
174 [NSString stringWithUTF8String: SSDATA (found)]];
175
176 image->bmRep = nil;
177 #ifdef NS_IMPL_COCOA
178 imgRep = [NSBitmapImageRep imageRepWithData:[image TIFFRepresentation]];
179 #else
180 imgRep = [image bestRepresentationForDevice: nil];
181 #endif
182 if (imgRep == nil)
183 {
184 [image release];
185 return nil;
186 }
187
188 /* The next two lines cause the DPI of the image to be ignored.
189 This seems to be the behavior users expect. */
190 #ifdef NS_IMPL_COCOA
191 #if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
192 [image setScalesWhenResized: YES];
193 #endif
194 #endif
195 [image setSize: NSMakeSize([imgRep pixelsWide], [imgRep pixelsHigh])];
196
197 [image setName: [NSString stringWithUTF8String: SSDATA (file)]];
198
199 return image;
200 }
201
202
203 - (void)dealloc
204 {
205 [stippleMask release];
206 [bmRep release];
207 [super dealloc];
208 }
209
210
211 - initFromXBM: (unsigned char *)bits width: (int)w height: (int)h
212 fg: (unsigned long)fg bg: (unsigned long)bg
213 {
214 int bpr = (w + 7) / 8;
215 unsigned char *planes[5];
216
217 [self initWithSize: NSMakeSize (w, h)];
218
219 bmRep = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes: NULL
220 pixelsWide: w pixelsHigh: h
221 bitsPerSample: 8 samplesPerPixel: 4
222 hasAlpha: YES isPlanar: YES
223 colorSpaceName: NSCalibratedRGBColorSpace
224 bytesPerRow: w bitsPerPixel: 0];
225
226 [bmRep getBitmapDataPlanes: planes];
227
228 if (fg == 0 && bg == 0)
229 bg = 0xffffff;
230
231 {
232 /* pull bits out to set the (bytewise) alpha mask */
233 int i, j, k;
234 unsigned char *s = bits;
235 unsigned char *rr = planes[0];
236 unsigned char *gg = planes[1];
237 unsigned char *bb = planes[2];
238 unsigned char *alpha = planes[3];
239 unsigned char fgr = (fg >> 16) & 0xff;
240 unsigned char fgg = (fg >> 8) & 0xff;
241 unsigned char fgb = fg & 0xff;
242 unsigned char bgr = (bg >> 16) & 0xff;
243 unsigned char bgg = (bg >> 8) & 0xff;
244 unsigned char bgb = bg & 0xff;
245 unsigned char c;
246
247 int idx = 0;
248 for (j = 0; j < h; ++j)
249 for (i = 0; i < w; )
250 {
251 c = *s++;
252 for (k = 0; i < w && k < 8; ++k, ++i)
253 {
254 *alpha++ = 0xff;
255 if (c & 1)
256 {
257 *rr++ = fgr;
258 *gg++ = fgg;
259 *bb++ = fgb;
260 }
261 else
262 {
263 *rr++ = bgr;
264 *gg++ = bgg;
265 *bb++ = bgb;
266 }
267 idx++;
268 c >>= 1;
269 }
270 }
271 }
272
273 xbm_fg = fg;
274 [self addRepresentation: bmRep];
275 return self;
276 }
277
278 /* Set color for a bitmap image. */
279 - setXBMColor: (NSColor *)color
280 {
281 NSSize s = [self size];
282 unsigned char *planes[5];
283 EmacsCGFloat r, g, b, a;
284 NSColor *rgbColor;
285
286 if (bmRep == nil || color == nil)
287 return self;
288
289 if ([color colorSpaceName] != NSCalibratedRGBColorSpace)
290 rgbColor = [color colorUsingColorSpaceName: NSCalibratedRGBColorSpace];
291 else
292 rgbColor = color;
293
294 [rgbColor getRed: &r green: &g blue: &b alpha: &a];
295
296 [bmRep getBitmapDataPlanes: planes];
297
298 {
299 int i, len = s.width*s.height;
300 int rr = r * 0xff, gg = g * 0xff, bb = b * 0xff;
301 unsigned char fgr = (xbm_fg >> 16) & 0xff;
302 unsigned char fgg = (xbm_fg >> 8) & 0xff;
303 unsigned char fgb = xbm_fg & 0xff;
304
305 for (i = 0; i < len; ++i)
306 if (planes[0][i] == fgr && planes[1][i] == fgg && planes[2][i] == fgb)
307 {
308 planes[0][i] = rr;
309 planes[1][i] = gg;
310 planes[2][i] = bb;
311 }
312 xbm_fg = ((rr << 16) & 0xff) + ((gg << 8) & 0xff) + (bb & 0xff);
313 }
314
315 return self;
316 }
317
318
319 - initForXPMWithDepth: (int)depth width: (int)width height: (int)height
320 {
321 NSSize s = {width, height};
322 int i;
323
324 [self initWithSize: s];
325
326 bmRep = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes: NULL
327 pixelsWide: width pixelsHigh: height
328 /* keep things simple for now */
329 bitsPerSample: 8 samplesPerPixel: 4 /*RGB+A*/
330 hasAlpha: YES isPlanar: YES
331 colorSpaceName: NSCalibratedRGBColorSpace
332 bytesPerRow: width bitsPerPixel: 0];
333
334 [bmRep getBitmapDataPlanes: pixmapData];
335 for (i =0; i<4; i++)
336 memset (pixmapData[i], 0, width*height);
337 [self addRepresentation: bmRep];
338 return self;
339 }
340
341
342 /* attempt to pull out pixmap data from a BitmapImageRep; returns NO if fails */
343 - (void) setPixmapData
344 {
345 NSEnumerator *reps;
346 NSImageRep *rep;
347
348 reps = [[self representations] objectEnumerator];
349 while ((rep = (NSImageRep *) [reps nextObject]))
350 {
351 if ([rep respondsToSelector: @selector (getBitmapDataPlanes:)])
352 {
353 NSBitmapImageRep *bmr = (NSBitmapImageRep *) rep;
354
355 if ([bmr numberOfPlanes] >= 3)
356 [bmr getBitmapDataPlanes: pixmapData];
357
358 /* The next two lines cause the DPI of the image to be ignored.
359 This seems to be the behavior users expect. */
360 #ifdef NS_IMPL_COCOA
361 #if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
362 [self setScalesWhenResized: YES];
363 #endif
364 #endif
365 [self setSize: NSMakeSize([bmr pixelsWide], [bmr pixelsHigh])];
366
367 break;
368 }
369 }
370 }
371
372
373 /* note; this and next work only for image created with initForXPMWithDepth,
374 initFromSkipXBM, or where setPixmapData was called successfully */
375 /* return ARGB */
376 - (unsigned long) getPixelAtX: (int)x Y: (int)y
377 {
378 if (bmRep == nil)
379 return 0;
380
381 /* this method is faster but won't work for bitmaps */
382 if (pixmapData[0] != NULL)
383 {
384 int loc = x + y * [self size].width;
385 return (pixmapData[3][loc] << 24) /* alpha */
386 | (pixmapData[0][loc] << 16) | (pixmapData[1][loc] << 8)
387 | (pixmapData[2][loc]);
388 }
389 else
390 {
391 NSColor *color = [bmRep colorAtX: x y: y];
392 EmacsCGFloat r, g, b, a;
393 [color getRed: &r green: &g blue: &b alpha: &a];
394 return ((int)(a * 255.0) << 24)
395 | ((int)(r * 255.0) << 16) | ((int)(g * 255.0) << 8)
396 | ((int)(b * 255.0));
397
398 }
399 }
400
401 - (void) setPixelAtX: (int)x Y: (int)y toRed: (unsigned char)r
402 green: (unsigned char)g blue: (unsigned char)b
403 alpha:(unsigned char)a;
404 {
405 if (bmRep == nil)
406 return;
407
408 if (pixmapData[0] != NULL)
409 {
410 int loc = x + y * [self size].width;
411 pixmapData[0][loc] = r;
412 pixmapData[1][loc] = g;
413 pixmapData[2][loc] = b;
414 pixmapData[3][loc] = a;
415 }
416 else
417 {
418 [bmRep setColor:
419 [NSColor colorWithCalibratedRed: (r/255.0) green: (g/255.0)
420 blue: (b/255.0) alpha: (a/255.0)]
421 atX: x y: y];
422 }
423 }
424
425 - (void) setAlphaAtX: (int) x Y: (int) y to: (unsigned char) a
426 {
427 if (bmRep == nil)
428 return;
429
430 if (pixmapData[0] != NULL)
431 {
432 int loc = x + y * [self size].width;
433
434 pixmapData[3][loc] = a;
435 }
436 else
437 {
438 NSColor *color = [bmRep colorAtX: x y: y];
439 color = [color colorWithAlphaComponent: (a / 255.0)];
440 [bmRep setColor: color atX: x y: y];
441 }
442 }
443
444 /* returns a pattern color, which is cached here */
445 - (NSColor *)stippleMask
446 {
447 if (stippleMask == nil)
448 stippleMask = [[NSColor colorWithPatternImage: self] retain];
449 return stippleMask;
450 }
451
452 @end