From 320977f58f6832b945db7bf2de2d96d4bd5f0dff Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Thu, 10 Mar 2005 22:15:07 +0000 Subject: [PATCH] 2005-03-10 Mike Kestner * generator/SymbolTable.cs : fix gssize and gsize, they aren't 32 bit like the docs say they are. svn path=/trunk/gtk-sharp/; revision=41666 --- ChangeLog | 5 ++++ doc/en/Gdk/PixbufLoader.xml | 6 ++--- doc/en/Gdk/PixbufSaveFunc.xml | 2 +- doc/en/Gtk/Style.xml | 46 +++++++++++++++++++++++++++++++++++ doc/en/Rsvg/Handle.xml | 6 ++--- generator/SymbolTable.cs | 4 +-- 6 files changed, 60 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6829fc306..788464ce1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-03-10 Mike Kestner + + * generator/SymbolTable.cs : fix gssize and gsize, they aren't 32 bit + like the docs say they are. + 2005-03-10 Mike Kestner * glib/Marshaller.cs : don't use g_utf8_strlen to determine the byte diff --git a/doc/en/Gdk/PixbufLoader.xml b/doc/en/Gdk/PixbufLoader.xml index 2d3173863..35d82080c 100644 --- a/doc/en/Gdk/PixbufLoader.xml +++ b/doc/en/Gdk/PixbufLoader.xml @@ -143,14 +143,14 @@ namespace GtkDemo - + Method System.Boolean - - + + Parses the next count bytes of image data from buffer buf. diff --git a/doc/en/Gdk/PixbufSaveFunc.xml b/doc/en/Gdk/PixbufSaveFunc.xml index a27937e0d..78bf02839 100644 --- a/doc/en/Gdk/PixbufSaveFunc.xml +++ b/doc/en/Gdk/PixbufSaveFunc.xml @@ -1,5 +1,5 @@ - + gdk-sharp [00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 71 EB 6C 55 75 52 9C BF 72 44 F7 A6 EA 05 62 84 F9 EA E0 3B CF F2 CC 13 2C 9C 49 0A B3 09 EA B0 B5 6B CE 44 9D F5 03 D9 C0 A8 1E 52 05 85 CD BE 70 E2 FB 90 43 4B AC 04 FA 62 22 A8 00 98 B7 A1 A7 B3 AF 99 1A 41 23 24 BB 43 25 F6 B8 65 BB 64 EB F6 D1 C2 06 D5 73 2D DF BC 70 A7 38 9E E5 3E 0C 24 6E 32 79 74 1A D0 05 03 E4 98 42 E1 9B F3 7B 19 8B 40 21 26 CB 36 89 C2 EA 64 96 A4 7C B4] diff --git a/doc/en/Gtk/Style.xml b/doc/en/Gtk/Style.xml index 461a260ef..2d58261b1 100644 --- a/doc/en/Gtk/Style.xml +++ b/doc/en/Gtk/Style.xml @@ -1612,5 +1612,51 @@ color or pixmap specified by this style for . + + + Property + + Gdk.Pixmap[] + + + + Gets an array of background pixmaps. + a + + + + + + Method + + Gdk.Pixmap + + + + + + Get the background pixmap for a given state. + a + a + + + + + + Method + + System.Void + + + + + + + Sets the background pixmap for a given state. + a + a + + + diff --git a/doc/en/Rsvg/Handle.xml b/doc/en/Rsvg/Handle.xml index c0049a4c3..510e34a42 100644 --- a/doc/en/Rsvg/Handle.xml +++ b/doc/en/Rsvg/Handle.xml @@ -113,14 +113,14 @@ - + Method System.Boolean - + Loads the next bytes @@ -193,4 +193,4 @@ - \ No newline at end of file + diff --git a/generator/SymbolTable.cs b/generator/SymbolTable.cs index ba3e5b7ed..ed0ae6e89 100644 --- a/generator/SymbolTable.cs +++ b/generator/SymbolTable.cs @@ -72,8 +72,6 @@ namespace GtkSharp.Generation { AddType (new SimpleGen ("float", "float")); AddType (new SimpleGen ("gdouble", "double")); AddType (new SimpleGen ("double", "double")); - AddType (new SimpleGen ("gsize", "uint")); - AddType (new SimpleGen ("gssize", "int")); AddType (new SimpleGen ("GQuark", "int")); // platform specific integer types. these will break on any @@ -81,9 +79,11 @@ namespace GtkSharp.Generation { AddType (new LPGen ("ssize_t")); AddType (new LPGen ("long")); AddType (new LPGen ("glong")); + AddType (new LPGen ("gssize")); AddType (new LPUGen ("size_t")); AddType (new LPUGen ("ulong")); AddType (new LPUGen ("gulong")); + AddType (new LPUGen ("gsize")); AddType (new AliasGen ("off_t", "size_t")); // string types