X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/9c03a07c0079f661828aed8b168ab6cba8504046..637525325db34a2c4e4de288711d97bb84adffee:/glib/ginterface.lisp?ds=sidebyside diff --git a/glib/ginterface.lisp b/glib/ginterface.lisp index 47fc9a3..b54c665 100644 --- a/glib/ginterface.lisp +++ b/glib/ginterface.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: ginterface.lisp,v 1.3 2004-10-31 00:56:29 espen Exp $ +;; $Id: ginterface.lisp,v 1.5 2004-11-07 15:54:15 espen Exp $ (in-package "GLIB") @@ -26,30 +26,10 @@ (defclass ginterface () ()) -(deftype-method translate-type-spec ginterface (type-spec) - (declare (ignore type-spec)) - (translate-type-spec 'gobject)) - -(deftype-method size-of ginterface (type-spec) - (declare (ignore type-spec)) - (size-of 'gobject)) - -(deftype-method translate-from-alien - ginterface (type-spec location &optional weak-ref) - (declare (ignore type-spec)) - (translate-from-alien 'gobject location weak-ref)) - -(deftype-method translate-to-alien - ginterface (type-spec instance &optional weak-ref) - (declare (ignore type-spec)) - (translate-to-alien 'gobject instance weak-ref)) - - - ;;;; Metaclass for interfaces (eval-when (:compile-toplevel :load-toplevel :execute) - (defclass ginterface-class (virtual-slot-class) + (defclass ginterface-class (virtual-slots-class) ())) (defmethod direct-slot-definition-class ((class ginterface-class) &rest initargs) @@ -90,6 +70,43 @@ (subtypep (class-name super) 'ginterface)) +(defmethod alien-type ((class ginterface-class) &rest args) + (declare (ignore class args)) + (alien-type 'gobject)) + +(defmethod size-of ((class ginterface-class) &rest args) + (declare (ignore class args)) + (size-of 'gobject)) + +(defmethod from-alien-form (location (class ginterface-class) &rest args) + (declare (ignore class args)) + (from-alien-form location 'gobject)) + +(defmethod from-alien-function ((class ginterface-class) &rest args) + (declare (ignore class args)) + (from-alien-function 'gobject)) + +(defmethod to-alien-form (instance (class ginterface-class) &rest args) + (declare (ignore class args)) + (to-alien-form instance 'gobject)) + +(defmethod to-alien-function ((class ginterface-class) &rest args) + (declare (ignore class args)) + (to-alien-function 'gobject)) + +(defmethod reader-function ((class ginterface-class) &rest args) + (declare (ignore class args)) + (reader-function 'gobject)) + +(defmethod writer-function ((class ginterface-class) &rest args) + (declare (ignore class args)) + (writer-function 'gobject)) + +(defmethod destroy-function ((class ginterface-class) &rest args) + (declare (ignore class args)) + (destroy-function 'gobject)) + + ;;;;