X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/blobdiff_plain/358bbd909c4ddbe95587fe15c30d74ed05a06567..c379590ec9f52576afcb723d29dba19cd42fc62a:/gdk/pixbuf.lisp diff --git a/gdk/pixbuf.lisp b/gdk/pixbuf.lisp index 7cbdce2..f0598ef 100644 --- a/gdk/pixbuf.lisp +++ b/gdk/pixbuf.lisp @@ -20,7 +20,7 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: pixbuf.lisp,v 1.4 2006-04-25 22:27:13 espen Exp $ +;; $Id: pixbuf.lisp,v 1.5 2006-06-07 13:18:20 espen Exp $ (in-package "GDK") @@ -117,6 +117,29 @@ (defun copy-pixbuf (pixbuf &optional x y width height) (%pixbuf-copy pixbuf) (%pixbuf-new-subpixbuf pixbuf x y width height))) +(defbinding %pixbuf-get-from-drawable () (referenced pixbuf) + (dest (or null pixbuf)) + (drawable drawable) + (colormap (or null colormap)) + (src-x int) + (src-y int) + (dest-x int) + (dest-y int) + (width int) + (height int)) + +(defun pixbuf-get-from-drawable (drawable &key (src-x 0) (src-y 0) (dest-x 0) (dest-y 0) width height colormap dest) + (unless (or (and width height) (not (typep drawable 'window))) + (error "Width and height must be specified for windows")) + (or + (%pixbuf-get-from-drawable dest drawable + (cond + (colormap) + ((slot-boundp drawable 'colormap) nil) + ((colormap-get-system))) + src-x src-y dest-x dest-y (or width -1) (or height -1)) + (error "Couldn't get pixbuf from drawable"))) + ;;; Utilities