chiark / gitweb /
New function PIXBUF-GET-FROM-DRAWABLE
[clg] / gdk / pixbuf.lisp
1 ;; Common Lisp bindings for GTK+ v2.x
2 ;; Copyright 2004-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
23 ;; $Id: pixbuf.lisp,v 1.5 2006-06-07 13:18:20 espen Exp $
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)
34   (nil gerror :out))
35
36 (defbinding %pixbuf-new-from-file-at-size () (referenced pixbuf)
37   (filename pathname)
38   (width int)
39   (height int)
40   (nil gerror :out))
41
42 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
43 (defbinding %pixbuf-new-from-file-at-scale () (referenced pixbuf)
44   (filename pathname)
45   (width int)
46   (height int)
47   (preserve-aspect-ratio boolean)
48   (nil gerror :out))
49
50 (defun pixbuf-load (filename &key width height size (preserve-aspect-ratio t))
51   #?-(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
52   (unless preserve-aspect-ratio 
53     (warn ":preserve-aspect-ratio not supported with this version of Gtk"))
54
55   (multiple-value-bind (pixbuf gerror)
56       (cond
57        (size 
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))
62        ((and width height)
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))
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)))
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)
84   (keys strings)
85   (values string)
86   (nil gerror :out))
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))
100     (multiple-value-bind (ok-p gerror)
101         (%pixbuf-savev pixbuf filename type keys values)
102       (unless ok-p
103         (signal-gerror gerror)))))
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 (defbinding %pixbuf-get-from-drawable () (referenced pixbuf)
121   (dest (or null pixbuf))
122   (drawable drawable)
123   (colormap (or null colormap))
124   (src-x int)
125   (src-y int)
126   (dest-x int)
127   (dest-y int)
128   (width int)
129   (height int))
130
131 (defun pixbuf-get-from-drawable (drawable &key (src-x 0) (src-y 0) (dest-x 0) (dest-y 0) width height colormap dest)
132   (unless (or (and width height) (not (typep drawable 'window)))
133     (error "Width and height must be specified for windows"))
134   (or
135    (%pixbuf-get-from-drawable dest drawable
136     (cond
137      (colormap)
138      ((slot-boundp drawable 'colormap) nil)
139      ((colormap-get-system)))
140     src-x src-y dest-x dest-y (or width -1) (or height -1))
141    (error "Couldn't get pixbuf from drawable")))
142
143
144 ;;; Utilities
145
146 (defbinding pixbuf-add-alpha 
147     (pixbuf &optional substitute-color (red 255) (green 255) (blue 255))
148     (referenced pixbuf)
149   (pixbuf pixbuf)
150   (substitute-color boolean)
151   (red (unsigned 8))
152   (green (unsigned 8))
153   (blue (unsigned 8)))