From 2e852f7b0dc57966cfad557ebf0f9a962bb28882 Mon Sep 17 00:00:00 2001 Message-Id: <2e852f7b0dc57966cfad557ebf0f9a962bb28882.1714427714.git.mdw@distorted.org.uk> From: Mark Wooding Date: Mon, 20 Dec 2004 00:51:38 +0000 Subject: [PATCH] Adding DRAWING-AREA-GET-SIZE Organization: Straylight/Edgeware From: espen --- gtk/gtk.lisp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/gtk/gtk.lisp b/gtk/gtk.lisp index 67433b5..0f7426d 100644 --- a/gtk/gtk.lisp +++ b/gtk/gtk.lisp @@ -15,7 +15,7 @@ ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -;; $Id: gtk.lisp,v 1.21 2004-12-16 23:49:53 espen Exp $ +;; $Id: gtk.lisp,v 1.22 2004-12-20 00:51:38 espen Exp $ (in-package "GTK") @@ -453,7 +453,12 @@ (defmethod (setf container-children) (children (dialog dialog)) -;;; Drawing area -- no functions +;;; Drawing area + +(defbinding drawing-area-get-size () nil + (drawing-area drawing-area) + (width int :out) + (height int :out)) ;;; Entry -- [mdw]