chiark / gitweb /
Various necessary changes
[clg] / gdk / pixbuf.lisp
CommitLineData
112ac1d3 1;; Common Lisp bindings for GTK+ v2.x
2;; Copyright 2004-2005 Espen S. Johnsen <espen@users.sf.net>
43e8a182 3;;
112ac1d3 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:
43e8a182 11;;
112ac1d3 12;; The above copyright notice and this permission notice shall be
13;; included in all copies or substantial portions of the Software.
43e8a182 14;;
112ac1d3 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
90c5d56b 23;; $Id: pixbuf.lisp,v 1.4 2006-04-25 22:27:13 espen Exp $
43e8a182 24
25
26(in-package "GDK")
27
28(defbinding pixbuf-get-option () (copy-of string)
29 (pixbuf pixbuf)
30 (key string))
31
32(defbinding %pixbuf-new-from-file () (referenced pixbuf)
33 (filename pathname)
ed794f57 34 (nil gerror :out))
43e8a182 35
36(defbinding %pixbuf-new-from-file-at-size () (referenced pixbuf)
37 (filename pathname)
38 (width int)
39 (height int)
ed794f57 40 (nil gerror :out))
43e8a182 41
90c5d56b 42#?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
43e8a182 43(defbinding %pixbuf-new-from-file-at-scale () (referenced pixbuf)
44 (filename pathname)
45 (width int)
46 (height int)
47 (preserve-aspect-ratio boolean)
ed794f57 48 (nil gerror :out))
43e8a182 49
50(defun pixbuf-load (filename &key width height size (preserve-aspect-ratio t))
90c5d56b 51 #?-(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
43e8a182 52 (unless preserve-aspect-ratio
53 (warn ":preserve-aspect-ratio not supported with this version of Gtk"))
54
ed794f57 55 (multiple-value-bind (pixbuf gerror)
56 (cond
57 (size
90c5d56b 58 #?-(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
59 (%pixbuf-new-from-file-at-size filename size size)
60 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
61 (%pixbuf-new-from-file-at-scale filename size size preserve-aspect-ratio))
ed794f57 62 ((and width height)
90c5d56b 63 #?-(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
64 (%pixbuf-new-from-file-at-size filename width height)
65 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
66 (%pixbuf-new-from-file-at-scale filename width height preserve-aspect-ratio))
ed794f57 67 ((or width height)
68 (error "Both :width and :height must be specified"))
69 (t (%pixbuf-new-from-file filename)))
70 (if gerror
71 (signal-gerror gerror)
72 pixbuf)))
43e8a182 73
74
75;; (defbinding pixbuf-get-file-info () (copy-of pixbuf-format)
76;; (filename pathname)
77;; (width int :out)
78;; (height int :out))
79
80(defbinding %pixbuf-savev () boolean
81 (pixbuf pixbuf)
82 (filename pathname)
83 (type string)
ed794f57 84 (keys strings)
85 (values string)
86 (nil gerror :out))
43e8a182 87
88(defun pixbuf-save (pixbuf filename type &rest options)
89 (let ((keys (make-array 0 :adjustable t :fill-pointer t))
90 (values (make-array 0 :adjustable t :fill-pointer t)))
91 (loop
92 as (key value . rest) = options then rest
93 do (vector-push-extend (string-downcase key) keys)
94 (vector-push-extend
95 (etypecase value
96 (string value)
97 (symbol (string-downcase value))
98 (number (format nil "~A" value)))
99 values))
ed794f57 100 (multiple-value-bind (ok-p gerror)
101 (%pixbuf-savev pixbuf filename type keys values)
102 (unless ok-p
103 (signal-gerror gerror)))))
43e8a182 104
105(defbinding pixbuf-new-from-xpm-data () (referenced pixbuf)
106 (data (vector string)))
107
108(defbinding %pixbuf-new-subpixbuf () pixbuf ;; or (referenced pixbuf)?
109 (pixbuf pixbuf)
110 (x int) (y int) (width int) (height int))
111
112(defbinding %pixbuf-copy () (referenced pixbuf)
113 (pixbuf pixbuf))
114
115(defun copy-pixbuf (pixbuf &optional x y width height)
116 (if (and (not x) (not y) (not width) (not height))
117 (%pixbuf-copy pixbuf)
118 (%pixbuf-new-subpixbuf pixbuf x y width height)))
119
120
121;;; Utilities
122
123(defbinding pixbuf-add-alpha
124 (pixbuf &optional substitute-color (red 255) (green 255) (blue 255))
125 (referenced pixbuf)
126 (pixbuf pixbuf)
127 (substitute-color boolean)
128 (red (unsigned 8))
129 (green (unsigned 8))
130 (blue (unsigned 8)))