chiark / gitweb /
Small fix for SBCL 1.0.2
[clg] / cairo / cairo.lisp
CommitLineData
1ed0a2c5 1;; Common Lisp bindings for Cairo
2;; Copyright 2005 Espen S. Johnsen <espen@users.sf.net>
3;;
4;; Permission is hereby granted, free of charge, to any person obtaining
5;; a copy of this software and associated documentation files (the
6;; "Software"), to deal in the Software without restriction, including
7;; without limitation the rights to use, copy, modify, merge, publish,
8;; distribute, sublicense, and/or sell copies of the Software, and to
9;; permit persons to whom the Software is furnished to do so, subject to
10;; the following conditions:
11;;
12;; The above copyright notice and this permission notice shall be
13;; included in all copies or substantial portions of the Software.
14;;
15;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18;; IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19;; CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
2e86f0c9 23;; $Id: cairo.lisp,v 1.11 2007-02-19 14:37:52 espen Exp $
1ed0a2c5 24
25(in-package "CAIRO")
26
27(eval-when (:compile-toplevel :load-toplevel :execute)
28 (define-enum-type surface-format :argb32 :rgb24 :a8 :a1)
81240b33 29 (define-enum-type content :color :alpha :color-alpha)
2e86f0c9 30 (define-enum-type svg-version :svg-1.1 :svg-1.2)
1ed0a2c5 31
32 (define-enum-type status
33 :success :no-memory :invalid-restore :invalid-pop-group
34 :no-current-point :invalid-matrix :invalid-status :null-pointer
35 :invalid-string :invalid-path-data :read-error :write-error
36 :surface-finished :surface-type-mismatch :pattern-type-mismatch
37 :invalid-content :invalid-format :invalid-visual :file-not-found
38 :invalid-dash)
39
40 (define-enum-type fill-rule :winding :even-odd)
41 (define-enum-type line-cap :butt :round :square)
42 (define-enum-type line-join :miter :round :bevel)
43 (define-enum-type font-slant :normal :itaic :oblique)
44 (define-enum-type font-weight :normal :bold)
45
46 (define-enum-type operator
47 :clear :source :over :in :out :atop :dest :dest-over
48 :dest-in :dest-out :dest-atop :xor :add :saturate)
49
50 (define-enum-type antialias :default :none :gray :subpixel)
51 (define-enum-type extend :none :repeat :reflect)
52 (define-enum-type filter :fast :good :best :nearest :bilinear :gaussian)
53 (define-enum-type subpixel-order :default :rgb :bgr :vrgb :vbgr)
54 (define-enum-type hint-style :default :none :slight :medium :full)
55 (define-enum-type hint-metrics :default :off :on)
56
2e86f0c9 57
58 (define-enum-type surface-type
59 image-surface pdf-surface ps-surface xlib-surface xcb-surface
60 glitz-surface quartz-surface win32-surface beos-surface
61 directfb-surface)
62
63 (defclass surface-class (proxy-class)
64 ())
65
66 (defmethod validate-superclass ((class surface-class) (super standard-class))
67 (subtypep (class-name super) 'surface))
68
c7d11ab8 69 (defclass glyph (struct)
1ed0a2c5 70 ((index
71 :allocation :alien
72 :initarg :index
73 :accessor glyph-index
74 :type unsigned-long)
75 (x
76 :allocation :alien
77 :initarg :x
78 :accessor glyph-x
79 :type double-float)
80 (y
81 :allocation :alien
82 :initarg :y
83 :accessor glyph-y
84 :type double-float))
85 (:metaclass struct-class))
86
af338f4a 87 (defclass font-face (ref-counted-object)
1ed0a2c5 88 ()
a82cea45 89 (:metaclass proxy-class)
90 (:ref %font-face-reference)
91 (:unref %font-face-destroy))
1ed0a2c5 92
af338f4a 93 (defclass font-options (ref-counted-object)
1ed0a2c5 94 ((antialias
95 :allocation :virtual
96 :getter "font_options_get_antialias"
97 :setter "font_options_set_antialias"
98 :accessor font-options-antialias
99 :type antialias)
100 (subpixel-order
101 :allocation :virtual
102 :getter "font_options_get_subpixel_order"
103 :setter "font_options_set_subpixel_order"
104 :accessor font-options-subpixel-order
105 :type subpixel-order)
106 (hint-style
107 :allocation :virtual
108 :getter "font_options_get_hint_style"
109 :setter "font_options_set_hint_style"
110 :accessor font-options-hint-style
111 :type hint-style)
112 (hint-metrics
113 :allocation :virtual
114 :getter "font_options_get_hint_metrics"
115 :setter "font_options_set_hint_metrics"
116 :accessor font-options-hint-metrics
117 :type hint-metrics))
a82cea45 118 (:metaclass proxy-class)
119 (:ref %font-options-reference)
120 (:unref %font-options-destroy))
1ed0a2c5 121
af338f4a 122 (defclass scaled-font (ref-counted-object)
1ed0a2c5 123 ()
a82cea45 124 (:metaclass proxy-class)
125 (:ref %scaled-font-reference)
126 (:unref %scaled-font-destroy))
1ed0a2c5 127
128 (defclass matrix (struct)
129 ((xx :allocation :alien :initarg :xx :initform 1.0
130 :accessor matrix-xx :type double-float)
131 (yx :allocation :alien :initarg :yx :initform 0.0
132 :accessor matrix-yx :type double-float)
133 (xy :allocation :alien :initarg :xy :initform 1.0
134 :accessor matrix-xy :type double-float)
135 (yy :allocation :alien :initarg :yy :initform 0.0
136 :accessor matrix-yy :type double-float)
137 (x0 :allocation :alien :initarg :x0 :initform 0.0
138 :accessor matrix-x0 :type double-float)
139 (y0 :allocation :alien :initarg :y0 :initform 0.0
140 :accessor matrix-y0 :type double-float))
141 (:metaclass struct-class))
142
143
144 (defclass text-extents (struct)
145 ((x-bearing :allocation :alien :reader text-extents-x-bearing :type double-float)
146 (y-bearing :allocation :alien :reader text-extents-y-bearing :type double-float)
147 (width :allocation :alien :reader text-extents-width :type double-float)
148 (height :allocation :alien :reader text-extents-height :type double-float)
149 (x-advance :allocation :alien :reader text-extents-x-advance :type double-float)
150 (y-advance :allocation :alien :reader text-extents-y-advance :type double-float))
151 (:metaclass struct-class))
152
af338f4a 153 (defclass pattern (ref-counted-object)
1ed0a2c5 154 ((extend
155 :allocation :virtual
156 :getter "cairo_pattern_get_extend"
157 :setter "cairo_pattern_set_extend"
158 :accessor pattern-extend
159 :type extend)
160 (filter
161 :allocation :virtual
162 :getter "cairo_pattern_get_filter"
163 :setter "cairo_pattern_set_filter"
164 :accessor pattern-filter
165 :type filter)
166 (matrix
167 :allocation :virtual
168 :getter "cairo_pattern_get_matrix"
169 :setter "cairo_pattern_set_matrix"
170 :accessor pattern-matrix
171 :type matrix))
a82cea45 172 (:metaclass proxy-class)
173 (:ref %pattern-reference)
174 (:unref %pattern-destroy))
175
176
af338f4a 177 (defclass surface (ref-counted-object)
2e86f0c9 178 ((content
81240b33 179 :allocation :virtual
180 :getter "cairo_surface_get_content"
181 :reader surface-content
182 :type content))
2e86f0c9 183 (:metaclass surface-class))
184
185 (defclass image-surface (surface)
186 ((data
187 :allocation :virtual
188 :getter "cairo_image_surface_get_data"
189 :reader surface-data
190 :type pointer)
191 (format
192 :allocation :virtual
193 :getter "cairo_image_surface_get_format"
194 :reader surface-format
195 :type surface-format)
196 (width
197 :allocation :virtual
198 :getter "cairo_image_surface_get_width"
199 :reader surface-width
200 :type int)
201 (height
202 :allocation :virtual
203 :getter "cairo_image_surface_get_height"
204 :reader surface-height
205 :type int)
206 (stride
207 :allocation :virtual
208 :getter "cairo_image_surface_get_stride"
209 :reader surface-height
210 :type int))
211 (:metaclass surface-class))
212
213 (defclass xlib-surface (surface)
214 ((width
215 :allocation :virtual
216 :getter "cairo_xlib_surface_get_width"
217 :reader surface-width
218 :type int)
219 (height
220 :allocation :virtual
221 :getter "cairo_xlib_surface_get_height"
222 :reader surface-height
223 :type int))
224 (:metaclass surface-class))
225
226 (defclass pdf-surface (surface)
227 ()
228 (:metaclass surface-class))
229
230 (defclass ps-surface (surface)
231 ()
232 (:metaclass surface-class))
233
234 (defclass svg-surface (surface)
235 ()
236 (:metaclass surface-class))
237
1ed0a2c5 238
af338f4a 239 (defclass context (ref-counted-object)
1ed0a2c5 240 ((target
241 :allocation :virtual
242 :getter "cairo_get_target"
243 :reader target
244 :type surface)
245 (source
246 :allocation :virtual
247 :getter "cairo_get_source"
248 :setter "cairo_set_source"
249 :accessor source
250 :type pattern)
251 (antialias
252 :allocation :virtual
253 :getter "cairo_get_antialias"
254 :setter "cairo_set_antialias"
255 :accessor antialias
256 :type antialias)
257 (tolerance
258 :allocation :virtual
259 :getter "cairo_get_tolerance"
260 :setter "cairo_set_tolerance"
261 :accessor tolerance
262 :type double-float)
263 (fill-rule
264 :allocation :virtual
265 :getter "cairo_get_fill_rule"
266 :setter "cairo_set_fill_rule"
267 :accessor fill-rule
268 :type fill-rule)
269 (line-width
270 :allocation :virtual
271 :getter "cairo_get_line_width"
272 :setter "cairo_set_line_width"
273 :accessor line-width
274 :type double-float)
275 (line-cap
276 :allocation :virtual
277 :getter "cairo_get_line_cap"
278 :setter "cairo_set_line_cap"
279 :accessor line-cap
280 :type line-cap)
281 (line-join
282 :allocation :virtual
283 :getter "cairo_get_line_join"
284 :setter "cairo_set_line_join"
285 :accessor line-join
286 :type line-join)
287 (miter-limit
288 :allocation :virtual
289 :getter "cairo_get_miter_limit"
290 :setter "cairo_set_miter_limit"
291 :accessor miter-limit
292 :type double-float)
293 (font-matrix
294 :allocation :virtual
295 :getter "cairo_get_font_matrix"
296 :setter "cairo_set_font_matrix"
297 :accessor font-matrix
298 :type matrix)
299 (font-options
300 :allocation :virtual
301 :getter "cairo_get_font_options"
302 :setter "cairo_set_font_options"
303 :accessor font-options
304 :type font-options)
305 (font-face
306 :allocation :virtual
307 :getter "cairo_get_font_face"
308 :setter "cairo_set_font_face"
309 :accessor font-face
310 :type font-face)
311 (operator
312 :allocation :virtual
313 :getter "cairo_get_operator"
314 :setter "cairo_set_operator"
315 :accessor operator
316 :type operator)
317 (matrix
318 :allocation :virtual
319 :getter matrix
320 :setter "cairo_set_matrix"
321 :writer (setf matrix)
322 :type matrix)
323 )
a82cea45 324 (:metaclass proxy-class)
325 (:ref %reference)
326 (:unref %destroy))
1ed0a2c5 327
1ed0a2c5 328
329;; (defclass path (proxy)
330;; ()
331;; (:metaclass proxy-class))
332
2e86f0c9 333 )
1ed0a2c5 334
335
336;;; Cairo context
337
2e86f0c9 338(defmethod allocate-foreign ((context context) &key target)
339 (%create-context target))
340
341(defbinding (%create-context "cairo_create") () pointer
342 (target surface))
343
3507be1a 344(defbinding %reference () pointer
1ed0a2c5 345 (location pointer))
346
347(defbinding %destroy () nil
348 (location pointer))
349
1ed0a2c5 350(defbinding (save-context "cairo_save") () nil
351 (cr context))
352
353(defbinding (restore-context "cairo_restore") () nil
354 (cr context))
355
2e86f0c9 356(defmacro with-context ((cr &optional var) &body body)
357 (let ((context (or var (make-symbol "CONTEXT"))))
1ed0a2c5 358 `(let ((,context ,cr))
359 (save-context ,context)
360 (unwind-protect
361 (progn ,@body)
362 (restore-context ,context)))))
363
364(defbinding status () status
365 (cr context))
366
4372fce2 367(defun ensure-color-component (component)
368 (etypecase component
369 (float component)
370 (integer (/ component 256.0))))
371
1ed0a2c5 372(defbinding (set-source-color "cairo_set_source_rgba") (cr red green blue &optional (alpha 1.0)) nil
373 (cr context)
4372fce2 374 ((ensure-color-component red) double-float)
375 ((ensure-color-component green) double-float)
376 ((ensure-color-component blue) double-float)
377 ((ensure-color-component alpha) double-float))
1ed0a2c5 378
81240b33 379(defbinding set-source-surface (cr surface &optional (x 0.0) (y 0.0)) nil
1ed0a2c5 380 (cr context)
381 (surface surface)
382 (x double-float)
383 (y double-float))
384
81240b33 385(defun set-source (cr source)
386 (etypecase source
387 (pattern (setf (source cr) source))
388 (surface (set-source-surface cr source))
2e86f0c9 389 (null (set-source-color cr 0.0 0.0 0.0))
81240b33 390 (list (apply #'set-source-color cr source))
2e86f0c9 391 (vector (apply #'set-source-color cr (coerce source 'list)))))
81240b33 392
1ed0a2c5 393(defbinding set-dash (cr dashes &optional (offset 0.0)) nil
394 (cr context)
395 (dashes (vector double-float))
396 ((length dashes) int)
397 (offset double-float))
398
399(defbinding (paint "cairo_paint_with_alpha") (cr &optional (alpha 1.0)) nil
400 (cr context)
401 (alpha double-float))
402
403(defbinding mask () nil
404 (cr context)
405 (pattern pattern))
406
407(defbinding mask-surface () nil
408 (cr context)
409 (surface surface)
410 (surface-x double-float)
411 (surface-y double-float))
412
413(defmacro defoperator (name &optional clip-p)
414 (let ((iname (intern (format nil "%~A" name)))
415 (pname (intern (format nil "%~A-PRESERVE" name))))
416 `(progn
417 (defbinding ,iname () nil
418 (cr context))
419 (defbinding ,pname () nil
420 (cr context))
421 (defun ,name (cr &optional preserve)
422 (if preserve
423 (,pname cr)
424 (,iname cr)))
425 ,(unless clip-p
2f60440d 426 (let ((tname (intern (format nil "IN-~A-P" name)))
1ed0a2c5 427 (ename (intern (format nil "~A-EXTENTS" name))))
428 `(progn
429 (defbinding ,tname () boolean
430 (cr context)
431 (x double-float)
432 (y double-float))
3507be1a 433 (defbinding ,ename () nil
1ed0a2c5 434 (cr context)
435 (x1 double-float :out)
436 (y1 double-float :out)
437 (x2 double-float :out)
438 (y2 double-float :out))))))))
439
440(defoperator clip t)
441(defoperator stroke)
442(defoperator fill)
443
444(defbinding reset-clip () nil
445 (cr context))
446
447(defbinding copy-page () nil
448 (cr context))
449
450(defbinding show-page () nil
451 (cr context))
452
453
454;;; Paths
455
456(defbinding get-current-point () nil
457 (cr context)
458 (x double-float :out)
459 (y double-float :out))
460
461(defbinding new-path () nil
462 (cr context))
463
4372fce2 464#?(pkg-exists-p "cairo" :atleast-version "1.2")
465(defbinding new-sub-path () nil
466 (cr context))
467
1ed0a2c5 468(defbinding close-path () nil
469 (cr context))
470
81240b33 471(defmacro defpath (name args &optional relative-p)
472 (flet ((def (name type)
473 `(progn
474 ,(when (eq type 'optimized-double-float)
475 `(declaim (ftype (function (context ,@(loop repeat (length args) collect 'double-float))) ,(first name))))
476 (defbinding ,name () nil
477 (cr context)
478 ,@(mapcar #'(lambda (arg) (list arg type)) args)))))
479
480 `(progn
481 ,(def name 'double-float)
482 ,(let ((name (intern (format nil "FAST-~A" name)))
483 (cname (gffi::default-alien-fname name)))
484 (def (list name cname) 'optimized-double-float))
485 ,@(when relative-p
486 (let* ((rel-name (intern (format nil "REL-~A" name)))
487 (fast-rel-name (intern (format nil "FAST-REL-~A" name)))
488 (cname (gffi::default-alien-fname rel-name)))
489 (list
490 (def rel-name 'double-float)
491 (def (list fast-rel-name cname) 'optimized-double-float)))))))
492
493
494(defpath arc (xc yc radius angle1 angle2))
495(defpath arc-negative (xc yc radius angle1 angle2))
496(defpath curve-to (x1 y1 x2 y2 x3 y3) t)
497(defpath line-to (x y) t)
498(defpath move-to (x y) t)
499(defpath rectangle (x y width height))
1ed0a2c5 500
501(defun circle (cr x y radius)
502 (arc cr x y radius 0.0 (* pi 2)))
503
1ed0a2c5 504(defbinding glyph-path (cr glyphs) nil
505 (cr context)
506 (glyphs (vector glyph))
507 ((length glyphs) int))
508
509(defbinding text-path () nil
510 (cr context)
511 (text string))
512
513
514
515;;; Patterns
516
517(defbinding (pattern-add-color-stop "cairo_pattern_add_color_stop_rgba")
518 (pattern offset red green blue &optional (alpha 1.0)) nil
519 (pattern pattern)
520 (offset double-float)
81240b33 521 ((ensure-color-component red) double-float)
522 ((ensure-color-component green) double-float)
523 ((ensure-color-component blue) double-float)
524 ((ensure-color-component alpha) double-float))
1ed0a2c5 525
526(defbinding (pattern-create "cairo_pattern_create_rgba")
527 (red green blue &optional (alpha 1.0)) pattern
81240b33 528 ((ensure-color-component red) double-float)
529 ((ensure-color-component green) double-float)
530 ((ensure-color-component blue) double-float)
531 ((ensure-color-component alpha) double-float))
1ed0a2c5 532
533(defbinding pattern-create-for-surface () pattern
534 (surface surface))
535
536(defbinding pattern-create-linear () pattern
537 (x0 double-float)
538 (y0 double-float)
539 (x1 double-float)
540 (y1 double-float))
541
542(defbinding pattern-create-radial () pattern
543 (cx0 double-float)
544 (cy0 double-float)
545 (radius0 double-float)
546 (cx1 double-float)
547 (cy1 double-float)
548 (radius1 double-float))
549
3507be1a 550(defbinding %pattern-reference () pointer
1ed0a2c5 551 (location pointer))
552
553(defbinding %pattern-destroy () nil
554 (location pointer))
555
1ed0a2c5 556(defbinding pattern-status () status
557 (pattern pattern))
558
559
560
561;;; Transformations
562
563(defbinding translate () nil
564 (cr context)
565 (tx double-float)
566 (ty double-float))
567
81240b33 568(defbinding scale (cr sx &optional (sy sx)) nil
1ed0a2c5 569 (cr context)
570 (sx double-float)
571 (sy double-float))
572
81240b33 573(defun scale-to-device (cr &optional keep-rotation-p)
574 (if keep-rotation-p
575 (multiple-value-call #'scale cr (device-to-user-distance cr 1.0))
576 (multiple-value-bind (x y)
577 (multiple-value-call #'user-to-device cr (get-current-point cr))
2e86f0c9 578; (identity-matrix cr)
579 (setf (matrix cr) (matrix-init-identity))
81240b33 580 (translate cr x y))))
581
1ed0a2c5 582(defbinding rotate () nil
583 (cr context)
584 (angle double-float))
585
586(defbinding transform () nil
587 (cr context)
588 (matrix matrix))
589
590(defbinding (matrix "cairo_get_matrix") () nil
591 (cr context)
a82cea45 592 ((make-instance 'matrix) matrix :in/return))
1ed0a2c5 593
594(defbinding identity-matrix () nil
595 (cr context))
596
597(defbinding user-to-device () nil
598 (cr context)
a82cea45 599 (x double-float :in/out)
600 (y double-float :in/out))
1ed0a2c5 601
81240b33 602(defbinding user-to-device-distance (cr dx &optional (dy dx)) nil
1ed0a2c5 603 (cr context)
a82cea45 604 (dx double-float :in/out)
605 (dy double-float :in/out))
1ed0a2c5 606
607(defbinding device-to-user () nil
608 (cr context)
a82cea45 609 (x double-float :in/out)
610 (y double-float :in/out))
1ed0a2c5 611
81240b33 612(defbinding device-to-user-distance (cr dx &optional (dy dx)) nil
1ed0a2c5 613 (cr context)
a82cea45 614 (dx double-float :in/out)
615 (dy double-float :in/out))
1ed0a2c5 616
617
618;;; Text
619
620(defbinding select-font-face () nil
621 (cr context)
622 (family string)
623 (slant font-slant)
624 (weight font-weight))
625
626(defbinding set-font-size () nil
627 (cr context)
628 (size double-float))
629
630(defbinding show-text () nil
631 (cr context)
632 (text string))
633
634(defbinding show-glyphs () nil
635 (cr context)
636 (glyphs (vector glyph))
637 ((length glyphs) int))
638
639(defbinding font-extents () boolean
640 (cr context))
641
642(defbinding text-extents (cr text &optional (extents (make-instance 'text-extents))) nil
643 (cr context)
644 (text string)
a82cea45 645 (extents text-extents :in/return))
1ed0a2c5 646
647(defbinding glyph-extents (cr glyphs &optional (extents (make-instance 'text-extents))) nil
648 (cr context)
649 (glyphs (vector glyph))
650 ((length glyphs) int)
a82cea45 651 (extents text-extents :in/return))
1ed0a2c5 652
653
654;;; Fonts
655
3507be1a 656(defbinding %font-face-reference () pointer
1ed0a2c5 657 (location pointer))
658
659(defbinding %font-face-destroy () nil
660 (location pointer))
661
1ed0a2c5 662(defbinding font-face-status () status
663 (font-face font-face))
664
665
666
667;;; Scaled Fonts
668
3507be1a 669(defbinding %scaled-font-reference () pointer
1ed0a2c5 670 (location pointer))
671
672(defbinding %scaled-font-destroy () nil
673 (location pointer))
674
1ed0a2c5 675(defbinding scaled-font-status () status
676 (scaled-font scaled-font))
677
678(defbinding scaled-font-extents (scaled-font &optional (extents (make-instance 'text-extents))) nil
679 (scaled-font scaled-font)
a82cea45 680 (extents text-extents :in/return))
1ed0a2c5 681
682(defbinding scaled-font-glyph-extents (scaled-font glyphs &optional (extents (make-instance 'text-extents))) nil
683 (scaled-font scaled-font)
684 (glyphs (vector glyph))
685 ((length glyphs) int)
a82cea45 686 (extents text-extents :in/return))
1ed0a2c5 687
688(defbinding %scaled-font-create () pointer
689 (font-face font-face)
690 (font-matrix matrix)
691 (ctm matrix)
692 (options font-options))
693
c1a5cdbb 694(defmethod allocate-foreign ((scaled-font scaled-font) &key font-face font-matrix cmt options)
695 (%scaled-font-create font-face font-matrix cmt options))
1ed0a2c5 696
697
698
699;;; Font Options
700
701
702(defbinding %font-options-copy () nil
703 (location pointer))
704
705(defbinding %font-options-destroy () nil
706 (location pointer))
707
1ed0a2c5 708(defbinding font-options-status () status
709 (font-options font-options))
710
711(defbinding %font-options-create () pointer)
712
c1a5cdbb 713(defmethod allocate-foreign ((font-options font-options) &rest initargs)
1ed0a2c5 714 (declare (ignore initargs))
c1a5cdbb 715 (%font-options-create))
1ed0a2c5 716
717(defbinding font-options-merge () nil
a82cea45 718 (options1 font-options :in/return)
1ed0a2c5 719 (options2 font-options))
720
721(defbinding font-options-hash () unsigned-int
722 (options font-options))
723
724(defbinding font-options-equal-p () boolean
725 (options1 font-options)
726 (options2 font-options))
727
728
729
730;;; Surfaces
731
2e86f0c9 732(defmethod make-proxy-instance :around ((class surface-class) location
733 &rest initargs)
734 (let ((class (find-class (%surface-get-type location))))
735 (apply #'call-next-method class location initargs)))
736
737(defbinding %surface-get-type () surface-type
738 (location pointer))
739
3507be1a 740(defbinding %surface-reference () pointer
1ed0a2c5 741 (location pointer))
742
743(defbinding %surface-destroy () nil
744 (location pointer))
745
2e86f0c9 746(defmethod reference-function ((class surface-class))
747 (declare (ignore class))
748 #'%surface-reference)
749
750(defmethod unreference-function ((class surface-class))
751 (declare (ignore class))
752 #'%surface-destroy)
753
754(defbinding %surface-set-user-data (surface key data-id) status
755 (surface pointer)
756 ((quark-intern key) pointer-data)
757 (data-id pointer-data)
758 (user-data-destroy-callback callback))
759
760(defmethod (setf user-data) (data (surface surface) key)
761 (%surface-set-user-data (foreign-location surface) key (register-user-data data))
762 data)
763
764(defbinding %surface-get-user-data () pointer-data
765 (surface surface)
766 (key pointer-data))
767
768(defmethod user-data ((surface surface) key)
769 (find-user-data (%surface-get-user-data surface (quark-intern key))))
770
1ed0a2c5 771(defbinding surface-create-similar () surface
772 (other surface)
773 (format surface-format )
774 (width int)
775 (height int))
776
777(defbinding surface-finish () nil
778 (surface surface))
779
780(defbinding surface-flush () nil
781 (surface surface))
782
783(defbinding surface-get-font-options () nil
784 (surface surface)
a82cea45 785 ((make-instance 'font-options) font-options :in/return))
1ed0a2c5 786
787(defbinding surface-set-device-offset () nil
788 (surface surface)
789 (x-offset double-float)
790 (y-offset double-float))
791
792(defbinding surface-status () status
793 (surface surface))
794
795(defbinding %surface-mark-dirty () nil
796 (surface surface))
797
798(defbinding %surface-mark-dirty-rectangle () nil
799 (surface surface)
800 (x int)
801 (y int)
802 (width int)
803 (height int))
804
805(defun surface-mark-dirty (surface &optional x y width height)
806 (if x
807 (%surface-mark-dirty-rectangle surface x y width height)
808 (%surface-mark-dirty surface)))
809
81240b33 810(defbinding surface-set-fallback-resolution () nil
811 (surface surface)
812 (x-pixels-per-inch double-float)
813 (y-pixels-per-inch double-float))
1ed0a2c5 814
2e86f0c9 815(define-callback stream-write-func status
816 ((stream-id pointer-data) (data pointer) (length unsigned-int))
817 (let ((stream (find-user-data stream-id)))
818 (typecase stream
819 (stream
820 (map-c-vector 'nil #'(lambda (octet) (write-byte octet stream))
821 data '(unsigned-byte 8) length))
822 ((or symbol function)
823 (funcall stream
824 (map-c-vector 'vector #'identity data '(unsigned-byte 8) length)))))
825 :success)
826
1ed0a2c5 827
828;; Image Surface
829
830;; Should data be automatically freed when the surface is GCed?
c1a5cdbb 831(defmethod allocate-foreign ((surface image-surface)
2e86f0c9 832 &key filename width height stride format data)
833 (cond
834 (filename (%image-surface-create-from-png filename))
835 ((not data) (%image-surface-create format width height))
836 (t
c1a5cdbb 837 (%image-surface-create-for-data data format width height
838 (or
839 stride
840 (let ((element-size (cdr (assoc format '((:argb32 . 4) (:rgb24 . 4) (:a8 . 1) (:a1 1/8))))))
2e86f0c9 841 (ceiling (* width element-size))))))))
1ed0a2c5 842
843
2e86f0c9 844(defbinding %image-surface-create () pointer
1ed0a2c5 845 (format surface-format)
846 (width int)
847 (hegit int))
848
2e86f0c9 849(defbinding %image-surface-create-for-data () pointer
1ed0a2c5 850 (data pointer)
851 (format surface-format)
852 (width int)
853 (hegit int)
854 (stride int))
855
2e86f0c9 856(defbinding %image-surface-create-from-png () pointer
857 (filename pathname))
1ed0a2c5 858
2e86f0c9 859(defbinding surface-write-to-png () status
860 (surface surface)
861 (filename pathname))
862
863
864;;; PDF Surface
865
866(defmethod allocate-foreign ((surface pdf-surface)
867 &key filename stream width height)
868 (cond
869 ((and filename stream)
870 (error "Only one of the arguments :filename and :stream may be specified"))
871 (filename (%pdf-surface-create filename width height))
872 (stream
873 (let* ((stream-id (register-user-data stream))
874 (location (%pdf-surface-create-for-stream stream-id width height)))
875 (%surface-set-user-data location 'stream stream-id)
876 location))))
877
878
879(defbinding %pdf-surface-create () pointer
880 (filename pathname)
881 (width double-float)
882 (height double-float))
883
884(defbinding %pdf-surface-create-for-stream (stream width height) pointer
885 (stream-write-func callback)
886 (stream pointer-data)
887 (width double-float)
888 (height double-float))
889
890(defbinding pdf-surface-set-size () nil
891 (surface pdf-surface)
892 (width double-float)
893 (height double-float))
894
895
896;;; PS Surface
897
898(defmethod allocate-foreign ((surface ps-surface)
899 &key filename stream width height)
900 (cond
901 ((and filename stream)
902 (error "Only one of the arguments :filename and :stream may be specified"))
903 (filename (%ps-surface-create filename width height))
904 (stream
905 (let* ((stream-id (register-user-data stream))
906 (location (%ps-surface-create-for-stream stream-id width height)))
907 (%surface-set-user-data location 'stream stream-id)
908 location))))
909
910(defbinding %ps-surface-create () pointer
911 (filename pathname)
912 (width double-float)
913 (height double-float))
914
915(defbinding %ps-surface-create-for-stream (stream width height) pointer
916 (stream-write-func callback)
917 (stream pointer-data)
918 (width double-float)
919 (height double-float))
920
921(defbinding ps-surface-set-size () nil
922 (surface ps-surface)
923 (width double-float)
924 (height double-float))
925
926(defbinding ps-surface-dsc-begin-setup () nil
927 (surface ps-surface))
928
929(defbinding ps-surface-dsc-begin-page-setup () nil
930 (surface ps-surface))
931
932(defbinding ps-surface-dsc-comment () nil
933 (surface ps-surface)
934 (comment string))
935
936
937;;; SVG Surface
938
939(defmethod allocate-foreign ((surface svg-surface)
940 &key filename stream width height)
941 (cond
942 ((and filename stream)
943 (error "Only one of the arguments :filename and :stream may be specified"))
944 (filename (%svg-surface-create filename width height))
945 (stream
946 (let* ((stream-id (register-user-data stream))
947 (location (%svg-surface-create-for-stream stream-id width height)))
948 (%surface-set-user-data location 'stream stream-id)
949 location))))
950
951(defbinding %svg-surface-create () pointer
952 (filename pathname)
953 (width double-float)
954 (height double-float))
955
956(defbinding %svg-surface-create-for-stream (stream width height) pointer
957 (stream-write-func callback)
958 (stream pointer-data)
959 (width double-float)
960 (height double-float))
961
962(defbinding svg-surface-restrict-to-version () nil
963 (surface svg-surface)
964 (version svg-version))
1ed0a2c5 965
966
967
968;;; Matrices
969
970(defbinding matrix-init () nil
a82cea45 971 (matrix matrix :in/return)
1ed0a2c5 972 (xx double-float) (yx double-float)
973 (xy double-float) (yy double-float)
974 (x0 double-float) (y0 double-float))
975
2e86f0c9 976(defbinding matrix-init-identity (&optional (matrix (make-instance 'matrix))) nil
a82cea45 977 (matrix matrix :in/return))
1ed0a2c5 978
979(defbinding matrix-init-translate () nil
a82cea45 980 (matrix matrix :in/return)
1ed0a2c5 981 (tx double-float)
982 (ty double-float))
983
984(defbinding matrix-init-scale () nil
a82cea45 985 (matrix matrix :in/return)
1ed0a2c5 986 (sx double-float)
987 (sy double-float))
988
989(defbinding matrix-init-rotate () nil
a82cea45 990 (matrix matrix :in/return)
1ed0a2c5 991 (radians double-float))
992
993(defbinding matrix-translate () nil
a82cea45 994 (matrix matrix :in/return)
1ed0a2c5 995 (tx double-float)
996 (ty double-float))
997
998(defbinding matrix-scale () nil
a82cea45 999 (matrix matrix :in/return)
1ed0a2c5 1000 (sx double-float)
1001 (sy double-float))
1002
1003(defbinding matrix-rotate () nil
a82cea45 1004 (matrix matrix :in/return)
1ed0a2c5 1005 (radians double-float))
1006
1007(defbinding matrix-invert () nil
a82cea45 1008 (matrix matrix :in/return))
1ed0a2c5 1009
1010(defbinding matrix-multiply () nil
1011 (result matrix :out)
1012 (a matrix)
1013 (b matrix))
1014
1015(defbinding matrix-transform-distance () nil
a82cea45 1016 (matrix matrix :in/return)
1ed0a2c5 1017 (dx double-float)
1018 (dy double-float))
1019
1020(defbinding matrix-transform-point () nil
a82cea45 1021 (matrix matrix :in/return)
1ed0a2c5 1022 (x double-float)
1023 (y double-float))
1024
1025
1026