| File lib/ocaml/pkg-lib/camlimages/oXimage.mli | GODI Package godi-camlimages |
| Library camlimages |
| oXimage.cmi_pretty | oXimage.mli | Sources |
(***********************************************************************) (* *) (* Objective Caml *) (* *) (* Jun Furuse, projet Cristal, INRIA Rocquencourt *) (* *) (* Copyright 1999-2004, *) (* Institut National de Recherche en Informatique et en Automatique. *) (* Distributed only by permission. *) (* *) (***********************************************************************) (* $Id: oXimage.mli,v 1.5 2004/09/24 10:02:54 weis Exp $*) open Ximage;; class ximage : Ximage.t -> object method width : int method height : int method unsafe_get : int -> int -> Ximage.elt method unsafe_set : int -> int -> Ximage.elt -> unit method get : int -> int -> Ximage.elt method set : int -> int -> Ximage.elt -> unit method data : Gdk.image method destroy : unit end val create : kind:Gdk.Image.image_type -> visual:Gdk.visual -> width: int -> height: int -> ximage val get_image : 'a Gdk.drawable -> x:int -> y:int -> width:int -> height:int -> ximage val of_image : Gdk.visual -> (float -> unit) option -> OImages.oimage -> ximage val mask_of_image : Gdk.window -> OImages.oimage -> Gdk.bitmap option val pixmap_of_image : Gdk.window -> (float -> unit) option -> OImages.oimage -> GDraw.pixmap