X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/53b8baf773f5aafaf8532412f00f2de7ef3d7218..4e431775e43db589bacc4f643613ede83a0a4025:/gtk/gtktypes.lisp diff --git a/gtk/gtktypes.lisp b/gtk/gtktypes.lisp index 9d3dabf..2deca7e 100644 --- a/gtk/gtktypes.lisp +++ b/gtk/gtktypes.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: gtktypes.lisp,v 1.41 2006/02/06 11:59:47 espen Exp $ +;; $Id: gtktypes.lisp,v 1.45 2006/02/26 23:37:18 espen Exp $ (in-package "GTK") @@ -136,8 +136,16 @@ (deftype position () '(or int (enum (:start 0) (:end -1) (:first 0) (:last -1)))) -(defmethod reader-function ((type (eql 'position)) &rest args) - (declare (ignore type args)) +(define-type-method from-alien-form ((type position) form) + (declare (ignore type)) + (from-alien-form 'int form)) + +(define-type-method from-alien-function ((type position)) + (declare (ignore type)) + (from-alien-function 'int)) + +(define-type-method reader-function ((type position)) + (declare (ignore type)) (reader-function 'int)) @@ -155,7 +163,7 @@ ("GtkWidget" :slots ((child-properties - :allocation :special + :special t :accessor widget-child-properties :type container-child) (window @@ -307,7 +315,7 @@ :type boolean) (icon-list :allocation :virtual - :getter "gtk_window_get_icon_list" + :getter %window-get-icon-list :setter "gtk_window_set_icon_list" :accessor window-icon-list :initarg :icon-list @@ -487,6 +495,22 @@ :initarg :tearoff-state :type boolean))) + ("GtkPlug" + :slots + ((id + :allocation :virtual + :getter "gtk_plug_get_id" + :reader plug-id + :type gdk:native-window))) + + ("GtkSocket" + :slots + ((id + :allocation :virtual + :getter "gtk_socket_get_id" + :reader socket-id + :type gdk:native-window))) + ("GtkToolbar" :slots ((show-tooltips