[vala] gdk-3.0, gtk+-3.0: Update to 3.9.11++



commit 8f106743367f3ea7dd779b843501baf0d64f2e20
Author: Rico Tzschichholz <ricotz ubuntu com>
Date:   Thu Aug 15 22:08:24 2013 +0200

    gdk-3.0, gtk+-3.0: Update to 3.9.11++

 vapi/gdk-3.0.vapi                     |    1 +
 vapi/gtk+-3.0.vapi                    |    5 +++++
 vapi/packages/gtk+-3.0/gtk+-3.0.files |    2 +-
 vapi/packages/gtk+-3.0/gtk+-3.0.gi    |   27 +++++++++++++++++++++++++++
 4 files changed, 34 insertions(+), 1 deletions(-)
---
diff --git a/vapi/gdk-3.0.vapi b/vapi/gdk-3.0.vapi
index 2584bc8..7e808d6 100644
--- a/vapi/gdk-3.0.vapi
+++ b/vapi/gdk-3.0.vapi
@@ -4774,6 +4774,7 @@ namespace Gdk {
                public bool get_click_count (out uint click_count);
                public bool get_coords (out double x_win, out double y_win);
                public unowned Gdk.Device get_device ();
+               public Gdk.EventType get_event_type ();
                public bool get_keycode (out uint16 keycode);
                public bool get_keyval (out uint keyval);
                public bool get_root_coords (out double x_root, out double y_root);
diff --git a/vapi/gtk+-3.0.vapi b/vapi/gtk+-3.0.vapi
index ecdb2ef..173dbde 100644
--- a/vapi/gtk+-3.0.vapi
+++ b/vapi/gtk+-3.0.vapi
@@ -783,6 +783,8 @@ namespace Gtk {
                [CCode (has_construct_function = false, type = "GtkWidget*")]
                public Button ();
                [CCode (has_construct_function = false, type = "GtkWidget*")]
+               public Button.from_icon_name (string icon_name, Gtk.IconSize size);
+               [CCode (has_construct_function = false, type = "GtkWidget*")]
                public Button.from_stock (string stock_id);
                public void get_alignment (out float xalign, out float yalign);
                public bool get_always_show_image ();
@@ -2852,6 +2854,7 @@ namespace Gtk {
                public unowned Gtk.ListBoxRow get_row_at_y (int y);
                public unowned Gtk.ListBoxRow get_selected_row ();
                public Gtk.SelectionMode get_selection_mode ();
+               public void insert (Gtk.Widget child, int position);
                public void invalidate_filter ();
                public void invalidate_headers ();
                public void invalidate_sort ();
@@ -8919,6 +8922,8 @@ namespace Gtk {
        [CCode (cheader_filename = "gtk/gtk.h")]
        public static unowned Gdk.DragContext drag_begin (Gtk.Widget widget, Gtk.TargetList targets, 
Gdk.DragAction actions, int button, Gdk.Event? event);
        [CCode (cheader_filename = "gtk/gtk.h")]
+       public static unowned Gdk.DragContext drag_begin_with_coordinates (Gtk.Widget widget, Gtk.TargetList 
targets, Gdk.DragAction actions, int button, Gdk.Event event, int x, int y);
+       [CCode (cheader_filename = "gtk/gtk.h")]
        public static bool drag_check_threshold (Gtk.Widget widget, int start_x, int start_y, int current_x, 
int current_y);
        [CCode (cheader_filename = "gtk/gtk.h")]
        public static void drag_dest_add_image_targets (Gtk.Widget widget);
diff --git a/vapi/packages/gtk+-3.0/gtk+-3.0.files b/vapi/packages/gtk+-3.0/gtk+-3.0.files
index e821676..80a458b 100644
--- a/vapi/packages/gtk+-3.0/gtk+-3.0.files
+++ b/vapi/packages/gtk+-3.0/gtk+-3.0.files
@@ -1,2 +1,2 @@
 include/gtk-3.0/gtk
-lib/libgtk-3.so
+lib/x86_64-linux-gnu/libgtk-3.so
diff --git a/vapi/packages/gtk+-3.0/gtk+-3.0.gi b/vapi/packages/gtk+-3.0/gtk+-3.0.gi
index 991b9bd..e97627e 100644
--- a/vapi/packages/gtk+-3.0/gtk+-3.0.gi
+++ b/vapi/packages/gtk+-3.0/gtk+-3.0.gi
@@ -160,6 +160,18 @@
                                <parameter name="event" type="GdkEvent*"/>
                        </parameters>
                </function>
+               <function name="drag_begin_with_coordinates" symbol="gtk_drag_begin_with_coordinates">
+                       <return-type type="GdkDragContext*"/>
+                       <parameters>
+                               <parameter name="widget" type="GtkWidget*"/>
+                               <parameter name="targets" type="GtkTargetList*"/>
+                               <parameter name="actions" type="GdkDragAction"/>
+                               <parameter name="button" type="gint"/>
+                               <parameter name="event" type="GdkEvent*"/>
+                               <parameter name="x" type="gint"/>
+                               <parameter name="y" type="gint"/>
+                       </parameters>
+               </function>
                <function name="drag_check_threshold" symbol="gtk_drag_check_threshold">
                        <return-type type="gboolean"/>
                        <parameters>
@@ -7648,6 +7660,13 @@
                        <constructor name="new" symbol="gtk_button_new">
                                <return-type type="GtkWidget*"/>
                        </constructor>
+                       <constructor name="new_from_icon_name" symbol="gtk_button_new_from_icon_name">
+                               <return-type type="GtkWidget*"/>
+                               <parameters>
+                                       <parameter name="icon_name" type="gchar*"/>
+                                       <parameter name="size" type="GtkIconSize"/>
+                               </parameters>
+                       </constructor>
                        <constructor name="new_from_stock" symbol="gtk_button_new_from_stock">
                                <return-type type="GtkWidget*"/>
                                <parameters>
@@ -15625,6 +15644,14 @@
                                        <parameter name="list_box" type="GtkListBox*"/>
                                </parameters>
                        </method>
+                       <method name="insert" symbol="gtk_list_box_insert">
+                               <return-type type="void"/>
+                               <parameters>
+                                       <parameter name="list_box" type="GtkListBox*"/>
+                                       <parameter name="child" type="GtkWidget*"/>
+                                       <parameter name="position" type="gint"/>
+                               </parameters>
+                       </method>
                        <method name="invalidate_filter" symbol="gtk_list_box_invalidate_filter">
                                <return-type type="void"/>
                                <parameters>


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]