From: Jared Moore Date: Thu, 26 Jun 2008 12:16:29 +0000 (+0000) Subject: Changed gtk_paint_arrow_* family to have nullable area, widget, and detail X-Git-Tag: VALA_0_3_4~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b36ed225ca7e3cd08a93fe8acdf587c065ec989;p=thirdparty%2Fvala.git Changed gtk_paint_arrow_* family to have nullable area, widget, and detail 2008-06-26 Jared Moore * vapi/packages/gtk+-2.0/gtk+-2.0.metadata: Changed gtk_paint_arrow_* family to have nullable area, widget, and detail parameters, fixes bug 540237. * vapi/gtk+-2.0.vapi: Regenerated svn path=/trunk/; revision=1650 --- diff --git a/ChangeLog b/ChangeLog index 00e59734c..d5b819ed0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2008-06-26 Jared Moore + + * vapi/packages/gtk+-2.0/gtk+-2.0.metadata: + + Changed gtk_paint_arrow_* family to have nullable area, widget, and + detail parameters, fixes bug 540237. + + * vapi/gtk+-2.0.vapi: Regenerated + 2008-06-26 Jared Moore * vapi/glib-2.0.vapi: diff --git a/vapi/gtk+-2.0.vapi b/vapi/gtk+-2.0.vapi index 5cb57a043..2b3ecf415 100644 --- a/vapi/gtk+-2.0.vapi +++ b/vapi/gtk+-2.0.vapi @@ -6968,45 +6968,45 @@ namespace Gtk { [CCode (cheader_filename = "gtk/gtk.h")] public static void main_quit (); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_arrow (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, Gtk.ArrowType arrow_type, bool fill, int x, int y, int width, int height); + public static void paint_arrow (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, Gtk.ArrowType arrow_type, bool fill, int x, int y, int width, int height); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_box (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height); + public static void paint_box (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_box_gap (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height, Gtk.PositionType gap_side, int gap_x, int gap_width); + public static void paint_box_gap (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height, Gtk.PositionType gap_side, int gap_x, int gap_width); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_check (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height); + public static void paint_check (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_diamond (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height); + public static void paint_diamond (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_expander (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, Gtk.ExpanderStyle expander_style); + public static void paint_expander (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, Gtk.ExpanderStyle expander_style); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_extension (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height, Gtk.PositionType gap_side); + public static void paint_extension (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height, Gtk.PositionType gap_side); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_flat_box (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height); + public static void paint_flat_box (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_focus (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height); + public static void paint_focus (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_handle (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height, Gtk.Orientation orientation); + public static void paint_handle (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height, Gtk.Orientation orientation); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_hline (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x1, int x2, int y); + public static void paint_hline (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x1, int x2, int y); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_layout (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, bool use_text, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, Pango.Layout layout); + public static void paint_layout (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, bool use_text, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, Pango.Layout layout); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_option (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height); + public static void paint_option (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_polygon (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, Gdk.Point[] points, bool fill); + public static void paint_polygon (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, Gdk.Point[] points, bool fill); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_resize_grip (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, Gdk.WindowEdge edge, int x, int y, int width, int height); + public static void paint_resize_grip (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, Gdk.WindowEdge edge, int x, int y, int width, int height); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_shadow (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height); + public static void paint_shadow (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_shadow_gap (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height, Gtk.PositionType gap_side, int gap_x, int gap_width); + public static void paint_shadow_gap (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height, Gtk.PositionType gap_side, int gap_x, int gap_width); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_slider (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height, Gtk.Orientation orientation); + public static void paint_slider (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height, Gtk.Orientation orientation); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_tab (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height); + public static void paint_tab (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int x, int y, int width, int height); [CCode (cheader_filename = "gtk/gtk.h")] - public static void paint_vline (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int y1_, int y2_, int x); + public static void paint_vline (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle? area, Gtk.Widget? widget, string? detail, int y1_, int y2_, int x); [CCode (cheader_filename = "gtk/gtk.h")] public static bool parse_args (int argc, string[] argv); [CCode (cheader_filename = "gtk/gtk.h")] diff --git a/vapi/packages/gtk+-2.0/gtk+-2.0.metadata b/vapi/packages/gtk+-2.0/gtk+-2.0.metadata index 32a76c72f..64338d2ce 100644 --- a/vapi/packages/gtk+-2.0/gtk+-2.0.metadata +++ b/vapi/packages/gtk+-2.0/gtk+-2.0.metadata @@ -175,6 +175,66 @@ GtkNotebook.focus_tab hidden="1" gtk_notebook_append_page.tab_label nullable="1" GtkObject::destroy has_emitter="1" gtk_parse_args.argv is_array="1" +gtk_paint_arrow.area nullable="1" +gtk_paint_arrow.widget nullable="1" +gtk_paint_arrow.detail nullable="1" +gtk_paint_box.area nullable="1" +gtk_paint_box.widget nullable="1" +gtk_paint_box.detail nullable="1" +gtk_paint_box_gap.area nullable="1" +gtk_paint_box_gap.widget nullable="1" +gtk_paint_box_gap.detail nullable="1" +gtk_paint_check.area nullable="1" +gtk_paint_check.widget nullable="1" +gtk_paint_check.detail nullable="1" +gtk_paint_diamond.area nullable="1" +gtk_paint_diamond.widget nullable="1" +gtk_paint_diamond.detail nullable="1" +gtk_paint_expander.area nullable="1" +gtk_paint_expander.widget nullable="1" +gtk_paint_expander.detail nullable="1" +gtk_paint_extension.area nullable="1" +gtk_paint_extension.widget nullable="1" +gtk_paint_extension.detail nullable="1" +gtk_paint_flat_box.area nullable="1" +gtk_paint_flat_box.widget nullable="1" +gtk_paint_flat_box.detail nullable="1" +gtk_paint_focus.area nullable="1" +gtk_paint_focus.widget nullable="1" +gtk_paint_focus.detail nullable="1" +gtk_paint_handle.area nullable="1" +gtk_paint_handle.widget nullable="1" +gtk_paint_handle.detail nullable="1" +gtk_paint_hline.area nullable="1" +gtk_paint_hline.widget nullable="1" +gtk_paint_hline.detail nullable="1" +gtk_paint_layout.area nullable="1" +gtk_paint_layout.widget nullable="1" +gtk_paint_layout.detail nullable="1" +gtk_paint_option.area nullable="1" +gtk_paint_option.widget nullable="1" +gtk_paint_option.detail nullable="1" +gtk_paint_polygon.area nullable="1" +gtk_paint_polygon.widget nullable="1" +gtk_paint_polygon.detail nullable="1" +gtk_paint_resize_grip.area nullable="1" +gtk_paint_resize_grip.widget nullable="1" +gtk_paint_resize_grip.detail nullable="1" +gtk_paint_shadow.area nullable="1" +gtk_paint_shadow.widget nullable="1" +gtk_paint_shadow.detail nullable="1" +gtk_paint_shadow_gap.area nullable="1" +gtk_paint_shadow_gap.widget nullable="1" +gtk_paint_shadow_gap.detail nullable="1" +gtk_paint_slider.area nullable="1" +gtk_paint_slider.widget nullable="1" +gtk_paint_slider.detail nullable="1" +gtk_paint_tab.area nullable="1" +gtk_paint_tab.widget nullable="1" +gtk_paint_tab.detail nullable="1" +gtk_paint_vline.area nullable="1" +gtk_paint_vline.widget nullable="1" +gtk_paint_vline.detail nullable="1" GtkPlug::embedded hidden="1" gtk_printer_accepts_pdf hidden="1" experimental="1" gtk_printer_accepts_ps hidden="1" experimental="1"