X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=gtk%2Fgtk.widget.lisp;h=5be60b996de2749eabc9f97b7767c9e4d7ccf5ba;hb=0e3bcaa496379ddc2aea17dea533ea1e20170ebb;hp=0e5def493e6c4c3ef4008c91bdfe3b645cdc8436;hpb=9af0a44db2b9491749a7936c782c3d7ff1b804a3;p=cl-gtk2.git diff --git a/gtk/gtk.widget.lisp b/gtk/gtk.widget.lisp index 0e5def4..5be60b9 100644 --- a/gtk/gtk.widget.lisp +++ b/gtk/gtk.widget.lisp @@ -13,33 +13,33 @@ (export 'widget-flags) (defcstruct %gtk-requisition - (width :int) - (height :int)) + (:width :int) + (:height :int)) (defcstruct %gtk-allocation - (x :int) - (y :int) - (width :int) - (height :int)) + (:x :int) + (:y :int) + (:width :int) + (:height :int)) (defcstruct %gtk-widget - (object %gtk-object) - (private-flags :uint16) - (state state-type) - (saved-state state-type) - (name (:pointer :char)) - (style :pointer) - (requisition %gtk-requisition) - (allocation %gtk-allocation) - (window :pointer) - (parent :pointer)) + (:object %gtk-object) + (:private-flags :uint16) + (:state state-type) + (:saved-state state-type) + (:name (:pointer :char)) + (:style :pointer) + (:requisition %gtk-requisition) + (:allocation %gtk-allocation) + (:window :pointer) + (:parent :pointer)) (defun widget-state (widget) - (foreign-slot-value (pointer widget) '%gtk-widget 'state)) + (foreign-slot-value (pointer widget) '%gtk-widget :state)) (export 'widget-state) (defun widget-saved-state (widget) - (foreign-slot-value (pointer widget) '%gtk-widget 'saved-state)) + (foreign-slot-value (pointer widget) '%gtk-widget :saved-state)) (export 'widget-saved-state) @@ -448,7 +448,7 @@ (unwind-protect (let ((g-param-spec (gtk-widget-class-find-style-property class property-name))) (unless g-param-spec (error "Widget ~A has no style-property named '~A'" widget property-name)) - (foreign-slot-value g-param-spec 'gobject::g-param-spec 'gobject::value-type)) + (foreign-slot-value g-param-spec 'gobject:g-param-spec :value-type)) (g-type-class-unref class)))) (defun widget-child-property-value (widget property-name &optional property-type) @@ -541,8 +541,11 @@ (export 'widget-trigger-tooltip-query) -(defcfun (widget-snapshot "gtk_widget_get_snapshot") g-object +(defcfun gtk-widget-get-snapshot g-object (widget g-object) (clip-rectangle (g-boxed-ptr rectangle))) +(defun widget-snapshot (widget &optional clip-rectangle) + (gtk-widget-get-snapshot widget clip-rectangle)) + (export 'widget-snapshot) \ No newline at end of file