head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.10 pkgsrc-2013Q2-base:1.2 pkgsrc-2012Q4:1.2.0.8 pkgsrc-2012Q4-base:1.2 pkgsrc-2011Q4:1.2.0.6 pkgsrc-2011Q4-base:1.2 pkgsrc-2011Q2:1.2.0.4 pkgsrc-2011Q2-base:1.2 pkgsrc-2009Q4:1.2.0.2 pkgsrc-2009Q4-base:1.2 pkgsrc-2009Q2:1.1.0.4 pkgsrc-2009Q2-base:1.1 pkgsrc-2009Q1:1.1.0.2 pkgsrc-2009Q1-base:1.1; locks; strict; comment @# @; 1.2 date 2009.08.12.11.43.57; author ahoka; state dead; branches; next 1.1; 1.1 date 2009.03.21.18.03.42; author ahoka; state Exp; branches; next ; desc @@ 1.2 log @Vala 0.7.5 Changes * Add support for static properties. * Add support for delegate properties. * Support virtual default handler for signals. * Add limited support for derived compact classes. * Add libgdata bindings (Víctor Manuel Jáquez Leal). * Add libusb-1.0 bindings (Evan Nemerson). * Many bug fixes and binding updates. Vala 0.7.4 Changes * Add support for array properties. * Support implicit and explicit GValue casts. * Add initial support for generic methods. * Add postgres bindings. * Many bug fixes and binding updates. Vala 0.7.3 Changes * Add initial support for POSIX profile. * Add --vapi and --gir commandline options. * Add initial x11, xcb, and cairo-xcb bindings. * Many bug fixes and binding updates. Vala 0.7.2 Changes * Improvements to the .gir reader and writer (Didier Ptitjes). * Many bug fixes and binding updates. Vala 0.7.1 Changes * Introduce new syntax to connect/disconnect signal handlers. * Add experimental support for fixed-length arrays. * Update Genie parser (Jamie McCracken). * Updates to the GLib, Cairo, GTK+, GStreamer, and POSIX bindings. * Many bug fixes. Vala 0.7.0 Changes * Do not generate header files unless requested by the -H commandline o option. This requires changes in the build system of Vala projects. * Support conditional compilation. Vala 0.6.1 Changes * Updates to the GLib, Cairo, GTK+, GStreamer, and POSIX bindings. * Minor bug fixes. Vala 0.6.0 Changes * Improvements to the .gir reader and writer (Didier Ptitjes). * Add librsvg-2.0 bindings (Evan Nemerson). * Add Maemo libosso bindings (Jukka-Pekka Iivonen). * Add V4L2 bindings (Matías De la Puente). * Many bug fixes. @ text @Index: vapi/gtk+-2.0.vapi =================================================================== --- vapi/gtk+-2.0.vapi (révision 2334) +++ vapi/gtk+-2.0.vapi (copie de travail) @@@@ -4524,6 +4524,8 @@@@ [CCode (type = "GtkWidget*", has_construct_function = false)] public TreeView (); public int remove_column (Gtk.TreeViewColumn column); + [CCode (cname = "gtk_tree_view_row_expanded")] + public bool row_is_expanded (Gtk.TreePath path); public void scroll_to_cell (Gtk.TreePath? path, Gtk.TreeViewColumn? column, bool use_align, float row_align, float col_align); public void scroll_to_point (int tree_x, int tree_y); public void set_column_drag_function (Gtk.TreeViewColumnDropFunc func, Gtk.DestroyNotify destroy); @@@@ -5539,13 +5541,13 @@@@ } [CCode (type_id = "GTK_TYPE_RECENT_DATA", cheader_filename = "gtk/gtk.h")] public struct RecentData { - public string display_name; - public string description; - public string mime_type; - public string app_name; - public string app_exec; + public weak string display_name; + public weak string description; + public weak string mime_type; + public weak string app_name; + public weak string app_exec; [CCode (array_length = false)] - public string[] groups; + public weak string[] groups; public bool is_private; } [CCode (type_id = "GTK_TYPE_REQUISITION", cheader_filename = "gtk/gtk.h")] @ 1.1 log @Patch GTK vapi bug (needed by valide) Add vapigen option an enable it (closes pkg/41001) Fix a minor PLIST problem @ text @@