X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/5c9cc66aa5fa72f1edce094b9c3fe476705de040..b049d554bf8ce408641df9a48ad012706905a900:/gtk/gtk.lisp diff --git a/gtk/gtk.lisp b/gtk/gtk.lisp index 722584a..bf7c8cd 100644 --- a/gtk/gtk.lisp +++ b/gtk/gtk.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: gtk.lisp,v 1.46 2005-10-21 12:32:29 espen Exp $ +;; $Id: gtk.lisp,v 1.49 2006-02-06 19:16:17 espen Exp $ (in-package "GTK") @@ -1294,13 +1294,13 @@ (defbinding %window-present () nil (window window)) - (defbinding %window-present-with-timestamp () nil + (defbinding %window-present-with-time () nil (window window) (timespamp unsigned-int)) (defun window-present (window &optional timestamp) (if timestamp - (%window-present-with-timestamp window timestamp) + (%window-present-with-time window timestamp) (%window-present window)))) (defbinding window-iconify () nil @@ -1457,6 +1457,9 @@ (width int) (heigth int)) +(defbinding %window-get-icon-list () (glist (copy-of gdk:pixbuf)) + (window window)) + ;;; Window group @@ -2231,7 +2234,7 @@ (defun stock-lookup (stock-id) (let ((location - (allocate-memory (proxy-instance-size (find-class 'stock-item))))) + (allocate-memory (foreign-size (find-class 'stock-item))))) (unwind-protect (when (%stock-lookup stock-id location) (ensure-proxy-instance 'stock-item (%stock-item-copy location)))