Added missing defgenrics
[clg] / gtk / gtktypes.lisp
index cce4e9a..1e56d38 100644 (file)
@@ -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.47 2006-04-26 20:31:12 espen Exp $
+;; $Id: gtktypes.lisp,v 1.52 2007-01-02 15:15:25 espen Exp $
 
 (in-package "GTK")
 
   (:ref stock-item-copy)
   (:unref stock-item-free))
 
-;; We don't really need to access any slots in this class, so we just
-;; specify the total size
 (defclass tree-iter (boxed)  
-  (
-;;    (stamp :allocation :alien :type int)
-;;    (user-data :allocation :alien :type pointer)
-;;    (user-data2 :allocation :alien :type pointer)
-;;    (user-data3 :allocation :alien :type pointer)
-   )
-  (:metaclass boxed-class)
-  (:size #.(+ (size-of 'int) (* 3 (size-of 'pointer)))))
+  ((stamp :allocation :alien :type int)
+   (user-data :allocation :alien :type pointer)
+   (user-data2 :allocation :alien :type pointer)
+   (user-data3 :allocation :alien :type pointer))
+  (:metaclass boxed-class))
 
 
 ;; (defclass tree-path (boxed)
    ; deprecated property
    ((shadow :ignore t)))
 
-  ("GtkTable"
-   :slots
-   ((column-spacing
-     :allocation :virtual
-     :getter "gtk_table_get_default_col_spacing"
-     :setter "gtk_table_set_col_spacings"
-     :initarg :column-spacing
-     :type unsigned-int)
-    (row-spacing
-     :allocation :virtual
-     :getter "gtk_table_get_default_row_spacing"
-     :setter "gtk_table_set_row_spacings"
-     :initarg :row-spacing
-     :type unsigned-int)))
+;;   ("GtkTable"
+;;    :slots
+;;    ((column-spacing
+;;      :allocation :virtual
+;;      :getter "gtk_table_get_default_col_spacing"
+;;      :setter "gtk_table_set_col_spacings"
+;;      :initarg :column-spacing
+;;      :type unsigned-int)
+;;     (row-spacing
+;;      :allocation :virtual
+;;      :getter "gtk_table_get_default_row_spacing"
+;;      :setter "gtk_table_set_row_spacings"
+;;      :initarg :row-spacing
+;;      :type unsigned-int)))
 
   ("GtkDialog"
    :slots
      :allocation :virtual
      :getter "gtk_text_mark_get_name"
      :reader text-mark-name
-     :type string)
+     :type (copy-of string))
     (visible
      :allocation :virtual
      :getter "gtk_text_mark_get_visible"
      :allocation :virtual
      :getter "gtk_toggle_action_get_active"
      :setter "gtk_toggle_action_set_active"
-     :initarg :active
+;     :initarg :active
      :accessor toggle-action-active-p
      :type boolean)))
 
   (:metaclass boxed-class))
 
 
+#?-(pkg-exists-p "gtk+-2.0" :atleast-version "2.10.0")
 (defclass target-list (proxy)
   ()
   (:metaclass proxy-class)
   (:ref target-list-ref)
   (:unref target-list-unref))
+
+#?(pkg-exists-p "gtk+-2.0" :atleast-version "2.10.0")
+(defclass target-list (boxed)
+  ()
+  (:metaclass boxed-class))