diff --git a/ChangeLog b/ChangeLog index 8df033c4e..fbc4b4a92 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-05-23 Mike Kestner + + * configure.in.in : add monodocer-fu. + 2005-05-21 Mike Kestner * audit : add a compatibility auditing framework. diff --git a/configure.in.in b/configure.in.in index de7e7e708..f7cb5cb60 100644 --- a/configure.in.in +++ b/configure.in.in @@ -218,6 +218,16 @@ else enable_vte=no fi +MONODOC_REQUIRED_VERSION=1.0.6.99 +PKG_CHECK_MODULES(MONODOC_DEPS, monodoc >= $MONODOC_REQUIRED_VERSION, enable_monodoc=yes, enable_monodoc=no) +AC_PATH_PROG(MONODOC, monodoc, no) +AC_PATH_PROG(MONODOCER, monodocer, no) +if test "x$MONODOCER" = "xno" -o "x$MONODOC" = "xno"; then + enable_monodoc=no +fi +AC_SUBST(MONODOC) +AC_SUBST(MONODOCER) + AM_CONDITIONAL(ENABLE_LIBART, test "x$enable_libart" = "xyes") AM_CONDITIONAL(ENABLE_GNOMEVFS, test "x$enable_gnomevfs" = "xyes") AM_CONDITIONAL(ENABLE_GNOME, test "x$enable_gnome" = "xyes") @@ -227,8 +237,9 @@ AM_CONDITIONAL(ENABLE_GNOMEDB, test "x$enable_gnomedb" = "xyes") AM_CONDITIONAL(ENABLE_RSVG, test "x$enable_rsvg" = "xyes") AM_CONDITIONAL(ENABLE_GTKHTML, test "x$enable_gtkhtml" = "xyes") AM_CONDITIONAL(ENABLE_VTE, test "x$enable_vte" = "xyes") -AM_CONDITIONAL(ENABLE_MONODOC, test "x$enable_monodoc" = "xyes") AM_CONDITIONAL(ENABLE_DOTNET, test "x$enable_dotnet" = "xyes") +AM_CONDITIONAL(ENABLE_MONODOC, test "x$enable_monodoc" = "xyes") +AM_CONDITIONAL(ENABLE_ALL_OPTIONAL, test "x$enable_libart" = "xyes" -a "x$enable_gnomevfs" = "xyes" -a "x$enable_gnome" = "xyes" -a "x$enable_glade" = "xyes" -a "x$enable_gda" = "xyes" -a "x$enable_gnomedb" = "xyes" -a "x$enable_rsvg" = "xyes" -a "x$enable_gtkhtml" = "xyes" -a "x$enable_vte" = "xyes" -a "x$enable_dotnet" = "xyes" -a "x$enable_monodoc" = "xyes") AC_SUBST(CFLAGS) @@ -333,5 +344,6 @@ echo " NOTE: if any of the above say 'no' you may install the" echo " corresponding development packages for them, rerun" echo " autogen.sh to include them in the build." echo "" +echo " * Documentation build enabled: $enable_monodoc " echo "---" diff --git a/doc/ChangeLog b/doc/ChangeLog index 23e42dcf3..5a6fa7943 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,9 @@ +2005-05-23 Mike Kestner + + * Makefile.am : switch to monodocer + * updater : kill + * en/*/*.xml : enormo-diff from monodocer first run without --delete. + 2005-05-07 John Luke * en/Pango/FontsetForeachFunc.xml: diff --git a/doc/Makefile.am b/doc/Makefile.am index 1caf56734..430f31375 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,81 +1,54 @@ -SUBDIRS = updater +ASSEMBLER = $(MONODOC) --assemble -ASSEMBLER = monodoc --assemble -UPDATER = $(RUNTIME) updater/updater.exe +ASSEMBLIES = \ + glib-sharp.dll \ + pango-sharp.dll \ + atk-sharp.dll \ + gdk-sharp.dll \ + gtk-sharp.dll \ + glade-sharp.dll \ + gnome-vfs-sharp.dll \ + art-sharp.dll \ + gnome-sharp.dll \ + gda-sharp.dll \ + gnomedb-sharp.dll \ + gconf-sharp.dll \ + gconf-sharp-peditors.dll \ + gtkhtml-sharp.dll \ + rsvg-sharp.dll \ + vte-sharp.dll \ + gtk-dotnet.dll -if ENABLE_GLADE -GLADE_DIR = glade +UPDATE_ASSEMBLIES = $(addprefix -assembly:lib/, $(ASSEMBLIES)) + +if ENABLE_ALL_OPTIONAL +UPDATER = $(MONODOCER) -path:en $(UPDATE_ASSEMBLIES) else -GLADE_DIR = +UPDATER = echo "All optional assemblies must be built to use the updater." && exit 1 endif -if ENABLE_GNOMEVFS -GNOME_VFS_DIR = gnomevfs -else -GNOME_VFS_DIR = -endif - -if ENABLE_GNOME -GNOME_DIR = art gnome gconf/GConf gconf/GConf.PropertyEditors -else -GNOME_DIR = -endif - -if ENABLE_GTKHTML -GTKHTML_DIR = gtkhtml -else -GTKHTML_DIR = -endif - -if ENABLE_GDA -GDA_DIR = gda -else -GDA_DIR = -endif - -if ENABLE_GNOMEDB -GNOMEDB_DIR = gnomedb -else -GNOMEDB_DIR = -endif - -if ENABLE_RSVG -RSVG_DIR = rsvg -else -RSVG_DIR = -endif - -if ENABLE_VTE -VTE_DIR = vte -else -VTE_DIR = -endif - -if ENABLE_DOTNET -DOTNET_DIR = gtkdotnet -else -DOTNET_DIR = -endif - -UPDATE_DIRS=glib pango atk gdk gtk glade $(GNOME_VFS_DIR) $(GNOME_DIR) $(GDA_DIR) $(GNOMEDB_DIR) $(RSVG_DIR) $(GTKHTML_DIR) $(VTE_DIR) $(DOTNET_DIR) -NAMESPACES=GLib Pango Atk Gdk Gtk Gtk.DotNet Glade Art Gnome.Vfs Gnome Gda GnomeDb GConf GConf.PropertyEditors Rsvg Vte - assemble: gtk-sharp-docs.zip gtk-sharp-docs.tree gtk-sharp-docs.zip gtk-sharp-docs.tree: $(srcdir)/en/*/*.xml $(srcdir)/en/*.xml $(ASSEMBLER) --ecma $(srcdir)/en -o gtk-sharp-docs -update: - for i in $(UPDATE_DIRS); do \ - cp ../$$i/*.dll updater; \ - $(UPDATER) ../$$i/*.dll -o ./en || exit 1; \ - done +get-assemblies: + mkdir -p lib + cp $(top_builddir)/*/*.dll lib + cp $(top_builddir)/*/*.dll.config lib + cp $(top_builddir)/gconf/*/*.dll lib + cp $(top_builddir)/gconf/*/*.dll.config lib -CLEANFILES = gtk-sharp-docs.zip gtk-sharp-docs.tree +update: get-assemblies + $(UPDATER) + +CLEANFILES = gtk-sharp-docs.zip gtk-sharp-docs.tree lib EXTRA_DIST = \ gtk-sharp-docs.source +NAMESPACES=GLib Pango Atk Gdk Gtk Gtk.DotNet Glade Art Gnome.Vfs Gnome Gda GnomeDb GConf GConf.PropertyEditors Rsvg Vte + dist-hook: mkdir -p $(distdir)/en cp $(srcdir)/en/*.xml $(distdir)/en/ @@ -87,3 +60,4 @@ dist-hook: push: scp gtk-sharp-docs* miguel@www.go-mono.com:/mono/lib/monodoc/sources + diff --git a/doc/en/Art/Affine.xml b/doc/en/Art/Affine.xml index 17a9bbd95..63444a665 100644 --- a/doc/en/Art/Affine.xml +++ b/doc/en/Art/Affine.xml @@ -4,9 +4,7 @@ art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,10 +15,9 @@ System.Object - - + Method System.Void @@ -37,7 +34,7 @@ - + Method System.Double @@ -53,7 +50,7 @@ - + Method System.Void @@ -68,7 +65,7 @@ - + Method System.Void @@ -89,7 +86,7 @@ - + Method System.Void @@ -106,7 +103,7 @@ - + Method System.Void @@ -123,7 +120,7 @@ - + Method System.Void @@ -142,7 +139,7 @@ - + Method System.Void @@ -159,7 +156,7 @@ - + Method System.Boolean @@ -170,12 +167,13 @@ Determines wether a matrix is rectilinear, i.e. grid-aligned rectangles are transformed to other grid-aligned rectangles. The affine transformation to test. - if the matrix is rectilinear. + + if the matrix is rectilinear. The implementation has epsilon-tolerance for roundoff errors. - + Method System.Boolean @@ -188,12 +186,13 @@ Determine if two matrices are equal. An affine transformation. Another affine transformation. - if the matrices are equal. + + if the matrices are equal. Equality is verified with epsilon-tolerance for roundoff errors. - + Method System.Void @@ -212,7 +211,7 @@ - + Method System.Void @@ -237,12 +236,11 @@ To be added - a To be added - + Method Art.Point diff --git a/doc/en/Art/AlphaGamma.xml b/doc/en/Art/AlphaGamma.xml index 9f305d96f..389b7fc91 100644 --- a/doc/en/Art/AlphaGamma.xml +++ b/doc/en/Art/AlphaGamma.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -23,7 +21,6 @@ System.ValueType - @@ -83,4 +80,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/AlphaType.xml b/doc/en/Art/AlphaType.xml index 6b90c0481..3ccf776e1 100644 --- a/doc/en/Art/AlphaType.xml +++ b/doc/en/Art/AlphaType.xml @@ -4,9 +4,7 @@ art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -85,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/Bpath.xml b/doc/en/Art/Bpath.xml index 8e06cbdaf..c5b4dae93 100644 --- a/doc/en/Art/Bpath.xml +++ b/doc/en/Art/Bpath.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -49,7 +46,7 @@ - + Method Art.Bpath @@ -156,4 +153,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/CompositingMode.xml b/doc/en/Art/CompositingMode.xml index 89bd7f5c7..64f85648d 100644 --- a/doc/en/Art/CompositingMode.xml +++ b/doc/en/Art/CompositingMode.xml @@ -4,9 +4,7 @@ art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -85,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/DRect.xml b/doc/en/Art/DRect.xml index cd02f488f..030dff193 100644 --- a/doc/en/Art/DRect.xml +++ b/doc/en/Art/DRect.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -141,7 +138,7 @@ - + Method System.Void @@ -227,4 +224,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/DestroyNotify.xml b/doc/en/Art/DestroyNotify.xml index 3ef3230e9..1bdeb6660 100644 --- a/doc/en/Art/DestroyNotify.xml +++ b/doc/en/Art/DestroyNotify.xml @@ -1,30 +1,20 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -32,4 +22,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/FilterLevel.xml b/doc/en/Art/FilterLevel.xml index 3d2ef1f24..e14d335f0 100644 --- a/doc/en/Art/FilterLevel.xml +++ b/doc/en/Art/FilterLevel.xml @@ -4,9 +4,7 @@ art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -99,4 +85,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/Global.xml b/doc/en/Art/Global.xml index 12aba604b..056c7f55f 100644 --- a/doc/en/Art/Global.xml +++ b/doc/en/Art/Global.xml @@ -4,9 +4,7 @@ art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -78,7 +75,6 @@ Default constructor - a @@ -131,4 +127,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/GradientLinear.xml b/doc/en/Art/GradientLinear.xml index f21c14839..418284eb4 100644 --- a/doc/en/Art/GradientLinear.xml +++ b/doc/en/Art/GradientLinear.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -57,7 +54,7 @@ To be added - a + a To be added @@ -127,4 +124,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/GradientRadial.xml b/doc/en/Art/GradientRadial.xml index f32eee035..7c2984130 100644 --- a/doc/en/Art/GradientRadial.xml +++ b/doc/en/Art/GradientRadial.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -57,12 +54,12 @@ To be added - a + a To be added - + Field System.Double[] @@ -114,4 +111,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/GradientSpread.xml b/doc/en/Art/GradientSpread.xml index 8bbe0bdac..59e19b277 100644 --- a/doc/en/Art/GradientSpread.xml +++ b/doc/en/Art/GradientSpread.xml @@ -4,9 +4,7 @@ art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -85,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/GradientStop.xml b/doc/en/Art/GradientStop.xml index 9fd5094b3..0b2a9ba38 100644 --- a/doc/en/Art/GradientStop.xml +++ b/doc/en/Art/GradientStop.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -62,7 +59,7 @@ - + Field System.Byte[] @@ -75,4 +72,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/IRect.xml b/doc/en/Art/IRect.xml index 0c4f57587..5c14366d9 100644 --- a/doc/en/Art/IRect.xml +++ b/doc/en/Art/IRect.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -163,4 +160,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/ImageSource.xml b/doc/en/Art/ImageSource.xml index 2d6ba10b1..80ba30ec8 100644 --- a/doc/en/Art/ImageSource.xml +++ b/doc/en/Art/ImageSource.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -62,4 +59,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/ImageSourceFlags.xml b/doc/en/Art/ImageSourceFlags.xml index 7e182dee2..52d31c89a 100644 --- a/doc/en/Art/ImageSourceFlags.xml +++ b/doc/en/Art/ImageSourceFlags.xml @@ -4,9 +4,7 @@ art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -71,4 +57,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/MaskSource.xml b/doc/en/Art/MaskSource.xml index 630c2f1f0..972074460 100644 --- a/doc/en/Art/MaskSource.xml +++ b/doc/en/Art/MaskSource.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -62,4 +59,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/PathStrokeCapType.xml b/doc/en/Art/PathStrokeCapType.xml index 7af65d7e2..4a2a6614a 100644 --- a/doc/en/Art/PathStrokeCapType.xml +++ b/doc/en/Art/PathStrokeCapType.xml @@ -4,9 +4,7 @@ art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -85,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/PathStrokeJoinType.xml b/doc/en/Art/PathStrokeJoinType.xml index 4606969bc..1291e28b0 100644 --- a/doc/en/Art/PathStrokeJoinType.xml +++ b/doc/en/Art/PathStrokeJoinType.xml @@ -4,9 +4,7 @@ art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -85,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/Pathcode.xml b/doc/en/Art/Pathcode.xml index 1a15d0b41..8d7bd2fd8 100644 --- a/doc/en/Art/Pathcode.xml +++ b/doc/en/Art/Pathcode.xml @@ -4,9 +4,7 @@ art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -113,4 +99,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/PixBuf.xml b/doc/en/Art/PixBuf.xml index 6a0b23397..a9b066d20 100644 --- a/doc/en/Art/PixBuf.xml +++ b/doc/en/Art/PixBuf.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -317,4 +314,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/PixFormat.xml b/doc/en/Art/PixFormat.xml index 3a8a8cacd..708e730da 100644 --- a/doc/en/Art/PixFormat.xml +++ b/doc/en/Art/PixFormat.xml @@ -4,9 +4,7 @@ art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -57,4 +43,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/Point.xml b/doc/en/Art/Point.xml index 196678a95..224f5ab76 100644 --- a/doc/en/Art/Point.xml +++ b/doc/en/Art/Point.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -75,4 +72,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/Render.xml b/doc/en/Art/Render.xml index 5e4aacfa0..fb5cf42bf 100644 --- a/doc/en/Art/Render.xml +++ b/doc/en/Art/Render.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -163,7 +160,7 @@ To be added - a + a To be added @@ -176,7 +173,7 @@ To be added - a + a To be added @@ -334,7 +331,7 @@ - + Field System.Byte[] @@ -504,4 +501,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/RenderCallback.xml b/doc/en/Art/RenderCallback.xml index 5e4468223..e1a6c625f 100644 --- a/doc/en/Art/RenderCallback.xml +++ b/doc/en/Art/RenderCallback.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -49,4 +46,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/RenderMaskRun.xml b/doc/en/Art/RenderMaskRun.xml index d96324a33..da283215c 100644 --- a/doc/en/Art/RenderMaskRun.xml +++ b/doc/en/Art/RenderMaskRun.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -75,4 +72,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/Rgb.xml b/doc/en/Art/Rgb.xml index 70626a65b..79d8fafb9 100644 --- a/doc/en/Art/Rgb.xml +++ b/doc/en/Art/Rgb.xml @@ -4,9 +4,7 @@ art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -26,12 +23,11 @@ To be added - a To be added - + Method System.Void @@ -72,7 +68,7 @@ - + Method System.Void @@ -113,7 +109,7 @@ - + Method System.Void @@ -152,7 +148,7 @@ - + Method System.Void @@ -299,7 +295,7 @@ - + Method System.Byte @@ -331,4 +327,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/Rgba.xml b/doc/en/Art/Rgba.xml index e12cc3f19..3f0323a83 100644 --- a/doc/en/Art/Rgba.xml +++ b/doc/en/Art/Rgba.xml @@ -4,9 +4,7 @@ art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -26,7 +23,6 @@ To be added - a To be added @@ -96,4 +92,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/SVP.xml b/doc/en/Art/SVP.xml index baa69689c..3e1f330fb 100644 --- a/doc/en/Art/SVP.xml +++ b/doc/en/Art/SVP.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -370,4 +367,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/SVPRenderAAIter.xml b/doc/en/Art/SVPRenderAAIter.xml index e20e4e9a2..e538c7c3a 100644 --- a/doc/en/Art/SVPRenderAAIter.xml +++ b/doc/en/Art/SVPRenderAAIter.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -45,7 +39,6 @@ To be added a - a To be added @@ -69,4 +62,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/SVPRenderAAStep.xml b/doc/en/Art/SVPRenderAAStep.xml index 75f8490b5..f75585b15 100644 --- a/doc/en/Art/SVPRenderAAStep.xml +++ b/doc/en/Art/SVPRenderAAStep.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -75,4 +72,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/SVPSeg.xml b/doc/en/Art/SVPSeg.xml index 4f70a89fe..dfc333843 100644 --- a/doc/en/Art/SVPSeg.xml +++ b/doc/en/Art/SVPSeg.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -75,7 +72,7 @@ To be added - a + a To be added @@ -119,4 +116,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/SvpWriter.xml b/doc/en/Art/SvpWriter.xml index 63275e745..afb33a74f 100644 --- a/doc/en/Art/SvpWriter.xml +++ b/doc/en/Art/SvpWriter.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -78,4 +75,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/Uta.xml b/doc/en/Art/Uta.xml index 39b74e560..3fae1f881 100644 --- a/doc/en/Art/Uta.xml +++ b/doc/en/Art/Uta.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -245,4 +242,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/Vpath.xml b/doc/en/Art/Vpath.xml index b6fe57c94..b2f19e296 100644 --- a/doc/en/Art/Vpath.xml +++ b/doc/en/Art/Vpath.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -129,7 +126,7 @@ - + Method Art.Vpath @@ -222,4 +219,4 @@ - \ No newline at end of file + diff --git a/doc/en/Art/VpathDash.xml b/doc/en/Art/VpathDash.xml index 23e1fc16a..203a73066 100644 --- a/doc/en/Art/VpathDash.xml +++ b/doc/en/Art/VpathDash.xml @@ -1,12 +1,10 @@ - + art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,9 +27,8 @@ To be added a - a To be added - \ No newline at end of file + diff --git a/doc/en/Art/WindRule.xml b/doc/en/Art/WindRule.xml index 2fbef2d3b..0a51f763d 100644 --- a/doc/en/Art/WindRule.xml +++ b/doc/en/Art/WindRule.xml @@ -4,9 +4,7 @@ art-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -99,4 +85,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/Action.xml b/doc/en/Atk/Action.xml index 1145fd4c2..440ceccd6 100644 --- a/doc/en/Atk/Action.xml +++ b/doc/en/Atk/Action.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -51,16 +49,14 @@ - GLib.IWrapper - - + Method System.String @@ -76,7 +72,7 @@ - + Method System.Boolean @@ -94,7 +90,7 @@ - + Method System.String @@ -110,7 +106,7 @@ - + Method System.String @@ -126,7 +122,7 @@ - + Method System.Boolean @@ -143,14 +139,14 @@ - + Property System.Int32 Gets the number of accessible actions available on the object. - A the number of actions, or 0 if action does not implement this interface. + A the number of actions, or 0 if action does not implement this interface. Gets the number of accessible actions available on the object. If there are more than one, the first one is @@ -159,7 +155,7 @@ - + Method System.String @@ -175,4 +171,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/ActiveDescendantChangedArgs.xml b/doc/en/Atk/ActiveDescendantChangedArgs.xml index 91311c148..47006338f 100644 --- a/doc/en/Atk/ActiveDescendantChangedArgs.xml +++ b/doc/en/Atk/ActiveDescendantChangedArgs.xml @@ -4,9 +4,7 @@ atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Atk/ActiveDescendantChangedHandler.xml b/doc/en/Atk/ActiveDescendantChangedHandler.xml index 4b51dda6e..fae3ff811 100644 --- a/doc/en/Atk/ActiveDescendantChangedHandler.xml +++ b/doc/en/Atk/ActiveDescendantChangedHandler.xml @@ -1,14 +1,14 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -36,4 +27,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Atk/Attribute.xml b/doc/en/Atk/Attribute.xml index d6b28aca2..3a46559d3 100644 --- a/doc/en/Atk/Attribute.xml +++ b/doc/en/Atk/Attribute.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -74,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/BoundsChangedArgs.xml b/doc/en/Atk/BoundsChangedArgs.xml index 915c958b2..b27d6792c 100644 --- a/doc/en/Atk/BoundsChangedArgs.xml +++ b/doc/en/Atk/BoundsChangedArgs.xml @@ -4,8 +4,6 @@ atk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Atk/BoundsChangedHandler.xml b/doc/en/Atk/BoundsChangedHandler.xml index fbce4c506..abb858a7d 100644 --- a/doc/en/Atk/BoundsChangedHandler.xml +++ b/doc/en/Atk/BoundsChangedHandler.xml @@ -1,14 +1,14 @@ - + atk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/ChildrenChangedArgs.xml b/doc/en/Atk/ChildrenChangedArgs.xml index 88f9737e3..5ce764494 100644 --- a/doc/en/Atk/ChildrenChangedArgs.xml +++ b/doc/en/Atk/ChildrenChangedArgs.xml @@ -4,9 +4,7 @@ atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ To be added - To be added: an object of type 'IntPtr' + To be added: an object of type 'IntPtr' To be added @@ -52,9 +48,9 @@ To be added - To be added: an object of type 'uint' + To be added: an object of type 'uint' To be added - \ No newline at end of file + diff --git a/doc/en/Atk/ChildrenChangedHandler.xml b/doc/en/Atk/ChildrenChangedHandler.xml index b1a8ab694..b76bf8948 100644 --- a/doc/en/Atk/ChildrenChangedHandler.xml +++ b/doc/en/Atk/ChildrenChangedHandler.xml @@ -1,12 +1,13 @@ - + atk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Atk/ColumnDeletedArgs.xml b/doc/en/Atk/ColumnDeletedArgs.xml index cc019f77f..0e5bb76df 100644 --- a/doc/en/Atk/ColumnDeletedArgs.xml +++ b/doc/en/Atk/ColumnDeletedArgs.xml @@ -4,9 +4,7 @@ atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -52,9 +48,9 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - \ No newline at end of file + diff --git a/doc/en/Atk/ColumnDeletedHandler.xml b/doc/en/Atk/ColumnDeletedHandler.xml index a3b6b497c..e97013450 100644 --- a/doc/en/Atk/ColumnDeletedHandler.xml +++ b/doc/en/Atk/ColumnDeletedHandler.xml @@ -1,12 +1,13 @@ - + atk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Atk/ColumnInsertedArgs.xml b/doc/en/Atk/ColumnInsertedArgs.xml index bc8a9e3ce..ff7c6a013 100644 --- a/doc/en/Atk/ColumnInsertedArgs.xml +++ b/doc/en/Atk/ColumnInsertedArgs.xml @@ -4,9 +4,7 @@ atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -52,9 +48,9 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - \ No newline at end of file + diff --git a/doc/en/Atk/ColumnInsertedHandler.xml b/doc/en/Atk/ColumnInsertedHandler.xml index 6a1f3df80..07c8830fe 100644 --- a/doc/en/Atk/ColumnInsertedHandler.xml +++ b/doc/en/Atk/ColumnInsertedHandler.xml @@ -1,12 +1,13 @@ - + atk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Atk/Component.xml b/doc/en/Atk/Component.xml index de866b5cd..95852f787 100644 --- a/doc/en/Atk/Component.xml +++ b/doc/en/Atk/Component.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -32,16 +30,14 @@ - GLib.IWrapper - - + Method System.Void @@ -59,7 +55,7 @@ - + Method System.Boolean @@ -83,7 +79,7 @@ - + Method System.Boolean @@ -98,7 +94,7 @@ - + Method System.Boolean @@ -128,7 +124,7 @@ - + Method System.Boolean @@ -148,7 +144,7 @@ - + Method System.UInt32 @@ -179,7 +175,7 @@ - + Method System.Boolean @@ -205,7 +201,7 @@ - + Method Atk.Object @@ -225,31 +221,31 @@ - + Property System.Int32 Gets the Z order of the component. - The value G_MININT will be returned if the layer of the component is not ATK_LAYER_MDI or ATK_LAYER_WINDOW. + The value G_MININT will be returned if the layer of the component is not ATK_LAYER_MDI or ATK_LAYER_WINDOW. - + Property Atk.Layer Gets the layer of this component. - An which is the layer of the component. + An which is the layer of the component. - + Method System.Void @@ -274,7 +270,7 @@ - + Method System.Void @@ -300,7 +296,7 @@ - + Method System.Void @@ -317,7 +313,7 @@ - + Event Atk.BoundsChangedHandler @@ -329,4 +325,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/CoordType.xml b/doc/en/Atk/CoordType.xml index 1c32d3764..32496376c 100644 --- a/doc/en/Atk/CoordType.xml +++ b/doc/en/Atk/CoordType.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Atk.CoordTypeGType)) + + @@ -69,4 +60,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/Document.xml b/doc/en/Atk/Document.xml index d5e12f34d..c79f71227 100644 --- a/doc/en/Atk/Document.xml +++ b/doc/en/Atk/Document.xml @@ -1,49 +1,45 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. The interface which allows access to a DOM associated with on object. The interface should be supported by any object that has an associated document object model (DOM). This interface provides the standard mechanism allowing an assistive technology access to the DOM. - GLib.IWrapper - - + Property System.IntPtr Gets a pointer that points to an instance of the DOM. - a pointer to an instance of the DOM. + a pointer to an instance of the DOM. - + Property System.String Gets a string indicating the document type. - a string indicating the document type + a string indicating the document type - \ No newline at end of file + diff --git a/doc/en/Atk/EditableText.xml b/doc/en/Atk/EditableText.xml index 18aa84e5f..71787f834 100644 --- a/doc/en/Atk/EditableText.xml +++ b/doc/en/Atk/EditableText.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -23,16 +21,14 @@ - GLib.IWrapper - - + Method System.Void @@ -52,7 +48,7 @@ - + Method System.Void @@ -67,7 +63,7 @@ - + Method System.Void @@ -88,7 +84,7 @@ - + Method System.Void @@ -109,7 +105,7 @@ - + Method System.Boolean @@ -140,7 +136,7 @@ - + Property System.String @@ -150,12 +146,12 @@ Set text contents of text. string to set for text contents of text - contents of text + contents of text - + Method System.Int32 @@ -166,8 +162,9 @@ Insert text at a given position. the text to insert - the position after the text has been inserted. - + the position after the text has been inserted + + - \ No newline at end of file + diff --git a/doc/en/Atk/EventListener.xml b/doc/en/Atk/EventListener.xml index bacf7f99c..e1197fed8 100644 --- a/doc/en/Atk/EventListener.xml +++ b/doc/en/Atk/EventListener.xml @@ -1,31 +1,23 @@ - + atk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - + System.Void - \ No newline at end of file + diff --git a/doc/en/Atk/EventListenerInit.xml b/doc/en/Atk/EventListenerInit.xml index ce01bdaab..8b6780e75 100644 --- a/doc/en/Atk/EventListenerInit.xml +++ b/doc/en/Atk/EventListenerInit.xml @@ -1,9 +1,8 @@ - + atk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -13,19 +12,10 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void - \ No newline at end of file + diff --git a/doc/en/Atk/Focus.xml b/doc/en/Atk/Focus.xml index fdccca68a..5ce7b25ad 100644 --- a/doc/en/Atk/Focus.xml +++ b/doc/en/Atk/Focus.xml @@ -4,9 +4,7 @@ atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -56,9 +53,8 @@ Default constructor - a - \ No newline at end of file + diff --git a/doc/en/Atk/FocusEventArgs.xml b/doc/en/Atk/FocusEventArgs.xml index 95d919a7b..d38d0d077 100644 --- a/doc/en/Atk/FocusEventArgs.xml +++ b/doc/en/Atk/FocusEventArgs.xml @@ -4,9 +4,7 @@ atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added - \ No newline at end of file + diff --git a/doc/en/Atk/FocusEventHandler.xml b/doc/en/Atk/FocusEventHandler.xml index 5d5cb1cc5..a5f3eff54 100644 --- a/doc/en/Atk/FocusEventHandler.xml +++ b/doc/en/Atk/FocusEventHandler.xml @@ -1,12 +1,13 @@ - + atk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Atk/FocusHandler.xml b/doc/en/Atk/FocusHandler.xml index 0075b6dd9..ab6ebf0f6 100644 --- a/doc/en/Atk/FocusHandler.xml +++ b/doc/en/Atk/FocusHandler.xml @@ -1,31 +1,25 @@ - + atk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - + + System.Void - \ No newline at end of file + diff --git a/doc/en/Atk/Function.xml b/doc/en/Atk/Function.xml index 2fb1ea2e6..635a2319b 100644 --- a/doc/en/Atk/Function.xml +++ b/doc/en/Atk/Function.xml @@ -1,31 +1,22 @@ - + atk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. To be added To be added + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Boolean - \ No newline at end of file + diff --git a/doc/en/Atk/GObjectAccessible.xml b/doc/en/Atk/GObjectAccessible.xml index 6a6b65cde..a1ac43a4e 100644 --- a/doc/en/Atk/GObjectAccessible.xml +++ b/doc/en/Atk/GObjectAccessible.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Atk.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -64,7 +55,6 @@ Internal constructor Pointer to the C object. - An instance of GObjectAccessible, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -78,7 +68,7 @@ Gets the GObject for which is the accessible object. - a which is the object for which is the accessible object + a which is the object for which is the accessible object @@ -91,7 +81,7 @@ GType Property. - a + a Returns the native value for . @@ -105,10 +95,13 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib type assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -116,9 +109,8 @@ Default constructor - a - \ No newline at end of file + diff --git a/doc/en/Atk/Global.xml b/doc/en/Atk/Global.xml index abca439ab..2339a2900 100644 --- a/doc/en/Atk/Global.xml +++ b/doc/en/Atk/Global.xml @@ -4,9 +4,7 @@ atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -167,7 +164,6 @@ Default constructor - a @@ -179,7 +175,7 @@ To be added - a + a To be added @@ -191,7 +187,7 @@ To be added - a + a To be added @@ -203,7 +199,7 @@ To be added - a + a To be added @@ -215,7 +211,7 @@ To be added - a + a To be added @@ -228,9 +224,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Atk/Hyperlink.xml b/doc/en/Atk/Hyperlink.xml index 274ecdbb6..e11647636 100644 --- a/doc/en/Atk/Hyperlink.xml +++ b/doc/en/Atk/Hyperlink.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,20 +18,10 @@ Atk.Action - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - + Method System.String @@ -49,7 +37,7 @@ - + Method System.Boolean @@ -67,7 +55,7 @@ - + Method System.String @@ -83,7 +71,7 @@ - + Method System.String @@ -99,7 +87,7 @@ - + Method System.Boolean @@ -171,21 +159,20 @@ Multiple anchors are primarily used by client-side image maps. Internal constructor Pointer to the C object. - An instance of Hyperlink, wrapping the C object. This is an internal constructor, and should not be used by user code. - + Property System.Int32 The number of actions. - an object of type + an object of type @@ -197,7 +184,7 @@ Multiple anchors are primarily used by client-side image maps. Gets the number of anchors associated with this hyperlink. - the number of anchors associated with this hyperlink + the number of anchors associated with this hyperlink @@ -209,10 +196,14 @@ Multiple anchors are primarily used by client-side image maps. Gets the index with the hypertext document at which this link ends. - the index with the hypertext document at which this link ends + the index with the hypertext document at which this link ends - + + + GLib.Property(Name="end-index") + + Property @@ -221,12 +212,16 @@ Multiple anchors are primarily used by client-side image maps. Gets the index with the hypertext document at which this link begins. - the index with the hypertext document at which this link begins + the index with the hypertext document at which this link begins - + + + GLib.Property(Name="start-index") + + - + Method System.String @@ -250,7 +245,7 @@ Multiple anchors are primarily used by client-side image maps. Since the document that a link is associated with may have changed this method returns if the link is still valid (with respect to the document it references) and otherwise. - whether or not this link is still valid + whether or not this link is still valid @@ -263,7 +258,7 @@ Multiple anchors are primarily used by client-side image maps. Indicates whether the link currently displays some or all of its content inline. - whether or not this link displays its content inline. + whether or not this link displays its content inline. Ordinary HTML links will usually return , but an inline <src> HTML element will return . @@ -276,7 +271,7 @@ Multiple anchors are primarily used by client-side image maps. GType Property. - a + a Returns the native value for . @@ -290,10 +285,13 @@ Multiple anchors are primarily used by client-side image maps. Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -301,7 +299,6 @@ Multiple anchors are primarily used by client-side image maps. Default constructor - a @@ -314,10 +311,14 @@ Multiple anchors are primarily used by client-side image maps. To be added - a + a To be added - + + + GLib.Property(Name="number-of-anchors") + + Property @@ -327,10 +328,14 @@ Multiple anchors are primarily used by client-side image maps. To be added - a + a To be added - + + + GLib.Property(Name="selected-link") + + Property @@ -340,7 +345,7 @@ Multiple anchors are primarily used by client-side image maps. To be added - a + a To be added @@ -355,7 +360,11 @@ Multiple anchors are primarily used by client-side image maps. To be added To be added - + + + GLib.Signal(CName="link_activated") + + Method @@ -369,4 +378,4 @@ Multiple anchors are primarily used by client-side image maps. - \ No newline at end of file + diff --git a/doc/en/Atk/HyperlinkStateFlags.xml b/doc/en/Atk/HyperlinkStateFlags.xml index f359eb5ed..9daa048d5 100644 --- a/doc/en/Atk/HyperlinkStateFlags.xml +++ b/doc/en/Atk/HyperlinkStateFlags.xml @@ -4,9 +4,7 @@ atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,20 +14,12 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + GLib.GType(WrapperType=typeof(Atk.HyperlinkStateFlagsGType)) + + + System.Flags @@ -61,4 +51,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/Hypertext.xml b/doc/en/Atk/Hypertext.xml index 4f7968058..b18ccb2d6 100644 --- a/doc/en/Atk/Hypertext.xml +++ b/doc/en/Atk/Hypertext.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -14,16 +12,14 @@ - GLib.IWrapper - - + Method System.Int32 @@ -39,7 +35,7 @@ - + Method Atk.Hyperlink @@ -55,19 +51,19 @@ - + Property System.Int32 The number of links within this hypertext document. - The number of links within this hypertext document. + The number of links within this hypertext document. - + Event Atk.LinkSelectedHandler @@ -79,4 +75,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/Image.xml b/doc/en/Atk/Image.xml index 7b1b141b9..82386bfc6 100644 --- a/doc/en/Atk/Image.xml +++ b/doc/en/Atk/Image.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -35,16 +33,14 @@ - GLib.IWrapper - - + Method System.Boolean @@ -61,19 +57,19 @@ - + Property System.String Get a textual description of this image. - a string representing the image description + a string representing the image description - + Method System.Void @@ -99,7 +95,7 @@ - + Method System.Void @@ -119,4 +115,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/Implementor.xml b/doc/en/Atk/Implementor.xml index c2638b4e8..6a02ac765 100644 --- a/doc/en/Atk/Implementor.xml +++ b/doc/en/Atk/Implementor.xml @@ -1,28 +1,24 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. To be added - GLib.IWrapper - - + Method Atk.Object @@ -35,4 +31,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/KeyEventStruct.xml b/doc/en/Atk/KeyEventStruct.xml index 97c2e34e7..995b9ad8b 100644 --- a/doc/en/Atk/KeyEventStruct.xml +++ b/doc/en/Atk/KeyEventStruct.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -139,4 +136,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/KeyEventType.xml b/doc/en/Atk/KeyEventType.xml index 809626d91..13f04d685 100644 --- a/doc/en/Atk/KeyEventType.xml +++ b/doc/en/Atk/KeyEventType.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Atk.KeyEventTypeGType)) + + @@ -82,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/KeySnoopFunc.xml b/doc/en/Atk/KeySnoopFunc.xml index fddca5e84..2f74cfb78 100644 --- a/doc/en/Atk/KeySnoopFunc.xml +++ b/doc/en/Atk/KeySnoopFunc.xml @@ -1,27 +1,19 @@ - + atk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. To be added To be added + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -29,4 +21,4 @@ System.Int32 - \ No newline at end of file + diff --git a/doc/en/Atk/Layer.xml b/doc/en/Atk/Layer.xml index 1f0eb85b8..71bc4b663 100644 --- a/doc/en/Atk/Layer.xml +++ b/doc/en/Atk/Layer.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Atk.LayerGType)) + + @@ -148,4 +139,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/LinkSelectedArgs.xml b/doc/en/Atk/LinkSelectedArgs.xml index 521fce954..1ab20e9a1 100644 --- a/doc/en/Atk/LinkSelectedArgs.xml +++ b/doc/en/Atk/LinkSelectedArgs.xml @@ -4,8 +4,6 @@ atk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Atk/LinkSelectedHandler.xml b/doc/en/Atk/LinkSelectedHandler.xml index dd8bd66a5..c3432024d 100644 --- a/doc/en/Atk/LinkSelectedHandler.xml +++ b/doc/en/Atk/LinkSelectedHandler.xml @@ -1,14 +1,14 @@ - + atk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/NoOpObject.xml b/doc/en/Atk/NoOpObject.xml index abce17078..7bf1475b6 100644 --- a/doc/en/Atk/NoOpObject.xml +++ b/doc/en/Atk/NoOpObject.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,18 +15,18 @@ Atk.Object - - Atk.Component - - - GLib.IWrapper - Atk.Action + + Atk.Component + Atk.EditableText + + Atk.Hypertext + Atk.Image @@ -44,17 +42,10 @@ Atk.Value - - GLib.IWrapper - - - System.IDisposable - - - + Method System.Boolean @@ -70,7 +61,7 @@ - + Method System.Void @@ -85,7 +76,7 @@ - + Method System.Void @@ -100,7 +91,7 @@ - + Method System.Int32 @@ -120,7 +111,7 @@ - + Method System.Boolean @@ -140,7 +131,7 @@ - + Method System.Boolean @@ -156,7 +147,7 @@ - + Method System.String @@ -174,7 +165,7 @@ - + Method System.Void @@ -191,7 +182,7 @@ - + Method System.Boolean @@ -207,7 +198,7 @@ - + Method System.Boolean @@ -223,7 +214,7 @@ - + Method System.Int32 @@ -241,7 +232,7 @@ - + Method System.Boolean @@ -257,7 +248,7 @@ - + Method System.Void @@ -274,7 +265,7 @@ - + Method System.Boolean @@ -290,7 +281,7 @@ - + Method Atk.Object @@ -306,7 +297,7 @@ - + Method System.Int32 @@ -324,7 +315,7 @@ - + Method System.Void @@ -341,7 +332,7 @@ - + Method Atk.Object @@ -359,7 +350,7 @@ - + Method System.String @@ -375,7 +366,7 @@ - + Method System.Void @@ -392,7 +383,7 @@ - + Method System.Boolean @@ -408,7 +399,7 @@ - + Method System.String @@ -424,7 +415,7 @@ - + Method System.Boolean @@ -442,7 +433,7 @@ - + Method Atk.Object @@ -458,7 +449,7 @@ - + Method System.Int32 @@ -476,7 +467,7 @@ - + Method System.Boolean @@ -492,7 +483,7 @@ - + Method System.Boolean @@ -505,7 +496,7 @@ - + Method System.Boolean @@ -521,7 +512,7 @@ - + Method System.Boolean @@ -534,7 +525,7 @@ - + Method Atk.Object @@ -550,7 +541,7 @@ - + Method System.Boolean @@ -566,7 +557,7 @@ - + Method System.Void @@ -583,7 +574,7 @@ - + Method System.Void @@ -598,7 +589,7 @@ - + Method System.Void @@ -615,7 +606,7 @@ - + Method System.Void @@ -632,7 +623,7 @@ - + Method System.Boolean @@ -652,7 +643,7 @@ - + Method System.String @@ -668,7 +659,7 @@ - + Method System.Boolean @@ -686,7 +677,7 @@ - + Method System.String @@ -702,7 +693,7 @@ - + Method System.String @@ -718,7 +709,7 @@ - + Method System.Boolean @@ -734,7 +725,7 @@ - + Method System.Void @@ -749,7 +740,7 @@ - + Method System.Boolean @@ -769,7 +760,7 @@ - + Method System.Boolean @@ -782,7 +773,7 @@ - + Method System.Boolean @@ -806,7 +797,7 @@ - + Method System.Boolean @@ -824,7 +815,7 @@ - + Method System.UInt32 @@ -840,7 +831,7 @@ - + Method System.Boolean @@ -860,7 +851,7 @@ - + Method Atk.Object @@ -901,7 +892,6 @@ Internal constructor Pointer to the C object. - An instance of NoOpObject, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -917,73 +907,72 @@ Creates a new instance. an object of type - an object of type - + Property GLib.SList To be added - an object of type + an object of type To be added - + Property System.Int32 To be added - an object of type + an object of type To be added - + Property System.Int32 To be added - an object of type + an object of type To be added - + Property System.Int32 To be added - an object of type + an object of type To be added - + Property System.Int32 To be added - an object of type + an object of type To be added - + Property Atk.Object @@ -993,12 +982,12 @@ To be added an object of type - an object of type + an object of type To be added - + Property Atk.Object @@ -1008,48 +997,48 @@ To be added an object of type - an object of type + an object of type To be added - + Property System.Int32 To be added - an object of type + an object of type To be added - + Property System.Int32 To be added - an object of type + an object of type To be added - + Property System.String To be added - an object of type + an object of type To be added - + Property System.String @@ -1059,48 +1048,48 @@ To be added an object of type - an object of type + an object of type To be added - + Property System.Int32 To be added - an object of type + an object of type To be added - + Property System.Int32 To be added - an object of type + an object of type To be added - + Property Atk.Layer To be added - an object of type + an object of type To be added - + Event Atk.TextChangedHandler @@ -1110,9 +1099,13 @@ To be added To be added - + + + GLib.Signal(CName="text_changed") + + - + Event System.EventHandler @@ -1122,9 +1115,13 @@ To be added To be added - + + + GLib.Signal(CName="text_selection_changed") + + - + Event Atk.TextCaretMovedHandler @@ -1134,9 +1131,13 @@ To be added To be added - + + + GLib.Signal(CName="text_caret_moved") + + - + Event Atk.RowDeletedHandler @@ -1146,9 +1147,13 @@ To be added To be added - + + + GLib.Signal(CName="row_deleted") + + - + Event Atk.RowInsertedHandler @@ -1158,9 +1163,13 @@ To be added To be added - + + + GLib.Signal(CName="row_inserted") + + - + Event System.EventHandler @@ -1170,9 +1179,13 @@ To be added To be added - + + + GLib.Signal(CName="model_changed") + + - + Event Atk.ColumnInsertedHandler @@ -1182,9 +1195,13 @@ To be added To be added - + + + GLib.Signal(CName="column_inserted") + + - + Event System.EventHandler @@ -1194,9 +1211,13 @@ To be added To be added - + + + GLib.Signal(CName="row_reordered") + + - + Event Atk.ColumnDeletedHandler @@ -1206,9 +1227,13 @@ To be added To be added - + + + GLib.Signal(CName="column_deleted") + + - + Event System.EventHandler @@ -1218,9 +1243,13 @@ To be added To be added - + + + GLib.Signal(CName="column_reordered") + + - + Event System.EventHandler @@ -1230,9 +1259,13 @@ To be added To be added - + + + GLib.Signal(CName="selection_changed") + + - + Event System.EventHandler @@ -1242,9 +1275,13 @@ To be added To be added - + + + GLib.Signal(CName="text_attributes_changed") + + - + Method System.Int32 @@ -1260,7 +1297,7 @@ - + Method System.Int32 @@ -1276,7 +1313,7 @@ - + Method System.String @@ -1292,7 +1329,7 @@ - + Method System.Void @@ -1311,7 +1348,7 @@ - + Method System.Void @@ -1334,7 +1371,7 @@ - + Method System.Void @@ -1351,7 +1388,7 @@ - + Method System.Void @@ -1370,7 +1407,7 @@ - + Method System.Void @@ -1387,7 +1424,7 @@ - + Method System.Int32 @@ -1403,7 +1440,7 @@ - + Method System.Int32 @@ -1419,7 +1456,7 @@ - + Method System.String @@ -1441,7 +1478,7 @@ - + Method System.String @@ -1461,7 +1498,7 @@ - + Method System.String @@ -1483,7 +1520,7 @@ - + Method System.Void @@ -1508,7 +1545,7 @@ - + Method GLib.SList @@ -1528,7 +1565,7 @@ - + Method System.String @@ -1558,7 +1595,7 @@ GType Property. - a + a Returns the native value for . @@ -1744,12 +1781,15 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + - + Method System.Int32 @@ -1765,7 +1805,7 @@ - + Property System.Int32 @@ -1773,12 +1813,12 @@ To be added - a + a To be added - + Event Atk.LinkSelectedHandler @@ -1788,9 +1828,13 @@ To be added To be added - + + + GLib.Signal(CName="link_selected") + + - + Method Atk.TextRange @@ -1812,7 +1856,7 @@ - + Method System.Void @@ -1833,7 +1877,7 @@ - + Method Atk.Hyperlink @@ -1849,7 +1893,7 @@ - + Method System.Int32 @@ -1880,7 +1924,7 @@ - + Property GLib.Value @@ -1888,12 +1932,12 @@ To be added - a + a To be added - + Method System.Char @@ -1910,7 +1954,7 @@ - + Event Atk.BoundsChangedHandler @@ -1920,7 +1964,11 @@ To be added To be added - + + + GLib.Signal(CName="bounds_changed") + + Method @@ -1937,4 +1985,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/NoOpObjectFactory.xml b/doc/en/Atk/NoOpObjectFactory.xml index 0bfef3f55..1ebb706f5 100644 --- a/doc/en/Atk/NoOpObjectFactory.xml +++ b/doc/en/Atk/NoOpObjectFactory.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Atk.ObjectFactory - - GLib.IWrapper - - - System.IDisposable - - @@ -48,7 +39,6 @@ Internal constructor Pointer to the C object. - An instance of NoOpObjectFactory, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -61,7 +51,6 @@ Default constructor - an object of type @@ -74,7 +63,7 @@ GType Property. - a + a Returns the native value for . @@ -88,9 +77,12 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Atk/Object.xml b/doc/en/Atk/Object.xml index a0b1c8726..86c6e0193 100644 --- a/doc/en/Atk/Object.xml +++ b/doc/en/Atk/Object.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,14 +22,7 @@ All UI components in an application which provide useful information or services GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -160,7 +151,6 @@ All UI components in an application which provide useful information or services Internal constructor Pointer to the C object. - An instance of Object, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -177,7 +167,7 @@ All UI components in an application which provide useful information or services To be added an object of type - an object of type + an object of type To be added @@ -192,7 +182,7 @@ All UI components in an application which provide useful information or services To be added an object of type - an object of type + an object of type To be added @@ -204,7 +194,7 @@ All UI components in an application which provide useful information or services To be added - an object of type + an object of type To be added @@ -216,7 +206,7 @@ All UI components in an application which provide useful information or services To be added - an object of type + an object of type To be added @@ -231,7 +221,7 @@ All UI components in an application which provide useful information or services To be added an object of type - an object of type + an object of type To be added @@ -243,7 +233,7 @@ All UI components in an application which provide useful information or services To be added - an object of type + an object of type To be added @@ -255,7 +245,7 @@ All UI components in an application which provide useful information or services To be added - an object of type + an object of type To be added @@ -270,7 +260,7 @@ All UI components in an application which provide useful information or services To be added an object of type - an object of type + an object of type To be added @@ -285,10 +275,14 @@ All UI components in an application which provide useful information or services To be added an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="atk_object_name_property_name") + + Property @@ -300,10 +294,14 @@ All UI components in an application which provide useful information or services To be added an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="atk_object_name_property_description") + + Property @@ -312,10 +310,14 @@ All UI components in an application which provide useful information or services To be added - an object of type + an object of type To be added - + + + GLib.Property(Name="atk_object_name_property_component_layer") + + Property @@ -327,10 +329,14 @@ All UI components in an application which provide useful information or services To be added an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="atk_object_name_property_table_column_header") + + Property @@ -342,10 +348,14 @@ All UI components in an application which provide useful information or services To be added an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="atk_object_name_property_value") + + Property @@ -357,10 +367,14 @@ All UI components in an application which provide useful information or services To be added an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="atk_object_name_property_parent") + + Property @@ -372,10 +386,14 @@ All UI components in an application which provide useful information or services To be added an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="atk_object_name_property_table_row_description") + + Property @@ -387,10 +405,14 @@ All UI components in an application which provide useful information or services To be added an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="atk_object_name_property_role") + + Property @@ -399,10 +421,14 @@ All UI components in an application which provide useful information or services To be added - an object of type + an object of type To be added - + + + GLib.Property(Name="atk_object_name_property_component_mdi_zorder") + + Property @@ -414,10 +440,14 @@ All UI components in an application which provide useful information or services To be added an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="atk_object_name_property_table_caption") + + Property @@ -429,10 +459,14 @@ All UI components in an application which provide useful information or services To be added an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="atk_object_name_property_table_summary") + + Property @@ -444,10 +478,14 @@ All UI components in an application which provide useful information or services To be added an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="atk_object_name_property_table_column_description") + + Property @@ -459,10 +497,14 @@ All UI components in an application which provide useful information or services To be added an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="atk_object_name_property_table_row_header") + + Event @@ -474,7 +516,11 @@ All UI components in an application which provide useful information or services To be added To be added - + + + GLib.Signal(CName="state_change") + + Event @@ -486,7 +532,11 @@ All UI components in an application which provide useful information or services To be added To be added - + + + GLib.Signal(CName="children_changed") + + Event @@ -498,7 +548,11 @@ All UI components in an application which provide useful information or services To be added To be added - + + + GLib.Signal(CName="visible_data_changed") + + Event @@ -510,7 +564,11 @@ All UI components in an application which provide useful information or services To be added To be added - + + + GLib.Signal(CName="focus_event") + + Event @@ -522,7 +580,11 @@ All UI components in an application which provide useful information or services To be added To be added - + + + GLib.Signal(CName="active_descendant_changed") + + Method @@ -568,7 +630,7 @@ All UI components in an application which provide useful information or services GType Property. - a + a Returns the native value for . @@ -673,10 +735,13 @@ All UI components in an application which provide useful information or services Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Event @@ -688,7 +753,11 @@ All UI components in an application which provide useful information or services To be added To be added - + + + GLib.Signal(CName="property_change") + + Constructor @@ -696,7 +765,6 @@ All UI components in an application which provide useful information or services Default constructor - a @@ -709,10 +777,14 @@ All UI components in an application which provide useful information or services To be added - a + a To be added - + + + GLib.Property(Name="atk_object_name_property_hypertext_num_links") + + Property @@ -722,9 +794,13 @@ All UI components in an application which provide useful information or services To be added - a + a To be added - + + + GLib.Property(Name="atk_object_name_property_table_caption_object") + + - \ No newline at end of file + diff --git a/doc/en/Atk/ObjectFactory.xml b/doc/en/Atk/ObjectFactory.xml index 338ca8a43..809247ec6 100644 --- a/doc/en/Atk/ObjectFactory.xml +++ b/doc/en/Atk/ObjectFactory.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -76,7 +67,6 @@ Internal constructor Pointer to the C object. - An instance of ObjectFactory, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -91,7 +81,7 @@ GType Property. - a + a Returns the native value for . @@ -104,7 +94,7 @@ To be added - a + a To be added @@ -118,10 +108,13 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib type assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -129,9 +122,8 @@ Default constructor - a - \ No newline at end of file + diff --git a/doc/en/Atk/PropertyChangeArgs.xml b/doc/en/Atk/PropertyChangeArgs.xml index eb6bb4104..5e4a23443 100644 --- a/doc/en/Atk/PropertyChangeArgs.xml +++ b/doc/en/Atk/PropertyChangeArgs.xml @@ -4,9 +4,7 @@ atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - To be added: an object of type 'Atk.PropertyValues' + To be added: an object of type 'Atk.PropertyValues' To be added - \ No newline at end of file + diff --git a/doc/en/Atk/PropertyChangeEventHandler.xml b/doc/en/Atk/PropertyChangeEventHandler.xml index 996daf584..4384ff6fb 100644 --- a/doc/en/Atk/PropertyChangeEventHandler.xml +++ b/doc/en/Atk/PropertyChangeEventHandler.xml @@ -1,15 +1,15 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/PropertyChangeHandler.xml b/doc/en/Atk/PropertyChangeHandler.xml index b29d8e161..710fea768 100644 --- a/doc/en/Atk/PropertyChangeHandler.xml +++ b/doc/en/Atk/PropertyChangeHandler.xml @@ -1,33 +1,25 @@ - + atk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - - - + + System.Void - \ No newline at end of file + diff --git a/doc/en/Atk/PropertyValues.xml b/doc/en/Atk/PropertyValues.xml index fe0259eb2..830dd3863 100644 --- a/doc/en/Atk/PropertyValues.xml +++ b/doc/en/Atk/PropertyValues.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -87,4 +84,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/Rectangle.xml b/doc/en/Atk/Rectangle.xml index e7e8fede3..a494596f1 100644 --- a/doc/en/Atk/Rectangle.xml +++ b/doc/en/Atk/Rectangle.xml @@ -1,11 +1,9 @@ - + atk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.ValueType - @@ -108,9 +105,41 @@ To be added - a + a To be added + + + Method + + GLib.Value + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Atk.Rectangle + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Atk/Registry.xml b/doc/en/Atk/Registry.xml index f46080a34..3539c799f 100644 --- a/doc/en/Atk/Registry.xml +++ b/doc/en/Atk/Registry.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -48,7 +39,6 @@ Internal constructor Pointer to the C object. - An instance of Registry, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -63,7 +53,7 @@ GType Property. - a + a Returns the native value for . @@ -126,10 +116,13 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -137,9 +130,8 @@ Default constructor - a - \ No newline at end of file + diff --git a/doc/en/Atk/Relation.xml b/doc/en/Atk/Relation.xml index 9d7dd9c55..56ea687c7 100644 --- a/doc/en/Atk/Relation.xml +++ b/doc/en/Atk/Relation.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -27,14 +25,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -58,7 +49,6 @@ Internal constructor Pointer to the C object. - An instance of Relation, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -121,7 +111,7 @@ GType Property. - a + a Returns the native value for . @@ -135,10 +125,13 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -151,7 +144,6 @@ Creates a new with the provided information. an array of an for the relation. - a @@ -165,11 +157,15 @@ Gets the type of relation. - The type of this relation + The type of this relation - + + + GLib.Property(Name="relation_type") + + Method @@ -186,4 +182,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/RelationSet.xml b/doc/en/Atk/RelationSet.xml index 7d7243d10..6ed2c0b37 100644 --- a/doc/en/Atk/RelationSet.xml +++ b/doc/en/Atk/RelationSet.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,14 +18,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -135,7 +126,6 @@ Internal constructor Pointer to the C object. - An instance of RelationSet, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -148,7 +138,6 @@ To be added - an object of type To be added @@ -160,7 +149,7 @@ Determines the number of relations in a relation set. - An integer representing the number of relations in the set. + An integer representing the number of relations in the set. @@ -173,7 +162,7 @@ GType Property. - a + a Returns the native value for . @@ -187,10 +176,13 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib type assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -209,4 +201,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/RelationType.xml b/doc/en/Atk/RelationType.xml index 4f6513276..8426f4df0 100644 --- a/doc/en/Atk/RelationType.xml +++ b/doc/en/Atk/RelationType.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Atk.RelationTypeGType)) + + @@ -243,4 +234,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/Role.xml b/doc/en/Atk/Role.xml index 1f1867256..d8067869a 100644 --- a/doc/en/Atk/Role.xml +++ b/doc/en/Atk/Role.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Atk.RoleGType)) + + @@ -1062,4 +1053,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/RowDeletedArgs.xml b/doc/en/Atk/RowDeletedArgs.xml index e36e94e72..1eda19756 100644 --- a/doc/en/Atk/RowDeletedArgs.xml +++ b/doc/en/Atk/RowDeletedArgs.xml @@ -4,9 +4,7 @@ atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -52,9 +48,9 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - \ No newline at end of file + diff --git a/doc/en/Atk/RowDeletedHandler.xml b/doc/en/Atk/RowDeletedHandler.xml index 7a0bb3763..e3e1a9885 100644 --- a/doc/en/Atk/RowDeletedHandler.xml +++ b/doc/en/Atk/RowDeletedHandler.xml @@ -1,12 +1,13 @@ - + atk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Atk/RowInsertedArgs.xml b/doc/en/Atk/RowInsertedArgs.xml index 325a91446..ef45637e6 100644 --- a/doc/en/Atk/RowInsertedArgs.xml +++ b/doc/en/Atk/RowInsertedArgs.xml @@ -4,9 +4,7 @@ atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -52,9 +48,9 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - \ No newline at end of file + diff --git a/doc/en/Atk/RowInsertedHandler.xml b/doc/en/Atk/RowInsertedHandler.xml index f552fcb9f..66c3eda41 100644 --- a/doc/en/Atk/RowInsertedHandler.xml +++ b/doc/en/Atk/RowInsertedHandler.xml @@ -1,12 +1,13 @@ - + atk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Atk/Selection.xml b/doc/en/Atk/Selection.xml index bec5e8a7b..6fb473aa3 100644 --- a/doc/en/Atk/Selection.xml +++ b/doc/en/Atk/Selection.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -33,16 +31,14 @@ - GLib.IWrapper - - + Method System.Boolean @@ -57,7 +53,7 @@ - + Method System.Boolean @@ -79,7 +75,7 @@ - + Method System.Boolean @@ -102,7 +98,7 @@ - + Method System.Boolean @@ -117,7 +113,7 @@ - + Method System.Boolean @@ -135,7 +131,7 @@ - + Method Atk.Object @@ -151,18 +147,18 @@ - + Property System.Int32 Gets the number of accessible children currently selected. - + A representing the number of items selected, or 0 if selection does not implement this interface. - + Callers should not rely on 0 or on a zero value for @@ -174,7 +170,7 @@ - + Event System.EventHandler @@ -186,4 +182,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/StateChangeArgs.xml b/doc/en/Atk/StateChangeArgs.xml index 5fac1491d..d7ca44caa 100644 --- a/doc/en/Atk/StateChangeArgs.xml +++ b/doc/en/Atk/StateChangeArgs.xml @@ -4,9 +4,7 @@ atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ To be added - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added @@ -52,9 +48,9 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - \ No newline at end of file + diff --git a/doc/en/Atk/StateChangeHandler.xml b/doc/en/Atk/StateChangeHandler.xml index badcbad3c..3edd40c22 100644 --- a/doc/en/Atk/StateChangeHandler.xml +++ b/doc/en/Atk/StateChangeHandler.xml @@ -1,12 +1,13 @@ - + atk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Atk/StateManager.xml b/doc/en/Atk/StateManager.xml index f1dab6827..c6d74dddc 100644 --- a/doc/en/Atk/StateManager.xml +++ b/doc/en/Atk/StateManager.xml @@ -4,9 +4,7 @@ atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -74,9 +71,8 @@ Default constructor - a - \ No newline at end of file + diff --git a/doc/en/Atk/StateSet.xml b/doc/en/Atk/StateSet.xml index 72c0dc678..1fb2c5e24 100644 --- a/doc/en/Atk/StateSet.xml +++ b/doc/en/Atk/StateSet.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -156,7 +147,6 @@ Internal constructor Pointer to the C object. - An instance of StateSet, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -169,7 +159,6 @@ Default constructor - an object of type @@ -200,7 +189,7 @@ Checks whether the state set is empty, i.e. has no states set. - a , if the StateSet has no states set, otherwise + a , if the StateSet has no states set, otherwise @@ -213,7 +202,7 @@ GType Property. - a + a Returns the native value for . @@ -227,10 +216,13 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -248,4 +240,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/StateType.xml b/doc/en/Atk/StateType.xml index 22e221bb0..c3489eb86 100644 --- a/doc/en/Atk/StateType.xml +++ b/doc/en/Atk/StateType.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Atk.StateTypeGType)) + + @@ -473,4 +464,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/StreamableContent.xml b/doc/en/Atk/StreamableContent.xml index 981786c8d..bf478ffc5 100644 --- a/doc/en/Atk/StreamableContent.xml +++ b/doc/en/Atk/StreamableContent.xml @@ -1,28 +1,24 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. The interface which provides access to streamable content. - GLib.IWrapper - - + Method System.String @@ -38,19 +34,19 @@ - + Property System.Int32 The number of mime types supported by this object. - the number of mime types supported by the object. + the number of mime types supported by the object. - + Method System.IntPtr @@ -66,4 +62,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/Table.xml b/doc/en/Atk/Table.xml index 2ccafe2fc..edc49a3e5 100644 --- a/doc/en/Atk/Table.xml +++ b/doc/en/Atk/Table.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -23,16 +21,14 @@ Since tables are often very complex, includes provisi - GLib.IWrapper - - + Method System.Void @@ -49,7 +45,7 @@ Since tables are often very complex, includes provisi - + Method System.Boolean @@ -65,7 +61,7 @@ Since tables are often very complex, includes provisi - + Method System.Boolean @@ -81,7 +77,7 @@ Since tables are often very complex, includes provisi - + Method System.Int32 @@ -99,7 +95,7 @@ Since tables are often very complex, includes provisi - + Method System.Boolean @@ -115,7 +111,7 @@ Since tables are often very complex, includes provisi - + Method System.Void @@ -132,7 +128,7 @@ Since tables are often very complex, includes provisi - + Method System.Boolean @@ -148,7 +144,7 @@ Since tables are often very complex, includes provisi - + Method Atk.Object @@ -164,7 +160,7 @@ Since tables are often very complex, includes provisi - + Method System.Int32 @@ -182,7 +178,7 @@ Since tables are often very complex, includes provisi - + Method System.Void @@ -199,7 +195,7 @@ Since tables are often very complex, includes provisi - + Method Atk.Object @@ -217,7 +213,7 @@ Since tables are often very complex, includes provisi - + Method System.String @@ -233,7 +229,7 @@ Since tables are often very complex, includes provisi - + Method System.Void @@ -250,7 +246,7 @@ Since tables are often very complex, includes provisi - + Method System.Boolean @@ -266,7 +262,7 @@ Since tables are often very complex, includes provisi - + Method System.String @@ -282,7 +278,7 @@ Since tables are often very complex, includes provisi - + Method System.Boolean @@ -300,7 +296,7 @@ Since tables are often very complex, includes provisi - + Method Atk.Object @@ -316,7 +312,7 @@ Since tables are often very complex, includes provisi - + Method System.Int32 @@ -334,7 +330,7 @@ Since tables are often very complex, includes provisi - + Method System.Boolean @@ -350,19 +346,19 @@ Since tables are often very complex, includes provisi - + Property System.Int32 To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - + Property Atk.Object @@ -371,13 +367,12 @@ Since tables are often very complex, includes provisi To be added - To be added: an object of type 'Atk.Object' - To be added: an object of type 'Atk.Object' + To be added: an object of type 'Atk.Object' To be added - + Property Atk.Object @@ -386,25 +381,24 @@ Since tables are often very complex, includes provisi To be added - To be added: an object of type 'Atk.Object' - To be added: an object of type 'Atk.Object' + To be added: an object of type 'Atk.Object' To be added - + Property System.Int32 To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - + Event Atk.RowDeletedHandler @@ -416,7 +410,7 @@ Since tables are often very complex, includes provisi - + Event Atk.RowInsertedHandler @@ -428,7 +422,7 @@ Since tables are often very complex, includes provisi - + Event System.EventHandler @@ -440,7 +434,7 @@ Since tables are often very complex, includes provisi - + Event Atk.ColumnInsertedHandler @@ -452,7 +446,7 @@ Since tables are often very complex, includes provisi - + Event System.EventHandler @@ -464,7 +458,7 @@ Since tables are often very complex, includes provisi - + Event Atk.ColumnDeletedHandler @@ -476,7 +470,7 @@ Since tables are often very complex, includes provisi - + Event System.EventHandler @@ -488,7 +482,7 @@ Since tables are often very complex, includes provisi - + Method System.Int32 @@ -504,7 +498,7 @@ Since tables are often very complex, includes provisi - + Method System.Int32 @@ -520,7 +514,7 @@ Since tables are often very complex, includes provisi - + Method System.Int32 @@ -536,7 +530,7 @@ Since tables are often very complex, includes provisi - + Method System.Int32 @@ -552,4 +546,4 @@ Since tables are often very complex, includes provisi - \ No newline at end of file + diff --git a/doc/en/Atk/Text.xml b/doc/en/Atk/Text.xml index c7611c248..ea54e17a0 100644 --- a/doc/en/Atk/Text.xml +++ b/doc/en/Atk/Text.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,16 +18,14 @@ - GLib.IWrapper - - + Method System.Int32 @@ -50,7 +46,7 @@ - + Method System.Boolean @@ -71,7 +67,7 @@ - + Method System.Boolean @@ -88,7 +84,7 @@ - + Method System.Boolean @@ -105,7 +101,7 @@ - + Method System.String @@ -123,7 +119,7 @@ - + Method System.Boolean @@ -142,55 +138,55 @@ - + Property GLib.SList Creates an which consists of the default values of attributes for the text. - an which contains the default values of attributes, at . + an which contains the default values of attributes, at . See the enum for types of text attributes that can be returned. Note that other attributes may also be returned. - + Property System.Int32 Gets the number of selected regions. - The number of selected regions, or -1 if a failure occurred. + The number of selected regions, or -1 if a failure occurred. - + Property System.Int32 Gets the offset position of the caret (cursor). - the offset position of the caret (cursor). + the offset position of the caret (cursor). - + Property System.Int32 Gets the character count. - the number of characters. + the number of characters. - + Event Atk.TextChangedHandler @@ -202,7 +198,7 @@ - + Event System.EventHandler @@ -214,7 +210,7 @@ - + Event Atk.TextCaretMovedHandler @@ -226,7 +222,7 @@ - + Event System.EventHandler @@ -238,7 +234,7 @@ - + Method System.String @@ -294,7 +290,7 @@ If the is - + Method System.String @@ -314,7 +310,7 @@ If the is - + Method System.String @@ -370,7 +366,7 @@ If the is - + Method System.Void @@ -395,7 +391,7 @@ If the is - + Method GLib.SList @@ -415,7 +411,7 @@ If the is - + Method System.String @@ -471,7 +467,7 @@ If the is - + Method Atk.TextRange @@ -493,7 +489,7 @@ If the is - + Method System.Void @@ -514,7 +510,7 @@ If the is - + Method System.Char @@ -526,8 +522,9 @@ If the is position the character at . - + + - \ No newline at end of file + diff --git a/doc/en/Atk/TextAttribute.xml b/doc/en/Atk/TextAttribute.xml index 876bad568..062b3dc5f 100644 --- a/doc/en/Atk/TextAttribute.xml +++ b/doc/en/Atk/TextAttribute.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Atk.TextAttributeGType)) + + @@ -420,4 +411,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/TextBoundary.xml b/doc/en/Atk/TextBoundary.xml index c9a5474eb..ce7746883 100644 --- a/doc/en/Atk/TextBoundary.xml +++ b/doc/en/Atk/TextBoundary.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Atk.TextBoundaryGType)) + + @@ -134,4 +125,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/TextCaretMovedArgs.xml b/doc/en/Atk/TextCaretMovedArgs.xml index 414361085..b1cdeb756 100644 --- a/doc/en/Atk/TextCaretMovedArgs.xml +++ b/doc/en/Atk/TextCaretMovedArgs.xml @@ -4,9 +4,7 @@ atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -33,7 +31,6 @@ GLib.SignalArgs - @@ -42,7 +39,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -54,9 +50,9 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - \ No newline at end of file + diff --git a/doc/en/Atk/TextCaretMovedHandler.xml b/doc/en/Atk/TextCaretMovedHandler.xml index 729fb23f8..e90f54887 100644 --- a/doc/en/Atk/TextCaretMovedHandler.xml +++ b/doc/en/Atk/TextCaretMovedHandler.xml @@ -1,12 +1,13 @@ - + atk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -31,15 +32,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -48,4 +40,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Atk/TextChangedArgs.xml b/doc/en/Atk/TextChangedArgs.xml index 9c243380c..a06865cf9 100644 --- a/doc/en/Atk/TextChangedArgs.xml +++ b/doc/en/Atk/TextChangedArgs.xml @@ -4,9 +4,7 @@ atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -33,7 +31,6 @@ GLib.SignalArgs - @@ -42,7 +39,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -54,7 +50,7 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -66,9 +62,9 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - \ No newline at end of file + diff --git a/doc/en/Atk/TextChangedHandler.xml b/doc/en/Atk/TextChangedHandler.xml index 4717e813e..30c469462 100644 --- a/doc/en/Atk/TextChangedHandler.xml +++ b/doc/en/Atk/TextChangedHandler.xml @@ -1,12 +1,13 @@ - + atk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -31,15 +32,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -48,4 +40,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Atk/TextClipType.xml b/doc/en/Atk/TextClipType.xml index c2e295330..665b10227 100644 --- a/doc/en/Atk/TextClipType.xml +++ b/doc/en/Atk/TextClipType.xml @@ -4,8 +4,6 @@ atk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Atk.TextClipTypeGType)) + + @@ -94,4 +85,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/TextRange.xml b/doc/en/Atk/TextRange.xml index d7b6e136b..329a14444 100644 --- a/doc/en/Atk/TextRange.xml +++ b/doc/en/Atk/TextRange.xml @@ -1,11 +1,9 @@ - + atk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.ValueType - @@ -100,4 +97,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/TextRectangle.xml b/doc/en/Atk/TextRectangle.xml index 1f7ab504f..7301106aa 100644 --- a/doc/en/Atk/TextRectangle.xml +++ b/doc/en/Atk/TextRectangle.xml @@ -1,11 +1,9 @@ - + atk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.ValueType - @@ -100,4 +97,4 @@ - \ No newline at end of file + diff --git a/doc/en/Atk/Util.xml b/doc/en/Atk/Util.xml index 3ad0a2421..db00e06a3 100644 --- a/doc/en/Atk/Util.xml +++ b/doc/en/Atk/Util.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -48,7 +39,6 @@ Internal constructor Pointer to the C object. - An instance of Util, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -63,7 +53,7 @@ GType Property. - a + a Returns the native value for . @@ -77,10 +67,13 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -88,9 +81,8 @@ Default constructor - a - \ No newline at end of file + diff --git a/doc/en/Atk/Value.xml b/doc/en/Atk/Value.xml index b6ef3418a..a2f6f9244 100644 --- a/doc/en/Atk/Value.xml +++ b/doc/en/Atk/Value.xml @@ -1,12 +1,10 @@ - + atk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,16 +13,14 @@ should be implemented for components which either display a value from a bounded range, or which allow the user to specify a value from a bounded range, or both. For instance, most sliders and range controls, as well as dials, should have representations which implement on the component's behalf. s may be read-only, in which case attempts to alter the value return to indicate failure. - GLib.IWrapper - - + Method System.Boolean @@ -41,7 +37,7 @@ - + Method System.Void @@ -56,7 +52,7 @@ - + Method System.Void @@ -71,7 +67,7 @@ - + Property GLib.Value @@ -79,7 +75,7 @@ Gets the value of this object. - a representing the current accessible value. + a representing the current accessible value. diff --git a/doc/en/GConf.PropertyEditors/EditorNotSupportedException.xml b/doc/en/GConf.PropertyEditors/EditorNotSupportedException.xml index a3c13e9e7..9cda7bfe3 100644 --- a/doc/en/GConf.PropertyEditors/EditorNotSupportedException.xml +++ b/doc/en/GConf.PropertyEditors/EditorNotSupportedException.xml @@ -1,12 +1,10 @@ - + gconf-sharp-peditors - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -17,11 +15,7 @@ System.Exception - - System.Runtime.Serialization.ISerializable - - @@ -30,9 +24,8 @@ To be added - To be added: an object of type 'GConf.PropertyEditors.EditorNotSupportedException' To be added - \ No newline at end of file + diff --git a/doc/en/GConf.PropertyEditors/EditorShell.xml b/doc/en/GConf.PropertyEditors/EditorShell.xml index 3c725958d..892985361 100644 --- a/doc/en/GConf.PropertyEditors/EditorShell.xml +++ b/doc/en/GConf.PropertyEditors/EditorShell.xml @@ -4,9 +4,7 @@ gconf-sharp-peditors - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -17,7 +15,6 @@ System.Object - @@ -56,7 +53,7 @@ - + Method System.Void @@ -118,7 +115,6 @@ To be added To be added: an object of type 'Glade.XML' - To be added: an object of type 'GConf.PropertyEditors.EditorShell' To be added @@ -134,9 +130,8 @@ To be added To be added: an object of type 'Glade.XML' To be added: an object of type 'GConf.ChangeSet' - To be added: an object of type 'GConf.PropertyEditors.EditorShell' To be added - \ No newline at end of file + diff --git a/doc/en/GConf.PropertyEditors/InvalidGladeKeyException.xml b/doc/en/GConf.PropertyEditors/InvalidGladeKeyException.xml index 71184f96c..a4ac82d6b 100644 --- a/doc/en/GConf.PropertyEditors/InvalidGladeKeyException.xml +++ b/doc/en/GConf.PropertyEditors/InvalidGladeKeyException.xml @@ -1,12 +1,10 @@ - + gconf-sharp-peditors - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -17,11 +15,7 @@ System.Exception - - System.Runtime.Serialization.ISerializable - - @@ -33,9 +27,8 @@ To be added To be added: an object of type 'string' - To be added: an object of type 'GConf.PropertyEditors.InvalidGladeKeyException' To be added - \ No newline at end of file + diff --git a/doc/en/GConf.PropertyEditors/PropertyEditor.xml b/doc/en/GConf.PropertyEditors/PropertyEditor.xml index c3432de9c..a4d2e9a70 100644 --- a/doc/en/GConf.PropertyEditors/PropertyEditor.xml +++ b/doc/en/GConf.PropertyEditors/PropertyEditor.xml @@ -4,9 +4,7 @@ gconf-sharp-peditors - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -17,7 +15,6 @@ System.Object - @@ -60,7 +57,7 @@ - + Method System.Void @@ -72,7 +69,7 @@ - + Method System.Void @@ -100,42 +97,11 @@ To be added To be added: an object of type 'string' To be added: an object of type 'Gtk.Widget' - To be added: an object of type 'GConf.PropertyEditors.PropertyEditor' - To be added - - - - - Property - - GConf.ChangeSet - - - - - - To be added - To be added: an object of type 'GConf.ChangeSet' - To be added: an object of type 'GConf.ChangeSet' - To be added - - - - - Property - - GConf.Client - - - - - - To be added - To be added: an object of type 'GConf.Client' - To be added: an object of type 'GConf.Client' To be added + + Property @@ -144,7 +110,7 @@ To be added - To be added: an object of type 'Gtk.Widget' + To be added: an object of type 'Gtk.Widget' To be added @@ -156,9 +122,33 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added + + + Property + + GConf.Client + + + To be added. + To be added. + To be added. + + + + + Property + + GConf.ChangeSet + + + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/GConf.PropertyEditors/PropertyEditorBool.xml b/doc/en/GConf.PropertyEditors/PropertyEditorBool.xml index 70b9bcd48..a480ec130 100644 --- a/doc/en/GConf.PropertyEditors/PropertyEditorBool.xml +++ b/doc/en/GConf.PropertyEditors/PropertyEditorBool.xml @@ -4,9 +4,7 @@ gconf-sharp-peditors - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -17,7 +15,6 @@ GConf.PropertyEditors.PropertyEditor - @@ -46,7 +43,6 @@ To be added To be added: an object of type 'string' To be added: an object of type 'Gtk.Widget' - To be added: an object of type 'GConf.PropertyEditors.PropertyEditorBool' To be added @@ -66,4 +62,4 @@ - \ No newline at end of file + diff --git a/doc/en/GConf.PropertyEditors/PropertyEditorEntry.xml b/doc/en/GConf.PropertyEditors/PropertyEditorEntry.xml index 1a6d4ed69..6aeba9264 100644 --- a/doc/en/GConf.PropertyEditors/PropertyEditorEntry.xml +++ b/doc/en/GConf.PropertyEditors/PropertyEditorEntry.xml @@ -4,9 +4,7 @@ gconf-sharp-peditors - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -17,7 +15,6 @@ GConf.PropertyEditors.PropertyEditor - @@ -31,7 +28,6 @@ To be added To be added: an object of type 'string' To be added: an object of type 'Gtk.Entry' - To be added: an object of type 'GConf.PropertyEditors.PropertyEditorEntry' To be added @@ -52,17 +48,6 @@ To be added - - - Method - - System.Void - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/GConf.PropertyEditors/PropertyEditorEnum.xml b/doc/en/GConf.PropertyEditors/PropertyEditorEnum.xml index 0627788b0..3895d4b5b 100644 --- a/doc/en/GConf.PropertyEditors/PropertyEditorEnum.xml +++ b/doc/en/GConf.PropertyEditors/PropertyEditorEnum.xml @@ -4,9 +4,7 @@ gconf-sharp-peditors - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -17,7 +15,6 @@ GConf.PropertyEditors.PropertyEditor - @@ -47,12 +44,11 @@ To be added To be added: an object of type 'string' To be added: an object of type 'Gtk.Widget' - To be added: an object of type 'GConf.PropertyEditors.PropertyEditorEnum' To be added - + Constructor @@ -67,7 +63,6 @@ To be added: an object of type 'Gtk.Widget' To be added: an object of type 'Type' To be added: an object of type 'int []' - To be added: an object of type 'GConf.PropertyEditors.PropertyEditorEnum' To be added @@ -85,7 +80,6 @@ To be added: an object of type 'string' To be added: an object of type 'Gtk.Widget' To be added: an object of type 'Type' - To be added: an object of type 'GConf.PropertyEditors.PropertyEditorEnum' To be added @@ -105,4 +99,4 @@ - \ No newline at end of file + diff --git a/doc/en/GConf.PropertyEditors/PropertyEditorFileEntry.xml b/doc/en/GConf.PropertyEditors/PropertyEditorFileEntry.xml index f9d94cc73..f2ad6c91b 100644 --- a/doc/en/GConf.PropertyEditors/PropertyEditorFileEntry.xml +++ b/doc/en/GConf.PropertyEditors/PropertyEditorFileEntry.xml @@ -4,9 +4,7 @@ gconf-sharp-peditors - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -17,7 +15,6 @@ GConf.PropertyEditors.PropertyEditor - @@ -31,7 +28,6 @@ To be added To be added: an object of type 'string' To be added: an object of type 'Gnome.FileEntry' - To be added: an object of type 'GConf.PropertyEditors.PropertyEditorFileEntry' To be added @@ -52,17 +48,6 @@ To be added - - - Method - - System.Void - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/GConf.PropertyEditors/PropertyEditorOptionMenu.xml b/doc/en/GConf.PropertyEditors/PropertyEditorOptionMenu.xml index 692646d2f..fc0b60d03 100644 --- a/doc/en/GConf.PropertyEditors/PropertyEditorOptionMenu.xml +++ b/doc/en/GConf.PropertyEditors/PropertyEditorOptionMenu.xml @@ -4,9 +4,7 @@ gconf-sharp-peditors - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -17,7 +15,6 @@ GConf.PropertyEditors.PropertyEditorEnum - @@ -31,12 +28,11 @@ To be added To be added: an object of type 'string' To be added: an object of type 'Gtk.OptionMenu' - To be added: an object of type 'GConf.PropertyEditors.PropertyEditorOptionMenu' To be added - + Constructor @@ -51,7 +47,6 @@ To be added: an object of type 'Gtk.OptionMenu' To be added: an object of type 'Type' To be added: an object of type 'int []' - To be added: an object of type 'GConf.PropertyEditors.PropertyEditorOptionMenu' To be added @@ -69,7 +64,6 @@ To be added: an object of type 'string' To be added: an object of type 'Gtk.OptionMenu' To be added: an object of type 'Type' - To be added: an object of type 'GConf.PropertyEditors.PropertyEditorOptionMenu' To be added @@ -90,17 +84,6 @@ To be added - - - Method - - System.Void - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/GConf.PropertyEditors/PropertyEditorRadioButton.xml b/doc/en/GConf.PropertyEditors/PropertyEditorRadioButton.xml index b70a9f1b1..f8dfdbbd6 100644 --- a/doc/en/GConf.PropertyEditors/PropertyEditorRadioButton.xml +++ b/doc/en/GConf.PropertyEditors/PropertyEditorRadioButton.xml @@ -4,9 +4,7 @@ gconf-sharp-peditors - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -17,7 +15,6 @@ GConf.PropertyEditors.PropertyEditorEnum - @@ -31,12 +28,11 @@ To be added To be added: an object of type 'string' To be added: an object of type 'Gtk.RadioButton' - To be added: an object of type 'GConf.PropertyEditors.PropertyEditorRadioButton' To be added - + Constructor @@ -51,7 +47,6 @@ To be added: an object of type 'Gtk.RadioButton' To be added: an object of type 'Type' To be added: an object of type 'int []' - To be added: an object of type 'GConf.PropertyEditors.PropertyEditorRadioButton' To be added @@ -69,7 +64,6 @@ To be added: an object of type 'string' To be added: an object of type 'Gtk.RadioButton' To be added: an object of type 'Type' - To be added: an object of type 'GConf.PropertyEditors.PropertyEditorRadioButton' To be added @@ -90,17 +84,6 @@ To be added - - - Method - - System.Void - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/GConf.PropertyEditors/PropertyEditorSpinButton.xml b/doc/en/GConf.PropertyEditors/PropertyEditorSpinButton.xml index 9a42eb260..bad2f4d72 100644 --- a/doc/en/GConf.PropertyEditors/PropertyEditorSpinButton.xml +++ b/doc/en/GConf.PropertyEditors/PropertyEditorSpinButton.xml @@ -4,9 +4,7 @@ gconf-sharp-peditors - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -17,7 +15,6 @@ GConf.PropertyEditors.PropertyEditor - @@ -31,7 +28,6 @@ To be added To be added: an object of type 'string' To be added: an object of type 'Gtk.SpinButton' - To be added: an object of type 'GConf.PropertyEditors.PropertyEditorSpinButton' To be added @@ -52,17 +48,6 @@ To be added - - - Method - - System.Void - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/GConf.PropertyEditors/PropertyEditorToggleButton.xml b/doc/en/GConf.PropertyEditors/PropertyEditorToggleButton.xml index 3e98747e4..38546b599 100644 --- a/doc/en/GConf.PropertyEditors/PropertyEditorToggleButton.xml +++ b/doc/en/GConf.PropertyEditors/PropertyEditorToggleButton.xml @@ -4,9 +4,7 @@ gconf-sharp-peditors - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -17,7 +15,6 @@ GConf.PropertyEditors.PropertyEditorBool - @@ -31,7 +28,6 @@ To be added To be added: an object of type 'string' To be added: an object of type 'Gtk.ToggleButton' - To be added: an object of type 'GConf.PropertyEditors.PropertyEditorToggleButton' To be added @@ -52,17 +48,6 @@ To be added - - - Method - - System.Void - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/GConf/ChangeSet.xml b/doc/en/GConf/ChangeSet.xml index 00a18ec8d..8170102c9 100644 --- a/doc/en/GConf/ChangeSet.xml +++ b/doc/en/GConf/ChangeSet.xml @@ -1,12 +1,10 @@ - + gconf-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -21,10 +19,9 @@ System.IDisposable - - + Method System.Void @@ -42,8 +39,8 @@ Initializes a new ChangeSet object - a - + + @@ -69,7 +66,7 @@ - Gets the value stored in the changeset under key . + Gets the value stored in the changeset under key . a a diff --git a/doc/en/GConf/Client.xml b/doc/en/GConf/Client.xml index 4fc6fdc7a..8d3efd78c 100644 --- a/doc/en/GConf/Client.xml +++ b/doc/en/GConf/Client.xml @@ -4,9 +4,7 @@ gconf-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -33,7 +31,6 @@ catch (GConf.NoSuchKeyException) GConf.ClientBase - @@ -78,7 +75,8 @@ catch (GConf.NoSuchKeyException) Registers a notification request. an object of type an object of type - + + @@ -88,7 +86,6 @@ catch (GConf.NoSuchKeyException) Creates a new . - an object of type This is the default constructor for . @@ -142,4 +139,4 @@ switch (val) { - \ No newline at end of file + diff --git a/doc/en/GConf/ClientBase.xml b/doc/en/GConf/ClientBase.xml index 8eaba9b0a..1a12ee18a 100644 --- a/doc/en/GConf/ClientBase.xml +++ b/doc/en/GConf/ClientBase.xml @@ -4,21 +4,19 @@ gconf-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. Abstract class; extend this to create objects that behave like GConf clients. - + + System.Object - @@ -31,14 +29,15 @@ - Set the value stored at key to . + Set the value stored at key to . a a - + + - + Method System.Object @@ -47,10 +46,11 @@ - Get the value stored at key . + Get the value stored at key . a a - + + @@ -60,8 +60,8 @@ Protected constructor. - a - + + diff --git a/doc/en/GConf/Engine.xml b/doc/en/GConf/Engine.xml index 87e65f6ac..041135567 100644 --- a/doc/en/GConf/Engine.xml +++ b/doc/en/GConf/Engine.xml @@ -1,11 +1,9 @@ - + gconf-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,7 +18,6 @@ System.IDisposable - @@ -35,7 +32,7 @@ - + Method System.Void @@ -72,7 +69,7 @@ Gets the default configuration engine. - a + a This is the engine to use for most application code. diff --git a/doc/en/GConf/NoSuchKeyException.xml b/doc/en/GConf/NoSuchKeyException.xml index bdde6dc6c..72bf3de6f 100644 --- a/doc/en/GConf/NoSuchKeyException.xml +++ b/doc/en/GConf/NoSuchKeyException.xml @@ -1,12 +1,10 @@ - + gconf-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -17,11 +15,7 @@ System.Exception - - System.Runtime.Serialization.ISerializable - - @@ -30,8 +24,8 @@ Public constructor. - a - + + @@ -44,8 +38,8 @@ Public constructor. a , name of the key that was not found. - a - + + diff --git a/doc/en/GConf/NotifyEventArgs.xml b/doc/en/GConf/NotifyEventArgs.xml index 436004f89..2047f1319 100644 --- a/doc/en/GConf/NotifyEventArgs.xml +++ b/doc/en/GConf/NotifyEventArgs.xml @@ -4,20 +4,18 @@ gconf-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. Arguments of the GConf Notify event that was called due to a GConf key being added, removed or updated. - + + System.EventArgs - @@ -31,7 +29,6 @@ This constructor is called to initialize a NotifyEventArgs with the key/value that was updated, removed or added in GConf a a - a , event arguments to the NotifyEventHandler delegate @@ -44,8 +41,9 @@ This NotifyEventArgs property refers to the GConf Value from an entry which modification, addition or removal cause the event to be fired. - the object stored in the GConf which modification, removal or addition cause the event to be fired. - + the object stored in the GConf which modification, removal or addition cause the event to be fired. + + @@ -56,9 +54,10 @@ This NotifyEventArgs property refers to the key which value modification, addition or removal cause the event to be fired. - a string for the key name - + a string for the key name + + - \ No newline at end of file + diff --git a/doc/en/GConf/NotifyEventHandler.xml b/doc/en/GConf/NotifyEventHandler.xml index d42db2d35..2a3d4738f 100644 --- a/doc/en/GConf/NotifyEventHandler.xml +++ b/doc/en/GConf/NotifyEventHandler.xml @@ -1,14 +1,14 @@ - + gconf-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. NotifyEventHandler is a delegate object that can be used to notify your program whenever a key's value is changed, either in your program or externally (i.e. via gconf-editor). You only have to attach a GConf.NotifyEventHandler delegate to a key, this way: @@ -20,15 +20,6 @@ This is very important for graphic interfaces, as it is a good practice to make System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ This is very important for graphic interfaces, as it is a good practice to make - \ No newline at end of file + diff --git a/doc/en/GLib/Argv.xml b/doc/en/GLib/Argv.xml index ba0c3d319..d2bc89f4d 100644 --- a/doc/en/GLib/Argv.xml +++ b/doc/en/GLib/Argv.xml @@ -4,8 +4,6 @@ glib-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -31,7 +28,7 @@ - + Method System.String[] @@ -47,7 +44,7 @@ - + Constructor @@ -56,7 +53,6 @@ Creates an Argv marshaler. a - a @@ -69,12 +65,12 @@ Native pointer to the argument array. - a + a - + Constructor @@ -85,8 +81,7 @@ Public constructor a a - a - If is , the native argv will also contain a leading string containing the program name reported in the first element of the array returned by . + If is , the native argv will also contain a leading string containing the program name reported in the first element of the array returned by . diff --git a/doc/en/GLib/Boxed.xml b/doc/en/GLib/Boxed.xml index 83dc14313..a02063479 100644 --- a/doc/en/GLib/Boxed.xml +++ b/doc/en/GLib/Boxed.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,11 @@ System.Object - + + + System.Obsolete(Message=null, IsError=False) + + @@ -29,7 +31,6 @@ Constructs a Boxed type from a raw ref. an object of type - an object of type @@ -44,7 +45,6 @@ Internal Constructor an object of type - an object of type This is not typically called directly. @@ -57,7 +57,7 @@ Do not use. - a + a Do not use. @@ -70,9 +70,25 @@ Do not use. - a + a Do not use. + + + Method + + System.IntPtr + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/GLib/CDeclCallbackAttribute.xml b/doc/en/GLib/CDeclCallbackAttribute.xml index c2d556004..b5c2c3fb3 100644 --- a/doc/en/GLib/CDeclCallbackAttribute.xml +++ b/doc/en/GLib/CDeclCallbackAttribute.xml @@ -4,8 +4,6 @@ glib-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Attribute - @@ -25,7 +22,6 @@ Creates a - a Delegates marked with this attribute are manually updated on win32 builds to add a modopt in IL which forces Cdecl calling convention. It should be applied to any manually written native callbacks in .custom files or manual implementations of callback delegates. diff --git a/doc/en/GLib/ClassInitializerAttribute.xml b/doc/en/GLib/ClassInitializerAttribute.xml index 9dc406ceb..b3f6f608d 100644 --- a/doc/en/GLib/ClassInitializerAttribute.xml +++ b/doc/en/GLib/ClassInitializerAttribute.xml @@ -4,8 +4,6 @@ glib-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Attribute - @@ -25,7 +22,6 @@ Constructs an attribute. - a diff --git a/doc/en/GLib/ConnectBeforeAttribute.xml b/doc/en/GLib/ConnectBeforeAttribute.xml index 3c58aeaff..7f9e8ce71 100644 --- a/doc/en/GLib/ConnectBeforeAttribute.xml +++ b/doc/en/GLib/ConnectBeforeAttribute.xml @@ -3,9 +3,7 @@ glib-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] - 1.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -40,7 +38,6 @@ public class Example { System.Attribute - @@ -49,10 +46,9 @@ public class Example { Public Constructor. - a - \ No newline at end of file + diff --git a/doc/en/GLib/DefaultSignalHandlerAttribute.xml b/doc/en/GLib/DefaultSignalHandlerAttribute.xml index cfd050fa2..2054cf2a6 100644 --- a/doc/en/GLib/DefaultSignalHandlerAttribute.xml +++ b/doc/en/GLib/DefaultSignalHandlerAttribute.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 @@ -46,7 +44,6 @@ protected virtual void ForAll (bool include_internals, CallbackInvoker invoker) System.Attribute - @@ -55,7 +52,6 @@ protected virtual void ForAll (bool include_internals, CallbackInvoker invoker) Public Constructor. - a @@ -68,7 +64,7 @@ protected virtual void ForAll (bool include_internals, CallbackInvoker invoker) The method to invoke to hook into the native object's vtable. - a representing the method name to invoke. + a representing the method name to invoke. This method is invoked during type registration to hook up a callback delegate into the native object's vtable for virtual methods. @@ -81,9 +77,9 @@ protected virtual void ForAll (bool include_internals, CallbackInvoker invoker) The Type of the object which exposes the virtual method. - a + a The type registration code reflects on this type for the to invoke. - \ No newline at end of file + diff --git a/doc/en/GLib/DelegateWrapper.xml b/doc/en/GLib/DelegateWrapper.xml index 73ba1696b..cd1487460 100644 --- a/doc/en/GLib/DelegateWrapper.xml +++ b/doc/en/GLib/DelegateWrapper.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ System.Object - @@ -30,9 +27,12 @@ The is the object that creates the instance of the DelegateWrapper derived class or null if created from a static method. a - a Note that the instances will never be disposed if they are created in a static method. - + + + System.Obsolete(Message="Callback wrappers should be manually managed for persistence.", IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GLib/DestroyHelper.xml b/doc/en/GLib/DestroyHelper.xml index d3ce4579a..abc800dfe 100644 --- a/doc/en/GLib/DestroyHelper.xml +++ b/doc/en/GLib/DestroyHelper.xml @@ -4,8 +4,6 @@ glib-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -27,9 +24,9 @@ A that frees a . - a + a - \ No newline at end of file + diff --git a/doc/en/GLib/DestroyNotify.xml b/doc/en/GLib/DestroyNotify.xml index 3fd1e4299..00b91c5ef 100644 --- a/doc/en/GLib/DestroyNotify.xml +++ b/doc/en/GLib/DestroyNotify.xml @@ -1,29 +1,19 @@ - + glib-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. A callback invoked to free user-provided data. This is mostly for internal use. You should not need to use it unless you are binding additional unmanaged API. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -31,4 +21,4 @@ - \ No newline at end of file + diff --git a/doc/en/GLib/EnumWrapper.xml b/doc/en/GLib/EnumWrapper.xml index f8303c484..ebfe8662b 100644 --- a/doc/en/GLib/EnumWrapper.xml +++ b/doc/en/GLib/EnumWrapper.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ System.Object - @@ -44,10 +41,25 @@ Creates a new instance. an object of type an object of type - an object of type + + + Method + + System.Int32 + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/GLib/FileUtils.xml b/doc/en/GLib/FileUtils.xml index 3b04ae9ad..c497c5237 100644 --- a/doc/en/GLib/FileUtils.xml +++ b/doc/en/GLib/FileUtils.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -50,4 +47,4 @@ class Test - \ No newline at end of file + diff --git a/doc/en/GLib/GException.xml b/doc/en/GLib/GException.xml index 55e1c2cba..2bd95c536 100644 --- a/doc/en/GLib/GException.xml +++ b/doc/en/GLib/GException.xml @@ -1,12 +1,10 @@ - + glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ System.Exception - - System.Runtime.Serialization.ISerializable - - @@ -45,7 +39,6 @@ Internal constructor. a handle to the native GError pointer. - an object of type This constructor is public so that generated code in assemblies outside of glib-sharp.dll can access it, but it should not be necessary to use it from application code. @@ -63,4 +56,4 @@ - \ No newline at end of file + diff --git a/doc/en/GLib/GString.xml b/doc/en/GLib/GString.xml index f59bc6a28..ec2166c99 100644 --- a/doc/en/GLib/GString.xml +++ b/doc/en/GLib/GString.xml @@ -1,11 +1,9 @@ - + glib-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] - 1.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,7 +18,6 @@ GLib.IWrapper - @@ -61,13 +58,12 @@ Creates a native GString from a managed string. a - a - + Property System.IntPtr @@ -75,10 +71,10 @@ A pointer to the native GString associated with this object. - a + a - \ No newline at end of file + diff --git a/doc/en/GLib/GType.xml b/doc/en/GLib/GType.xml index 304256a05..be24ee085 100644 --- a/doc/en/GLib/GType.xml +++ b/doc/en/GLib/GType.xml @@ -1,12 +1,10 @@ - + glib-sharp 2.0.0.0 - neutral - @@ -17,10 +15,9 @@ System.ValueType - - + Field GLib.GType @@ -33,7 +30,7 @@ - + Field GLib.GType @@ -46,7 +43,7 @@ - + Field GLib.GType @@ -59,7 +56,7 @@ - + Field GLib.GType @@ -72,7 +69,7 @@ - + Field GLib.GType @@ -85,7 +82,7 @@ - + Field GLib.GType @@ -98,7 +95,7 @@ - + Field GLib.GType @@ -111,7 +108,7 @@ - + Field GLib.GType @@ -124,7 +121,7 @@ - + Field GLib.GType @@ -137,7 +134,7 @@ - + Field GLib.GType @@ -150,7 +147,7 @@ - + Field GLib.GType @@ -163,7 +160,7 @@ - + Field GLib.GType @@ -176,7 +173,7 @@ - + Field GLib.GType @@ -189,7 +186,7 @@ - + Field GLib.GType @@ -202,7 +199,7 @@ - + Field GLib.GType @@ -215,7 +212,7 @@ - + Field GLib.GType @@ -228,7 +225,7 @@ - + Field GLib.GType @@ -241,7 +238,7 @@ - + Field GLib.GType @@ -308,7 +305,6 @@ Constructor for GType. Primarily used in generated wrappers for gtk objects. a - a Generated code from gnome/generated/About.cs: @@ -337,7 +333,7 @@ Read only property retrieves the representing the GType object in question. - a + a @@ -374,5 +370,73 @@ + + + Method + + GLib.GType + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Type + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/GLib/GTypeAttribute.xml b/doc/en/GLib/GTypeAttribute.xml index 7eb5f2b64..cb0426575 100644 --- a/doc/en/GLib/GTypeAttribute.xml +++ b/doc/en/GLib/GTypeAttribute.xml @@ -4,8 +4,6 @@ glib-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,7 @@ - System.AttributeUsageAttribute + System.AttributeUsage(AllowMultiple=False, Inherited=True, ValidOn=System.AttributeTargets.Enum) @@ -32,7 +30,6 @@ Creates an attribute. the containing the GType property - a @@ -45,9 +42,9 @@ The class containing the GType property - a + a - \ No newline at end of file + diff --git a/doc/en/GLib/IWrapper.xml b/doc/en/GLib/IWrapper.xml index 684040e18..c4126b6a7 100644 --- a/doc/en/GLib/IWrapper.xml +++ b/doc/en/GLib/IWrapper.xml @@ -1,33 +1,29 @@ - + glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Interface to identify a handle accessible wrapped type. This interface is used by the code generator, but it not typically used by application code. - - - + Property System.IntPtr A pointer to the native type instance. - an object of type + an object of type - \ No newline at end of file + diff --git a/doc/en/GLib/Idle.xml b/doc/en/GLib/Idle.xml index eaabb0fec..cee7c9514 100644 --- a/doc/en/GLib/Idle.xml +++ b/doc/en/GLib/Idle.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 This function is thread safe. @@ -22,7 +20,6 @@ System.Object - @@ -76,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/GLib/IdleHandler.xml b/doc/en/GLib/IdleHandler.xml index ba3d6cb49..ef6fa8751 100644 --- a/doc/en/GLib/IdleHandler.xml +++ b/doc/en/GLib/IdleHandler.xml @@ -1,9 +1,8 @@ - + glib-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,23 +15,15 @@ handler is removed. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Boolean - \ No newline at end of file + diff --git a/doc/en/GLib/List.xml b/doc/en/GLib/List.xml index e298b1edf..e49baa4c6 100644 --- a/doc/en/GLib/List.xml +++ b/doc/en/GLib/List.xml @@ -1,12 +1,10 @@ - + glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -47,23 +45,7 @@ GLib.ListBase - - System.IDisposable - - - System.Collections.ICollection - - - System.Collections.IEnumerable - - - GLib.IWrapper - - - System.ICloneable - - @@ -75,7 +57,6 @@ Constructs a List A handle to a . - A new insteace instance of List, wrapping the C list. objects are constructed by passing an unmanaged @@ -99,9 +80,9 @@ - Internal constructor A handle to a GLib.list - A new instance of List, wrapping the C list. + To be added. + Internal constructor objects are constructed by passing an unmanaged @@ -141,7 +122,6 @@ Constructs a list of objects of a given type. a - a @@ -157,4 +137,4 @@ - \ No newline at end of file + diff --git a/doc/en/GLib/ListBase.xml b/doc/en/GLib/ListBase.xml index 3ce8b62fb..7187aee3a 100644 --- a/doc/en/GLib/ListBase.xml +++ b/doc/en/GLib/ListBase.xml @@ -1,12 +1,10 @@ - + glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,22 +17,23 @@ - System.IDisposable + GLib.IWrapper System.Collections.ICollection - - System.Collections.IEnumerable - - - GLib.IWrapper - System.ICloneable + + System.IDisposable + - + + + System.Reflection.DefaultMember(MemberName="Item") + + @@ -50,7 +49,7 @@ - + Method System.Object @@ -63,7 +62,7 @@ - + Method System.Void @@ -75,7 +74,7 @@ - + Method System.Void @@ -151,50 +150,50 @@ - + Property System.Object Synchronization root. - always + always Always returns since this type is never synchronized. - + Property System.Boolean Indicates if the list is synchronized. - always + always Always returns false. - + Property System.Int32 The number of elements in the list. - the number of elements in the list as an + the number of elements in the list as an - + Property System.IntPtr A raw list reference for marshaling situations. - an object of type + an object of type @@ -210,12 +209,12 @@ Indicates if the native handle is owned by the Managed list class. an object of type - an object of type + an object of type Identifies the list as one that needs to be freed. Only set this to true if you want the object to release the associated native list when it is disposed. - + Method System.Collections.IEnumerator @@ -244,7 +243,7 @@ - + Property System.Object @@ -255,7 +254,7 @@ Indexer for list members. a representing the 0 indexed offset to the member. - the list member at as an . + the list member at as an . @@ -272,4 +271,4 @@ - \ No newline at end of file + diff --git a/doc/en/GLib/Log.xml b/doc/en/GLib/Log.xml index ebe0d512c..f17a561a4 100644 --- a/doc/en/GLib/Log.xml +++ b/doc/en/GLib/Log.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -42,7 +40,6 @@ Log.SetLogHandler ("Gtk", LogLevelFlags.Critical, logFunc); System.Object - @@ -232,9 +229,35 @@ Log.SetLogHandler ("Gtk", LogLevelFlags.Critical, logFunc); To be added - an object of type To be added + + + Method + + System.Void + + + + + + + + + System.ParamArray + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/GLib/LogFunc.xml b/doc/en/GLib/LogFunc.xml index 2d5a9cf82..fe5309acb 100644 --- a/doc/en/GLib/LogFunc.xml +++ b/doc/en/GLib/LogFunc.xml @@ -1,27 +1,20 @@ - + glib-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -31,4 +24,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/GLib/LogLevelFlags.xml b/doc/en/GLib/LogLevelFlags.xml index d13e60288..7e980d8d1 100644 --- a/doc/en/GLib/LogLevelFlags.xml +++ b/doc/en/GLib/LogLevelFlags.xml @@ -1,12 +1,10 @@ - + glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + System.Flags + + @@ -212,4 +203,4 @@ - \ No newline at end of file + diff --git a/doc/en/GLib/MainContext.xml b/doc/en/GLib/MainContext.xml index d9a2b3b9e..6416cdf0d 100644 --- a/doc/en/GLib/MainContext.xml +++ b/doc/en/GLib/MainContext.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -68,9 +65,8 @@ Create a new instance. - an object of type This is the default constructor for . - \ No newline at end of file + diff --git a/doc/en/GLib/MainLoop.xml b/doc/en/GLib/MainLoop.xml index 6e9d84834..06c8910a4 100644 --- a/doc/en/GLib/MainLoop.xml +++ b/doc/en/GLib/MainLoop.xml @@ -3,9 +3,7 @@ glib-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] - 1.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -64,7 +61,6 @@ Default constructor - a @@ -78,10 +74,10 @@ Whether this mainloop has started or not. - a + a - \ No newline at end of file + diff --git a/doc/en/GLib/Markup.xml b/doc/en/GLib/Markup.xml index d26761021..3fad7d171 100644 --- a/doc/en/GLib/Markup.xml +++ b/doc/en/GLib/Markup.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -17,7 +15,6 @@ System.Object - @@ -37,4 +34,4 @@ Note that this function does not protect whitespace and line endings from being - \ No newline at end of file + diff --git a/doc/en/GLib/Marshaller.xml b/doc/en/GLib/Marshaller.xml index b448e8020..a21c8af91 100644 --- a/doc/en/GLib/Marshaller.xml +++ b/doc/en/GLib/Marshaller.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -36,7 +33,7 @@ - + Method System.String[] @@ -68,7 +65,7 @@ - + Method System.IntPtr @@ -84,7 +81,7 @@ - + Method System.String[] @@ -168,14 +165,20 @@ - + Method System.String - + + + + System.ParamArray + + + Wrapper for marshalling between String.Format-style methods and printf-style ones @@ -202,7 +205,7 @@ - + Method System.String[] @@ -249,4 +252,4 @@ - \ No newline at end of file + diff --git a/doc/en/GLib/MissingIntPtrCtorException.xml b/doc/en/GLib/MissingIntPtrCtorException.xml index bea0f87fd..33a1e5748 100644 --- a/doc/en/GLib/MissingIntPtrCtorException.xml +++ b/doc/en/GLib/MissingIntPtrCtorException.xml @@ -1,11 +1,9 @@ - + glib-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] - 1.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,11 +14,7 @@ System.Exception - - System.Runtime.Serialization.ISerializable - - @@ -32,9 +26,8 @@ Public Constructor. a message to report in the exception trace. - a - \ No newline at end of file + diff --git a/doc/en/GLib/NotifyArgs.xml b/doc/en/GLib/NotifyArgs.xml index 66046d4dd..16010e149 100644 --- a/doc/en/GLib/NotifyArgs.xml +++ b/doc/en/GLib/NotifyArgs.xml @@ -4,8 +4,6 @@ glib-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,8 +24,8 @@ Public Constructor. - A new - + + @@ -40,9 +37,10 @@ The property that changed - a - + a + + - \ No newline at end of file + diff --git a/doc/en/GLib/NotifyHandler.xml b/doc/en/GLib/NotifyHandler.xml index dbd70584f..88ca90adb 100644 --- a/doc/en/GLib/NotifyHandler.xml +++ b/doc/en/GLib/NotifyHandler.xml @@ -1,14 +1,14 @@ - + glib-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Represents a method that will handle a property notification event The handler is provided an value that contains @@ -18,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -35,4 +26,4 @@ - \ No newline at end of file + diff --git a/doc/en/GLib/Object.xml b/doc/en/GLib/Object.xml index 56c57e39c..1ceaa289b 100644 --- a/doc/en/GLib/Object.xml +++ b/doc/en/GLib/Object.xml @@ -1,12 +1,10 @@ - + glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,7 +22,6 @@ System.IDisposable - @@ -51,14 +48,14 @@ - + Property System.IntPtr The raw GObject reference associated with this object. - an object of type + an object of type Subclasses can use Raw property for read/write access. @@ -73,7 +70,7 @@ The raw GObject reference associated with this wrapper. an object of type - an object of type + an object of type Only subclasses of Object can access this read/write property. For public read-only access, use the Handle property. This property should only be used from constructors to set a native object pointer instantiated by the constructor. The constructor should chain to base (IntPtr.Zero) on the base class to ensure that no other native objects are instantiated for the class. @@ -85,7 +82,7 @@ Stores and Accesses arbitrary data on the Object. - a + a This property is obsolete and should not be used unless you explicitly retain a reference to the . Otherwise the Data hashtable will be lost when the Garbage Collector @@ -95,7 +92,11 @@ the role of this property. - + + + System.Obsolete(Message="Can cause instability due to garbage collection of GLib.Objects.", IsError=False) + + Method @@ -137,7 +138,7 @@ To be added - a + a To be added @@ -186,7 +187,6 @@ Creates a new instance, using the GLib-provided type. The to register with the GLib type system. - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. @@ -195,7 +195,11 @@ - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -204,7 +208,7 @@ To be added - a + a To be added @@ -216,10 +220,14 @@ To be added - a + a To be added - + + + System.Obsolete(Message="Replaced by GLib.Signal marshaling mechanism.", IsError=False) + + Property @@ -228,10 +236,14 @@ To be added - a + a To be added - + + + System.Obsolete(Message="Replaced by GLib.Signal marshaling mechanism.", IsError=False) + + Property @@ -240,10 +252,14 @@ To be added - a + a To be added - + + + System.Obsolete(Message="Replaced by GLib.Signal marshaling mechanism.", IsError=False) + + Property @@ -252,10 +268,14 @@ To be added - a + a To be added - + + + System.Obsolete(Message="Replaced by GLib.Signal marshaling mechanism.", IsError=False) + + Property @@ -264,7 +284,7 @@ To be added - a + a To be added @@ -331,7 +351,7 @@ - + Method System.Void @@ -390,7 +410,6 @@ Constructs the object from a C-based pointer to the GLib object. The pointer to the native C object. - a This constructor is used to associate a C-based GLib object with its equivalent object in the managed world. @@ -473,7 +492,7 @@ This method is called by the generated classes by the Gtk# framework. Data hash to persistently store managed objects. - a + a This data hash is persistent until the native object is destroyed and can therefore outlast a GLib.Object wrapper class. diff --git a/doc/en/GLib/ObjectManager.xml b/doc/en/GLib/ObjectManager.xml index c548f5ea1..a3b6c198a 100644 --- a/doc/en/GLib/ObjectManager.xml +++ b/doc/en/GLib/ObjectManager.xml @@ -5,8 +5,6 @@ 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -78,7 +75,6 @@ Do Not Use. - an object of type diff --git a/doc/en/GLib/Opaque.xml b/doc/en/GLib/Opaque.xml index 1359632e9..31298a4d5 100644 --- a/doc/en/GLib/Opaque.xml +++ b/doc/en/GLib/Opaque.xml @@ -1,12 +1,10 @@ - + glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,7 +19,6 @@ GLib.IWrapper - @@ -46,7 +43,6 @@ Creates a new instance. - an object of type @@ -61,21 +57,20 @@ Internal constructor Pointer to the C object. - An instance of Opaque, wrapping the C object. This is an internal constructor, and should not be used by user code. - + Property System.IntPtr The raw Opaque reference associated with this object. - an object of type + an object of type Subclasses can use Raw property for read/write access. @@ -90,7 +85,7 @@ The raw Opaque reference associated with this wrapper. an object of type - an object of type + an object of type Only subclasses of Opaque can access this read/write property. @@ -125,4 +120,4 @@ - \ No newline at end of file + diff --git a/doc/en/GLib/PrintFunc.xml b/doc/en/GLib/PrintFunc.xml index e4f1002cc..9ecf1fb47 100644 --- a/doc/en/GLib/PrintFunc.xml +++ b/doc/en/GLib/PrintFunc.xml @@ -1,27 +1,18 @@ - + glib-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -29,4 +20,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/GLib/PropertyAttribute.xml b/doc/en/GLib/PropertyAttribute.xml index fc361540c..035a0db09 100644 --- a/doc/en/GLib/PropertyAttribute.xml +++ b/doc/en/GLib/PropertyAttribute.xml @@ -4,19 +4,17 @@ glib-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Attribute used to label a property - + + System.Attribute - @@ -28,8 +26,8 @@ Attribute constructor the (C/GObject) name of the property - a - + + @@ -41,9 +39,10 @@ The (C/GObject) name of the property - a - + a + + - \ No newline at end of file + diff --git a/doc/en/GLib/SList.xml b/doc/en/GLib/SList.xml index 26343356b..63d5429fe 100644 --- a/doc/en/GLib/SList.xml +++ b/doc/en/GLib/SList.xml @@ -1,12 +1,10 @@ - + glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,23 +16,7 @@ GLib.ListBase - - System.IDisposable - - - System.Collections.ICollection - - - System.Collections.IEnumerable - - - GLib.IWrapper - - - System.ICloneable - - @@ -46,7 +28,6 @@ Internal constructor Pointer to the C object. - An instance of SList, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -61,9 +42,9 @@ - Internal constructor Pointer to the C object. - An instance of SList, wrapping the C object. + To be added. + Internal constructor This is an internal constructor, and should not be used by user code. @@ -92,9 +73,8 @@ Public Constructor. the of the list elements. - a - \ No newline at end of file + diff --git a/doc/en/GLib/Signal.xml b/doc/en/GLib/Signal.xml index a43c2d050..de518b024 100644 --- a/doc/en/GLib/Signal.xml +++ b/doc/en/GLib/Signal.xml @@ -4,8 +4,6 @@ glib-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -33,7 +30,7 @@ a a a - This overload is used for events, which are marshaled internally. + This overload is used for events, which are marshaled internally. @@ -53,7 +50,7 @@ a a a - If the desired event is an , there is a convenience overload that doesn't require a marshaling callback. + If the desired event is an , there is a convenience overload that doesn't require a marshaling callback. @@ -95,7 +92,7 @@ Gets the handler to invoke for a signal. - a + a Only use this property within a marshaling callback. diff --git a/doc/en/GLib/SignalArgs.xml b/doc/en/GLib/SignalArgs.xml index 5984683bc..987838503 100644 --- a/doc/en/GLib/SignalArgs.xml +++ b/doc/en/GLib/SignalArgs.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ System.EventArgs - @@ -27,7 +24,6 @@ Creates a SignalArgs object with no return value and no arguments. - an object of type @@ -42,7 +38,6 @@ Creates a SignalArgs object with a return value and no arguments. an object of type - an object of type @@ -75,26 +70,40 @@ The return value. an object of type - an object of type + an object of type - + Property - System.Object [] + System.Object[] A list of arguments. an object of type [] - an object of type [] + an object of type [] + + + Constructor + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/GLib/SignalAttribute.xml b/doc/en/GLib/SignalAttribute.xml index 7d4c0b25a..7100553a3 100644 --- a/doc/en/GLib/SignalAttribute.xml +++ b/doc/en/GLib/SignalAttribute.xml @@ -1,12 +1,10 @@ - + glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -27,7 +25,6 @@ public event System.EventHandler Destroyed { add; remove; } System.Attribute - @@ -39,7 +36,6 @@ public event System.EventHandler Destroyed { add; remove; } Public Constructor. a containing the C name of the signal. - an object of type @@ -51,9 +47,9 @@ public event System.EventHandler Destroyed { add; remove; } The C name of the signal. - the C name of the signal as a + the C name of the signal as a - \ No newline at end of file + diff --git a/doc/en/GLib/SignalCallback.xml b/doc/en/GLib/SignalCallback.xml index 7753f834e..fd029e29a 100644 --- a/doc/en/GLib/SignalCallback.xml +++ b/doc/en/GLib/SignalCallback.xml @@ -1,12 +1,10 @@ - + glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,8 +15,16 @@ System.Object - - + + + System.IDisposable + + + + + System.Obsolete(Message="Replaced by GLib.Signal.", IsError=False) + + @@ -110,18 +116,7 @@ To be added - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -138,7 +133,7 @@ - + Method System.Void @@ -175,7 +170,6 @@ a a a - a To be added @@ -224,4 +218,4 @@ - \ No newline at end of file + diff --git a/doc/en/GLib/Source.xml b/doc/en/GLib/Source.xml index e416a479c..8145cc0da 100644 --- a/doc/en/GLib/Source.xml +++ b/doc/en/GLib/Source.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -36,4 +33,4 @@ - \ No newline at end of file + diff --git a/doc/en/GLib/Thread.xml b/doc/en/GLib/Thread.xml index ff0ec8997..54a5e2d6a 100644 --- a/doc/en/GLib/Thread.xml +++ b/doc/en/GLib/Thread.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -32,4 +29,4 @@ - \ No newline at end of file + diff --git a/doc/en/GLib/Timeout.xml b/doc/en/GLib/Timeout.xml index ca1b7fd5b..6935b1878 100644 --- a/doc/en/GLib/Timeout.xml +++ b/doc/en/GLib/Timeout.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -45,4 +42,4 @@ Invocation of the delegate may be delayed by other event processing, so this mec - \ No newline at end of file + diff --git a/doc/en/GLib/TimeoutHandler.xml b/doc/en/GLib/TimeoutHandler.xml index bb8b32545..1c4dc86ea 100644 --- a/doc/en/GLib/TimeoutHandler.xml +++ b/doc/en/GLib/TimeoutHandler.xml @@ -1,31 +1,22 @@ - + glib-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Delegate used for Timeouts in the GLib main loop. Return to restart the timeout. Returning clears the timeout. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Boolean - \ No newline at end of file + diff --git a/doc/en/GLib/TypeConverter.xml b/doc/en/GLib/TypeConverter.xml index 30c25c01a..67ec050ae 100644 --- a/doc/en/GLib/TypeConverter.xml +++ b/doc/en/GLib/TypeConverter.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -36,4 +33,4 @@ - \ No newline at end of file + diff --git a/doc/en/GLib/TypeFundamentals.xml b/doc/en/GLib/TypeFundamentals.xml index e4f451c0a..564216b18 100644 --- a/doc/en/GLib/TypeFundamentals.xml +++ b/doc/en/GLib/TypeFundamentals.xml @@ -1,12 +1,10 @@ - + glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,18 +15,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -317,4 +303,4 @@ - \ No newline at end of file + diff --git a/doc/en/GLib/UnwrappedObject.xml b/doc/en/GLib/UnwrappedObject.xml index a70dd7a97..5eef394e9 100644 --- a/doc/en/GLib/UnwrappedObject.xml +++ b/doc/en/GLib/UnwrappedObject.xml @@ -4,9 +4,7 @@ glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -29,9 +26,24 @@ To be added an object of type - an object of type To be added + + + Method + + System.IntPtr + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/GLib/Value.xml b/doc/en/GLib/Value.xml index 01c36bb38..0ed9e3496 100644 --- a/doc/en/GLib/Value.xml +++ b/doc/en/GLib/Value.xml @@ -1,12 +1,10 @@ - + glib-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,8 +15,11 @@ System.ValueType - - + + + System.IDisposable + + @@ -30,7 +31,6 @@ Constructs a Value from a specified boolean. an object of type - an object of type @@ -45,7 +45,6 @@ Constructs a Value from a specified double. an object of type - an object of type @@ -60,7 +59,6 @@ Constructs a Value from a specified float. an object of type - an object of type @@ -75,7 +73,6 @@ Constructs a Value from a specified integer. an object of type - an object of type @@ -90,7 +87,6 @@ Constructs a Value from a specified object. an object of type - an object of type @@ -105,7 +101,6 @@ Constructs a Value from a specified pointer. an object of type - an object of type @@ -120,7 +115,6 @@ Constructs a Value from a specified string. an object of type - an object of type @@ -135,7 +129,6 @@ Constructs a Value from a specified uint. an object of type - an object of type @@ -150,13 +143,12 @@ Constructs a Value from a specified ushort. an object of type - an object of type - + Method System.Void @@ -178,7 +170,6 @@ Constructs a Value from any object, including a managed type. a - a @@ -197,10 +188,13 @@ a a a - a - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -210,7 +204,7 @@ Accesses the value. - a + a @@ -224,7 +218,6 @@ Constructs an initialized value for a given type. a - a @@ -268,7 +261,6 @@ Constructs a value initialized for a given property name. a a - a @@ -286,10 +278,13 @@ a a a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -302,7 +297,6 @@ Constructs a Value from an object of a given type an object the (C/GType) name of 's type - an object of type @@ -319,7 +313,6 @@ Constructs a Value from an object of a given type an value the (C/GType) name of 's type - an object of type @@ -334,7 +327,6 @@ Constructs a value for a 64 bit integer. a - a @@ -348,9 +340,248 @@ Constructs a value for a 64 bit unsigned integer. a - a + + + Method + + System.Boolean + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Int32 + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.UInt32 + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.UInt16 + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Int64 + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.UInt64 + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + GLib.EnumWrapper + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Single + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Double + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.String + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.IntPtr + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + GLib.Opaque + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + GLib.Boxed + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + GLib.Object + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + GLib.UnwrappedObject + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/GLib/ValueArray.xml b/doc/en/GLib/ValueArray.xml index 042d0ee9d..e32b7386b 100644 --- a/doc/en/GLib/ValueArray.xml +++ b/doc/en/GLib/ValueArray.xml @@ -1,11 +1,9 @@ - + glib-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] - 1.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,41 +15,27 @@ - System.IDisposable + GLib.IWrapper System.Collections.ICollection - - System.Collections.IEnumerable - System.ICloneable - GLib.IWrapper + System.IDisposable - System.Reflection.DefaultMemberAttribute + System.Reflection.DefaultMember(MemberName="Item") - - - Method - - System.Void - - - - To be added - To be added - - + - + Method System.Void @@ -125,7 +109,7 @@ - + Method System.Void @@ -142,7 +126,7 @@ - + Method System.Collections.IEnumerator @@ -155,7 +139,7 @@ - + Method System.Object @@ -177,12 +161,11 @@ To be added a - a To be added - + Property System.IntPtr @@ -190,7 +173,7 @@ To be added - a + a To be added @@ -203,12 +186,12 @@ To be added - a + a To be added - + Property System.Int32 @@ -216,12 +199,12 @@ To be added - a + a To be added - + Property System.Boolean @@ -229,12 +212,12 @@ To be added - a + a To be added - + Property System.Object @@ -242,12 +225,12 @@ To be added - a + a To be added - + Property System.Object @@ -258,9 +241,9 @@ To be added a - a + a To be added - \ No newline at end of file + diff --git a/doc/en/GLib/WrapperClassAttribute.xml b/doc/en/GLib/WrapperClassAttribute.xml deleted file mode 100644 index 9b1c4f140..000000000 --- a/doc/en/GLib/WrapperClassAttribute.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - glib-sharp - - - 0.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - To be added - To be added - - - System.Attribute - - - - - - - Constructor - - - - To be added - To be added: an object of type 'GLib.WrapperClassAttribute' - To be added - - - - \ No newline at end of file diff --git a/doc/en/Gda/Application.xml b/doc/en/Gda/Application.xml index fdfd616d3..395993d18 100644 --- a/doc/en/Gda/Application.xml +++ b/doc/en/Gda/Application.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -79,12 +76,11 @@ To be added - a To be added - + Method System.Void @@ -99,7 +95,7 @@ - + Method System.Void diff --git a/doc/en/Gda/Blob.xml b/doc/en/Gda/Blob.xml index 05e681717..32c028bc4 100644 --- a/doc/en/Gda/Blob.xml +++ b/doc/en/Gda/Blob.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -161,4 +158,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/BlobMode.xml b/doc/en/Gda/BlobMode.xml index 87798f424..9d6cdfa97 100644 --- a/doc/en/Gda/BlobMode.xml +++ b/doc/en/Gda/BlobMode.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,20 +14,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -89,4 +76,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/Client.xml b/doc/en/Gda/Client.xml index 2b4fcf770..284a12990 100644 --- a/doc/en/Gda/Client.xml +++ b/doc/en/Gda/Client.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,27 +22,9 @@ Also provides a way to treat several connections as if they were only one (a con GLib.Object - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -346,7 +326,6 @@ Notifies an event to the given Gda.Client's listeners. The event can be anything To be added a - a To be added @@ -357,7 +336,6 @@ Notifies an event to the given Gda.Client's listeners. The event can be anything Default constructor for Gda.Client. - a To be added @@ -374,7 +352,7 @@ Notifies an event to the given Gda.Client's listeners. The event can be anything Gets the list of all open connections in the given Gda.Client object. - a + a To be added @@ -389,7 +367,11 @@ Gets the list of all open connections in the given Gda.Client object. To be added To be added - + + + GLib.Signal(CName="event_notification") + + Property @@ -399,7 +381,7 @@ Gets the list of all open connections in the given Gda.Client object. GType Property. - a + a Returns the native value for . @@ -432,9 +414,12 @@ Gets the list of all open connections in the given Gda.Client object. Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gda/ClientEvent.xml b/doc/en/Gda/ClientEvent.xml index edc94e253..c0459d23d 100644 --- a/doc/en/Gda/ClientEvent.xml +++ b/doc/en/Gda/ClientEvent.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -141,4 +127,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/Command.xml b/doc/en/Gda/Command.xml index e2ad9247f..0e1a4f890 100644 --- a/doc/en/Gda/Command.xml +++ b/doc/en/Gda/Command.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -25,7 +23,6 @@ One interesting thing about Gda.Command's is that they can be reused over and ov GLib.Opaque - @@ -59,7 +56,7 @@ Gets the of command. Sets the of command. - a + a To be added @@ -79,7 +76,7 @@ Gets the of cmd. Sets the of cmd. - a + a To be added @@ -99,7 +96,7 @@ Gets the command text. Sets the command text. - a + a To be added @@ -119,7 +116,7 @@ Gets the associated with the Command. Sets the associated with the Command. - a + a To be added @@ -133,7 +130,6 @@ Sets the associated with the Command. To be added a - a To be added @@ -155,9 +151,8 @@ Creates a new Gda.Command from the parameters. a a a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/CommandOptions.xml b/doc/en/Gda/CommandOptions.xml index affea6e53..7b5d9b50a 100644 --- a/doc/en/Gda/CommandOptions.xml +++ b/doc/en/Gda/CommandOptions.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,20 +14,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -89,4 +76,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/CommandType.xml b/doc/en/Gda/CommandType.xml index d4e0ded48..57fc79930 100644 --- a/doc/en/Gda/CommandType.xml +++ b/doc/en/Gda/CommandType.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -127,4 +113,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/Config.xml b/doc/en/Gda/Config.xml index 0e0955342..f59784046 100644 --- a/doc/en/Gda/Config.xml +++ b/doc/en/Gda/Config.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,7 +19,6 @@ System.Object - @@ -555,7 +552,6 @@ Gets the value of the specified configuration entry as a string. To be added - a To be added @@ -568,7 +564,7 @@ Gets the value of the specified configuration entry as a string. To be added - a + a To be added @@ -581,7 +577,7 @@ Gets the value of the specified configuration entry as a string. To be added - a + a To be added @@ -594,9 +590,9 @@ Gets the value of the specified configuration entry as a string. To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/ConfigListenerFunc.xml b/doc/en/Gda/ConfigListenerFunc.xml index 3b1ad5fb1..e2b0a3f14 100644 --- a/doc/en/Gda/ConfigListenerFunc.xml +++ b/doc/en/Gda/ConfigListenerFunc.xml @@ -1,30 +1,20 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -32,4 +22,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/Connection.xml b/doc/en/Gda/Connection.xml index 4e658cd4a..8ecf52dc1 100644 --- a/doc/en/Gda/Connection.xml +++ b/doc/en/Gda/Connection.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -25,27 +23,9 @@ Once obtained, applications can use Gda.Connection to execute commands, run tran GLib.Object - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -390,7 +370,6 @@ Creates a BLOB (Binary Large OBject) with read/write access. To be added a - a To be added @@ -418,7 +397,6 @@ Creates a new Gda.Connection object. a a a - a It is not intended to be used directly by applications. Use @@ -438,7 +416,7 @@ It is not intended to be used directly by applications. Use + a The connection string is the string sent over to the underlying database provider, which describes the parameters to be used to open a connection on the underlying data source. @@ -459,7 +437,7 @@ The connection string is the string sent over to the underlying database provide Retrieves a list of the last errors ocurred in the connection. - a + a You can make a copy of the list using . @@ -480,7 +458,7 @@ You can make a copy of the list using . Gets the used to open this connection. - a + a To be added @@ -497,7 +475,7 @@ Gets the used to open this connection. Gets the Data Source Name the connection object is connected to. - a + a To be added @@ -514,7 +492,7 @@ Gets the Data Source Name the connection object is connected to. Gets the name of the currently active database in the given Gda.Connection. - a + a To be added @@ -531,7 +509,7 @@ Gets the name of the currently active database in the given Gda.Connection. Gets the user name used to open this connection. - a + a To be added @@ -550,7 +528,7 @@ Gets the Gda.Client object associated with a connection. This is always the clie Associates a Gda.Client with this connection. This property (setter) is not intended to be called by applications. - a + a To be added @@ -567,7 +545,7 @@ Associates a Gda.Client with this connection. This property (setter) is not inte Gets the password used to open this connection. - a + a To be added @@ -584,7 +562,7 @@ Gets the password used to open this connection. Gets the version string of the underlying database server. - a + a To be added @@ -601,7 +579,7 @@ Gets the version string of the underlying database server. Gets the provider id that this connection is connected to. - a + a To be added @@ -616,7 +594,11 @@ Gets the provider id that this connection is connected to. To be added To be added - + + + GLib.Signal(CName="error") + + Property @@ -630,7 +612,7 @@ Gets the provider id that this connection is connected to. Checks whether a connection is open or not. - a true if the connection is open, false if it's not + a true if the connection is open, false if it's not To be added @@ -643,7 +625,7 @@ Checks whether a connection is open or not. GType Property. - a + a Returns the native value for . @@ -672,9 +654,12 @@ Checks whether a connection is open or not. Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gda/ConnectionFeature.xml b/doc/en/Gda/ConnectionFeature.xml index 978982522..0d3cbdc6f 100644 --- a/doc/en/Gda/ConnectionFeature.xml +++ b/doc/en/Gda/ConnectionFeature.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -225,4 +211,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/ConnectionOptions.xml b/doc/en/Gda/ConnectionOptions.xml index 7f4aa28f2..49ca009ef 100644 --- a/doc/en/Gda/ConnectionOptions.xml +++ b/doc/en/Gda/ConnectionOptions.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,20 +14,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -75,4 +62,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/ConnectionSchema.xml b/doc/en/Gda/ConnectionSchema.xml index 1580cfa62..d0a200ff6 100644 --- a/doc/en/Gda/ConnectionSchema.xml +++ b/doc/en/Gda/ConnectionSchema.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -239,4 +225,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/DataModel.xml b/doc/en/Gda/DataModel.xml index d4618ad0f..26a76f82f 100644 --- a/doc/en/Gda/DataModel.xml +++ b/doc/en/Gda/DataModel.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,27 +19,9 @@ Basic data model class. GLib.Object - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -460,7 +440,6 @@ This is the main function for accessing data in a model. To be added a - a To be added @@ -477,7 +456,7 @@ This is the main function for accessing data in a model. Returns the number of rows in the given data model. - a + a To be added @@ -497,7 +476,7 @@ Gets the type of command that generated this data model. Sets the type of command that generated this data model. - a + a To be added @@ -517,7 +496,7 @@ Gets the text of command that generated this data model. Sets the command text of the given model. - a + a To be added @@ -534,7 +513,7 @@ Sets the command text of the given model. Returns the number of columns in the given data model. - a + a To be added @@ -549,7 +528,11 @@ Returns the number of columns in the given data model. To be added To be added - + + + GLib.Signal(CName="changed") + + Event @@ -561,7 +544,11 @@ Returns the number of columns in the given data model. To be added To be added - + + + GLib.Signal(CName="row_inserted") + + Event @@ -573,7 +560,11 @@ Returns the number of columns in the given data model. To be added To be added - + + + GLib.Signal(CName="row_removed") + + Event @@ -585,7 +576,11 @@ Returns the number of columns in the given data model. To be added To be added - + + + GLib.Signal(CName="row_updated") + + Event @@ -597,7 +592,11 @@ Returns the number of columns in the given data model. To be added To be added - + + + GLib.Signal(CName="cancel_edit") + + Event @@ -609,7 +608,11 @@ Returns the number of columns in the given data model. To be added To be added - + + + GLib.Signal(CName="begin_edit") + + Event @@ -621,7 +624,11 @@ Returns the number of columns in the given data model. To be added To be added - + + + GLib.Signal(CName="end_edit") + + Property @@ -631,7 +638,7 @@ Returns the number of columns in the given data model. To be added - a + a To be added @@ -644,7 +651,7 @@ Returns the number of columns in the given data model. To be added - a + a To be added @@ -657,7 +664,7 @@ Returns the number of columns in the given data model. GType Property. - a + a Returns the native value for . @@ -764,10 +771,13 @@ Returns the number of columns in the given data model. Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -775,9 +785,8 @@ Returns the number of columns in the given data model. To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/DataModelArray.xml b/doc/en/Gda/DataModelArray.xml index 821ed12f5..c81808330 100644 --- a/doc/en/Gda/DataModelArray.xml +++ b/doc/en/Gda/DataModelArray.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,27 +19,9 @@ An implementation of based on an array. Gda.DataModel - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -68,7 +48,6 @@ Frees all the rows inserted in model. To be added a - a To be added @@ -86,7 +65,6 @@ Creates a new DataModelArray with a specified number of columns for rows in this a - a To be added @@ -102,7 +80,7 @@ Creates a new DataModelArray with a specified number of columns for rows in this Sets the number of columns for rows inserted in this model. - a must be greater than or equal to 0. + a must be greater than or equal to 0. To be added @@ -115,7 +93,7 @@ Sets the number of columns for rows inserted in this model. GType Property. - a + a Returns the native value for . @@ -129,9 +107,12 @@ Sets the number of columns for rows inserted in this model. Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gda/DataModelForeachFunc.xml b/doc/en/Gda/DataModelForeachFunc.xml index 585d4c180..ae198e8f4 100644 --- a/doc/en/Gda/DataModelForeachFunc.xml +++ b/doc/en/Gda/DataModelForeachFunc.xml @@ -1,30 +1,22 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. To be added To be added + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Boolean @@ -33,4 +25,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/DataModelHash.xml b/doc/en/Gda/DataModelHash.xml index 13938093b..82a2e9045 100644 --- a/doc/en/Gda/DataModelHash.xml +++ b/doc/en/Gda/DataModelHash.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -25,14 +23,7 @@ Unlike , this data model implementation store Gda.DataModel - - GLib.IWrapper - - - System.IDisposable - - @@ -80,18 +71,7 @@ Retrieves a row from the underlying hash table. To be added - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -139,7 +119,6 @@ Inserts a row in the model. To be added a - a To be added @@ -157,7 +136,6 @@ Creates a new DataModelHash with cols columns. a number of columns for rows in this data model. - a To be added @@ -173,7 +151,7 @@ Creates a new DataModelHash with cols columns. Sets the number of columns for rows inserted in this model. - a must be greater than or equal to 0 + a must be greater than or equal to 0 This property calls to free the existing rows if any. @@ -190,7 +168,7 @@ This property calls to free the existin GType Property. - a + a Returns the native value for . @@ -204,9 +182,12 @@ This property calls to free the existin Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gda/DataModelList.xml b/doc/en/Gda/DataModelList.xml index 6bf942c0d..731ef4424 100644 --- a/doc/en/Gda/DataModelList.xml +++ b/doc/en/Gda/DataModelList.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,27 +19,9 @@ based on a list. Gda.DataModel - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -72,7 +52,6 @@ Inserts a row in the model, using a . To be added a - a To be added @@ -87,7 +66,6 @@ Inserts a row in the model, using a . Default constructor. - a To be added @@ -105,7 +83,6 @@ Constructor which returns a newly allocated which a - a To be added @@ -118,7 +95,7 @@ Constructor which returns a newly allocated which GType Property. - a + a Returns the native value for . @@ -132,9 +109,12 @@ Constructor which returns a newly allocated which Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gda/DataSourceInfo.xml b/doc/en/Gda/DataSourceInfo.xml index 43fcca3ce..def832a1d 100644 --- a/doc/en/Gda/DataSourceInfo.xml +++ b/doc/en/Gda/DataSourceInfo.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -127,4 +124,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/Date.xml b/doc/en/Gda/Date.xml index efb457f34..5395c1604 100644 --- a/doc/en/Gda/Date.xml +++ b/doc/en/Gda/Date.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -88,4 +85,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/Error.xml b/doc/en/Gda/Error.xml index 52bdc2a52..7326e567f 100644 --- a/doc/en/Gda/Error.xml +++ b/doc/en/Gda/Error.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,14 +19,7 @@ Management of errors. GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -69,18 +60,7 @@ Creates a new list which contains the same errors as errors and adds a reference To be added - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -107,7 +87,6 @@ Frees the memory allocated by the error object. To be added a - a To be added @@ -118,7 +97,6 @@ Frees the memory allocated by the error object. Default constructor. - a To be added @@ -138,7 +116,7 @@ Gets error's SQL state. Sets error's SQL state. - a + a To be added @@ -158,7 +136,7 @@ Gets error's source. Sets error's source. - a + a To be added @@ -178,7 +156,7 @@ Gets error's number. Sets error's number. - a + a To be added @@ -198,7 +176,7 @@ Gets error's description. Sets error's description - a + a To be added @@ -211,7 +189,7 @@ Sets error's description GType Property. - a + a Returns the native value for . @@ -225,9 +203,12 @@ Sets error's description Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gda/ErrorArgs.xml b/doc/en/Gda/ErrorArgs.xml index eba283e73..adfeb17f0 100644 --- a/doc/en/Gda/ErrorArgs.xml +++ b/doc/en/Gda/ErrorArgs.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -33,7 +31,6 @@ GLib.SignalArgs - @@ -42,7 +39,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -55,9 +51,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/ErrorHandler.xml b/doc/en/Gda/ErrorHandler.xml index e1cee1ee7..01dcc04ce 100644 --- a/doc/en/Gda/ErrorHandler.xml +++ b/doc/en/Gda/ErrorHandler.xml @@ -1,15 +1,15 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -34,15 +34,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -51,4 +42,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/EventNotificationArgs.xml b/doc/en/Gda/EventNotificationArgs.xml index 22ec625cc..c72a563fe 100644 --- a/doc/en/Gda/EventNotificationArgs.xml +++ b/doc/en/Gda/EventNotificationArgs.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,7 +37,7 @@ To be added - a + a To be added @@ -54,7 +50,7 @@ To be added - a + a To be added @@ -67,9 +63,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/EventNotificationHandler.xml b/doc/en/Gda/EventNotificationHandler.xml index b52bee789..f13656b6e 100644 --- a/doc/en/Gda/EventNotificationHandler.xml +++ b/doc/en/Gda/EventNotificationHandler.xml @@ -1,15 +1,15 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/ExportFlags.xml b/doc/en/Gda/ExportFlags.xml index 08594b325..77b6a290a 100644 --- a/doc/en/Gda/ExportFlags.xml +++ b/doc/en/Gda/ExportFlags.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -57,4 +43,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/Field.xml b/doc/en/Gda/Field.xml index 675d9046b..a07d4463c 100644 --- a/doc/en/Gda/Field.xml +++ b/doc/en/Gda/Field.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.ValueType - @@ -69,7 +66,7 @@ To be added - a + a To be added @@ -82,9 +79,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/FieldAttributes.xml b/doc/en/Gda/FieldAttributes.xml index 35b8193e5..604f864ae 100644 --- a/doc/en/Gda/FieldAttributes.xml +++ b/doc/en/Gda/FieldAttributes.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ GLib.Opaque - @@ -53,7 +50,7 @@ To be added - a + a To be added @@ -66,7 +63,7 @@ To be added - a + a To be added @@ -79,7 +76,7 @@ To be added - a + a To be added @@ -92,7 +89,7 @@ To be added - a + a To be added @@ -105,7 +102,7 @@ To be added - a + a To be added @@ -118,7 +115,7 @@ To be added - a + a To be added @@ -131,7 +128,7 @@ To be added - a + a To be added @@ -144,7 +141,7 @@ To be added - a + a To be added @@ -157,7 +154,7 @@ To be added - a + a To be added @@ -170,7 +167,7 @@ To be added - a + a To be added @@ -183,7 +180,7 @@ To be added - a + a To be added @@ -196,7 +193,7 @@ To be added - a + a To be added @@ -210,7 +207,6 @@ To be added a - a To be added @@ -221,9 +217,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/File.xml b/doc/en/Gda/File.xml index f1d261439..4f12d1edb 100644 --- a/doc/en/Gda/File.xml +++ b/doc/en/Gda/File.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -60,9 +57,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/GeometricPoint.xml b/doc/en/Gda/GeometricPoint.xml index 65a78b03c..a07e3bffa 100644 --- a/doc/en/Gda/GeometricPoint.xml +++ b/doc/en/Gda/GeometricPoint.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -75,4 +72,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/Global.xml b/doc/en/Gda/Global.xml index aee148426..8c095d9d4 100644 --- a/doc/en/Gda/Global.xml +++ b/doc/en/Gda/Global.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -60,9 +57,8 @@ Default constructor - a - \ No newline at end of file + diff --git a/doc/en/Gda/InitFunc.xml b/doc/en/Gda/InitFunc.xml index 73c995ade..db474019f 100644 --- a/doc/en/Gda/InitFunc.xml +++ b/doc/en/Gda/InitFunc.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,9 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void - \ No newline at end of file + diff --git a/doc/en/Gda/Log.xml b/doc/en/Gda/Log.xml index a9d634235..55d9f7dc8 100644 --- a/doc/en/Gda/Log.xml +++ b/doc/en/Gda/Log.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,7 +19,6 @@ Object to log. System.Object - @@ -98,7 +95,6 @@ Disables GDA Logs. Default constructor. - a To be added @@ -115,7 +111,7 @@ Default constructor. Gets if Gda Logs are enabled. - a + a To be added @@ -139,4 +135,4 @@ Gets if Gda Logs are enabled. - \ No newline at end of file + diff --git a/doc/en/Gda/Main.xml b/doc/en/Gda/Main.xml index ec6d41004..d031f5bfe 100644 --- a/doc/en/Gda/Main.xml +++ b/doc/en/Gda/Main.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -53,9 +50,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/Money.xml b/doc/en/Gda/Money.xml index 6701a4287..e71d8f10d 100644 --- a/doc/en/Gda/Money.xml +++ b/doc/en/Gda/Money.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -75,4 +72,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/Numeric.xml b/doc/en/Gda/Numeric.xml index 5c6c22ec3..fc6de0a20 100644 --- a/doc/en/Gda/Numeric.xml +++ b/doc/en/Gda/Numeric.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -70,7 +67,7 @@ To be added - a + a To be added @@ -83,7 +80,7 @@ To be added - a + a To be added diff --git a/doc/en/Gda/Parameter.xml b/doc/en/Gda/Parameter.xml index dc4b83339..37540a058 100644 --- a/doc/en/Gda/Parameter.xml +++ b/doc/en/Gda/Parameter.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,7 +19,6 @@ Management of parameters. Parameters are the way clients have to send an unlimi GLib.Opaque - @@ -51,7 +48,7 @@ Gets the name of the Gda.Parameter. Sets the name of the Gda.Parameter. - a + a To be added @@ -71,7 +68,7 @@ Gets the value in the Gda.Parameter. Stores the given value in the Gda.Parameter. - a + a To be added @@ -85,7 +82,6 @@ Stores the given value in the Gda.Parameter. To be added a - a To be added @@ -105,7 +101,6 @@ Creates a new Gda.Parameter froma a value. a a - a To be added @@ -125,7 +120,6 @@ Creates a new Gda.Parameter from a value. a a - a To be added @@ -145,7 +139,6 @@ Creates a new Gda.Parameter object, which is usually used with a which is the name for the parameter being created. a - a To be added @@ -164,7 +157,6 @@ Creates a new Gda.Parameter from a a a - a To be added @@ -184,9 +176,8 @@ Creates a new Gda.Parameter from a . a a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/ParameterList.xml b/doc/en/Gda/ParameterList.xml index 8556c8bb7..9de0c59e1 100644 --- a/doc/en/Gda/ParameterList.xml +++ b/doc/en/Gda/ParameterList.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,11 +19,7 @@ A list of . GLib.Opaque - - GLib.IWrapper - - @@ -116,7 +110,6 @@ Releases all memory occupied by the object. To be added a - a To be added @@ -131,7 +124,6 @@ Releases all memory occupied by the object. Default constructor. - a To be added @@ -148,7 +140,7 @@ Default constructor. Gets the names of all parameters in the parameter list. - a + a To be added @@ -165,9 +157,9 @@ Gets the names of all parameters in the parameter list. Gets the number of parameters stored in the parameter list. - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/ProviderInfo.xml b/doc/en/Gda/ProviderInfo.xml index 0125c6b27..a1692502e 100644 --- a/doc/en/Gda/ProviderInfo.xml +++ b/doc/en/Gda/ProviderInfo.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -88,4 +85,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/QuarkList.xml b/doc/en/Gda/QuarkList.xml index 8547ea04b..c83cc0bc3 100644 --- a/doc/en/Gda/QuarkList.xml +++ b/doc/en/Gda/QuarkList.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -25,11 +23,7 @@ Quark list (lists of KEY == VALUES's). GLib.Opaque - - GLib.IWrapper - - @@ -121,7 +115,6 @@ Releases all memory occupied by the Gda.QuarkList. To be added a - a To be added @@ -136,7 +129,6 @@ Releases all memory occupied by the Gda.QuarkList. Default constructor. - a Creates a new GdaQuarkList, which is a set of key->value pairs, very similar to GLib's GHashTable, but with the only purpose to make easier the parsing and creation of data source connection strings. @@ -158,9 +150,8 @@ Creates a new GdaQuarkList given a connection string. a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/Row.xml b/doc/en/Gda/Row.xml index f2eea784a..3c7f7fd78 100644 --- a/doc/en/Gda/Row.xml +++ b/doc/en/Gda/Row.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,11 +19,7 @@ A object which represents a row. GLib.Opaque - - GLib.IWrapper - - @@ -73,7 +67,6 @@ Returns a stored in the Gda.Row. To be added a - a To be added @@ -93,7 +86,6 @@ Creates a new Gda.Row, which can hold count . a this row belongs to. a of in the new Gda.Row. - a To be added @@ -113,7 +105,6 @@ Creates a new Gda.Row from a list of a a - a To be added @@ -130,7 +121,7 @@ Creates a new Gda.Row from a list of Gets the which Gda.Row belongs to. - a + a To be added @@ -150,7 +141,7 @@ Gets the number of the Gda.Row, that is, its position in its containing data mod Sets the row number for the Gda.Row. - a + a To be added @@ -167,7 +158,7 @@ Sets the row number for the Gda.Row. Gets the number of columns that Gda.Row has. - a + a To be added @@ -187,7 +178,7 @@ Gets the unique identifier for this row. Sets the identifier for this row. Usually, this is called by providers. - a + a This identifier is assigned by the different providers, to uniquely identify rows returned to clients. If there is no ID, this means that the row has not been created by a provider, or that it the provider cannot identify it (ie, modifications to it won't take place into the database). @@ -196,4 +187,4 @@ This identifier is assigned by the different providers, to uniquely identify row - \ No newline at end of file + diff --git a/doc/en/Gda/RowInsertedEventArgs.xml b/doc/en/Gda/RowInsertedEventArgs.xml index 6f4fc9f47..547bce6b0 100644 --- a/doc/en/Gda/RowInsertedEventArgs.xml +++ b/doc/en/Gda/RowInsertedEventArgs.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/RowInsertedEventHandler.xml b/doc/en/Gda/RowInsertedEventHandler.xml index 23cc8a6fc..903c218d6 100644 --- a/doc/en/Gda/RowInsertedEventHandler.xml +++ b/doc/en/Gda/RowInsertedEventHandler.xml @@ -1,15 +1,15 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/RowRemovedEventArgs.xml b/doc/en/Gda/RowRemovedEventArgs.xml index f5cb10127..451f245db 100644 --- a/doc/en/Gda/RowRemovedEventArgs.xml +++ b/doc/en/Gda/RowRemovedEventArgs.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/RowRemovedEventHandler.xml b/doc/en/Gda/RowRemovedEventHandler.xml index 16c311439..baf26b622 100644 --- a/doc/en/Gda/RowRemovedEventHandler.xml +++ b/doc/en/Gda/RowRemovedEventHandler.xml @@ -1,15 +1,15 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/RowUpdatedEventArgs.xml b/doc/en/Gda/RowUpdatedEventArgs.xml index 7cd83d5f4..7639070b9 100644 --- a/doc/en/Gda/RowUpdatedEventArgs.xml +++ b/doc/en/Gda/RowUpdatedEventArgs.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/RowUpdatedEventHandler.xml b/doc/en/Gda/RowUpdatedEventHandler.xml index 7b3c241b8..0d0bd13d9 100644 --- a/doc/en/Gda/RowUpdatedEventHandler.xml +++ b/doc/en/Gda/RowUpdatedEventHandler.xml @@ -1,15 +1,15 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/Select.xml b/doc/en/Gda/Select.xml index 88b3759b7..d895a3f0e 100644 --- a/doc/en/Gda/Select.xml +++ b/doc/en/Gda/Select.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,27 +19,9 @@ Filtering data from . Gda.DataModelArray - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -98,7 +78,6 @@ After calling this function, if everything is successful, the Gda.Select object To be added a - a To be added @@ -113,7 +92,6 @@ After calling this function, if everything is successful, the Gda.Select object Creates a new Gda.Select object, which allows programs to filter 's based on a given SQL SELECT command. - a A GdaSelect is just another GdaDataModel-based class, so it can be used in the same way any other data model class is. @@ -129,7 +107,7 @@ A GdaSelect is just another GdaDataModel-based class, so it can be used in the s Sets the SQL command to be used on the given Gda.Select object for filtering rows from the source data model. - a + a To be added @@ -142,7 +120,7 @@ A GdaSelect is just another GdaDataModel-based class, so it can be used in the s GType Property. - a + a Returns the native value for . @@ -156,9 +134,12 @@ A GdaSelect is just another GdaDataModel-based class, so it can be used in the s Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gda/ServerProvider.xml b/doc/en/Gda/ServerProvider.xml index 669fbe1f5..28662f657 100644 --- a/doc/en/Gda/ServerProvider.xml +++ b/doc/en/Gda/ServerProvider.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,27 +15,9 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -302,7 +282,6 @@ To be added a - a To be added @@ -315,7 +294,7 @@ To be added - a + a To be added @@ -328,7 +307,7 @@ GType Property. - a + a Returns the native value for . @@ -342,10 +321,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -353,9 +335,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/Table.xml b/doc/en/Gda/Table.xml index cf30ce274..77952dfb1 100644 --- a/doc/en/Gda/Table.xml +++ b/doc/en/Gda/Table.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,27 +19,9 @@ An in-memory representation of a database table. Gda.DataModelArray - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -90,7 +70,6 @@ Adds a field to the Table. To be added a - a To be added @@ -104,7 +83,6 @@ Adds a field to the Table. To be added a Name for your new table. - a It is mainly used by the GdaXmlDatabase class, but you can also use it in your applications for whatever you may need it. @@ -126,7 +104,6 @@ It is mainly used by the GdaXmlDatabase class, but you can also use it in your a a a a - a This is very useful to maintain an in-memory copy of a given recordset obtained from a database. @@ -150,7 +127,7 @@ This is also used when exporting data to a GdaXmlDatabase object. Gets / Sets the name of the given Table. - a + a To be added @@ -163,7 +140,7 @@ Gets / Sets the name of the given Table. GType Property. - a + a Returns the native value for . @@ -177,9 +154,12 @@ Gets / Sets the name of the given Table. Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gda/Time.xml b/doc/en/Gda/Time.xml index cfb000c0e..f9687167b 100644 --- a/doc/en/Gda/Time.xml +++ b/doc/en/Gda/Time.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -96,7 +93,7 @@ To be added - a + a To be added diff --git a/doc/en/Gda/Timestamp.xml b/doc/en/Gda/Timestamp.xml index 9b8909e2b..64a25a994 100644 --- a/doc/en/Gda/Timestamp.xml +++ b/doc/en/Gda/Timestamp.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -135,7 +132,7 @@ To be added - a + a To be added @@ -148,7 +145,7 @@ To be added - a + a To be added diff --git a/doc/en/Gda/Transaction.xml b/doc/en/Gda/Transaction.xml index 8dd64460b..c4f93ecca 100644 --- a/doc/en/Gda/Transaction.xml +++ b/doc/en/Gda/Transaction.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,27 +19,9 @@ Management of transactions. GLib.Object - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -52,7 +32,6 @@ Management of transactions. To be added a - a To be added @@ -70,7 +49,6 @@ Construct this object, which allows a fine-tune and full control of transactions a - a To be added @@ -87,7 +65,7 @@ Construct this object, which allows a fine-tune and full control of transactions Gets / Sets the name of the given transaction. - a + a This is very useful when using providers that support named transactions. @@ -108,7 +86,7 @@ This is very useful when using providers that support named transactions. Gets / Sets the isolation level for the given transaction. - a + a This specifies the locking behavior for the database connection during the given transaction. @@ -125,7 +103,7 @@ This specifies the locking behavior for the database connection during the given GType Property. - a + a Returns the native value for . @@ -139,9 +117,12 @@ This specifies the locking behavior for the database connection during the given Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gda/TransactionIsolation.xml b/doc/en/Gda/TransactionIsolation.xml index 7d80ece33..cd0b8e30d 100644 --- a/doc/en/Gda/TransactionIsolation.xml +++ b/doc/en/Gda/TransactionIsolation.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -113,4 +99,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/Value.xml b/doc/en/Gda/Value.xml index 9ea4a606c..1a8764458 100644 --- a/doc/en/Gda/Value.xml +++ b/doc/en/Gda/Value.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,11 +14,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -181,7 +175,6 @@ To be added a - a To be added @@ -195,7 +188,6 @@ To be added a - a To be added @@ -209,7 +201,6 @@ To be added a - a To be added @@ -225,7 +216,6 @@ To be added a a - a To be added @@ -239,7 +229,6 @@ To be added a - a To be added @@ -253,7 +242,6 @@ To be added a - a To be added @@ -267,7 +255,6 @@ To be added a - a To be added @@ -281,7 +268,6 @@ To be added a - a To be added @@ -297,7 +283,6 @@ To be added a a - a To be added @@ -311,7 +296,6 @@ To be added a - a To be added @@ -325,7 +309,6 @@ To be added a - a To be added @@ -339,7 +322,6 @@ To be added a - a To be added @@ -353,7 +335,6 @@ To be added a - a To be added @@ -367,7 +348,6 @@ To be added a - a To be added @@ -378,7 +358,6 @@ To be added - a To be added @@ -392,7 +371,6 @@ To be added a - a To be added @@ -406,7 +384,6 @@ To be added a - a To be added @@ -420,7 +397,6 @@ To be added a - a To be added @@ -434,7 +410,6 @@ To be added a - a To be added @@ -448,7 +423,6 @@ To be added a - a To be added @@ -462,7 +436,6 @@ To be added a - a To be added @@ -476,7 +449,6 @@ To be added a - a To be added @@ -490,7 +462,6 @@ To be added a - a To be added @@ -504,7 +475,6 @@ To be added a - a To be added @@ -518,7 +488,6 @@ To be added a - a To be added @@ -532,7 +501,6 @@ To be added a - a To be added @@ -545,7 +513,7 @@ To be added - a + a To be added @@ -558,7 +526,7 @@ To be added - a + a To be added @@ -571,7 +539,7 @@ To be added - a + a To be added @@ -584,7 +552,7 @@ To be added - a + a To be added @@ -597,7 +565,7 @@ To be added - a + a To be added @@ -610,7 +578,7 @@ To be added - a + a To be added @@ -623,7 +591,7 @@ To be added - a + a To be added @@ -636,7 +604,7 @@ To be added - a + a To be added @@ -649,7 +617,7 @@ To be added - a + a To be added @@ -662,7 +630,7 @@ To be added - a + a To be added @@ -675,7 +643,7 @@ To be added - a + a To be added @@ -688,7 +656,7 @@ To be added - a + a To be added @@ -701,7 +669,7 @@ To be added - a + a To be added @@ -714,7 +682,7 @@ To be added - a + a To be added @@ -727,7 +695,7 @@ To be added - a + a To be added @@ -740,7 +708,7 @@ To be added - a + a To be added @@ -753,7 +721,7 @@ To be added - a + a To be added @@ -766,7 +734,7 @@ To be added - a + a To be added @@ -779,7 +747,7 @@ To be added - a + a To be added @@ -792,7 +760,7 @@ To be added - a + a To be added @@ -805,7 +773,7 @@ To be added - a + a To be added @@ -818,7 +786,7 @@ To be added - a + a To be added @@ -831,7 +799,7 @@ To be added - a + a To be added @@ -844,7 +812,7 @@ To be added - a + a To be added @@ -857,9 +825,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/ValueType.xml b/doc/en/Gda/ValueType.xml index 0bb5210d7..497c9c22c 100644 --- a/doc/en/Gda/ValueType.xml +++ b/doc/en/Gda/ValueType.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -393,4 +379,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/WarningArgs.xml b/doc/en/Gda/WarningArgs.xml index b1a04f7e0..9c07591eb 100644 --- a/doc/en/Gda/WarningArgs.xml +++ b/doc/en/Gda/WarningArgs.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/WarningHandler.xml b/doc/en/Gda/WarningHandler.xml index b5a452b36..e7c0d513d 100644 --- a/doc/en/Gda/WarningHandler.xml +++ b/doc/en/Gda/WarningHandler.xml @@ -1,15 +1,15 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gda/XmlConnection.xml b/doc/en/Gda/XmlConnection.xml index 6e1783450..664fc30b5 100644 --- a/doc/en/Gda/XmlConnection.xml +++ b/doc/en/Gda/XmlConnection.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,14 +19,7 @@ Management of connections to XML data sources GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -70,18 +61,7 @@ Creates a Gda.XmlConnection object from the given XML string. To be added - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -132,7 +112,6 @@ Loads a XML string into the object. To be added a - a To be added @@ -143,7 +122,6 @@ Loads a XML string into the object. To be added - a Creates a new GdaXmlConnection object, which lets you parse and/or create .connection files, which are XML files used to specify all parameters needed to open a database connection, and which can be used to store user's connection preferences, or for automatic connection to databases from unattended scripts and such. @@ -164,7 +142,7 @@ Creates a new GdaXmlConnection object, which lets you parse and/or create .conne Gets / Sets the password for the object. - a + a To be added @@ -181,7 +159,7 @@ Gets / Sets the password for the object. Gets / Sets the user name for the object. - a + a To be added @@ -198,7 +176,7 @@ Gets / Sets the user name for the object. Gets / Sets the data source name for the object. - a + a To be added @@ -211,7 +189,7 @@ Gets / Sets the data source name for the object. GType Property. - a + a Returns the native value for . @@ -225,10 +203,13 @@ Gets / Sets the data source name for the object. Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -239,7 +220,6 @@ Gets / Sets the data source name for the object. Creates a Connection object from the contents of file. a path to a .connection file. - a The file must be a properly formatted .connection file. diff --git a/doc/en/Gda/XmlDatabase.xml b/doc/en/Gda/XmlDatabase.xml index 4ed7b21e1..48ee52aee 100644 --- a/doc/en/Gda/XmlDatabase.xml +++ b/doc/en/Gda/XmlDatabase.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -28,14 +26,7 @@ With this set of functions, applications can bypass the normal libgda operation GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -52,18 +43,7 @@ With this set of functions, applications can bypass the normal libgda operation To be added - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -146,7 +126,6 @@ Emits the Event. To be added a - a To be added @@ -161,7 +140,6 @@ Emits the Event. Default Constructor. - a To be added @@ -175,7 +153,6 @@ Default Constructor. To be added a - a To be added @@ -191,7 +168,6 @@ Default Constructor. To be added a a - a To be added @@ -211,7 +187,6 @@ Default Constructor. a a a - a To be added @@ -228,7 +203,7 @@ Default Constructor. Gets / Sets the uri of the object. - a + a This uri will be used when saving the XML Database. @@ -249,7 +224,7 @@ This uri will be used when saving the XML Database. Gets / Sets the user defined version of the object. - a + a To be added @@ -266,7 +241,7 @@ Gets / Sets the user defined version of the object. Gets the version of libGda used to create the object. - a + a This version is the one that was used for saving the XML file last time it was saved. This value can only be "get" as it is an internal information related to the creation of the Gda.XmlDatabase object. To get the user defined database version, use the property instead. @@ -287,7 +262,7 @@ This version is the one that was used for saving the XML file last time it was s Gets / Sets the name of the object. - a + a To be added @@ -304,7 +279,7 @@ Gets / Sets the name of the object. Gets a list of all table names present in the database. - a + a To be added @@ -319,7 +294,11 @@ Gets a list of all table names present in the database. To be added To be added - + + + GLib.Signal(CName="changed") + + Method @@ -342,7 +321,7 @@ Gets a list of all table names present in the database. GType Property. - a + a Returns the native value for . @@ -368,9 +347,12 @@ Gets a list of all table names present in the database. Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gda/XmlDocument.xml b/doc/en/Gda/XmlDocument.xml index 4ee0051b7..43cc98d25 100644 --- a/doc/en/Gda/XmlDocument.xml +++ b/doc/en/Gda/XmlDocument.xml @@ -1,12 +1,10 @@ - + gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,27 +19,9 @@ Base class for XML document management. GLib.Object - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -108,7 +88,6 @@ Constructs a new XmlDocument. To be added a - a To be added @@ -126,7 +105,6 @@ Creates s new Gda.XmlDocument, with a root document. a - a To be added @@ -143,7 +121,7 @@ Creates s new Gda.XmlDocument, with a root document. Gets / Sets the compression mode that object should use. - a + a To be added @@ -158,7 +136,11 @@ Gets / Sets the compression mode that object should use. To be added To be added - + + + GLib.Signal(CName="error") + + Event @@ -170,7 +152,11 @@ Gets / Sets the compression mode that object should use. To be added To be added - + + + GLib.Signal(CName="warning") + + Property @@ -180,7 +166,7 @@ Gets / Sets the compression mode that object should use. GType Property. - a + a Returns the native value for . @@ -224,9 +210,12 @@ Gets / Sets the compression mode that object should use. Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gda/Xql.xml b/doc/en/Gda/Xql.xml index 9ef7ec9ed..9889a6ea2 100644 --- a/doc/en/Gda/Xql.xml +++ b/doc/en/Gda/Xql.xml @@ -4,9 +4,7 @@ gda-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -42,9 +39,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlAtom.xml b/doc/en/Gda/XqlAtom.xml index 96c817b27..8f5eb96a5 100644 --- a/doc/en/Gda/XqlAtom.xml +++ b/doc/en/Gda/XqlAtom.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ Gda.XqlItem - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -47,10 +27,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -61,7 +44,6 @@ To be added a - a To be added @@ -75,7 +57,6 @@ To be added a - a To be added @@ -88,9 +69,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlBin.xml b/doc/en/Gda/XqlBin.xml index effef0c68..ce2e70df6 100644 --- a/doc/en/Gda/XqlBin.xml +++ b/doc/en/Gda/XqlBin.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Gda.XqlItem - - GLib.IWrapper - - - System.IDisposable - - @@ -190,18 +181,7 @@ To be added - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -212,10 +192,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -226,7 +209,6 @@ To be added a - a To be added @@ -244,7 +226,6 @@ a a a - a To be added @@ -255,7 +236,6 @@ To be added - a To be added @@ -269,7 +249,6 @@ To be added a - a To be added @@ -289,7 +268,6 @@ a a a - a To be added @@ -302,7 +280,7 @@ To be added - a + a To be added @@ -315,9 +293,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlColumn.xml b/doc/en/Gda/XqlColumn.xml index 38b66e584..9d2b2f0a8 100644 --- a/doc/en/Gda/XqlColumn.xml +++ b/doc/en/Gda/XqlColumn.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ Gda.XqlAtom - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -47,10 +27,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -61,7 +44,6 @@ To be added a - a To be added @@ -72,7 +54,6 @@ To be added - a To be added @@ -88,7 +69,6 @@ To be added a a - a To be added @@ -101,9 +81,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlConst.xml b/doc/en/Gda/XqlConst.xml index 8f941ef06..324441382 100644 --- a/doc/en/Gda/XqlConst.xml +++ b/doc/en/Gda/XqlConst.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ Gda.XqlAtom - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -47,10 +27,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -61,7 +44,6 @@ To be added a - a To be added @@ -72,7 +54,6 @@ To be added - a To be added @@ -92,7 +73,6 @@ a a a - a To be added @@ -105,9 +85,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlDelete.xml b/doc/en/Gda/XqlDelete.xml index 1c150d72c..0e048a4d8 100644 --- a/doc/en/Gda/XqlDelete.xml +++ b/doc/en/Gda/XqlDelete.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ Gda.XqlDml - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -47,10 +27,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -61,7 +44,6 @@ To be added a - a To be added @@ -72,7 +54,6 @@ To be added - a To be added @@ -85,9 +66,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlDml.xml b/doc/en/Gda/XqlDml.xml index c6bfcd572..7648be1db 100644 --- a/doc/en/Gda/XqlDml.xml +++ b/doc/en/Gda/XqlDml.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ Gda.XqlItem - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -224,10 +204,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -238,7 +221,6 @@ To be added a - a To be added @@ -249,7 +231,6 @@ To be added - a To be added @@ -262,9 +243,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlDual.xml b/doc/en/Gda/XqlDual.xml index 47d308241..d53d0efaf 100644 --- a/doc/en/Gda/XqlDual.xml +++ b/doc/en/Gda/XqlDual.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Gda.XqlItem - - GLib.IWrapper - - - System.IDisposable - - @@ -273,18 +264,7 @@ To be added - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -295,10 +275,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -309,7 +292,6 @@ To be added a - a To be added @@ -327,7 +309,6 @@ a a a - a To be added @@ -338,7 +319,6 @@ To be added - a To be added @@ -354,7 +334,6 @@ To be added a a - a To be added @@ -376,7 +355,6 @@ a a a - a To be added @@ -389,7 +367,7 @@ To be added - a + a To be added @@ -402,7 +380,7 @@ To be added - a + a To be added @@ -415,9 +393,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlField.xml b/doc/en/Gda/XqlField.xml index c7e9a82e3..68abb574d 100644 --- a/doc/en/Gda/XqlField.xml +++ b/doc/en/Gda/XqlField.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ Gda.XqlAtom - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -47,10 +27,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -61,7 +44,6 @@ To be added a - a To be added @@ -72,7 +54,6 @@ To be added - a To be added @@ -90,7 +71,6 @@ a a a - a To be added @@ -103,9 +83,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlFunc.xml b/doc/en/Gda/XqlFunc.xml index df7d3bbfb..08cd76936 100644 --- a/doc/en/Gda/XqlFunc.xml +++ b/doc/en/Gda/XqlFunc.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ Gda.XqlBin - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -85,10 +65,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -99,7 +82,6 @@ To be added a - a To be added @@ -110,7 +92,6 @@ To be added - a To be added @@ -128,7 +109,6 @@ a a a - a To be added @@ -141,9 +121,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlInsert.xml b/doc/en/Gda/XqlInsert.xml index 9313962ff..4c9c14d10 100644 --- a/doc/en/Gda/XqlInsert.xml +++ b/doc/en/Gda/XqlInsert.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ Gda.XqlDml - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -47,10 +27,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -61,7 +44,6 @@ To be added a - a To be added @@ -72,7 +54,6 @@ To be added - a To be added @@ -85,9 +66,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlItem.xml b/doc/en/Gda/XqlItem.xml index 40f64b153..d3a128176 100644 --- a/doc/en/Gda/XqlItem.xml +++ b/doc/en/Gda/XqlItem.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -186,10 +166,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -200,7 +183,6 @@ To be added a - a To be added @@ -211,7 +193,6 @@ To be added - a To be added @@ -224,7 +205,7 @@ To be added - a + a To be added @@ -237,7 +218,7 @@ To be added - a + a To be added @@ -250,9 +231,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlJoin.xml b/doc/en/Gda/XqlJoin.xml index 936924b2b..a728e9cf1 100644 --- a/doc/en/Gda/XqlJoin.xml +++ b/doc/en/Gda/XqlJoin.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ Gda.XqlDual - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -47,10 +27,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -61,7 +44,6 @@ To be added a - a To be added @@ -72,7 +54,6 @@ To be added - a To be added @@ -90,7 +71,6 @@ a a a - a To be added @@ -103,9 +83,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlList.xml b/doc/en/Gda/XqlList.xml index 9106cefe2..47e7cf2a4 100644 --- a/doc/en/Gda/XqlList.xml +++ b/doc/en/Gda/XqlList.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Gda.XqlItem - - GLib.IWrapper - - - System.IDisposable - - @@ -170,18 +161,7 @@ To be added - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -192,10 +172,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -206,7 +189,6 @@ To be added a - a To be added @@ -220,7 +202,6 @@ To be added a - a To be added @@ -231,7 +212,6 @@ To be added - a To be added @@ -244,9 +224,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlQuery.xml b/doc/en/Gda/XqlQuery.xml index b99c8655c..3e5eb9087 100644 --- a/doc/en/Gda/XqlQuery.xml +++ b/doc/en/Gda/XqlQuery.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ Gda.XqlBin - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -47,10 +27,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -61,7 +44,6 @@ To be added a - a To be added @@ -72,7 +54,6 @@ To be added - a To be added @@ -86,7 +67,6 @@ To be added a - a To be added @@ -99,9 +79,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlSelect.xml b/doc/en/Gda/XqlSelect.xml index 7d4a3cf7e..a0b847859 100644 --- a/doc/en/Gda/XqlSelect.xml +++ b/doc/en/Gda/XqlSelect.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ Gda.XqlDml - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -47,10 +27,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -61,7 +44,6 @@ To be added a - a To be added @@ -72,7 +54,6 @@ To be added - a To be added @@ -85,9 +66,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlStack.xml b/doc/en/Gda/XqlStack.xml index af993d121..c006f6b66 100644 --- a/doc/en/Gda/XqlStack.xml +++ b/doc/en/Gda/XqlStack.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -88,10 +68,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -102,7 +85,6 @@ To be added a - a To be added @@ -113,7 +95,6 @@ To be added - a To be added @@ -126,9 +107,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlTarget.xml b/doc/en/Gda/XqlTarget.xml index 6f190e435..841bbc2cd 100644 --- a/doc/en/Gda/XqlTarget.xml +++ b/doc/en/Gda/XqlTarget.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ Gda.XqlBin - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -47,10 +27,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -61,7 +44,6 @@ To be added a - a To be added @@ -72,7 +54,6 @@ To be added - a To be added @@ -90,7 +71,6 @@ a a a - a To be added @@ -103,9 +83,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlUpdate.xml b/doc/en/Gda/XqlUpdate.xml index 8278fad7d..3a4d29bf1 100644 --- a/doc/en/Gda/XqlUpdate.xml +++ b/doc/en/Gda/XqlUpdate.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ Gda.XqlDml - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -47,10 +27,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -61,7 +44,6 @@ To be added a - a To be added @@ -72,7 +54,6 @@ To be added - a To be added @@ -85,9 +66,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlValue.xml b/doc/en/Gda/XqlValue.xml index ed57ea2ad..91c415667 100644 --- a/doc/en/Gda/XqlValue.xml +++ b/doc/en/Gda/XqlValue.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ Gda.XqlBin - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -47,10 +27,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -61,7 +44,6 @@ To be added a - a To be added @@ -72,7 +54,6 @@ To be added - a To be added @@ -86,7 +67,6 @@ To be added a - a To be added @@ -99,9 +79,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gda/XqlValueRef.xml b/doc/en/Gda/XqlValueRef.xml index 6dd1f34aa..279fd3fa0 100644 --- a/doc/en/Gda/XqlValueRef.xml +++ b/doc/en/Gda/XqlValueRef.xml @@ -1,11 +1,9 @@ - + gda-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,27 +14,9 @@ Gda.XqlAtom - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -47,10 +27,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -61,7 +44,6 @@ To be added a - a To be added @@ -72,7 +54,6 @@ To be added - a To be added @@ -85,9 +66,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/AreaUpdatedArgs.xml b/doc/en/Gdk/AreaUpdatedArgs.xml index d95fb105e..323b396a9 100644 --- a/doc/en/Gdk/AreaUpdatedArgs.xml +++ b/doc/en/Gdk/AreaUpdatedArgs.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The height of the screen area that was updated. - A + A @@ -52,7 +48,7 @@ The width of the screen area that was updated. - A + A @@ -64,7 +60,7 @@ The Y coordinate of the upper left point in the updated area. - A + A @@ -76,9 +72,9 @@ The X coordinate of the upper left point in the updated area. - A + A - \ No newline at end of file + diff --git a/doc/en/Gdk/AreaUpdatedHandler.xml b/doc/en/Gdk/AreaUpdatedHandler.xml index bed0fc220..c34279e37 100644 --- a/doc/en/Gdk/AreaUpdatedHandler.xml +++ b/doc/en/Gdk/AreaUpdatedHandler.xml @@ -1,12 +1,13 @@ - + gdk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gdk/Atom.xml b/doc/en/Gdk/Atom.xml index 9db02fe54..fea2338af 100644 --- a/doc/en/Gdk/Atom.xml +++ b/doc/en/Gdk/Atom.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,11 +16,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -52,7 +46,6 @@ Internal constructor Pointer to the C object. - An instance of Atom, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -67,9 +60,25 @@ Determines the string corresponding to an atom. - A newly-allocated string containing the string corresponding to the atom. + A newly-allocated string containing the string corresponding to the atom. None. + + + Method + + System.String + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gdk/AxisUse.xml b/doc/en/Gdk/AxisUse.xml index a62e1e695..d62e1eaf8 100644 --- a/doc/en/Gdk/AxisUse.xml +++ b/doc/en/Gdk/AxisUse.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.AxisUseGType)) + + @@ -147,4 +138,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/BRESINFO.xml b/doc/en/Gdk/BRESINFO.xml index fe8460bf6..166cde54f 100644 --- a/doc/en/Gdk/BRESINFO.xml +++ b/doc/en/Gdk/BRESINFO.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -126,4 +123,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/ByteOrder.xml b/doc/en/Gdk/ByteOrder.xml index 089f58057..b9c253eec 100644 --- a/doc/en/Gdk/ByteOrder.xml +++ b/doc/en/Gdk/ByteOrder.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.ByteOrderGType)) + + @@ -67,4 +58,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/CapStyle.xml b/doc/en/Gdk/CapStyle.xml index e3f0805ad..5600d397c 100644 --- a/doc/en/Gdk/CapStyle.xml +++ b/doc/en/Gdk/CapStyle.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.CapStyleGType)) + + @@ -95,4 +86,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Char.xml b/doc/en/Gdk/Char.xml index a5ef66839..8a41fb4e4 100644 --- a/doc/en/Gdk/Char.xml +++ b/doc/en/Gdk/Char.xml @@ -4,8 +4,6 @@ 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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -97,9 +94,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/ClosedArgs.xml b/doc/en/Gdk/ClosedArgs.xml index 2343c5376..921ef3c53 100644 --- a/doc/en/Gdk/ClosedArgs.xml +++ b/doc/en/Gdk/ClosedArgs.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ Returns true if the display was closed due to an error. - True if the display was closed due to an error. + True if the display was closed due to an error. None. - \ No newline at end of file + diff --git a/doc/en/Gdk/ClosedHandler.xml b/doc/en/Gdk/ClosedHandler.xml index ccc9663f3..d55bd379b 100644 --- a/doc/en/Gdk/ClosedHandler.xml +++ b/doc/en/Gdk/ClosedHandler.xml @@ -1,14 +1,14 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -36,4 +27,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gdk/Color.xml b/doc/en/Gdk/Color.xml index a444adf9e..7648bdab1 100644 --- a/doc/en/Gdk/Color.xml +++ b/doc/en/Gdk/Color.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -45,7 +43,6 @@ System.ValueType - @@ -73,7 +70,6 @@ Red value (0-255) Green value (0-255) Blue value (0-255) - The constructed color structure This constructs the color from three byte values for red, @@ -237,7 +233,7 @@ The GLib.GType for Gdk.Color - a + a The GLib.GType for the Gdk.Color class. @@ -376,5 +372,55 @@ To be added + + + Method + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + Method + + GLib.Value + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Gdk.Color + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gdk/Colormap.xml b/doc/en/Gdk/Colormap.xml index 13899ae7a..48fcdf7ac 100644 --- a/doc/en/Gdk/Colormap.xml +++ b/doc/en/Gdk/Colormap.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -48,7 +39,6 @@ Internal constructor Pointer to the C object. - An instance of Colormap, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -66,7 +56,6 @@ Creates a new colormap for the given visual. A if true, the newly created colormap will be a private colormap, and all colors in it will be allocated for the applications use. - The new None. @@ -78,7 +67,7 @@ Gets the system's default colormap for the default screen. - The system's default colormap for the default screen. + The system's default colormap for the default screen. None. @@ -90,7 +79,7 @@ Returns the visual for which a given colormap was created. - The of the colormap. + The of the colormap. None. @@ -122,7 +111,7 @@ Gets the screen for which this colormap was created. - The screen for which this colormap was created. + The screen for which this colormap was created. None. @@ -135,7 +124,7 @@ GType Property. - a + a Returns the native value for . @@ -175,7 +164,7 @@ - + Method System.Int32 @@ -208,10 +197,13 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -221,10 +213,14 @@ To be added - a + a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -274,9 +270,10 @@ The size of the - The size of the - + The size of the + + - \ No newline at end of file + diff --git a/doc/en/Gdk/Colorspace.xml b/doc/en/Gdk/Colorspace.xml index b72cd7ad0..693eb2a29 100644 --- a/doc/en/Gdk/Colorspace.xml +++ b/doc/en/Gdk/Colorspace.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.ColorspaceGType)) + + @@ -56,4 +47,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/CrossingMode.xml b/doc/en/Gdk/CrossingMode.xml index 79a19c432..6e38f4e19 100644 --- a/doc/en/Gdk/CrossingMode.xml +++ b/doc/en/Gdk/CrossingMode.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.CrossingModeGType)) + + @@ -82,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Cursor.xml b/doc/en/Gdk/Cursor.xml index e2aeb5d3f..ca85cc7ba 100644 --- a/doc/en/Gdk/Cursor.xml +++ b/doc/en/Gdk/Cursor.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ GLib.Opaque - @@ -52,7 +49,7 @@ Returns the display on which the is defined. - The where the cursor is defined. + The where the cursor is defined. @@ -66,7 +63,6 @@ Internal constructor. raw managed pointer. - A new . This is an internal constructor, do not use it. @@ -80,7 +76,6 @@ Creates a cursor from standard definitions. The cursor type. - a Creates a new cursor from the set of builtin cursors for the default display. See gdk_cursor_new_for_display(). To make the cursor invisible, use gdk_cursor_new_from_pixmap() to create a cursor with no pixels in it. @@ -99,7 +94,6 @@ To make the cursor invisible, use gdk_cursor_new_from_pixmap() to create a curso Creates a new cursor from the set of builtin cursors. The for which the cursor will be created. Cursor to create. - A new . None. @@ -123,7 +117,6 @@ To make the cursor invisible, use gdk_cursor_new_from_pixmap() to create a curso the background color, used for the bits in the source which are 0. The color does not have to be allocated first. the horizontal offset of the 'hotspot' of the cursor. the vertical offset of the 'hotspot' of the cursor. - a Creates a new cursor from a given pixmap and mask. Both the pixmap and mask must have a depth of 1 (i.e. each pixel has only 2 values - on or off). The standard cursor size is 16 by 16 pixels. @@ -145,7 +138,7 @@ Gdk.Cursor cursor = new Gdk.Cursor (pixmap, mask); GType Property. - a + a Returns the native value for . @@ -165,9 +158,8 @@ Gdk.Cursor cursor = new Gdk.Cursor (pixmap, mask); a a a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/CursorType.xml b/doc/en/Gdk/CursorType.xml index 23291d880..60f09de8b 100644 --- a/doc/en/Gdk/CursorType.xml +++ b/doc/en/Gdk/CursorType.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.CursorTypeGType)) + + @@ -1070,4 +1061,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/DestroyNotify.xml b/doc/en/Gdk/DestroyNotify.xml index 57fb1d32b..efd03ec89 100644 --- a/doc/en/Gdk/DestroyNotify.xml +++ b/doc/en/Gdk/DestroyNotify.xml @@ -1,9 +1,8 @@ - + gdk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -13,19 +12,10 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void - \ No newline at end of file + diff --git a/doc/en/Gdk/Device.xml b/doc/en/Gdk/Device.xml index 884f2f879..76ec4a35a 100644 --- a/doc/en/Gdk/Device.xml +++ b/doc/en/Gdk/Device.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -64,7 +55,6 @@ Internal constructor Pointer to the C object. - An instance of Device, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -78,7 +68,7 @@ Returns the core pointer device for the default display. - the core pointer device. + the core pointer device. None. @@ -127,7 +117,7 @@ GType Property. - a + a Returns the native value for . @@ -141,10 +131,13 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -152,7 +145,6 @@ Internal constructor. - A new None. @@ -165,7 +157,7 @@ To be added - a + a To be added @@ -178,7 +170,7 @@ To be added - a + a To be added @@ -191,7 +183,7 @@ To be added - a + a To be added @@ -204,7 +196,7 @@ To be added - a + a To be added @@ -217,7 +209,7 @@ To be added - a + a To be added @@ -230,12 +222,12 @@ To be added - a + a To be added - + Method System.Boolean @@ -255,7 +247,7 @@ - + Method System.Void @@ -326,4 +318,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/DeviceAxis.xml b/doc/en/Gdk/DeviceAxis.xml index aa90c3f55..20c6d47e0 100644 --- a/doc/en/Gdk/DeviceAxis.xml +++ b/doc/en/Gdk/DeviceAxis.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -100,4 +97,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/DeviceKey.xml b/doc/en/Gdk/DeviceKey.xml index 1746cc3a9..dede2550f 100644 --- a/doc/en/Gdk/DeviceKey.xml +++ b/doc/en/Gdk/DeviceKey.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -74,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Display.xml b/doc/en/Gdk/Display.xml index 756780fc2..ce43722cd 100644 --- a/doc/en/Gdk/Display.xml +++ b/doc/en/Gdk/Display.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -32,14 +30,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -263,7 +254,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -275,7 +265,7 @@ Get the default for the display. - the default object for display. + the default object for display. To be added @@ -287,8 +277,8 @@ The name of the display - A representing the - display name. + A representing the + display name. @@ -304,7 +294,7 @@ Sets the double-click timeout. a - a , or null if there is no default display. + a , or null if there is no default display. Sets the double click time (two clicks within this time interval count as a double click). Applications @@ -321,7 +311,7 @@ The default screen.. - The screen represending the DefaultScreen. + The screen represending the DefaultScreen. To be added @@ -333,7 +323,7 @@ Returns the core pointer device for the given display. - The core pointer for the display. + The core pointer for the display. To be added @@ -345,8 +335,8 @@ To be added. - - + + To be added @@ -358,7 +348,7 @@ To be added - a + a To be added @@ -373,7 +363,11 @@ This event is emitted when the connect to the windowing system is closed. None. - + + + GLib.Signal(CName="closed") + + Method @@ -426,7 +420,7 @@ Gets the current location of the pointer and the current modifier mask for a given display. - a + a To be added @@ -455,10 +449,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -479,7 +476,6 @@ To be added - a To be added @@ -568,7 +564,7 @@ To be added - a + a To be added @@ -580,7 +576,7 @@ To be added - a + a To be added @@ -593,7 +589,7 @@ To be added - a + a To be added @@ -716,4 +712,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/DisplayManager.xml b/doc/en/Gdk/DisplayManager.xml index 82618b24f..0dbd5569d 100644 --- a/doc/en/Gdk/DisplayManager.xml +++ b/doc/en/Gdk/DisplayManager.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -62,7 +53,6 @@ Internal constructor. raw unmanaged pointer. - A new This constructor is internal and should not be used. @@ -77,10 +67,14 @@ Access and modify the default display. Sets the as the default display. - The default . + The default . None. - + + + GLib.Property(Name="default-display") + + Event @@ -92,7 +86,11 @@ Event emitted when a display is opened. None. - + + + GLib.Signal(CName="display_opened") + + Property @@ -102,7 +100,7 @@ GType Property. - a + a Returns the native value for . @@ -131,10 +129,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -155,9 +156,8 @@ Do not use. - A useless This object is a singleton object, and should be accessed through instead of creating a new instance. - \ No newline at end of file + diff --git a/doc/en/Gdk/DisplayOpenedArgs.xml b/doc/en/Gdk/DisplayOpenedArgs.xml index 786a05b43..dcf8428f9 100644 --- a/doc/en/Gdk/DisplayOpenedArgs.xml +++ b/doc/en/Gdk/DisplayOpenedArgs.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The opened display. - The newly opened . + The newly opened . None. - \ No newline at end of file + diff --git a/doc/en/Gdk/DisplayOpenedHandler.xml b/doc/en/Gdk/DisplayOpenedHandler.xml index b3519a1be..685aabf9f 100644 --- a/doc/en/Gdk/DisplayOpenedHandler.xml +++ b/doc/en/Gdk/DisplayOpenedHandler.xml @@ -1,14 +1,14 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -36,4 +27,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gdk/DisplayPointerHooks.xml b/doc/en/Gdk/DisplayPointerHooks.xml index 075285e80..2badcd65b 100644 --- a/doc/en/Gdk/DisplayPointerHooks.xml +++ b/doc/en/Gdk/DisplayPointerHooks.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -48,4 +45,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Drag.xml b/doc/en/Gdk/Drag.xml index 28c3649e2..37f1e9a2b 100644 --- a/doc/en/Gdk/Drag.xml +++ b/doc/en/Gdk/Drag.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -125,7 +122,6 @@ To be added - a To be added @@ -236,4 +232,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/DragAction.xml b/doc/en/Gdk/DragAction.xml index bae1eefc8..8a2e2e541 100644 --- a/doc/en/Gdk/DragAction.xml +++ b/doc/en/Gdk/DragAction.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.DragActionGType)) + + + System.Flags + + @@ -121,4 +115,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/DragContext.xml b/doc/en/Gdk/DragContext.xml index ef9f8426d..4b028214d 100644 --- a/doc/en/Gdk/DragContext.xml +++ b/doc/en/Gdk/DragContext.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -48,7 +39,6 @@ Internal constructor Pointer to the C object. - An instance of DragContext, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -61,7 +51,6 @@ Default constructor. - A new None. @@ -74,7 +63,7 @@ The DND protocol that governs this drag. - The DND protocol which governs this drag. + The DND protocol which governs this drag. None. @@ -87,7 +76,7 @@ True if the context is used on the source side. - True if the context is used on the source side. + True if the context is used on the source side. None. @@ -100,7 +89,7 @@ The source of this drag. - The source of this drag. + The source of this drag. None. @@ -113,12 +102,12 @@ The destination window of this drag. - The destination window of this drag. + The destination window of this drag. None. - + Property Gdk.Atom[] @@ -126,7 +115,7 @@ A list of targets offered by the source. - A list of targets offered by the source. + A list of targets offered by the source. None. @@ -139,7 +128,7 @@ Various actions proposed by the source when the is - Various actions proposed by the source when the is + Various actions proposed by the source when the is None. @@ -152,7 +141,7 @@ The action suggested by the source. - The suggested by the source. + The suggested by the source. None. @@ -165,7 +154,7 @@ The action chosen by the destination. - The chosen by the destination. + The chosen by the destination. None. @@ -178,7 +167,7 @@ A timestamp, in milliseconds, recording the start time of this drag. - A timestamp, in milliseconds, recording the start time of this drag. + A timestamp, in milliseconds, recording the start time of this drag. None. @@ -191,7 +180,7 @@ GType Property. - a + a Returns the native value for . @@ -205,10 +194,13 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -234,4 +226,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/DragProtocol.xml b/doc/en/Gdk/DragProtocol.xml index 1ba9602f5..c7a100a09 100644 --- a/doc/en/Gdk/DragProtocol.xml +++ b/doc/en/Gdk/DragProtocol.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.DragProtocolGType)) + + @@ -135,4 +126,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Drawable.xml b/doc/en/Gdk/Drawable.xml index 32a84b2b7..a354fc36f 100644 --- a/doc/en/Gdk/Drawable.xml +++ b/doc/en/Gdk/Drawable.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,14 +16,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -113,14 +104,15 @@ - Render a onto the Drawable - object, overriding the layout's normal colors. A , the graphics context to use the X position of the start of string (in pixels) the Y position of the baseline (in pixels) - A , a line of text to render + To be added. the foreground color the background color + Render a onto the Drawable + object, overriding the layout's normal colors. + A , a line of text to render Render a onto the Drawable object, overriding the layout's normal colors with and/or . @@ -414,7 +406,6 @@ understand; thus, use instead of this f Internal constructor Pointer to the C object. - An instance of Drawable, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -431,7 +422,7 @@ understand; thus, use instead of this f The color map for this Drawable. The new for the Drawable. - The current on the Drawable. + The current on the Drawable. You only need to set the color map if the drawable-creating function did not have a way to determine the colormap, and you then use drawable operations that require a colormap. The colormap for all drawables and graphics contexts you intend to use together should match. i.e. when using a #GdkGC to draw to a drawable, or copying one drawable to another, the colormaps should match. @@ -443,7 +434,7 @@ understand; thus, use instead of this f Computes the region of a drawable that is potentially visible. - A + A This does not necessarily take into account if the window is obscured by other windows, but no area outside of this region is visible. @@ -459,7 +450,7 @@ You must call when done. Computes the region of a drawable that potentially can be written to by drawing primitives. - A . You must call when done. + A . You must call when done. Computes the region of a drawable that potentially can be written to by drawing primitives. This region will not take into account the clip region for the GC, and may also not take into account other factors such as if the window is obscured by other windows, but no area outside of this region will be affected by drawing primitives. @@ -475,7 +466,7 @@ You must call the Destroy method on the returned region when done. Gets the describing the pixel format of drawable. - A + A @@ -487,7 +478,7 @@ You must call the Destroy method on the returned region when done. Obtains the bit depth of the drawable. - The bit depth. + The bit depth. Obtains the bit depth of the drawable, that is, the number of bits that make up a pixel in the drawable's visual. Examples are 8 bits per pixel, 24 bits per pixel, etc. @@ -499,7 +490,7 @@ You must call the Destroy method on the returned region when done. Gets the associated with a - a + a @@ -511,7 +502,7 @@ You must call the Destroy method on the returned region when done. Gets the associated with the . - The . + The . @@ -706,7 +697,7 @@ The clip mask of gc is ignored, but clip rectangles and clip regions work fine. GType Property. - a + a Returns the native value for . @@ -720,10 +711,13 @@ The clip mask of gc is ignored, but clip rectangles and clip regions work fine. Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -731,12 +725,11 @@ The clip mask of gc is ignored, but clip rectangles and clip regions work fine. This is a constructor used by derivative types of Drawable. This is not typically used by C# code. - a - + Method System.Void @@ -765,7 +758,7 @@ The clip mask of gc is ignored, but clip rectangles and clip regions work fine. - + Method System.Void @@ -798,7 +791,7 @@ The clip mask of gc is ignored, but clip rectangles and clip regions work fine. - + Method System.Void @@ -829,7 +822,7 @@ The clip mask of gc is ignored, but clip rectangles and clip regions work fine. - + Method System.Void @@ -858,7 +851,7 @@ The clip mask of gc is ignored, but clip rectangles and clip regions work fine. - + Method System.Void @@ -887,7 +880,7 @@ The clip mask of gc is ignored, but clip rectangles and clip regions work fine. - + Method System.Void @@ -1169,4 +1162,4 @@ The clip mask of gc is ignored, but clip rectangles and clip regions work fine. - \ No newline at end of file + diff --git a/doc/en/Gdk/Drop.xml b/doc/en/Gdk/Drop.xml index a4d8ab044..72fa75f1b 100644 --- a/doc/en/Gdk/Drop.xml +++ b/doc/en/Gdk/Drop.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -64,9 +61,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/EdgeTable.xml b/doc/en/Gdk/EdgeTable.xml index d289e64f1..fa9937dc8 100644 --- a/doc/en/Gdk/EdgeTable.xml +++ b/doc/en/Gdk/EdgeTable.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -82,9 +79,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/EdgeTableEntry.xml b/doc/en/Gdk/EdgeTableEntry.xml index 90d9e42e5..e00bddbc8 100644 --- a/doc/en/Gdk/EdgeTableEntry.xml +++ b/doc/en/Gdk/EdgeTableEntry.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,9 +27,8 @@ To be added a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/Error.xml b/doc/en/Gdk/Error.xml index da10fba09..06db6599d 100644 --- a/doc/en/Gdk/Error.xml +++ b/doc/en/Gdk/Error.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -51,9 +48,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/Event.xml b/doc/en/Gdk/Event.xml index 490a955f8..14946b1e4 100644 --- a/doc/en/Gdk/Event.xml +++ b/doc/en/Gdk/Event.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,8 +14,11 @@ System.Object - - + + + GLib.IWrapper + + @@ -29,7 +30,6 @@ Internal constructor Pointer to the C object. - An instance of Event, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -43,7 +43,7 @@ the type of the event. - the type of the event. + the type of the event. None. @@ -56,12 +56,12 @@ GType Property. - a + a Returns the native value for . - + Property System.IntPtr @@ -69,7 +69,7 @@ IntPtr for the unmanaged structure. - The to the unmanaged GdkEvent structure. + The to the unmanaged GdkEvent structure. This property should rarely if ever need to be accessed. @@ -82,7 +82,7 @@ The window which received the event. - The window which received the event. + The window which received the event. This is a not a . @@ -95,7 +95,7 @@ true if the event was sent explicitly (e.g. using XSendEvent). - true if the event was sent explicitly (e.g. using XSendEvent). + true if the event was sent explicitly (e.g. using XSendEvent). None. diff --git a/doc/en/Gdk/EventButton.xml b/doc/en/Gdk/EventButton.xml index 60cecc02b..95ac5a2cd 100644 --- a/doc/en/Gdk/EventButton.xml +++ b/doc/en/Gdk/EventButton.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -110,7 +108,6 @@ Gdk.Event - @@ -121,7 +118,7 @@ The time of the event in milliseconds. - a + a @@ -134,7 +131,7 @@ A bit-mask representing the state of the modifier keys (e.g. Control, Shift and Alt) and the pointer buttons. - a + a @@ -147,7 +144,7 @@ The x coordinate of the pointer relative to the window. - a + a @@ -160,7 +157,7 @@ The y coordinate of the pointer relative to the window. - a + a @@ -173,7 +170,7 @@ The x coordinate of the pointer relative to the root of the screen. - a + a @@ -186,7 +183,7 @@ The y coordinate of the pointer relative to the root of the screen. - a + a @@ -199,7 +196,7 @@ The button which was pressed or released, numbered from 1 to 5. Normally button 1 is the left mouse button, 2 is the middle button, and 3 is the right button. On 2-button mice, the middle button can often be simulated by pressing both mouse buttons together. - a + a @@ -212,12 +209,12 @@ The device where the event originated. - a + a - + Property System.Double[] @@ -225,7 +222,7 @@ x, y translated to the axes of device, or null if device is the mouse. - a + a @@ -239,9 +236,8 @@ Internal constructor a to a - a This constructor is internal and should not be used. - \ No newline at end of file + diff --git a/doc/en/Gdk/EventClient.xml b/doc/en/Gdk/EventClient.xml index acdc21465..0893b4be9 100644 --- a/doc/en/Gdk/EventClient.xml +++ b/doc/en/Gdk/EventClient.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ Gdk.Event - @@ -29,7 +26,7 @@ the type of the message, which can be defined by the application. - the type of the message, which can be defined by the application. + the type of the message, which can be defined by the application. None. @@ -42,7 +39,7 @@ The format of the - the format of the data, given as the number of bits in each data element, i.e. 8, 16, or 32. + the format of the data, given as the number of bits in each data element, i.e. 8, 16, or 32. None. @@ -55,7 +52,7 @@ The data. - If is 8, then this array is 20 characters, if it returns 16, then the array is 10 shorts, and if it returns 32, the array is 5 longs. + If is 8, then this array is 20 characters, if it returns 16, then the array is 10 shorts, and if it returns 32, the array is 5 longs. None. @@ -69,9 +66,8 @@ Internal constructor. raw unmanaged pointer. - A new This constructor is internal and should not be used. - \ No newline at end of file + diff --git a/doc/en/Gdk/EventConfigure.xml b/doc/en/Gdk/EventConfigure.xml index f481656d5..6e131697e 100644 --- a/doc/en/Gdk/EventConfigure.xml +++ b/doc/en/Gdk/EventConfigure.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ Gdk.Event - @@ -29,7 +26,7 @@ The new x coordinate of the window, relative to its parent. - The new x coordinate of the window, relative to its parent. + The new x coordinate of the window, relative to its parent. None. @@ -42,7 +39,7 @@ The new y coordinate of the window, relative to the parent. - The new y coordinate of the window, relative to its parent. + The new y coordinate of the window, relative to its parent. None. @@ -55,7 +52,7 @@ The new width of the window. - The new width of the window. + The new width of the window. None. @@ -68,7 +65,7 @@ The new height of the window. - The new height of the window. + The new height of the window. None. @@ -82,9 +79,8 @@ Internal constructor. the raw unmanaged pointer. - A new This constructor is internal, and should not be used. - \ No newline at end of file + diff --git a/doc/en/Gdk/EventCrossing.xml b/doc/en/Gdk/EventCrossing.xml index 3c78c2c28..e86c5471a 100644 --- a/doc/en/Gdk/EventCrossing.xml +++ b/doc/en/Gdk/EventCrossing.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ Gdk.Event - @@ -29,7 +26,7 @@ The time of the event in milliseconds. - The time of the event in milliseconds. + The time of the event in milliseconds. None. @@ -42,7 +39,7 @@ An enum representing the state of the modifier keys (e.g. Control, Shift and Alt) and the pointer buttons. - An enum representing the state of the modifier keys (e.g. Control, Shift and Alt) and the pointer buttons. + An enum representing the state of the modifier keys (e.g. Control, Shift and Alt) and the pointer buttons. None. @@ -55,7 +52,7 @@ The x coordinate of the pointer relative to the window. - The x coordinate of the pointer relative to the window. + The x coordinate of the pointer relative to the window. None. @@ -68,7 +65,7 @@ The y coordinate of the pointer relative to the window. - The y coordinate of the pointer relative to the window. + The y coordinate of the pointer relative to the window. None. @@ -81,7 +78,7 @@ The x coordinate of the pointer relative to the root of the screen. - The x coordinate of the pointer relative to the root of the screen. + The x coordinate of the pointer relative to the root of the screen. None. @@ -94,7 +91,7 @@ The y coordinate of the pointer relative to the root of the screen. - The y coordinate of the pointer relative to the root of the screen. + The y coordinate of the pointer relative to the root of the screen. None. @@ -107,7 +104,7 @@ The window that was entered or left. - The window that was entered or left. + The window that was entered or left. None. @@ -120,7 +117,7 @@ The crossing mode. - The crossing mode. + The crossing mode. None. @@ -133,7 +130,7 @@ The kind of crossing that happened. - The kind of crossing that happened. + The kind of crossing that happened. None. @@ -146,7 +143,7 @@ True if window is the focus window or an inferior. - True if window is the focus window or an inferior. + True if window is the focus window or an inferior. None. @@ -160,9 +157,8 @@ Internal constructor. raw managed pointer. - A new This constructor should never be used. - \ No newline at end of file + diff --git a/doc/en/Gdk/EventDND.xml b/doc/en/Gdk/EventDND.xml index 929539e25..ba2aaa28a 100644 --- a/doc/en/Gdk/EventDND.xml +++ b/doc/en/Gdk/EventDND.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ Gdk.Event - @@ -29,7 +26,7 @@ The for the current DND operation. - The Gdk.DragContext for the current DND operation. + The Gdk.DragContext for the current DND operation. None. @@ -42,7 +39,7 @@ The time of the event in milliseconds. - The time of the event in milliseconds. + The time of the event in milliseconds. None. @@ -55,7 +52,7 @@ The x coordinate of the pointer relative to the root of the screen, only set for GDK_DRAG_MOTION and GDK_DROP_START (Find C# references for these). - The x coordinate of the pointer relative to the root of the screen, only set for GDK_DRAG_MOTION and GDK_DROP_START (Find C# references for these). + The x coordinate of the pointer relative to the root of the screen, only set for GDK_DRAG_MOTION and GDK_DROP_START (Find C# references for these). None. @@ -68,7 +65,7 @@ The y coordinate of the pointer relative to the root of the screen, only set for GDK_DRAG_MOTION and GDK_DROP_START (Find C# references for these). - The y coordinate of the pointer relative to the root of the screen, only set for GDK_DRAG_MOTION and GDK_DROP_START (Find C# references for these). + The y coordinate of the pointer relative to the root of the screen, only set for GDK_DRAG_MOTION and GDK_DROP_START (Find C# references for these). None. @@ -82,9 +79,8 @@ Internal constructor. raw unmanaged pointer. - A new This constructor is internal and should not be used. - \ No newline at end of file + diff --git a/doc/en/Gdk/EventExpose.xml b/doc/en/Gdk/EventExpose.xml index b61da9553..32ad3b651 100644 --- a/doc/en/Gdk/EventExpose.xml +++ b/doc/en/Gdk/EventExpose.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ Gdk.Event - @@ -29,7 +26,7 @@ The bounding box of the - The bounding box of the + The bounding box of the None. @@ -42,7 +39,7 @@ The number of contiguous Expose Events following this one. - The number of contiguous Expose Events following this one. + The number of contiguous Expose Events following this one. The only use for this is "exposure compression", i.e. handling all contiguous Expose events in one go, though GDK performs some exposure compression so this is not normally needed @@ -55,7 +52,7 @@ The region that needs to be redrawn. - The that needs to be redrawn. + The that needs to be redrawn. None. @@ -69,9 +66,8 @@ Internal constructor. raw unmanaged pointer. - A new None. - \ No newline at end of file + diff --git a/doc/en/Gdk/EventFocus.xml b/doc/en/Gdk/EventFocus.xml index 19651d92f..d6a4eaa7c 100644 --- a/doc/en/Gdk/EventFocus.xml +++ b/doc/en/Gdk/EventFocus.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ Gdk.Event - @@ -29,7 +26,7 @@ True if the window has gained the keyboard focus, false if it has lost the focus. - True if the window has gained the keyboard focus, false if it has lost the focus. + True if the window has gained the keyboard focus, false if it has lost the focus. None. @@ -43,9 +40,8 @@ Internal constructor. raw unmanaged pointer. - A new None. - \ No newline at end of file + diff --git a/doc/en/Gdk/EventFunc.xml b/doc/en/Gdk/EventFunc.xml index 4a3730eeb..e09b2a976 100644 --- a/doc/en/Gdk/EventFunc.xml +++ b/doc/en/Gdk/EventFunc.xml @@ -1,27 +1,18 @@ - + gdk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -29,4 +20,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gdk/EventHelper.xml b/doc/en/Gdk/EventHelper.xml index ea1d910f7..2940e402c 100644 --- a/doc/en/Gdk/EventHelper.xml +++ b/doc/en/Gdk/EventHelper.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -234,7 +231,6 @@ This could be used for communicating between different applications, though the This constructor is never used. - A new This class contains only static methods, and this constructor should never be used. @@ -325,9 +321,9 @@ This could be used for communicating between different applications, though the GType Property. - a + a Returns the native value for . - \ No newline at end of file + diff --git a/doc/en/Gdk/EventKey.xml b/doc/en/Gdk/EventKey.xml index 39d563b71..f01f85f7e 100644 --- a/doc/en/Gdk/EventKey.xml +++ b/doc/en/Gdk/EventKey.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ Gdk.Event - @@ -28,7 +25,7 @@ The key that was pressed or released. - The key that was pressed or released. + The key that was pressed or released. None. @@ -41,7 +38,7 @@ The time of the event in milliseconds. - The time of the event in milliseconds. + The time of the event in milliseconds. None. @@ -54,7 +51,7 @@ A enum representing the state of the modifier keys (e.g. Control, Shift and Alt) and the pointer buttons. - A enum representing the state of the modifier keys (e.g. Control, Shift and Alt) and the pointer buttons. + A enum representing the state of the modifier keys (e.g. Control, Shift and Alt) and the pointer buttons. None. @@ -67,7 +64,7 @@ The key that was pressed or released. - The key that was pressed or released. + The key that was pressed or released. None. @@ -80,7 +77,7 @@ The raw code of the key that was pressed or released. - The raw code of the key that was pressed or released. + The raw code of the key that was pressed or released. None. @@ -93,7 +90,7 @@ The keyboard group. - The keyboard group. + The keyboard group. None. @@ -107,9 +104,8 @@ Internal constructor. raw unmanaged pointer. - A new None. - \ No newline at end of file + diff --git a/doc/en/Gdk/EventMask.xml b/doc/en/Gdk/EventMask.xml index d6e6400ec..7d7f56ce5 100644 --- a/doc/en/Gdk/EventMask.xml +++ b/doc/en/Gdk/EventMask.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.EventMaskGType)) + + + System.Flags + + @@ -329,4 +323,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/EventMotion.xml b/doc/en/Gdk/EventMotion.xml index 7cdff7e33..067999cb2 100644 --- a/doc/en/Gdk/EventMotion.xml +++ b/doc/en/Gdk/EventMotion.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ Gdk.Event - @@ -29,7 +26,7 @@ The time of the event in milliseconds. - The time of the event in milliseconds. + The time of the event in milliseconds. None. @@ -42,7 +39,7 @@ An enum representing the state of the modifier keys (e.g. Control, Shift and Alt) and the pointer buttons. - An enum representing the state of the modifier keys (e.g. Control, Shift, Alt) and the pointer buttons. + An enum representing the state of the modifier keys (e.g. Control, Shift, Alt) and the pointer buttons. None. @@ -55,7 +52,7 @@ The x coordinate of the pointer relative to window. - The x coordinate of the pointer relative to the window. + The x coordinate of the pointer relative to the window. None. @@ -68,7 +65,7 @@ The y coordinate of the pointer relative to the window. - The y coordinate of the pointer relative to the window. + The y coordinate of the pointer relative to the window. None. @@ -81,7 +78,7 @@ The x coordinate of the pointer relative to the root of the screen. - The x coordinate of the pointer relative to the root of the screen. + The x coordinate of the pointer relative to the root of the screen. None. @@ -94,7 +91,7 @@ The y coordinate of the pointer relative to the root of the screen. - The y coordinate of the pointer relative to the root of the screen. + The y coordinate of the pointer relative to the root of the screen. None. @@ -107,7 +104,7 @@ True if this event is just a hint. - True if the event is just a hint. + True if the event is just a hint. None. @@ -120,12 +117,12 @@ The device where the event originated. - The device where the event originated. + The device where the event originated. None. - + Property System.Double[] @@ -134,8 +131,8 @@ , translated to the axes of , or null if is the mouse. - - , translated to the axes of , or null if is the mouse. + + , translated to the axes of , or null if is the mouse. None. @@ -149,9 +146,8 @@ Internal constructor. raw unmanaged pointer. - A new None. - \ No newline at end of file + diff --git a/doc/en/Gdk/EventOwnerChange.xml b/doc/en/Gdk/EventOwnerChange.xml index c128c6218..1106fbf32 100644 --- a/doc/en/Gdk/EventOwnerChange.xml +++ b/doc/en/Gdk/EventOwnerChange.xml @@ -1,11 +1,9 @@ - + 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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.ValueType - @@ -134,7 +131,7 @@ To be added - a + a To be added @@ -147,9 +144,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/EventProperty.xml b/doc/en/Gdk/EventProperty.xml index 365773707..1755187ce 100644 --- a/doc/en/Gdk/EventProperty.xml +++ b/doc/en/Gdk/EventProperty.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ Gdk.Event - @@ -29,7 +26,7 @@ The property that was changed. - The property that was changed. + The property that was changed. None. @@ -42,7 +39,7 @@ Whether the property was changed, or deleted. - Whether the property was changed. + Whether the property was changed. None. @@ -55,7 +52,7 @@ The time of the event in milliseconds. - The time of the event of milliseconds. + The time of the event of milliseconds. None. @@ -69,9 +66,8 @@ Internal constructor. raw unmanaged pointer. - A new None. - \ No newline at end of file + diff --git a/doc/en/Gdk/EventProximity.xml b/doc/en/Gdk/EventProximity.xml index b8029b051..2a7604e93 100644 --- a/doc/en/Gdk/EventProximity.xml +++ b/doc/en/Gdk/EventProximity.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -27,7 +25,6 @@ Gdk.Event - @@ -38,7 +35,7 @@ The device where the event originated. - The device where the event originated. + The device where the event originated. None. @@ -51,7 +48,7 @@ The time of the event in milliseconds. - The time of the event in milliseconds. + The time of the event in milliseconds. None. @@ -65,9 +62,8 @@ Internal constructor. raw unmanaged pointer. - A new None. - \ No newline at end of file + diff --git a/doc/en/Gdk/EventScroll.xml b/doc/en/Gdk/EventScroll.xml index f1155e81a..2a371706a 100644 --- a/doc/en/Gdk/EventScroll.xml +++ b/doc/en/Gdk/EventScroll.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ Gdk.Event - @@ -29,7 +26,7 @@ The time of the event in milliseconds. - The time of the event in milliseconds. + The time of the event in milliseconds. None. @@ -42,7 +39,7 @@ An enum representing the state of the modifier keys (e.g. Control, Shift and Alt) and the pointer buttons. - An enum representing the state of the modifier keys (e.g. Control, Shift and Alt) and the pointer buttons. + An enum representing the state of the modifier keys (e.g. Control, Shift and Alt) and the pointer buttons. None. @@ -55,7 +52,7 @@ The x coordinate of the pointer relative to the window. - The x coordinate of the pointer relative to the window. + The x coordinate of the pointer relative to the window. None. @@ -68,7 +65,7 @@ The y coordinate of the pointer relative to the window. - The y coordinate of the pointer relative to the window. + The y coordinate of the pointer relative to the window. None. @@ -81,7 +78,7 @@ The x coordinate of the pointer relative to the root of the screen. - The x coordinate of the pointer relative to the root of the screen. + The x coordinate of the pointer relative to the root of the screen. None. @@ -94,7 +91,7 @@ The y coordinate of the pointer relative to the root of the screen. - The y coordinate of the pointer relative to the root of the screen. + The y coordinate of the pointer relative to the root of the screen. None. @@ -107,7 +104,7 @@ The direction to scroll to. - The direction to scroll to. + The direction to scroll to. None. @@ -120,7 +117,7 @@ The device where the event originated. - The device where the event originated. + The device where the event originated. None. @@ -134,9 +131,8 @@ Internal constructor. raw unmanaged pointer. - A new . None. - \ No newline at end of file + diff --git a/doc/en/Gdk/EventSelection.xml b/doc/en/Gdk/EventSelection.xml index 466970efe..d3c4829e4 100644 --- a/doc/en/Gdk/EventSelection.xml +++ b/doc/en/Gdk/EventSelection.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ Gdk.Event - @@ -28,7 +25,7 @@ The property in which to place the result of the conversation. - The property in which to place the result of the conversion. + The property in which to place the result of the conversion. None. @@ -41,7 +38,7 @@ The selection. - The selection. + The selection. None. @@ -54,7 +51,7 @@ The target to which the selection should be converted. - The target to which the selection should be converted. + The target to which the selection should be converted. None. @@ -67,7 +64,7 @@ The native window on which to place . - The native window on which to place . + The native window on which to place . None. @@ -80,7 +77,7 @@ The time of the event in milliseconds. - The time of the event in milliseconds. + The time of the event in milliseconds. None. @@ -94,9 +91,8 @@ Internal constructor. raw unmanaged pointer. - A new Internal constructor, do not use. - \ No newline at end of file + diff --git a/doc/en/Gdk/EventSetting.xml b/doc/en/Gdk/EventSetting.xml index 488719e18..eb89249e7 100644 --- a/doc/en/Gdk/EventSetting.xml +++ b/doc/en/Gdk/EventSetting.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ Gdk.Event - @@ -28,7 +25,7 @@ What happened to the setting. - What happened to the setting. + What happened to the setting. None. @@ -41,7 +38,7 @@ The name of the setting. - The name of the setting. + The name of the setting. None. @@ -55,9 +52,8 @@ Internal constructor. raw unmanaged pointer. - A new None. - \ No newline at end of file + diff --git a/doc/en/Gdk/EventType.xml b/doc/en/Gdk/EventType.xml index a52e177c0..05a460776 100644 --- a/doc/en/Gdk/EventType.xml +++ b/doc/en/Gdk/EventType.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.EventTypeGType)) + + @@ -511,4 +502,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/EventVisibility.xml b/doc/en/Gdk/EventVisibility.xml index 2cd73a734..db7261776 100644 --- a/doc/en/Gdk/EventVisibility.xml +++ b/doc/en/Gdk/EventVisibility.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -22,7 +20,6 @@ Gdk.Event - @@ -33,7 +30,7 @@ The visibility state for the window. - a + a The state member is set to the state of the window's @@ -77,9 +74,8 @@ Internal constructor. raw unmanaged pointer. - A new None. - \ No newline at end of file + diff --git a/doc/en/Gdk/EventWindowState.xml b/doc/en/Gdk/EventWindowState.xml index d193b9f9b..252acdf4e 100644 --- a/doc/en/Gdk/EventWindowState.xml +++ b/doc/en/Gdk/EventWindowState.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ Gdk.Event - @@ -29,7 +26,7 @@ Mask specifying what flags have changed. - Mask specifying what flags have changed. + Mask specifying what flags have changed. None. @@ -42,7 +39,7 @@ The new window state. - The new window state. + The new window state. None. @@ -56,9 +53,8 @@ Internal constructor. raw unmanaged pointer. - A new None. - \ No newline at end of file + diff --git a/doc/en/Gdk/ExtensionMode.xml b/doc/en/Gdk/ExtensionMode.xml index 3fcf44c15..f0508d7ff 100644 --- a/doc/en/Gdk/ExtensionMode.xml +++ b/doc/en/Gdk/ExtensionMode.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.ExtensionModeGType)) + + @@ -82,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Fill.xml b/doc/en/Gdk/Fill.xml index 3433f405d..b89104c6c 100644 --- a/doc/en/Gdk/Fill.xml +++ b/doc/en/Gdk/Fill.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.FillGType)) + + @@ -95,4 +86,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/FillRule.xml b/doc/en/Gdk/FillRule.xml index bcfee541e..594e3d2c9 100644 --- a/doc/en/Gdk/FillRule.xml +++ b/doc/en/Gdk/FillRule.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.FillRuleGType)) + + @@ -69,4 +60,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/FilterFunc.xml b/doc/en/Gdk/FilterFunc.xml index 8e06429cc..67396503d 100644 --- a/doc/en/Gdk/FilterFunc.xml +++ b/doc/en/Gdk/FilterFunc.xml @@ -1,27 +1,20 @@ - + gdk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Delegate for callbacks invoked by . + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -30,4 +23,4 @@ Gdk.FilterReturn - \ No newline at end of file + diff --git a/doc/en/Gdk/FilterReturn.xml b/doc/en/Gdk/FilterReturn.xml index e0a8990e0..25c3d4ba5 100644 --- a/doc/en/Gdk/FilterReturn.xml +++ b/doc/en/Gdk/FilterReturn.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.FilterReturnGType)) + + @@ -82,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Font.xml b/doc/en/Gdk/Font.xml index c3e2163d6..2aa9194e3 100644 --- a/doc/en/Gdk/Font.xml +++ b/doc/en/Gdk/Font.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ System.ValueType - - GLib.IWrapper - - @@ -84,7 +78,7 @@ To be added - a + a To be added @@ -97,7 +91,7 @@ To be added - a + a To be added @@ -239,5 +233,37 @@ To be added + + + Method + + GLib.Value + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Gdk.Font + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gdk/FontType.xml b/doc/en/Gdk/FontType.xml index 62400ed05..7e6c07874 100644 --- a/doc/en/Gdk/FontType.xml +++ b/doc/en/Gdk/FontType.xml @@ -4,8 +4,6 @@ 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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.FontTypeGType)) + + diff --git a/doc/en/Gdk/Fontset.xml b/doc/en/Gdk/Fontset.xml index 22f299270..f3ed82aed 100644 --- a/doc/en/Gdk/Fontset.xml +++ b/doc/en/Gdk/Fontset.xml @@ -4,8 +4,6 @@ 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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -59,9 +56,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/Function.xml b/doc/en/Gdk/Function.xml index 488057514..4e047ee50 100644 --- a/doc/en/Gdk/Function.xml +++ b/doc/en/Gdk/Function.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.FunctionGType)) + + @@ -251,4 +242,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/GC.xml b/doc/en/Gdk/GC.xml index 6894443d8..1ee7eb96a 100644 --- a/doc/en/Gdk/GC.xml +++ b/doc/en/Gdk/GC.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -36,14 +34,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -219,7 +210,6 @@ Internal constructor Pointer to the C object. - An instance of GC, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -235,7 +225,6 @@ To be added To be added: an object of type 'Gdk.Drawable' - To be added: an object of type 'Gdk.GC' To be added @@ -253,7 +242,6 @@ To be added: an object of type 'Gdk.Drawable' To be added: an object of type 'Gdk.GCValues' To be added: an object of type 'Gdk.GCValuesMask' - To be added: an object of type 'Gdk.GC' To be added @@ -268,7 +256,7 @@ Set the foreground color of a GC using an unallocated color. - an object of type 'Gdk.Color' + an object of type 'Gdk.Color' Set the foreground color of a GC using an unallocated color. The pixel value for the color will be determined @@ -292,7 +280,7 @@ Sets the clip mask for a graphics context from a rectangle. the rectangle to clip to. - an object of type 'Gdk.Rectangle' + an object of type 'Gdk.Rectangle' Sets the clip mask for a graphics context from a rectangle. The clip mask is interpreted relative to the clip @@ -311,7 +299,7 @@ Set a tile pixmap for a graphics context. the new tile pixmap. - an object of type 'Gdk.Pixmap' + an object of type 'Gdk.Pixmap' Set a tile pixmap for a graphics context. This will only be used if the fill mode is GDK_TILED. @@ -329,7 +317,7 @@ Sets the clip mask for a graphics context from a bitmap. a bitmap. - a bitmap. + a bitmap. Sets the clip mask for a graphics context from a bitmap. The clip mask is interpreted relative to the clip @@ -348,7 +336,7 @@ Set the fill mode for a graphics context. the new fill mode. - the new fill mode. + the new fill mode. Set the fill mode for a graphics context. @@ -365,7 +353,7 @@ Sets the colormap for the GC to the given colormap. a Gdk.Colormap - a Gdk.Colormap + a Gdk.Colormap Fetches or changes the colormap of the GC. The depth of @@ -386,7 +374,7 @@ Set the background color of a GC using an unallocated color. a Gdk.Color - a Gdk.Color + a Gdk.Color Set the background color of a GC using an unallocated color. The pixel value for the color will be determined @@ -410,7 +398,7 @@ Sets the foreground color for a graphics context. the new foreground color. - the new foreground color. + the new foreground color. Sets the foreground color for a graphics context to the @@ -454,7 +442,7 @@ Sets the clip mask for a graphics context from a region structure. the Gdk.Region - the Gdk.Region + the Gdk.Region Sets the clip mask for a graphics context from a region structure. The clip mask is interpreted relative to @@ -473,7 +461,7 @@ Sets how drawing with this GC on a window will affect child windows of that window. the subwindow mode. - the subwindow mode. + the subwindow mode. Sets how drawing with this GC on a window will affect child windows of that window. @@ -491,7 +479,7 @@ Set the stipple bitmap for a graphics context. the new stipple bitmap. - the new stipple bitmap. + the new stipple bitmap. Set the stipple bitmap for a graphics context. The @@ -512,7 +500,7 @@ Determines how the current pixel values and the pixel values being drawn are combined to produce the final pixel values. a function. - a function. + a function. Determines how the current pixel values and the pixel values being drawn are combined to produce the final pixel @@ -531,7 +519,7 @@ Sets the background color for a graphics context. the new background color. - the new background color. + the new background color. Sets the background color for a graphics @@ -583,8 +571,7 @@ Sets whether or not this GC should geenrate exposure events. - To be added: an object of type 'bool' - To be added: an object of type 'bool' + To be added: an object of type 'bool' Sets whether copying non-visible portions of a drawable using this graphics context generate exposure @@ -601,12 +588,12 @@ To be added - a + a To be added - + Method System.Void @@ -640,7 +627,7 @@ GType Property. - a + a Returns the native value for . @@ -654,10 +641,13 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -666,10 +656,14 @@ To be added - a + a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -696,4 +690,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/GCValues.xml b/doc/en/Gdk/GCValues.xml index 4fc5636fb..a34b6758d 100644 --- a/doc/en/Gdk/GCValues.xml +++ b/doc/en/Gdk/GCValues.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -57,8 +54,7 @@ To be added - To be added: an object of type 'Gdk.Pixmap' - To be added: an object of type 'Gdk.Pixmap' + To be added: an object of type 'Gdk.Pixmap' To be added @@ -72,8 +68,7 @@ To be added - To be added: an object of type 'Gdk.Pixmap' - To be added: an object of type 'Gdk.Pixmap' + To be added: an object of type 'Gdk.Pixmap' To be added @@ -87,8 +82,7 @@ To be added - To be added: an object of type 'Gdk.Pixmap' - To be added: an object of type 'Gdk.Pixmap' + To be added: an object of type 'Gdk.Pixmap' To be added @@ -283,9 +277,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/GCValuesMask.xml b/doc/en/Gdk/GCValuesMask.xml index aa17bb440..561f93f28 100644 --- a/doc/en/Gdk/GCValuesMask.xml +++ b/doc/en/Gdk/GCValuesMask.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + System.Flags + + @@ -277,4 +268,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Geometry.xml b/doc/en/Gdk/Geometry.xml index b6ef25e41..915817c4f 100644 --- a/doc/en/Gdk/Geometry.xml +++ b/doc/en/Gdk/Geometry.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -191,4 +188,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Global.xml b/doc/en/Gdk/Global.xml index 246bbb470..fcc93dd87 100644 --- a/doc/en/Gdk/Global.xml +++ b/doc/en/Gdk/Global.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -131,7 +128,6 @@ Defaul constructor - a @@ -146,7 +142,7 @@ To be added a - a + a To be added @@ -158,7 +154,7 @@ To be added - a + a To be added @@ -173,7 +169,7 @@ To be added a - a + a To be added @@ -188,7 +184,7 @@ To be added a - a + a To be added @@ -200,7 +196,7 @@ Gets the display name specified in the command line arguments passed to Global.ParseArgs. - A containing the name specified. + A containing the name specified. If the name was not specified then null is returned. @@ -215,7 +211,7 @@ To be added a - a + a To be added @@ -227,7 +223,7 @@ To be added - a + a To be added @@ -271,7 +267,7 @@ - + Property Gdk.Atom[] @@ -279,12 +275,12 @@ To be added - a + a To be added - + Property Gdk.Window[] @@ -292,7 +288,7 @@ To be added - a + a To be added @@ -305,7 +301,7 @@ To be added - a + a To be added @@ -318,7 +314,7 @@ To be added - a + a To be added @@ -331,12 +327,12 @@ To be added - a + a To be added - + Property Gdk.Rectangle[] @@ -344,12 +340,12 @@ To be added - a + a To be added - + Method System.Boolean @@ -365,7 +361,7 @@ - + Method System.Void @@ -380,7 +376,7 @@ - + Method System.Int32[] @@ -414,10 +410,14 @@ To be added - a + a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -512,4 +512,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/GrabStatus.xml b/doc/en/Gdk/GrabStatus.xml index 440a2d155..e43fa8b77 100644 --- a/doc/en/Gdk/GrabStatus.xml +++ b/doc/en/Gdk/GrabStatus.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.GrabStatusGType)) + + @@ -108,4 +99,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Gravity.xml b/doc/en/Gdk/Gravity.xml index 50c2180fc..b4506c73f 100644 --- a/doc/en/Gdk/Gravity.xml +++ b/doc/en/Gdk/Gravity.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.GravityGType)) + + @@ -173,4 +164,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Image.xml b/doc/en/Gdk/Image.xml index 015dca026..2dc07a54f 100644 --- a/doc/en/Gdk/Image.xml +++ b/doc/en/Gdk/Image.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -85,7 +76,6 @@ Internal constructor Pointer to the C object. - An instance of Image, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -107,7 +97,6 @@ To be added: an object of type 'Gdk.Visual' To be added: an object of type 'int' To be added: an object of type 'int' - To be added: an object of type 'Gdk.Image' To be added @@ -121,8 +110,7 @@ To be added - To be added: an object of type 'Gdk.Colormap' - To be added: an object of type 'Gdk.Colormap' + To be added: an object of type 'Gdk.Colormap' To be added @@ -135,7 +123,7 @@ GType Property. - a + a Returns the native value for . @@ -149,10 +137,13 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -211,8 +202,9 @@ The number of bytes per pixel. - a - + a + + @@ -224,8 +216,9 @@ The number of bytes per line of the image. - a - + a + + @@ -237,8 +230,9 @@ The image depth (ie, the number of bits per pixel). - a - + a + + @@ -250,8 +244,9 @@ The image byte order. - a - + a + + @@ -263,8 +258,9 @@ The number of bits per pixel. - a - + a + + @@ -276,8 +272,9 @@ The width of the image in pixels. - a - + a + + @@ -289,8 +286,9 @@ The image's . - a - + a + + @@ -302,8 +300,9 @@ The image's - a - + a + + @@ -315,9 +314,10 @@ The height of the image in pixels. - a - + a + + - \ No newline at end of file + diff --git a/doc/en/Gdk/ImageType.xml b/doc/en/Gdk/ImageType.xml index 8ac0ea427..0a220e287 100644 --- a/doc/en/Gdk/ImageType.xml +++ b/doc/en/Gdk/ImageType.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.ImageTypeGType)) + + @@ -82,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Input.xml b/doc/en/Gdk/Input.xml index cfef33ad0..9b2599bc7 100644 --- a/doc/en/Gdk/Input.xml +++ b/doc/en/Gdk/Input.xml @@ -4,8 +4,6 @@ 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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -103,9 +100,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/InputCondition.xml b/doc/en/Gdk/InputCondition.xml index 3e34c7b1d..663bbcde3 100644 --- a/doc/en/Gdk/InputCondition.xml +++ b/doc/en/Gdk/InputCondition.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.InputConditionGType)) + + + System.Flags + + @@ -82,4 +76,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/InputFunction.xml b/doc/en/Gdk/InputFunction.xml index da5dd543f..a789f8ecc 100644 --- a/doc/en/Gdk/InputFunction.xml +++ b/doc/en/Gdk/InputFunction.xml @@ -1,27 +1,20 @@ - + gdk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. Delegate to invoke when a condition becomes true on a file descriptor. To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -31,4 +24,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gdk/InputMode.xml b/doc/en/Gdk/InputMode.xml index b917f22a1..5a55074a5 100644 --- a/doc/en/Gdk/InputMode.xml +++ b/doc/en/Gdk/InputMode.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.InputModeGType)) + + @@ -82,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/InputSource.xml b/doc/en/Gdk/InputSource.xml index 1c73e5b81..5937b0566 100644 --- a/doc/en/Gdk/InputSource.xml +++ b/doc/en/Gdk/InputSource.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,18 +15,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.InputSourceGType)) + + @@ -96,4 +87,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/InterpType.xml b/doc/en/Gdk/InterpType.xml index 140a2f938..4bb1e2527 100644 --- a/doc/en/Gdk/InterpType.xml +++ b/doc/en/Gdk/InterpType.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,18 +16,11 @@ Nearest provides faster (and low quality) scaling, while Hyper is slow but high- System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.InterpTypeGType)) + + @@ -97,4 +88,4 @@ Nearest provides faster (and low quality) scaling, while Hyper is slow but high- - \ No newline at end of file + diff --git a/doc/en/Gdk/JoinStyle.xml b/doc/en/Gdk/JoinStyle.xml index 026a54fa0..dabd713ff 100644 --- a/doc/en/Gdk/JoinStyle.xml +++ b/doc/en/Gdk/JoinStyle.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.JoinStyleGType)) + + @@ -79,4 +70,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Key.xml b/doc/en/Gdk/Key.xml index 6583c8ed8..0e7bb7434 100644 --- a/doc/en/Gdk/Key.xml +++ b/doc/en/Gdk/Key.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -18733,4 +18719,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Keyboard.xml b/doc/en/Gdk/Keyboard.xml index 0094b1e49..5d67fadeb 100644 --- a/doc/en/Gdk/Keyboard.xml +++ b/doc/en/Gdk/Keyboard.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -61,7 +58,6 @@ To be added - a To be added @@ -86,4 +82,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Keymap.xml b/doc/en/Gdk/Keymap.xml index 7ad1f805b..2697ea3a9 100644 --- a/doc/en/Gdk/Keymap.xml +++ b/doc/en/Gdk/Keymap.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -25,14 +23,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -76,7 +67,6 @@ Internal constructor Pointer to the C object. - An instance of Keymap, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -90,7 +80,7 @@ To be added - To be added: an object of type 'Gdk.Keymap' + To be added: an object of type 'Gdk.Keymap' To be added @@ -104,7 +94,7 @@ Member that represents the current direction of the keymap. - An object of type 'Pango.Direction', current keymap direction. + An object of type 'Pango.Direction', current keymap direction. None @@ -125,7 +115,11 @@ None - + + + GLib.Signal(CName="direction_changed") + + Event @@ -137,7 +131,11 @@ To be added To be added - + + + GLib.Signal(CName="keys_changed") + + Method @@ -193,7 +191,7 @@ GType Property. - a + a Returns the native value for . @@ -231,10 +229,13 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -242,12 +243,11 @@ To be added - a To be added - + Method System.Void @@ -284,4 +284,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/KeymapKey.xml b/doc/en/Gdk/KeymapKey.xml index a53d47c68..c8a1f61ff 100644 --- a/doc/en/Gdk/KeymapKey.xml +++ b/doc/en/Gdk/KeymapKey.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -87,4 +84,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Keyval.xml b/doc/en/Gdk/Keyval.xml index f99e262a9..f5e250f91 100644 --- a/doc/en/Gdk/Keyval.xml +++ b/doc/en/Gdk/Keyval.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -138,7 +135,6 @@ To be added - a To be added @@ -162,4 +158,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/LineStyle.xml b/doc/en/Gdk/LineStyle.xml index a81ce8438..e027aeeae 100644 --- a/doc/en/Gdk/LineStyle.xml +++ b/doc/en/Gdk/LineStyle.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.LineStyleGType)) + + @@ -83,4 +74,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/ModifierType.xml b/doc/en/Gdk/ModifierType.xml index 98d88f706..ac6e1c8d7 100644 --- a/doc/en/Gdk/ModifierType.xml +++ b/doc/en/Gdk/ModifierType.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,18 +16,14 @@ Like the X Window System, GDK supports 8 modifier keys and 5 mouse buttons. System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.ModifierTypeGType)) + + + System.Flags + + diff --git a/doc/en/Gdk/NotifyType.xml b/doc/en/Gdk/NotifyType.xml index 1f2781994..579f915d6 100644 --- a/doc/en/Gdk/NotifyType.xml +++ b/doc/en/Gdk/NotifyType.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,18 +15,11 @@ See the X11 protocol specification of LeaveNotify for full details of crossing e System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.NotifyTypeGType)) + + @@ -122,4 +113,4 @@ See the X11 protocol specification of LeaveNotify for full details of crossing e - \ No newline at end of file + diff --git a/doc/en/Gdk/OverlapType.xml b/doc/en/Gdk/OverlapType.xml index ab8fad7e8..3c317c21d 100644 --- a/doc/en/Gdk/OverlapType.xml +++ b/doc/en/Gdk/OverlapType.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.OverlapTypeGType)) + + @@ -82,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/OwnerChange.xml b/doc/en/Gdk/OwnerChange.xml index 49760b091..55e62c04a 100644 --- a/doc/en/Gdk/OwnerChange.xml +++ b/doc/en/Gdk/OwnerChange.xml @@ -4,8 +4,6 @@ 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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.OwnerChangeGType)) + + @@ -67,18 +58,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gdk/POINTBLOCK.xml b/doc/en/Gdk/POINTBLOCK.xml index fff27c424..6eebe969c 100644 --- a/doc/en/Gdk/POINTBLOCK.xml +++ b/doc/en/Gdk/POINTBLOCK.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,9 +27,8 @@ To be added a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/PangoAttrEmbossed.xml b/doc/en/Gdk/PangoAttrEmbossed.xml index 88a8f1991..8ad34cb34 100644 --- a/doc/en/Gdk/PangoAttrEmbossed.xml +++ b/doc/en/Gdk/PangoAttrEmbossed.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -90,4 +87,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/PangoAttrStipple.xml b/doc/en/Gdk/PangoAttrStipple.xml index da5ab79d9..6f3eaeecb 100644 --- a/doc/en/Gdk/PangoAttrStipple.xml +++ b/doc/en/Gdk/PangoAttrStipple.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -73,8 +70,7 @@ To be added - To be added: an object of type 'Gdk.Pixmap' - To be added: an object of type 'Gdk.Pixmap' + To be added: an object of type 'Gdk.Pixmap' To be added @@ -92,4 +88,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/PangoHelper.xml b/doc/en/Gdk/PangoHelper.xml index b7f281b2e..bd3cc57c0 100644 --- a/doc/en/Gdk/PangoHelper.xml +++ b/doc/en/Gdk/PangoHelper.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -72,7 +69,6 @@ To be added - a To be added @@ -125,4 +121,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/PangoRenderer.xml b/doc/en/Gdk/PangoRenderer.xml index 7c0b7d2ce..22b6e23fc 100644 --- a/doc/en/Gdk/PangoRenderer.xml +++ b/doc/en/Gdk/PangoRenderer.xml @@ -1,11 +1,9 @@ - + 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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Renderer - - GLib.IWrapper - - - System.IDisposable - - @@ -98,10 +89,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -112,7 +106,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -126,7 +119,6 @@ To be added a - a To be added @@ -139,7 +131,7 @@ GType Property. - a + a Returns the native value for . @@ -152,10 +144,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="screen") + + Property @@ -164,7 +160,7 @@ To be added - a + a To be added @@ -176,9 +172,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/Pixbuf.xml b/doc/en/Gdk/Pixbuf.xml index b020d0fb0..cc2f4028c 100644 --- a/doc/en/Gdk/Pixbuf.xml +++ b/doc/en/Gdk/Pixbuf.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -40,14 +38,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -280,8 +271,7 @@ - Gets an image from a Gdk.Image - Source Image (A ) + To be added. A colormap (if src does not have one set) (A Source X coordinate within drawable. Source Y coordinate within drawable. @@ -291,6 +281,8 @@ if dest is . Width in pixels of region to get. Height in pixels of region to get. + Gets an image from a Gdk.Image + Source Image (A ) The value of the Pixbuf (the same one that was passed) or @@ -429,7 +421,7 @@ Gdk.Pixbuf - + @@ -439,8 +431,7 @@ - Gets image from a Gdk.Drawable - Source drawable (A ) + To be added. A colormap (if src does not have one set) (A Source X coordinate within drawable. Source Y coordinate within drawable. @@ -450,6 +441,8 @@ if dest is . Width in pixels of region to get. Height in pixels of region to get. + Gets image from a Gdk.Drawable + Source drawable (A ) The value of the Pixbuf (the same one that was passed) or @@ -860,7 +853,6 @@ Internal constructor Pointer to the C object. - An instance of Pixbuf, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -951,10 +943,14 @@ Number of bits per color sample in a pixbuf. - The number of bits per color sample in the pixbuf + The number of bits per color sample in the pixbuf None. - + + + GLib.Property(Name="bits_per_sample") + + Property @@ -963,9 +959,9 @@ Height of the image - + The height in pixels of the image - + See also the , and for more information about @@ -973,7 +969,11 @@ - + + + GLib.Property(Name="height") + + Property @@ -982,9 +982,9 @@ Returns whether the Pixbuf contains an alpha channel - + if the image contains an Alpha - channel, otherwise. + channel, otherwise. The Pixbuf object handles images in either the RGB format, @@ -993,7 +993,11 @@ - + + + GLib.Property(Name="has_alpha") + + Property @@ -1002,16 +1006,20 @@ The width of the image - + The width in pixels of the image - + This is the width of the image in pixels. See the property as well. - + + + GLib.Property(Name="width") + + Property @@ -1020,13 +1028,17 @@ The number of channels on a Pixbuf - Returns the number of channels on a Pixbuf + Returns the number of channels on a Pixbuf The possible values are 3 (for RGB encoding) and 4 (for RGB with an alpha transparency channel encoding). - + + + GLib.Property(Name="n_channels") + + Property @@ -1035,7 +1047,7 @@ Rowstride of the Pixbuf - The rowstride property for the Pixbuf + The rowstride property for the Pixbuf Queries the rowstride of a pixbuf. The rowstring is the @@ -1047,7 +1059,11 @@ - + + + GLib.Property(Name="rowstride") + + Property @@ -1056,14 +1072,18 @@ The colorspace for this Pixbuf - The colorspace used by this Pixbuf + The colorspace used by this Pixbuf Currently Pixbuf only support the RGB colorspace. - + + + GLib.Property(Name="colorspace") + + Method @@ -1137,7 +1157,7 @@ - + Constructor @@ -1150,7 +1170,6 @@ The length in bytes of the data to be read. The raw data representing the serialized structure. If true, the "data" parameter will be copied and the copy will be used for the Pixbuf. If false, the data will be used as is and the Pixbuf will be dependent on it. - A new . None @@ -1181,7 +1200,6 @@ If the value is , the image will be looked up on the calling assembly. The name given as the resource in the assembly - The created from the resource stream This method is used to construct a from an embedded resource in an assembly. @@ -1223,7 +1241,6 @@ If the value is , the image will be looked up on the cal The name given as the resource in the assembly The required width for the pixbuf The required height for the pixbuf - The created from the resource stream This method is used to construct a from an embedded resource in an assembly with a specific size. @@ -1277,7 +1294,6 @@ mcs -resource:image.jpg sample.cs Makes a new Pixbuf object from a . a containing the image - a Useful for creating a Pixbuf from an image file that resides in a stream. @@ -1308,7 +1324,6 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(memorystream); a containing the image a specifying the required width a specifying the required height - a Useful for creating a Pixbuf with a specific size from an image file that resides in a stream. @@ -1326,7 +1341,7 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(memorystream, 10, 10); - + Constructor @@ -1335,7 +1350,6 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(memorystream, 10, 10); Makes a new Pixbuf object from a . a containing the image - a Useful for creating a Pixbuf from an image file in memory. @@ -1350,7 +1364,7 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(buffer); - + Constructor @@ -1363,7 +1377,6 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(buffer); a containing the image a specifying the required width a specifying the required height - a Useful for creating a Pixbuf with a specific size from an image file in memory. @@ -1378,7 +1391,7 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(buffer, 10, 10); - + Constructor @@ -1404,14 +1417,11 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(buffer, 10, 10); a a a - a with a reference count of 1, or - null if not enough memory could be allocated for the image buffer. - - + Constructor @@ -1424,12 +1434,11 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(buffer, 10, 10); The length in bytes of the data to be read. A serialized structure, generated with . If true, the "data" parameter will be copied and the copy will be used for the Pixbuf. If false, the data will be used as is and the Pixbuf will be dependent on it. - A new . None - + Constructor @@ -1438,7 +1447,6 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(buffer, 10, 10); Public constructor. a - a @@ -1451,7 +1459,7 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(buffer, 10, 10); GType Property. - a + a Returns the native value for . @@ -1465,12 +1473,15 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(buffer, 10, 10); Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + - + Property Gdk.PixbufFormat[] @@ -1478,7 +1489,7 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(buffer, 10, 10); To be added - a + a @@ -1491,12 +1502,12 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(buffer, 10, 10); The pixels contained by this Pixbuf object. - a , pointer to the underlying C data + a , pointer to the underlying C data - + Method System.Boolean @@ -1663,12 +1674,11 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(buffer, 10, 10); a a a - a To be added - + Method System.Byte[] @@ -1688,7 +1698,7 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(buffer, 10, 10); - + Method System.Byte[] @@ -1721,7 +1731,7 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(buffer, 10, 10); - + Method System.Void @@ -1819,9 +1829,59 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(buffer, 10, 10); a a a - a To be added + + + Constructor + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + Constructor + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Object + + + + To be added. + To be added. + To be added. + + diff --git a/doc/en/Gdk/PixbufAlphaMode.xml b/doc/en/Gdk/PixbufAlphaMode.xml index 05475f17c..97f1b4279 100644 --- a/doc/en/Gdk/PixbufAlphaMode.xml +++ b/doc/en/Gdk/PixbufAlphaMode.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.PixbufAlphaModeGType)) + + @@ -69,4 +60,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/PixbufAniAnim.xml b/doc/en/Gdk/PixbufAniAnim.xml index 9ab3f2fd6..07d7cee9d 100644 --- a/doc/en/Gdk/PixbufAniAnim.xml +++ b/doc/en/Gdk/PixbufAniAnim.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gdk.PixbufAnimation - - GLib.IWrapper - - - System.IDisposable - - @@ -48,7 +39,6 @@ Constructor for use by internal code. Do not use. a , pointer to underlying C data - a @@ -61,7 +51,7 @@ GType Property. - a + a Returns the native value for . @@ -75,10 +65,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -86,9 +79,8 @@ Protected constructor. - a - \ No newline at end of file + diff --git a/doc/en/Gdk/PixbufAniAnimIter.xml b/doc/en/Gdk/PixbufAniAnimIter.xml index 2ecf89acd..e0ad8dba9 100644 --- a/doc/en/Gdk/PixbufAniAnimIter.xml +++ b/doc/en/Gdk/PixbufAniAnimIter.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gdk.PixbufAnimationIter - - GLib.IWrapper - - - System.IDisposable - - @@ -48,7 +39,6 @@ Constructor for internal use. a , pointer to the underlying C object - a @@ -61,7 +51,7 @@ GType Property. - a + a Returns the native value for . @@ -75,10 +65,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -86,9 +79,8 @@ Protected constructor. - a - \ No newline at end of file + diff --git a/doc/en/Gdk/PixbufAnimation.xml b/doc/en/Gdk/PixbufAnimation.xml index a6f0f3067..65063935c 100644 --- a/doc/en/Gdk/PixbufAnimation.xml +++ b/doc/en/Gdk/PixbufAnimation.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -109,7 +100,6 @@ Internal constructor Pointer to the C object. - An instance of PixbufAnimation, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -131,9 +121,6 @@ and domains. A , the filename to load into this object. - A with a reference count - of 1, or if an error occurred. - @@ -145,7 +132,7 @@ The width of the animation. - A + A @@ -158,7 +145,7 @@ Gets the image if this animation is actually a static, unanimaged file. - A + A @@ -170,7 +157,7 @@ The height of the animation. - A + A @@ -189,7 +176,7 @@ TRUE. Use to retrieve the image. - a + a @@ -202,7 +189,7 @@ GType Property. - a + a Returns the native value for . @@ -216,10 +203,13 @@ Internal constructor a - a This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -275,7 +265,6 @@ Makes a new animation object from a . a - a Useful for creating an animation from an image file that resides in memory. @@ -306,7 +295,6 @@ Gdk.PixbufAnimation pba = new Gdk.PixbufAnimation(memorystream); If the value is , the image will be looked up on the calling assembly. The name given as the resource in the assembly - The created from the resource stream This method is used to construct a from an embedded resource in an assembly. @@ -331,4 +319,4 @@ mcs -resource:anim.gif sample.cs - \ No newline at end of file + diff --git a/doc/en/Gdk/PixbufAnimationIter.xml b/doc/en/Gdk/PixbufAnimationIter.xml index 60a613120..5773bbee0 100644 --- a/doc/en/Gdk/PixbufAnimationIter.xml +++ b/doc/en/Gdk/PixbufAnimationIter.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,14 +17,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -113,7 +104,6 @@ Internal constructor Pointer to the C object. - An instance of PixbufAnimationIter, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -130,7 +120,7 @@ Gets the number of milliseconds the current pixbuf should be displayed, or -1 if the current pixbuf should be displayed forever. - A , delay time in milliseconds (thousandths of a second) + A , delay time in milliseconds (thousandths of a second) g_timeout_add() (FIXME: this doesn't seem to be bound) conveniently takes a timeout in milliseconds, so you can use a timeout @@ -157,7 +147,7 @@ (don't just add a reference), as it may get recycled as you advance the iterator. - A + A @@ -170,7 +160,7 @@ GType Property. - a + a Returns the native value for . @@ -184,10 +174,13 @@ Internal constructor a - Creates a new instance of , using the GLib-provided type This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -195,9 +188,8 @@ Protected constructor. - a - \ No newline at end of file + diff --git a/doc/en/Gdk/PixbufDestroyNotify.xml b/doc/en/Gdk/PixbufDestroyNotify.xml index c030701d3..365bdf70f 100644 --- a/doc/en/Gdk/PixbufDestroyNotify.xml +++ b/doc/en/Gdk/PixbufDestroyNotify.xml @@ -1,32 +1,23 @@ - + gdk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. Delegate class for code to be run when a object is destroyed. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - - + System.Void - \ No newline at end of file + diff --git a/doc/en/Gdk/PixbufError.xml b/doc/en/Gdk/PixbufError.xml index 0d555b2e6..9f455f0d9 100644 --- a/doc/en/Gdk/PixbufError.xml +++ b/doc/en/Gdk/PixbufError.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.PixbufErrorGType)) + + @@ -121,4 +112,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/PixbufFormat.xml b/doc/en/Gdk/PixbufFormat.xml index 68ed8905c..601ce1ef2 100644 --- a/doc/en/Gdk/PixbufFormat.xml +++ b/doc/en/Gdk/PixbufFormat.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ GLib.Opaque - @@ -27,7 +24,7 @@ A description of the format. - a + a @@ -39,7 +36,7 @@ The MIME types supported by the format. - a + a @@ -51,7 +48,7 @@ The filename extensions typically used for files in the given format. - a + a @@ -63,7 +60,7 @@ The name of the format. - a + a @@ -76,7 +73,7 @@ Whether pixbufs can be saved in the given format. - a + a @@ -90,7 +87,6 @@ Basic constructor. a , pointer to the underlying C data structure. - a @@ -103,7 +99,7 @@ To be added - a + a To be added @@ -115,7 +111,7 @@ To be added - a + a To be added @@ -128,7 +124,7 @@ To be added - a + a To be added @@ -141,9 +137,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/PixbufFrame.xml b/doc/en/Gdk/PixbufFrame.xml index 970c322a1..e14aedfce 100644 --- a/doc/en/Gdk/PixbufFrame.xml +++ b/doc/en/Gdk/PixbufFrame.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -58,7 +55,7 @@ To be added A - A + A @@ -73,7 +70,7 @@ To be added A - A + A @@ -88,7 +85,7 @@ To be added A - A + A @@ -184,4 +181,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/PixbufFrameAction.xml b/doc/en/Gdk/PixbufFrameAction.xml index 59e713ef4..dd2f74b7d 100644 --- a/doc/en/Gdk/PixbufFrameAction.xml +++ b/doc/en/Gdk/PixbufFrameAction.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -82,4 +68,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/PixbufGifAnim.xml b/doc/en/Gdk/PixbufGifAnim.xml index 5a6fa82f8..caec6edb6 100644 --- a/doc/en/Gdk/PixbufGifAnim.xml +++ b/doc/en/Gdk/PixbufGifAnim.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gdk.PixbufAnimation - - GLib.IWrapper - - - System.IDisposable - - @@ -63,7 +54,6 @@ Internal constructor Pointer to the C object. - An instance of PixbufGifAnim, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -78,7 +68,7 @@ GType Property. - a + a Returns the native value for . @@ -92,10 +82,13 @@ Internal constructor a - Creates a new instance of , using the GLib-provided type This is a constructor used by derivative types of that would have their own GLib.GType assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -103,9 +96,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/PixbufGifAnimIter.xml b/doc/en/Gdk/PixbufGifAnimIter.xml index 86b2861d1..aa9af32ba 100644 --- a/doc/en/Gdk/PixbufGifAnimIter.xml +++ b/doc/en/Gdk/PixbufGifAnimIter.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gdk.PixbufAnimationIter - - GLib.IWrapper - - - System.IDisposable - - @@ -48,7 +39,6 @@ Internal constructor Pointer to the C object. - An instance of PixbufGifAnimIter, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -63,7 +53,7 @@ GType Property. - a + a Returns the native value for . @@ -77,10 +67,13 @@ Internal constructor a - Creates a new instance of , using the GLib-provided type This is a constructor used by derivative types of that would have their own GLib type assigned to it. This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -88,9 +81,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/PixbufLoader.xml b/doc/en/Gdk/PixbufLoader.xml index 6e96f7464..2c8322d96 100644 --- a/doc/en/Gdk/PixbufLoader.xml +++ b/doc/en/Gdk/PixbufLoader.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -133,17 +131,10 @@ namespace GtkDemo GLib.Object - - GLib.IWrapper - - - System.IDisposable - - - + Method System.Boolean @@ -197,7 +188,6 @@ namespace GtkDemo Internal constructor Pointer to the C object. - An instance of PixbufLoader, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -210,7 +200,6 @@ namespace GtkDemo Default constructor - an object of type @@ -222,7 +211,7 @@ namespace GtkDemo The Pixbuf that is being loaded. - an object of type + an object of type @@ -234,7 +223,7 @@ namespace GtkDemo To be added - an object of type + an object of type To be added @@ -249,7 +238,11 @@ namespace GtkDemo Emitted when the area of the PixbufLoader is prepared. - + + + GLib.Signal(CName="area_prepared") + + Event @@ -261,7 +254,11 @@ namespace GtkDemo Emitted when the area of the PixbufLoader is updated with data. - + + + GLib.Signal(CName="area_updated") + + Event @@ -273,7 +270,11 @@ namespace GtkDemo Emitted when the PixbufLoader is closed. - + + + GLib.Signal(CName="closed") + + Property @@ -282,7 +283,7 @@ namespace GtkDemo To be added - a + a To be added @@ -297,7 +298,11 @@ namespace GtkDemo Emitted when the PixbufLoader has prepared its size. - + + + GLib.Signal(CName="size_prepared") + + Method @@ -324,7 +329,7 @@ namespace GtkDemo GType Property. - a + a Returns the native value for . @@ -400,12 +405,15 @@ namespace GtkDemo Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - + Method System.Boolean @@ -446,7 +454,6 @@ namespace GtkDemo To be added a - a To be added @@ -481,7 +488,6 @@ namespace GtkDemo Loads a Pixbuf from a . a containing the image. - a See also @@ -499,7 +505,6 @@ namespace GtkDemo a containing the image. a specifying the required width. a specifying the required height. - a See also @@ -517,7 +522,6 @@ namespace GtkDemo If the value is , the image will be looked up on the calling assembly. The name given as the resource in the assembly. - a for the resource stream See also @@ -539,12 +543,11 @@ If the value is , the image will be looked up on the call The name given as the resource in the assembly. The required width of the pixbuf. The required height of the pixbuf. - a for the resource stream See also - + Constructor @@ -553,12 +556,11 @@ If the value is , the image will be looked up on the call Loads a Pixbuf in a buffer. The containing the image. - a for the buffer. See also - + Constructor @@ -571,7 +573,6 @@ If the value is , the image will be looked up on the call The containing the image. The required width of the pixbuf. The required height of the pixbuf. - a for the buffer. See also @@ -589,44 +590,13 @@ If the value is , the image will be looked up on the call a a a - a - To be added - - - - - Constructor - - - - - - To be added - a - a - To be added - - - - - Constructor - - - - - - - - To be added - a - a - a - a To be added + + - + Method System.Boolean diff --git a/doc/en/Gdk/PixbufRotation.xml b/doc/en/Gdk/PixbufRotation.xml index 07bb2e3cb..7f216b2bc 100644 --- a/doc/en/Gdk/PixbufRotation.xml +++ b/doc/en/Gdk/PixbufRotation.xml @@ -4,8 +4,6 @@ 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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.PixbufRotationGType)) + + @@ -80,18 +71,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gdk/PixbufSaveFunc.xml b/doc/en/Gdk/PixbufSaveFunc.xml index 78bf02839..8d275b354 100644 --- a/doc/en/Gdk/PixbufSaveFunc.xml +++ b/doc/en/Gdk/PixbufSaveFunc.xml @@ -1,35 +1,27 @@ - + 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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. To be added To be added + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Boolean - + - \ No newline at end of file + diff --git a/doc/en/Gdk/Pixdata.xml b/doc/en/Gdk/Pixdata.xml index 5ffb9e225..c96033edc 100644 --- a/doc/en/Gdk/Pixdata.xml +++ b/doc/en/Gdk/Pixdata.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -183,7 +180,7 @@ - + Method System.Boolean @@ -201,7 +198,7 @@ - + Method System.Byte[] @@ -215,4 +212,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/PixdataDumpType.xml b/doc/en/Gdk/PixdataDumpType.xml index b787d9b40..63ce8a4a2 100644 --- a/doc/en/Gdk/PixdataDumpType.xml +++ b/doc/en/Gdk/PixdataDumpType.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + System.Flags + + @@ -147,4 +138,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/PixdataType.xml b/doc/en/Gdk/PixdataType.xml index 6d82bf918..c49ddedb4 100644 --- a/doc/en/Gdk/PixdataType.xml +++ b/doc/en/Gdk/PixdataType.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -147,4 +133,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Pixmap.xml b/doc/en/Gdk/Pixmap.xml index 0df918ddc..8410e9695 100644 --- a/doc/en/Gdk/Pixmap.xml +++ b/doc/en/Gdk/Pixmap.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,14 +18,7 @@ The depth of a pixmap is the number of bits per pixels. Bitmaps are simply pixma Gdk.Drawable - - GLib.IWrapper - - - System.IDisposable - - @@ -89,7 +80,6 @@ For example in the X backend, a native pixmap handle is an Xlib XID. Internal constructor Pointer to the C object. - An instance of Pixmap, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -179,7 +169,6 @@ For example in the X backend, a native pixmap handle is an Xlib XID. The width of the new pixmap in pixels. The height of the new pixmap in pixels. The depth (number of bits per pixel) of the new pixmap. If -1, and drawable is not , the depth of the new pixmap will be equal to that of drawable. - The new pixmap with the given size and depth Create a new pixmap with a given size and depth. @@ -192,7 +181,7 @@ For example in the X backend, a native pixmap handle is an Xlib XID. GType Property. - a + a Returns the native value for . @@ -206,10 +195,13 @@ For example in the X backend, a native pixmap handle is an Xlib XID. Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -224,12 +216,11 @@ For example in the X backend, a native pixmap handle is an Xlib XID. A , used to determine default values for the new pixmap. The width of the new pixmap in pixels. The height of the new pixmap in pixels. - The new . Creates a new pixmap with a given size and depth. - + Method Gdk.Pixmap @@ -297,7 +288,7 @@ For example in the X backend, a native pixmap handle is an Xlib XID. - + Method Gdk.Pixmap @@ -419,4 +410,4 @@ For example in the X backend, a native pixmap handle is an Xlib XID. - \ No newline at end of file + diff --git a/doc/en/Gdk/Point.xml b/doc/en/Gdk/Point.xml index 8f108d750..04990fcb3 100644 --- a/doc/en/Gdk/Point.xml +++ b/doc/en/Gdk/Point.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -59,7 +56,6 @@ Creates a Point object from integer x- and y-coordinates. The x-coordinate. The y-coordinate. - @@ -112,7 +108,8 @@ Checks if the point is (0,0) - true if this == (0,0 + true if this == (0,0 + To be added. @@ -127,7 +124,7 @@ Equality for points a - true if == this + true if == this @@ -156,6 +153,7 @@ Moves this point by quanities dx and dy Quanity by which to change X Quanity by which to change Y + To be added. @@ -168,9 +166,96 @@ Constructs a point from a a - as a - The point will have an X of .Width and a Y of .Height + The point will have an X of .Width and a Y of .Height + + + + + Method + + Gdk.Size + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Gdk.Point + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Gdk.Point + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. - \ No newline at end of file + diff --git a/doc/en/Gdk/Pointer.xml b/doc/en/Gdk/Pointer.xml index b46aeb0ae..dd8c8032c 100644 --- a/doc/en/Gdk/Pointer.xml +++ b/doc/en/Gdk/Pointer.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -67,7 +64,6 @@ Default constructor. - a Class contains only static methods. @@ -80,7 +76,7 @@ Readonly property indicating if pointer is grabbed. - a + a @@ -105,4 +101,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/PointerHooks.xml b/doc/en/Gdk/PointerHooks.xml index 7b0671493..a1f5d33b5 100644 --- a/doc/en/Gdk/PointerHooks.xml +++ b/doc/en/Gdk/PointerHooks.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -48,4 +45,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/PropMode.xml b/doc/en/Gdk/PropMode.xml index 30bce9f47..e7dd8c15a 100644 --- a/doc/en/Gdk/PropMode.xml +++ b/doc/en/Gdk/PropMode.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.PropModeGType)) + + @@ -82,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Property.xml b/doc/en/Gdk/Property.xml index cf41ed504..73bbbc849 100644 --- a/doc/en/Gdk/Property.xml +++ b/doc/en/Gdk/Property.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -43,7 +40,6 @@ To be added - a To be added @@ -74,7 +70,7 @@ - + Method System.Boolean @@ -108,4 +104,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/PropertyState.xml b/doc/en/Gdk/PropertyState.xml index 637bd8431..1f0b6bfdd 100644 --- a/doc/en/Gdk/PropertyState.xml +++ b/doc/en/Gdk/PropertyState.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.PropertyStateGType)) + + @@ -69,4 +60,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Query.xml b/doc/en/Gdk/Query.xml deleted file mode 100644 index 6e337b5bd..000000000 --- a/doc/en/Gdk/Query.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - gdk-sharp - - - 0.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - To be added - To be added - - - System.Object - - - - - - - Constructor - - - - To be added - a - To be added - - - - - Method - - System.Void - - - - - - - To be added - a - a - To be added - - - - - Method - - System.Void - - - - - - - To be added - a - a - To be added - - - - \ No newline at end of file diff --git a/doc/en/Gdk/Rectangle.xml b/doc/en/Gdk/Rectangle.xml index 4924f10d8..ed118d878 100644 --- a/doc/en/Gdk/Rectangle.xml +++ b/doc/en/Gdk/Rectangle.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -63,7 +60,6 @@ Y value Width of the rectangle. Height of the rectangle - The initialized rectangle. @@ -89,7 +85,7 @@ GType Property. - a + a Returns the native value for . @@ -188,7 +184,8 @@ The Y coordinate of the top of the rectangle. - a + a + To be added. @@ -200,7 +197,8 @@ The Y coordinate of the bottom of the rectangle. - a + a + To be added. @@ -212,7 +210,8 @@ The X coordinate of the right of the rectangle. - a + a + To be added. @@ -224,7 +223,8 @@ The X coordinate of the left of the rectangle. - a + a + To be added. @@ -236,7 +236,7 @@ Gets if the area of the rectangle is zero - a + a This will return true if either the height or the width is zero. @@ -249,7 +249,8 @@ Gets the size represented by (Width, Height) - a + a + To be added. @@ -261,7 +262,8 @@ Gets the point represented by (X, Y) - a + a + To be added. @@ -283,6 +285,7 @@ a a a + To be added. @@ -300,6 +303,7 @@ a a a + To be added. @@ -317,6 +321,7 @@ a a a + To be added. @@ -336,7 +341,7 @@ Change in the X size Change in the Y size a - The rectangle's center is the same as the center of . + The rectangle's center is the same as the center of . @@ -354,7 +359,7 @@ a A change in size. a - The rectangle's center is the same as the center of . + The rectangle's center is the same as the center of . @@ -374,6 +379,7 @@ a a a + To be added. @@ -391,6 +397,7 @@ a a a + To be added. @@ -450,6 +457,7 @@ Does hit testing for a point a a + To be added. @@ -467,6 +475,7 @@ a a a + To be added. @@ -482,6 +491,7 @@ Tests if there is any overlap of this rectangle and another a a + To be added. @@ -496,6 +506,7 @@ Modifies this rectangle to be the intersection with another rectangle a + To be added. @@ -510,6 +521,7 @@ Inflates this rectangle by a given size. a + To be added. @@ -526,6 +538,7 @@ Inflates this rectangle by a given size. a a + To be added. @@ -542,6 +555,7 @@ Offsets this rectangle by (dx,dy) a a + To be added. @@ -571,8 +585,76 @@ Creates a rectangle from a point and a size. a a - A rectangle with a location of and size of . + To be added. + + + + + Method + + GLib.Value + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Gdk.Rectangle + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. - \ No newline at end of file + diff --git a/doc/en/Gdk/Region.xml b/doc/en/Gdk/Region.xml index fae3faf20..68ffad4d9 100644 --- a/doc/en/Gdk/Region.xml +++ b/doc/en/Gdk/Region.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ GLib.Opaque - @@ -263,7 +260,6 @@ To be added a - a @@ -274,7 +270,6 @@ To be added - a @@ -300,7 +295,7 @@ To be added - a + a @@ -323,4 +318,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/RegionBox.xml b/doc/en/Gdk/RegionBox.xml index 2b8403972..4cd12312d 100644 --- a/doc/en/Gdk/RegionBox.xml +++ b/doc/en/Gdk/RegionBox.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -100,4 +97,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Rgb.xml b/doc/en/Gdk/Rgb.xml index 1f0b2629c..0a5bb6b10 100644 --- a/doc/en/Gdk/Rgb.xml +++ b/doc/en/Gdk/Rgb.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,7 +22,6 @@ GdkRGB allocates a color cube to use when rendering images. You can set the thre System.Object - @@ -68,7 +65,6 @@ In many cases, you can avoid this whole issue by setting the @@ -83,7 +79,7 @@ In many cases, you can avoid this whole issue by setting the The minimum number of colors accepted. - a + a Sets the minimum number of colors for the color cube. Generally, GdkRGB tries to allocate the largest color cube it can. If it can't allocate a color cube at least as large as min_colors, it installs a private colormap. @@ -95,7 +91,7 @@ In many cases, you can avoid this whole issue by setting the + a Gets a "preferred visual" chosen by GdkRGB for rendering image data on the default screen. In previous versions of GDK, this was the only visual GdkRGB could use for rendering. In current versions, it's simply the visual GdkRGB would have chosen as the optimal one in those previous versions. GdkRGB can now render to drawables with any visual. @@ -110,7 +106,7 @@ In many cases, you can avoid this whole issue by setting the If it will install a private colormap. - a + a If the value is , it directs GdkRGB to always install a new "private" colormap rather than trying to find a best fit with the colors already allocated. Ordinarily, GdkRGB will install a colormap only if a sufficient cube cannot be allocated. A private colormap has more colors, leading to better quality display, but also leads to the dreaded "colormap flashing" effect. @@ -125,7 +121,7 @@ A private colormap has more colors, leading to better quality display, but also Get preferred colormap for using Gdk.RGB - The preferred . + The preferred . Get the preferred colormap for rendering image data. Not a very useful function; historically, GDK could only render RGB image data to one colormap and visual, but in the current version it can render to any colormap and visual. So there's no need to call this function. @@ -140,7 +136,7 @@ A private colormap has more colors, leading to better quality display, but also Whether or not to be verbose to the console about actions. Useful for debugging. a - a + a @@ -223,4 +219,4 @@ A private colormap has more colors, leading to better quality display, but also - \ No newline at end of file + diff --git a/doc/en/Gdk/RgbCmap.xml b/doc/en/Gdk/RgbCmap.xml index c19d4568d..8e5c9a38e 100644 --- a/doc/en/Gdk/RgbCmap.xml +++ b/doc/en/Gdk/RgbCmap.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -78,7 +75,7 @@ - + Field System.UInt32[] @@ -104,4 +101,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/RgbDither.xml b/doc/en/Gdk/RgbDither.xml index 4274d2ff1..cb16586ee 100644 --- a/doc/en/Gdk/RgbDither.xml +++ b/doc/en/Gdk/RgbDither.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.RgbDitherGType)) + + @@ -82,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/ScanLineList.xml b/doc/en/Gdk/ScanLineList.xml index b78bf9622..79c19a525 100644 --- a/doc/en/Gdk/ScanLineList.xml +++ b/doc/en/Gdk/ScanLineList.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,9 +27,8 @@ To be added a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/ScanLineListBlock.xml b/doc/en/Gdk/ScanLineListBlock.xml index bafcd0d08..4495c5078 100644 --- a/doc/en/Gdk/ScanLineListBlock.xml +++ b/doc/en/Gdk/ScanLineListBlock.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,9 +27,8 @@ To be added a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/Screen.xml b/doc/en/Gdk/Screen.xml index 74b883535..8153a38f0 100644 --- a/doc/en/Gdk/Screen.xml +++ b/doc/en/Gdk/Screen.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Object - - GLib.IWrapper - - @@ -33,7 +27,6 @@ Internal constructor Pointer to the C object. - An instance of Screen, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -47,7 +40,7 @@ The default screen of the default display. - The default . + The default . Returns null if there iss no default display. @@ -59,7 +52,7 @@ To be added - a + a Returns an of the number of monitors attached to the current . The following example will print the number of monitors in the current display to the console. @@ -81,7 +74,7 @@ Console.WriteLine("You have {0} monitors.",numMonitors); To be added - a + a To be added @@ -93,7 +86,7 @@ Console.WriteLine("You have {0} monitors.",numMonitors); The height of the screen in pixels. - A with the number of pixels of the screen. + A with the number of pixels of the screen. @@ -105,7 +98,7 @@ Console.WriteLine("You have {0} monitors.",numMonitors); To be added - a + a To be added @@ -117,7 +110,7 @@ Console.WriteLine("You have {0} monitors.",numMonitors); To be added - a + a To be added @@ -129,7 +122,7 @@ Console.WriteLine("You have {0} monitors.",numMonitors); To be added - a + a To be added @@ -141,7 +134,7 @@ Console.WriteLine("You have {0} monitors.",numMonitors); The height of the screen in millimeters. - A with the height of the screen in millimeters. + A with the height of the screen in millimeters. @@ -153,7 +146,7 @@ Console.WriteLine("You have {0} monitors.",numMonitors); The width of the screen in pixels. - A with the number of pixels of the screen. + A with the number of pixels of the screen. @@ -165,7 +158,7 @@ Console.WriteLine("You have {0} monitors.",numMonitors); The width of the screen in millimeters. - A with the width of the screen in millimeters. + A with the width of the screen in millimeters. @@ -180,7 +173,7 @@ Console.WriteLine("You have {0} monitors.",numMonitors); To be added a - a + a To be added @@ -192,7 +185,7 @@ Console.WriteLine("You have {0} monitors.",numMonitors); To be added - a + a To be added @@ -204,7 +197,7 @@ Console.WriteLine("You have {0} monitors.",numMonitors); To be added - a + a To be added @@ -216,7 +209,7 @@ Console.WriteLine("You have {0} monitors.",numMonitors); To be added - a + a To be added @@ -231,7 +224,11 @@ Console.WriteLine("You have {0} monitors.",numMonitors); To be added To be added - + + + GLib.Signal(CName="size_changed") + + Method @@ -334,7 +331,7 @@ Console.WriteLine("You have {0} monitors.",numMonitors); GType Property. - a + a Returns the native value for . @@ -360,12 +357,15 @@ Console.WriteLine("You have {0} monitors.",numMonitors); Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - + Property Gdk.Window[] @@ -373,7 +373,7 @@ Console.WriteLine("You have {0} monitors.",numMonitors); To be added - a + a To be added @@ -413,9 +413,8 @@ Console.WriteLine("You have {0} monitors.",numMonitors); To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/ScrollDirection.xml b/doc/en/Gdk/ScrollDirection.xml index 5cea253d8..6153474b5 100644 --- a/doc/en/Gdk/ScrollDirection.xml +++ b/doc/en/Gdk/ScrollDirection.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.ScrollDirectionGType)) + + @@ -95,4 +86,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Segment.xml b/doc/en/Gdk/Segment.xml index 97f910c9f..09d965a65 100644 --- a/doc/en/Gdk/Segment.xml +++ b/doc/en/Gdk/Segment.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -101,4 +98,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Selection.xml b/doc/en/Gdk/Selection.xml index ebff997e2..9a9ad03df 100644 --- a/doc/en/Gdk/Selection.xml +++ b/doc/en/Gdk/Selection.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -23,7 +21,6 @@ The functions in this section only contain the lowlevel parts of the selection p System.Object - @@ -218,9 +215,8 @@ The functions in this section only contain the lowlevel parts of the selection p To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/SettingAction.xml b/doc/en/Gdk/SettingAction.xml index aa81e1803..a31397d69 100644 --- a/doc/en/Gdk/SettingAction.xml +++ b/doc/en/Gdk/SettingAction.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.SettingActionGType)) + + @@ -82,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Size.xml b/doc/en/Gdk/Size.xml index 36cfa23a3..44b8801fd 100644 --- a/doc/en/Gdk/Size.xml +++ b/doc/en/Gdk/Size.xml @@ -1,11 +1,9 @@ - + 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] - 1.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,10 +14,9 @@ System.ValueType - - + Field Gdk.Size @@ -89,7 +86,6 @@ Constructor based on . Initial height and width taken to be point.X and point.Y a - a @@ -105,7 +101,6 @@ Constructor with initial values for height and width. a a - a @@ -118,7 +113,7 @@ Checks if height and width == 0 - a + a @@ -131,7 +126,7 @@ Gets/sets the width value - a + a @@ -144,9 +139,97 @@ Get/set the height value - a + a + + + Method + + Gdk.Size + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Gdk.Size + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Gdk.Point + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gdk/SizePreparedArgs.xml b/doc/en/Gdk/SizePreparedArgs.xml index 9260a7509..f57b886e7 100644 --- a/doc/en/Gdk/SizePreparedArgs.xml +++ b/doc/en/Gdk/SizePreparedArgs.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The height of the area the pixbuf loader has prepared for loading. - a + a @@ -52,9 +48,9 @@ The width of the area the pixbuf loader has prepared for loading. - a + a - \ No newline at end of file + diff --git a/doc/en/Gdk/SizePreparedHandler.xml b/doc/en/Gdk/SizePreparedHandler.xml index cdb893cc1..c155b3086 100644 --- a/doc/en/Gdk/SizePreparedHandler.xml +++ b/doc/en/Gdk/SizePreparedHandler.xml @@ -1,14 +1,14 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -36,4 +27,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gdk/Span.xml b/doc/en/Gdk/Span.xml index 9f9069122..cd00be15b 100644 --- a/doc/en/Gdk/Span.xml +++ b/doc/en/Gdk/Span.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -87,4 +84,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/SpanFunc.xml b/doc/en/Gdk/SpanFunc.xml index f97e5f87c..ba4485b37 100644 --- a/doc/en/Gdk/SpanFunc.xml +++ b/doc/en/Gdk/SpanFunc.xml @@ -1,27 +1,18 @@ - + gdk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -29,4 +20,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gdk/Spawn.xml b/doc/en/Gdk/Spawn.xml index 66fa974d4..72bd688d4 100644 --- a/doc/en/Gdk/Spawn.xml +++ b/doc/en/Gdk/Spawn.xml @@ -4,8 +4,6 @@ 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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -43,9 +40,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/Status.xml b/doc/en/Gdk/Status.xml index b77e753cd..467a92cc6 100644 --- a/doc/en/Gdk/Status.xml +++ b/doc/en/Gdk/Status.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.StatusGType)) + + @@ -108,4 +99,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/SubwindowMode.xml b/doc/en/Gdk/SubwindowMode.xml index 209e206a7..e9ec9f0ec 100644 --- a/doc/en/Gdk/SubwindowMode.xml +++ b/doc/en/Gdk/SubwindowMode.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.SubwindowModeGType)) + + @@ -69,4 +60,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/TextProperty.xml b/doc/en/Gdk/TextProperty.xml index 34e8050da..972d5088e 100644 --- a/doc/en/Gdk/TextProperty.xml +++ b/doc/en/Gdk/TextProperty.xml @@ -3,9 +3,7 @@ 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] - 1.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,10 +14,9 @@ System.Object - - + Method System.String[] @@ -41,7 +38,7 @@ - + Method System.String[] @@ -71,9 +68,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/Threads.xml b/doc/en/Gdk/Threads.xml index 31840d04e..94a0f3c15 100644 --- a/doc/en/Gdk/Threads.xml +++ b/doc/en/Gdk/Threads.xml @@ -4,9 +4,7 @@ gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -48,7 +46,6 @@ static void Main (string[] args) System.Object - @@ -93,9 +90,8 @@ static void Main (string[] args) The default constructor. - an object of type To be added - \ No newline at end of file + diff --git a/doc/en/Gdk/TimeCoord.xml b/doc/en/Gdk/TimeCoord.xml index 0895d2fed..9e0d9f530 100644 --- a/doc/en/Gdk/TimeCoord.xml +++ b/doc/en/Gdk/TimeCoord.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -61,7 +58,7 @@ - + Field System.Double[] @@ -74,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Trapezoid.xml b/doc/en/Gdk/Trapezoid.xml index 8bd4a906e..768d7701b 100644 --- a/doc/en/Gdk/Trapezoid.xml +++ b/doc/en/Gdk/Trapezoid.xml @@ -1,11 +1,9 @@ - + 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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.ValueType - @@ -126,4 +123,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/VisibilityState.xml b/doc/en/Gdk/VisibilityState.xml index 2ed1e49f0..8c507c7ff 100644 --- a/doc/en/Gdk/VisibilityState.xml +++ b/doc/en/Gdk/VisibilityState.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.VisibilityStateGType)) + + @@ -79,4 +70,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Visual.xml b/doc/en/Gdk/Visual.xml index 0d133c5f0..d3a0c8a30 100644 --- a/doc/en/Gdk/Visual.xml +++ b/doc/en/Gdk/Visual.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -55,14 +53,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -159,7 +150,6 @@ Internal constructor Pointer to the C object. - An instance of Visual, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -173,7 +163,7 @@ Best visual type for the default Gdk screen - The best visual type available. + The best visual type available. Return the best available visual type for the default GDK screen. @@ -185,7 +175,7 @@ Best depth for the default Gdk screen. - The best depth + The best depth Get the best available depth for the default GDK @@ -203,7 +193,7 @@ Visual with the most available colors for the default GDK screen. - The best visual. + The best visual. Get the visual with the most available colors for the default GDK screen. @@ -216,7 +206,7 @@ The system'sdefault visual for the default GDK screen. - The system visual + The system visual Get the system'sdefault visual for the default GDK screen. This is the visual for the root window of the display. @@ -230,7 +220,7 @@ Gets the screen to which this visual belongs. - The to which this visual belongs. + The to which this visual belongs. None. @@ -243,7 +233,7 @@ GType Property. - a + a Returns the native value for . @@ -257,10 +247,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -268,9 +261,8 @@ Default constructor. - A new . None. - \ No newline at end of file + diff --git a/doc/en/Gdk/VisualType.xml b/doc/en/Gdk/VisualType.xml index f7d475c38..54ef3eb51 100644 --- a/doc/en/Gdk/VisualType.xml +++ b/doc/en/Gdk/VisualType.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -28,18 +26,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.VisualTypeGType)) + + @@ -187,4 +178,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/WMDecoration.xml b/doc/en/Gdk/WMDecoration.xml index 3e63d92da..c3de527d2 100644 --- a/doc/en/Gdk/WMDecoration.xml +++ b/doc/en/Gdk/WMDecoration.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + System.Flags + + @@ -127,4 +118,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/WMFunction.xml b/doc/en/Gdk/WMFunction.xml index 6cabb5a98..58b7467a2 100644 --- a/doc/en/Gdk/WMFunction.xml +++ b/doc/en/Gdk/WMFunction.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + System.Flags + + @@ -121,4 +112,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/Window.xml b/doc/en/Gdk/Window.xml index 92c364743..58ec0cac5 100644 --- a/doc/en/Gdk/Window.xml +++ b/doc/en/Gdk/Window.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -22,14 +20,7 @@ Gdk.Drawable - - GLib.IWrapper - - - System.IDisposable - - @@ -1181,7 +1172,6 @@ in a child). Internal constructor Pointer to the C object. - An instance of Window, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -1201,7 +1191,6 @@ in a child). A A A - A The type of the parameter in this auto-generated constructor is incorrect. You would normally want to use the overloaded constructor that takes a . @@ -1219,7 +1208,6 @@ in a child). a a a - a @@ -1235,7 +1223,7 @@ in a child). For debugging use only. A - A + A @@ -1250,7 +1238,7 @@ in a child). To be added A - A + A @@ -1265,7 +1253,7 @@ in a child). To be added A - A + A @@ -1280,7 +1268,7 @@ in a child). To be added A - A + A @@ -1292,7 +1280,7 @@ in a child). To be added - A + A @@ -1307,7 +1295,7 @@ in a child). Sets the cursor for the window. The cursor - + Sets the mouse pointer for a . @@ -1326,7 +1314,7 @@ in a child). To be added A - A + A @@ -1341,7 +1329,7 @@ in a child). To be added A - A + A @@ -1353,7 +1341,7 @@ in a child). To be added - A + A @@ -1365,7 +1353,7 @@ in a child). To be added - A + A @@ -1380,7 +1368,7 @@ in a child). To be added A - A + A @@ -1395,7 +1383,7 @@ in a child). To be added A - A + A @@ -1410,7 +1398,7 @@ in a child). To be added A - A + A @@ -1422,7 +1410,7 @@ in a child). To be added - A + A @@ -1437,7 +1425,7 @@ in a child). To be added A - A + A @@ -1452,7 +1440,7 @@ in a child). Sets the background color for the window. The color - A + A Sets the background color of window. (However, when using GTK+, set the background of a widget with - if you're an application - or - if you're implementing a custom widget. The color must be allocated; @@ -1467,7 +1455,7 @@ The color must be allocated; To be added - A + A @@ -1482,7 +1470,7 @@ The color must be allocated; To be added a - a + a @@ -1497,7 +1485,7 @@ The color must be allocated; To be added a - a + a @@ -1725,7 +1713,7 @@ The color must be allocated; To be added - a + a @@ -1738,7 +1726,7 @@ The color must be allocated; To be added - a + a @@ -1752,12 +1740,15 @@ The color must be allocated; Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - + Property Gdk.Window[] @@ -1765,12 +1756,12 @@ The color must be allocated; To be added - a + a - + Property Gdk.Window[] @@ -1778,19 +1769,19 @@ The color must be allocated; Gets the children of window known to Gdk. - The array of windows. + The array of windows. This function only returns children created via GDK, so for example it's useless when used with the root window; it only returns windows an application created itself. - + Property Gdk.Pixbuf[] To be added - a + a @@ -1835,7 +1826,7 @@ The color must be allocated; To be added - a + a @@ -1847,7 +1838,7 @@ The color must be allocated; To be added - a + a To be added @@ -1859,7 +1850,7 @@ The color must be allocated; To be added - a + a To be added @@ -1871,7 +1862,7 @@ The color must be allocated; To be added - a + a To be added @@ -1884,7 +1875,7 @@ The color must be allocated; To be added - a + a To be added @@ -1942,7 +1933,7 @@ The color must be allocated; Obtains the bounding box of the window. - a + a Area includes window manager titlebar/borders if any. The frame position is given in root window coordinates. To get the position of the window itself (rather than the frame) in root window coordinates, use . @@ -1984,7 +1975,7 @@ The color must be allocated; To be added - a + a To be added @@ -2013,4 +2004,4 @@ The color must be allocated; - \ No newline at end of file + diff --git a/doc/en/Gdk/WindowAttr.xml b/doc/en/Gdk/WindowAttr.xml index c41a35950..6c4dc0ef5 100644 --- a/doc/en/Gdk/WindowAttr.xml +++ b/doc/en/Gdk/WindowAttr.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -58,7 +55,7 @@ Colormap for the window. Colormap for the window. - To be added: an object of type 'Gdk.Colormap' + To be added: an object of type 'Gdk.Colormap' None. @@ -75,8 +72,8 @@ for the window. for the window. - - for the window. + + for the window. None. @@ -89,7 +86,7 @@ Cursor for the window (see ). - Cursor for the window. (see ). + Cursor for the window. (see ). None. @@ -245,7 +242,7 @@ Event mask. - a + a See . diff --git a/doc/en/Gdk/WindowAttributesType.xml b/doc/en/Gdk/WindowAttributesType.xml index 0ef7f5861..fef41d030 100644 --- a/doc/en/Gdk/WindowAttributesType.xml +++ b/doc/en/Gdk/WindowAttributesType.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.WindowAttributesTypeGType)) + + + System.Flags + + @@ -147,4 +141,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/WindowClass.xml b/doc/en/Gdk/WindowClass.xml index 19365aafe..64516690c 100644 --- a/doc/en/Gdk/WindowClass.xml +++ b/doc/en/Gdk/WindowClass.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.WindowClassGType)) + + @@ -72,4 +63,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/WindowEdge.xml b/doc/en/Gdk/WindowEdge.xml index 322a3910d..f857c0cf3 100644 --- a/doc/en/Gdk/WindowEdge.xml +++ b/doc/en/Gdk/WindowEdge.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.WindowEdgeGType)) + + @@ -139,4 +130,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/WindowHints.xml b/doc/en/Gdk/WindowHints.xml index 76ebab8ef..6bcc16560 100644 --- a/doc/en/Gdk/WindowHints.xml +++ b/doc/en/Gdk/WindowHints.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.WindowHintsGType)) + + + System.Flags + + @@ -160,4 +154,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/WindowState.xml b/doc/en/Gdk/WindowState.xml index 93e49812e..b8d8a4d34 100644 --- a/doc/en/Gdk/WindowState.xml +++ b/doc/en/Gdk/WindowState.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.WindowStateGType)) + + + System.Flags + + @@ -131,4 +125,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/WindowType.xml b/doc/en/Gdk/WindowType.xml index ed3a2185b..cd7cbb081 100644 --- a/doc/en/Gdk/WindowType.xml +++ b/doc/en/Gdk/WindowType.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.WindowTypeGType)) + + @@ -116,4 +107,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gdk/WindowTypeHint.xml b/doc/en/Gdk/WindowTypeHint.xml index d734336e1..ac681effe 100644 --- a/doc/en/Gdk/WindowTypeHint.xml +++ b/doc/en/Gdk/WindowTypeHint.xml @@ -1,12 +1,10 @@ - + gdk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,18 +22,11 @@ These map to the FreeDesktop WM specification (http://freedesktop.org/Standards/ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gdk.WindowTypeHintGType)) + + @@ -155,4 +146,4 @@ These map to the FreeDesktop WM specification (http://freedesktop.org/Standards/ - \ No newline at end of file + diff --git a/doc/en/Glade/AccelInfo.xml b/doc/en/Glade/AccelInfo.xml index ce3a3e84c..9c2962844 100644 --- a/doc/en/Glade/AccelInfo.xml +++ b/doc/en/Glade/AccelInfo.xml @@ -1,23 +1,21 @@ - + glade-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. The structure is used as part of the output of libglade's XML parser. - + + System.ValueType - @@ -57,7 +55,8 @@ The key code for the accelerator. - + + @@ -70,7 +69,8 @@ The modifier keys for the accelerator. - + + @@ -83,7 +83,8 @@ The signal to which this accelerator should be connected. - + + diff --git a/doc/en/Glade/ApplyCustomPropFunc.xml b/doc/en/Glade/ApplyCustomPropFunc.xml index 595192145..6eb2f0810 100644 --- a/doc/en/Glade/ApplyCustomPropFunc.xml +++ b/doc/en/Glade/ApplyCustomPropFunc.xml @@ -1,27 +1,22 @@ - + glade-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. Event handler. - + + System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -32,4 +27,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Glade/AtkActionInfo.xml b/doc/en/Glade/AtkActionInfo.xml index 7f57d3109..a8eb949b6 100644 --- a/doc/en/Glade/AtkActionInfo.xml +++ b/doc/en/Glade/AtkActionInfo.xml @@ -1,12 +1,10 @@ - + glade-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -57,7 +54,8 @@ An action name. - + + @@ -70,7 +68,8 @@ A description of the action. - + + diff --git a/doc/en/Glade/AtkRelationInfo.xml b/doc/en/Glade/AtkRelationInfo.xml index 38f2b6edb..356598361 100644 --- a/doc/en/Glade/AtkRelationInfo.xml +++ b/doc/en/Glade/AtkRelationInfo.xml @@ -1,23 +1,21 @@ - + glade-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. This structure is used as part of the output of libglade's XML parser. - + + System.ValueType - @@ -57,7 +55,8 @@ To be added - + + @@ -70,7 +69,8 @@ To be added - + + diff --git a/doc/en/Glade/BuildChildrenFunc.xml b/doc/en/Glade/BuildChildrenFunc.xml index 8079929b3..ab3993b4a 100644 --- a/doc/en/Glade/BuildChildrenFunc.xml +++ b/doc/en/Glade/BuildChildrenFunc.xml @@ -1,27 +1,20 @@ - + glade-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. event handler. this delegate is used for custom methods to built the internal children of a widget. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -31,4 +24,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Glade/ChildInfo.xml b/doc/en/Glade/ChildInfo.xml index 4ad54e65e..2e2c7d48f 100644 --- a/doc/en/Glade/ChildInfo.xml +++ b/doc/en/Glade/ChildInfo.xml @@ -1,12 +1,10 @@ - + glade-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -55,8 +52,9 @@ A child widget. - a - + a + + @@ -67,8 +65,9 @@ The widget's properties. - a - + a + + @@ -81,7 +80,8 @@ The number of properties this widget has. - + + @@ -94,7 +94,8 @@ To be added - + + diff --git a/doc/en/Glade/FindInternalChildFunc.xml b/doc/en/Glade/FindInternalChildFunc.xml index 5d9699ef8..4ed46aac9 100644 --- a/doc/en/Glade/FindInternalChildFunc.xml +++ b/doc/en/Glade/FindInternalChildFunc.xml @@ -1,27 +1,21 @@ - + glade-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. Event handler. this delegate is used for custom methods to find the internal children of a widget. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -31,4 +25,4 @@ Gtk.Widget - \ No newline at end of file + diff --git a/doc/en/Glade/Global.xml b/doc/en/Glade/Global.xml index 0402d6d5e..e02b5c9e5 100644 --- a/doc/en/Glade/Global.xml +++ b/doc/en/Glade/Global.xml @@ -4,9 +4,7 @@ glade-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -89,7 +86,6 @@ Default constructor - a diff --git a/doc/en/Glade/HandlerNotFoundException.xml b/doc/en/Glade/HandlerNotFoundException.xml index 39d0543f3..69c2dd2f7 100644 --- a/doc/en/Glade/HandlerNotFoundException.xml +++ b/doc/en/Glade/HandlerNotFoundException.xml @@ -1,12 +1,10 @@ - + glade-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ System.SystemException - - System.Runtime.Serialization.ISerializable - - @@ -31,7 +25,7 @@ The type of delegate that was supposed to be connected to the signal. - a + a @@ -44,7 +38,7 @@ The name of the signal that was supposed to be connected. - a + a @@ -57,7 +51,7 @@ The name of the handler that was supposed to be connected. - a + a @@ -70,7 +64,7 @@ Information about the event. - a + a @@ -91,7 +85,6 @@ a a a - a @@ -108,7 +101,6 @@ Protected constructor. a a - a @@ -131,7 +123,6 @@ a a a - a @@ -155,4 +146,4 @@ - \ No newline at end of file + diff --git a/doc/en/Glade/Interface.xml b/doc/en/Glade/Interface.xml index 44f63508f..ac27d36f4 100644 --- a/doc/en/Glade/Interface.xml +++ b/doc/en/Glade/Interface.xml @@ -1,12 +1,10 @@ - + glade-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -82,8 +79,9 @@ The top-level widgets. - an object of type - + an object of type + + @@ -96,7 +94,8 @@ To be added - + + @@ -109,7 +108,8 @@ To be added - + + @@ -122,7 +122,8 @@ To be added - + + diff --git a/doc/en/Glade/NewFunc.xml b/doc/en/Glade/NewFunc.xml index f96111b60..4914625ff 100644 --- a/doc/en/Glade/NewFunc.xml +++ b/doc/en/Glade/NewFunc.xml @@ -1,34 +1,28 @@ - + glade-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. Event handler. this delegate is called used for custom methods to create widgets. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - - + Gtk.Widget - \ No newline at end of file + diff --git a/doc/en/Glade/Parser.xml b/doc/en/Glade/Parser.xml index d2384892d..433f38e11 100644 --- a/doc/en/Glade/Parser.xml +++ b/doc/en/Glade/Parser.xml @@ -4,9 +4,7 @@ glade-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -65,9 +62,8 @@ Generally, user code will not need to call this function. Instead, it should go Default constructor - a - \ No newline at end of file + diff --git a/doc/en/Glade/Property.xml b/doc/en/Glade/Property.xml index 0b769464b..bede9311e 100644 --- a/doc/en/Glade/Property.xml +++ b/doc/en/Glade/Property.xml @@ -1,12 +1,10 @@ - + glade-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -57,7 +54,8 @@ The name of the property. - + + @@ -70,7 +68,8 @@ The value of the property. - + + diff --git a/doc/en/Glade/RawXMLConnectFunc.xml b/doc/en/Glade/RawXMLConnectFunc.xml deleted file mode 100644 index f905fa5d2..000000000 --- a/doc/en/Glade/RawXMLConnectFunc.xml +++ /dev/null @@ -1,137 +0,0 @@ - - - - glade-sharp - - - 0.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Event handler. - - - - - System.Delegate - - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - - - - - Method - - System.Void - - - - - - To be added - a - - - - - - - Method - - System.IAsyncResult - - - - - - - - - - - - - - To be added - a - a - a - a - a - a - a - a - a - a - - - - - - - Constructor - - - - - - - To be added - a - a - a - - - - - - - Method - - System.Void - - - - - - - - - - - - To be added - a - a - a - a - a - a - a - - - - - - - - - - - - - - - - System.Void - - \ No newline at end of file diff --git a/doc/en/Glade/SignalInfo.xml b/doc/en/Glade/SignalInfo.xml index d3972855f..3735988a4 100644 --- a/doc/en/Glade/SignalInfo.xml +++ b/doc/en/Glade/SignalInfo.xml @@ -1,12 +1,10 @@ - + glade-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -57,7 +54,8 @@ To be added - + + @@ -70,7 +68,8 @@ To be added - + + @@ -83,7 +82,8 @@ To be added - + + @@ -95,9 +95,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Glade/Standard.xml b/doc/en/Glade/Standard.xml index 28461863d..423907636 100644 --- a/doc/en/Glade/Standard.xml +++ b/doc/en/Glade/Standard.xml @@ -4,9 +4,7 @@ glade-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -45,7 +42,6 @@ Default constructor - a @@ -70,4 +66,4 @@ - \ No newline at end of file + diff --git a/doc/en/Glade/WidgetAttribute.xml b/doc/en/Glade/WidgetAttribute.xml index e750fce03..e6c189efc 100644 --- a/doc/en/Glade/WidgetAttribute.xml +++ b/doc/en/Glade/WidgetAttribute.xml @@ -4,9 +4,7 @@ glade-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. @@ -41,7 +39,7 @@ - System.AttributeUsageAttribute + System.AttributeUsage(AllowMultiple=False, Inherited=True, ValidOn=System.AttributeTargets.Field) @@ -100,9 +98,9 @@ Whether a specific binding was requsted - This returns if a specific + This returns if a specific widget name was requested to be bound, or if the runtime has to use the field name - as the Glade name. + as the Glade name. @@ -114,10 +112,10 @@ The name of the widget targetted - The name of the widget targeted in the Glade - definition file. + The name of the widget targeted in the Glade + definition file. - \ No newline at end of file + diff --git a/doc/en/Glade/WidgetInfo.xml b/doc/en/Glade/WidgetInfo.xml index 0074ef7c5..b434345e8 100644 --- a/doc/en/Glade/WidgetInfo.xml +++ b/doc/en/Glade/WidgetInfo.xml @@ -1,12 +1,10 @@ - + glade-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -55,8 +52,9 @@ Details about child widgets. - a - + a + + @@ -67,8 +65,9 @@ Details about accelerators. - a - + a + + @@ -79,8 +78,9 @@ Details about this widget's relations. - a - + a + + @@ -91,8 +91,9 @@ To be added - a - + a + + @@ -103,8 +104,9 @@ To be added - a - + a + + @@ -115,8 +117,9 @@ To be added - a - + a + + @@ -127,8 +130,9 @@ To be added - a - + a + + @@ -139,8 +143,9 @@ This widget's parent widget. - a - + a + + @@ -153,7 +158,8 @@ To be added - + + @@ -166,7 +172,8 @@ This widget's name. - + + @@ -179,7 +186,8 @@ The number of properties this widget has. - + + @@ -192,7 +200,8 @@ The number of AtkProperties this widget has. - + + @@ -205,7 +214,8 @@ The number of signals this widget connects to. - + + @@ -218,7 +228,8 @@ To be added - + + @@ -231,7 +242,8 @@ To be added - + + @@ -244,7 +256,8 @@ The number of accelerators this widget has. - + + @@ -257,7 +270,8 @@ The number of children this widget has. - + + diff --git a/doc/en/Glade/XML.xml b/doc/en/Glade/XML.xml index a711dbf00..b84e68377 100644 --- a/doc/en/Glade/XML.xml +++ b/doc/en/Glade/XML.xml @@ -1,12 +1,10 @@ - + glade-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -70,14 +68,12 @@ public class GladeApp GLib.Object - - GLib.IWrapper - - - System.IDisposable - - + + + System.Reflection.DefaultMember(MemberName="Item") + + @@ -123,7 +119,7 @@ public class GladeApp Allows you to override the default behaviour when a Custom widget is found in an interface. - a + a Setting this property allows you to override the default @@ -575,7 +571,6 @@ of this method. Internal constructor Pointer to the C object. - An instance of XML, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -600,10 +595,6 @@ of this method. the translation domain for the XML file ( is the default) - - the newly created object, or - if the operation failed. - @@ -631,10 +622,6 @@ of this method. the translation domain for the XML file ( is the default) - - the newly created object, or - if the operation failed. - @@ -647,7 +634,7 @@ of this method. the filename of the object - the filename that this Glade XML object is created from + the filename that this Glade XML object is created from @@ -666,7 +653,7 @@ of this method. is currently being built. an object of type - an object of type + an object of type This is used while the tree is being built to set the @@ -698,10 +685,6 @@ of this method. the translation domain for the XML file ( is the default) - - the newly created object, or - if the operation failed. - @@ -732,10 +715,6 @@ of this method. the translation domain for the XML file ( is the default) - - the newly created object, or - if the operation failed. - @@ -823,7 +802,7 @@ of this method. GType Property. - a + a Returns the native value for . @@ -837,10 +816,13 @@ of this method. Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -869,9 +851,24 @@ of this method. Creates an Glade.XML object from a resource and root object. a a - a , or if the operation failed. This is a convenience overload for with the 1st and 4th arguments being . + + + Property + + Gtk.Widget + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Glade/XMLConnectFunc.xml b/doc/en/Glade/XMLConnectFunc.xml index 5049550ee..663082da4 100644 --- a/doc/en/Glade/XMLConnectFunc.xml +++ b/doc/en/Glade/XMLConnectFunc.xml @@ -1,27 +1,23 @@ - + glade-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. Event handler. this delegate is used for custom methods to connect the signals to methods. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +30,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Glade/XMLCustomWidgetHandler.xml b/doc/en/Glade/XMLCustomWidgetHandler.xml index cc1fe7146..b7f316cda 100644 --- a/doc/en/Glade/XMLCustomWidgetHandler.xml +++ b/doc/en/Glade/XMLCustomWidgetHandler.xml @@ -1,27 +1,25 @@ - + glade-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. Event handler. this delegate is used for custom methods to call when a custom widget is found. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -35,4 +33,4 @@ Gtk.Widget - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/Async+Priority.xml b/doc/en/Gnome.Vfs/Async+Priority.xml new file mode 100644 index 000000000..cddb72789 --- /dev/null +++ b/doc/en/Gnome.Vfs/Async+Priority.xml @@ -0,0 +1,46 @@ + + + + gnome-vfs-sharp + 2.0.0.0 + + + System.Enum + + + + + Field + + Gnome.Vfs.Async+Priority + + + To be added. + + + + + Field + + Gnome.Vfs.Async+Priority + + + To be added. + + + + + Field + + Gnome.Vfs.Async+Priority + + + To be added. + + + + + To be added. + To be added. + + diff --git a/doc/en/Gnome.Vfs/Async.xml b/doc/en/Gnome.Vfs/Async.xml index 64ae92e83..0767e6da2 100644 --- a/doc/en/Gnome.Vfs/Async.xml +++ b/doc/en/Gnome.Vfs/Async.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -92,7 +90,6 @@ namespace Test.Gnome.Vfs { System.Object - @@ -296,4 +293,4 @@ namespace Test.Gnome.Vfs { - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/AsyncCallback.xml b/doc/en/Gnome.Vfs/AsyncCallback.xml index 496873b2c..630b902a5 100644 --- a/doc/en/Gnome.Vfs/AsyncCallback.xml +++ b/doc/en/Gnome.Vfs/AsyncCallback.xml @@ -1,29 +1,20 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Delegate used for notifying when an asynchronous operation has finished. See for examples. To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -32,4 +23,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/AsyncDirectoryLoadCallback.xml b/doc/en/Gnome.Vfs/AsyncDirectoryLoadCallback.xml index 8ae3ed0c9..462390fc1 100644 --- a/doc/en/Gnome.Vfs/AsyncDirectoryLoadCallback.xml +++ b/doc/en/Gnome.Vfs/AsyncDirectoryLoadCallback.xml @@ -1,29 +1,21 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. Delegate used for notifying when a specified number of entries have been read from a directory. Used in . To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -33,4 +25,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/AsyncReadCallback.xml b/doc/en/Gnome.Vfs/AsyncReadCallback.xml index 584844237..ee8495ed6 100644 --- a/doc/en/Gnome.Vfs/AsyncReadCallback.xml +++ b/doc/en/Gnome.Vfs/AsyncReadCallback.xml @@ -1,29 +1,23 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. + To be added. Delegate used for notifying when an asynchronous operation has finished. To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -35,4 +29,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/AsyncWriteCallback.xml b/doc/en/Gnome.Vfs/AsyncWriteCallback.xml index 34d440b53..f6ee1de6e 100644 --- a/doc/en/Gnome.Vfs/AsyncWriteCallback.xml +++ b/doc/en/Gnome.Vfs/AsyncWriteCallback.xml @@ -1,29 +1,23 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. + To be added. Delegate used for notifying when an asynchronous operation has finished. To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -35,4 +29,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/AuthenticationType.xml b/doc/en/Gnome.Vfs/AuthenticationType.xml deleted file mode 100644 index 8d06717a0..000000000 --- a/doc/en/Gnome.Vfs/AuthenticationType.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - gnome-vfs-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Enumeration used in to indicate how the password needs to be transmitted. - To be added - - - System.Enum - - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - - - - - Field - - Gnome.Vfs.ModuleCallbackAuthentication+AuthenticationType - - - - - Password will be transmitted unencrypted. - To be added - - - - - Field - - Gnome.Vfs.ModuleCallbackAuthentication+AuthenticationType - - - - - Digest is transferred, not plaintext credentials. - To be added - - - - - Field - - System.Int32 - - - - - To be added - To be added - - - - \ No newline at end of file diff --git a/doc/en/Gnome.Vfs/DeviceType.xml b/doc/en/Gnome.Vfs/DeviceType.xml index 4c6ce4af7..e8ee0129e 100644 --- a/doc/en/Gnome.Vfs/DeviceType.xml +++ b/doc/en/Gnome.Vfs/DeviceType.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -262,18 +248,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/Directory.xml b/doc/en/Gnome.Vfs/Directory.xml index 665bc0519..c0d53101f 100644 --- a/doc/en/Gnome.Vfs/Directory.xml +++ b/doc/en/Gnome.Vfs/Directory.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -74,7 +72,6 @@ namespace Test.Gnome.Vfs { System.Object - @@ -268,4 +265,4 @@ namespace Test.Gnome.Vfs { - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/Drive.xml b/doc/en/Gnome.Vfs/Drive.xml index ae75c0a07..b36ef0a75 100644 --- a/doc/en/Gnome.Vfs/Drive.xml +++ b/doc/en/Gnome.Vfs/Drive.xml @@ -1,11 +1,9 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -109,10 +100,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -123,7 +117,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -134,7 +127,6 @@ To be added - a To be added @@ -147,7 +139,7 @@ GType Property. - a + a Returns the native value for . @@ -160,7 +152,7 @@ Internal Drive Id. - a + a To be added @@ -173,7 +165,7 @@ User readable string representing this Drive (i.e. "CD-RW/DVD-ROM Drive"). - a + a To be added @@ -186,7 +178,7 @@ The icon name used to represent this Drive. - a + a To be added @@ -199,7 +191,7 @@ Returns whether the Drive is mounted. - a + a To be added @@ -212,7 +204,7 @@ The which represents this Drive (i.e. file:///media/cdrecorder). - a + a To be added @@ -225,7 +217,7 @@ The location of the actual device if applicable (i.e. /dev/hdc). - a + a To be added @@ -238,7 +230,7 @@ If , this points to the mounted . - a + a To be added @@ -251,7 +243,7 @@ Returns whether the Drive is connected. - a + a To be added @@ -264,7 +256,7 @@ Returns whether the Drive should be visible to the user. - a + a To be added @@ -277,7 +269,7 @@ The type of device this Drive represents. - a + a To be added @@ -292,7 +284,11 @@ Drive is about to be unmounted. To be added - + + + GLib.Signal(CName="volume_pre_unmount") + + Event @@ -304,7 +300,11 @@ Drive has been unmounted. To be added - + + + GLib.Signal(CName="volume_unmounted") + + Event @@ -316,6 +316,10 @@ Drive has been mounted. To be added - + + + GLib.Signal(CName="volume_mounted") + + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/DriveConnectedArgs.xml b/doc/en/Gnome.Vfs/DriveConnectedArgs.xml index e107142ab..17fad311f 100644 --- a/doc/en/Gnome.Vfs/DriveConnectedArgs.xml +++ b/doc/en/Gnome.Vfs/DriveConnectedArgs.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The connected . - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/DriveConnectedHandler.xml b/doc/en/Gnome.Vfs/DriveConnectedHandler.xml index fc2182ab7..d311340af 100644 --- a/doc/en/Gnome.Vfs/DriveConnectedHandler.xml +++ b/doc/en/Gnome.Vfs/DriveConnectedHandler.xml @@ -1,14 +1,14 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/DriveDisconnectedArgs.xml b/doc/en/Gnome.Vfs/DriveDisconnectedArgs.xml index f8cd6f3d4..242397918 100644 --- a/doc/en/Gnome.Vfs/DriveDisconnectedArgs.xml +++ b/doc/en/Gnome.Vfs/DriveDisconnectedArgs.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The disconnected . - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/DriveDisconnectedHandler.xml b/doc/en/Gnome.Vfs/DriveDisconnectedHandler.xml index c42671aef..78ff383ba 100644 --- a/doc/en/Gnome.Vfs/DriveDisconnectedHandler.xml +++ b/doc/en/Gnome.Vfs/DriveDisconnectedHandler.xml @@ -1,14 +1,14 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/FileFlags.xml b/doc/en/Gnome.Vfs/FileFlags.xml index e01560185..8631eccb6 100644 --- a/doc/en/Gnome.Vfs/FileFlags.xml +++ b/doc/en/Gnome.Vfs/FileFlags.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,20 +13,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -71,18 +58,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/FileInfo.xml b/doc/en/Gnome.Vfs/FileInfo.xml index 0bf88df78..05295f383 100644 --- a/doc/en/Gnome.Vfs/FileInfo.xml +++ b/doc/en/Gnome.Vfs/FileInfo.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,20 +14,8 @@ System.Object - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -54,7 +40,6 @@ Create a new FileInfo instance representing the text uri. representing the uri. - a To be added @@ -72,7 +57,6 @@ representing the uri. for the FileInfo metadata. - a To be added @@ -86,7 +70,6 @@ Create a new FileInfo instance representing . a - a To be added @@ -103,7 +86,6 @@ a for the FileInfo metadata. - a To be added @@ -116,7 +98,7 @@ Base name of the file (no path). - a + a To be added @@ -129,7 +111,7 @@ Properties which are actually valid in this class. - a + a To be added @@ -142,7 +124,7 @@ File type (i.e. regular, directory, block device...). - a + a To be added @@ -155,7 +137,7 @@ File permissions. - a + a To be added @@ -169,7 +151,7 @@ for this file. - a + a To be added @@ -182,7 +164,7 @@ Device id of the file. Only valid if the . - a + a To be added @@ -195,7 +177,7 @@ Inode number of the file. Only valid if the . - a + a To be added @@ -208,7 +190,7 @@ Link count. - a + a To be added @@ -221,7 +203,7 @@ UNIX user id. - a + a To be added @@ -234,7 +216,7 @@ UNIX group id. - a + a To be added @@ -247,7 +229,7 @@ Size in bytes. - a + a To be added @@ -260,7 +242,7 @@ Size measured in units of 512-byte blocks. - a + a To be added @@ -273,7 +255,7 @@ Optimal buffer size for reading/writing the file. - a + a To be added @@ -286,7 +268,7 @@ Last time the file was accessed. - a + a To be added @@ -299,7 +281,7 @@ Last time the file was modified. - a + a To be added @@ -312,7 +294,7 @@ Last time the file was changed. - a + a To be added @@ -325,7 +307,7 @@ If , this specifies the file the link points to. - a + a To be added @@ -338,8 +320,8 @@ MIME type. Only valid if the FileInfo was created with . - - representation of the MIME type. + + representation of the MIME type. To be added @@ -352,7 +334,7 @@ Indicates whether the file is a symlink. - a + a To be added @@ -365,7 +347,7 @@ Indicates whether the represents a file on the local filesystem. - a + a To be added @@ -378,7 +360,7 @@ Indicates whether the property is set. - a + a To be added @@ -391,7 +373,7 @@ Indicates whether the property is set. - a + a To be added @@ -404,9 +386,9 @@ Indicates whether the sticky bit is set. - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/FileInfoFields.xml b/doc/en/Gnome.Vfs/FileInfoFields.xml index eec0f3889..2bd86539c 100644 --- a/doc/en/Gnome.Vfs/FileInfoFields.xml +++ b/doc/en/Gnome.Vfs/FileInfoFields.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,20 +13,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -254,18 +241,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/FileInfoOptions.xml b/doc/en/Gnome.Vfs/FileInfoOptions.xml index dd9618830..8f3731ee7 100644 --- a/doc/en/Gnome.Vfs/FileInfoOptions.xml +++ b/doc/en/Gnome.Vfs/FileInfoOptions.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,20 +13,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -110,18 +97,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/FilePermissions.xml b/doc/en/Gnome.Vfs/FilePermissions.xml index 459b643eb..42b5a29c2 100644 --- a/doc/en/Gnome.Vfs/FilePermissions.xml +++ b/doc/en/Gnome.Vfs/FilePermissions.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,20 +13,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -266,18 +253,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/FileType.xml b/doc/en/Gnome.Vfs/FileType.xml index aede77534..d06ed0811 100644 --- a/doc/en/Gnome.Vfs/FileType.xml +++ b/doc/en/Gnome.Vfs/FileType.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -132,18 +118,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/Handle.xml b/doc/en/Gnome.Vfs/Handle.xml index 95faaa9f5..96194aedf 100644 --- a/doc/en/Gnome.Vfs/Handle.xml +++ b/doc/en/Gnome.Vfs/Handle.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,6 +14,5 @@ System.Object - - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/MimeAction.xml b/doc/en/Gnome.Vfs/MimeAction.xml index 183ab0d31..9ae143d1b 100644 --- a/doc/en/Gnome.Vfs/MimeAction.xml +++ b/doc/en/Gnome.Vfs/MimeAction.xml @@ -1,11 +1,9 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.ValueType - @@ -115,9 +112,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/MimeActionType.xml b/doc/en/Gnome.Vfs/MimeActionType.xml index 6ea5ba1dc..c9c59af26 100644 --- a/doc/en/Gnome.Vfs/MimeActionType.xml +++ b/doc/en/Gnome.Vfs/MimeActionType.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -67,18 +53,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/MimeApplication.xml b/doc/en/Gnome.Vfs/MimeApplication.xml index e2f68fc38..0349e85fd 100644 --- a/doc/en/Gnome.Vfs/MimeApplication.xml +++ b/doc/en/Gnome.Vfs/MimeApplication.xml @@ -1,11 +1,9 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.ValueType - @@ -216,4 +213,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/MimeApplicationArgumentType.xml b/doc/en/Gnome.Vfs/MimeApplicationArgumentType.xml index 6d4dfe228..c191f8741 100644 --- a/doc/en/Gnome.Vfs/MimeApplicationArgumentType.xml +++ b/doc/en/Gnome.Vfs/MimeApplicationArgumentType.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -67,18 +53,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/MimeMonitor.xml b/doc/en/Gnome.Vfs/MimeMonitor.xml index a91dc7938..3029ff50b 100644 --- a/doc/en/Gnome.Vfs/MimeMonitor.xml +++ b/doc/en/Gnome.Vfs/MimeMonitor.xml @@ -1,11 +1,9 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -73,10 +64,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -87,7 +81,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -98,7 +91,6 @@ To be added - a To be added @@ -111,7 +103,7 @@ GType Property. - a + a Returns the native value for . @@ -126,6 +118,10 @@ To be added To be added - + + + GLib.Signal(CName="data_changed") + + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/MimeType.xml b/doc/en/Gnome.Vfs/MimeType.xml index 7fd792932..4d8bf9b30 100644 --- a/doc/en/Gnome.Vfs/MimeType.xml +++ b/doc/en/Gnome.Vfs/MimeType.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,10 +14,9 @@ System.Object - - + Field System.String @@ -73,7 +70,6 @@ Construct a new MimeType for this . a - a To be added @@ -88,12 +84,11 @@ Construct a new MimeType for the specified mime type. representation of the mime type. - a To be added - + Constructor @@ -104,7 +99,6 @@ Tries to guess the mime type of the data in the buffer using the magic patterns. a array containing the first part of a file. the size of the buffer. - a To be added @@ -117,7 +111,7 @@ Query the mime database for the to be performed on a particular mime type by default. - a + a To be added @@ -130,7 +124,7 @@ Query the mime database for default associated with a particular mime type. - a + a To be added @@ -143,7 +137,7 @@ Query the mime database for a description of the specified mime type. - a + a To be added @@ -156,7 +150,7 @@ Query the mime database for an icon representing the specified mime type. - The filename of the icon as listed in the mime database. This is usually a filename without path information, e.g. "i-chardev.png", and sometimes does not have an extension, e.g. "i-regular" if the icon is supposed to be image type agnostic between icon themes. Icons are generic, and not theme specific. These will not necessarily match with the icons a user sees in Nautilus, you have been warned. + The filename of the icon as listed in the mime database. This is usually a filename without path information, e.g. "i-chardev.png", and sometimes does not have an extension, e.g. "i-regular" if the icon is supposed to be image type agnostic between icon themes. Icons are generic, and not theme specific. These will not necessarily match with the icons a user sees in Nautilus, you have been warned. To be added @@ -169,7 +163,7 @@ Indicates whether files of this mime type might conceivably be executable. Default for known types is false. Default for unknown types is true. - a + a To be added @@ -182,9 +176,9 @@ The name of the mime type. This is the same as what the method returns. - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/ModuleCallback.xml b/doc/en/Gnome.Vfs/ModuleCallback.xml index 65df7c9ee..b0a75b81a 100644 --- a/doc/en/Gnome.Vfs/ModuleCallback.xml +++ b/doc/en/Gnome.Vfs/ModuleCallback.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -94,10 +92,9 @@ namespace Test.Gnome.Vfs { System.Object - - + Method System.Void @@ -113,7 +110,7 @@ namespace Test.Gnome.Vfs { - + Method System.Void @@ -125,7 +122,7 @@ namespace Test.Gnome.Vfs { - + Method System.Void @@ -137,7 +134,7 @@ namespace Test.Gnome.Vfs { - + Method System.Void @@ -154,7 +151,7 @@ namespace Test.Gnome.Vfs { - + Method System.Void @@ -166,7 +163,7 @@ namespace Test.Gnome.Vfs { - + Method System.Void @@ -188,12 +185,11 @@ namespace Test.Gnome.Vfs { To be added - a To be added - + Event Gnome.Vfs.ModuleCallbackHandler @@ -205,4 +201,4 @@ namespace Test.Gnome.Vfs { - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/ModuleCallbackAuthentication+AuthenticationType.xml b/doc/en/Gnome.Vfs/ModuleCallbackAuthentication+AuthenticationType.xml new file mode 100644 index 000000000..b2fcf5c37 --- /dev/null +++ b/doc/en/Gnome.Vfs/ModuleCallbackAuthentication+AuthenticationType.xml @@ -0,0 +1,36 @@ + + + + gnome-vfs-sharp + 2.0.0.0 + + + System.Enum + + + + + Field + + Gnome.Vfs.ModuleCallbackAuthentication+AuthenticationType + + + To be added. + + + + + Field + + Gnome.Vfs.ModuleCallbackAuthentication+AuthenticationType + + + To be added. + + + + + To be added. + To be added. + + diff --git a/doc/en/Gnome.Vfs/ModuleCallbackAuthentication.xml b/doc/en/Gnome.Vfs/ModuleCallbackAuthentication.xml index 2e49d0b26..f709241cd 100644 --- a/doc/en/Gnome.Vfs/ModuleCallbackAuthentication.xml +++ b/doc/en/Gnome.Vfs/ModuleCallbackAuthentication.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,103 +14,24 @@ Gnome.Vfs.ModuleCallback - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - + + + + + + Constructor - - To be added - a - To be added - - - - - Event - - Gnome.Vfs.ModuleCallbackHandler - - To be added To be added + Property @@ -122,7 +41,7 @@ To be added - a + a To be added @@ -135,7 +54,7 @@ To be added - a + a To be added @@ -148,7 +67,7 @@ To be added - a + a To be added @@ -161,7 +80,7 @@ To be added - a + a To be added @@ -173,7 +92,7 @@ To be added - a + a To be added @@ -185,9 +104,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/ModuleCallbackFillAuthentication.xml b/doc/en/Gnome.Vfs/ModuleCallbackFillAuthentication.xml index ec8d02aff..55c7649a2 100644 --- a/doc/en/Gnome.Vfs/ModuleCallbackFillAuthentication.xml +++ b/doc/en/Gnome.Vfs/ModuleCallbackFillAuthentication.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,80 +14,13 @@ Gnome.Vfs.ModuleCallback - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - + + + + + + Constructor @@ -97,7 +28,6 @@ To be added - a To be added @@ -110,7 +40,7 @@ To be added - a + a To be added @@ -123,7 +53,7 @@ To be added - a + a To be added @@ -136,7 +66,7 @@ To be added - a + a To be added @@ -149,7 +79,7 @@ To be added - a + a To be added @@ -162,7 +92,7 @@ To be added - a + a To be added @@ -175,7 +105,7 @@ To be added - a + a To be added @@ -188,7 +118,7 @@ To be added - a + a To be added @@ -201,7 +131,7 @@ To be added - a + a To be added @@ -213,7 +143,7 @@ To be added - a + a To be added @@ -225,21 +155,10 @@ To be added - a - To be added - - - - - Event - - Gnome.Vfs.ModuleCallbackHandler - - - - To be added + a To be added + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/ModuleCallbackFullAuthentication.xml b/doc/en/Gnome.Vfs/ModuleCallbackFullAuthentication.xml index 972eea0ab..241dc7689 100644 --- a/doc/en/Gnome.Vfs/ModuleCallbackFullAuthentication.xml +++ b/doc/en/Gnome.Vfs/ModuleCallbackFullAuthentication.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,80 +14,13 @@ Gnome.Vfs.ModuleCallback - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - + + + + + + Constructor @@ -97,7 +28,6 @@ To be added - a To be added @@ -110,7 +40,7 @@ To be added - a + a To be added @@ -123,7 +53,7 @@ To be added - a + a To be added @@ -136,7 +66,7 @@ To be added - a + a To be added @@ -149,7 +79,7 @@ To be added - a + a To be added @@ -162,7 +92,7 @@ To be added - a + a To be added @@ -175,7 +105,7 @@ To be added - a + a To be added @@ -188,7 +118,7 @@ To be added - a + a To be added @@ -201,7 +131,7 @@ To be added - a + a To be added @@ -214,7 +144,7 @@ To be added - a + a To be added @@ -227,7 +157,7 @@ To be added - a + a To be added @@ -240,7 +170,7 @@ To be added - a + a To be added @@ -252,7 +182,7 @@ To be added - a + a To be added @@ -264,7 +194,7 @@ To be added - a + a To be added @@ -276,7 +206,7 @@ To be added - a + a To be added @@ -288,21 +218,10 @@ To be added - a - To be added - - - - - Event - - Gnome.Vfs.ModuleCallbackHandler - - - - To be added + a To be added + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/ModuleCallbackFullAuthenticationFlags.xml b/doc/en/Gnome.Vfs/ModuleCallbackFullAuthenticationFlags.xml index 4ece13d6e..eea66a049 100644 --- a/doc/en/Gnome.Vfs/ModuleCallbackFullAuthenticationFlags.xml +++ b/doc/en/Gnome.Vfs/ModuleCallbackFullAuthenticationFlags.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,20 +13,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -97,18 +84,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/ModuleCallbackHandler.xml b/doc/en/Gnome.Vfs/ModuleCallbackHandler.xml index 8bdfb4411..82a0f4c64 100644 --- a/doc/en/Gnome.Vfs/ModuleCallbackHandler.xml +++ b/doc/en/Gnome.Vfs/ModuleCallbackHandler.xml @@ -1,29 +1,19 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -31,4 +21,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/ModuleCallbackSaveAuthentication.xml b/doc/en/Gnome.Vfs/ModuleCallbackSaveAuthentication.xml index 5f407936b..ada182abe 100644 --- a/doc/en/Gnome.Vfs/ModuleCallbackSaveAuthentication.xml +++ b/doc/en/Gnome.Vfs/ModuleCallbackSaveAuthentication.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,80 +14,13 @@ Gnome.Vfs.ModuleCallback - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - + + + + + + Constructor @@ -97,7 +28,6 @@ To be added - a To be added @@ -110,7 +40,7 @@ To be added - a + a To be added @@ -123,7 +53,7 @@ To be added - a + a To be added @@ -136,7 +66,7 @@ To be added - a + a To be added @@ -149,7 +79,7 @@ To be added - a + a To be added @@ -162,7 +92,7 @@ To be added - a + a To be added @@ -175,7 +105,7 @@ To be added - a + a To be added @@ -188,7 +118,7 @@ To be added - a + a To be added @@ -201,7 +131,7 @@ To be added - a + a To be added @@ -214,7 +144,7 @@ To be added - a + a To be added @@ -227,21 +157,10 @@ To be added - a - To be added - - - - - Event - - Gnome.Vfs.ModuleCallbackHandler - - - - To be added + a To be added + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/ModuleCallbackStatusMessage.xml b/doc/en/Gnome.Vfs/ModuleCallbackStatusMessage.xml index d10a2d5aa..360fe49dd 100644 --- a/doc/en/Gnome.Vfs/ModuleCallbackStatusMessage.xml +++ b/doc/en/Gnome.Vfs/ModuleCallbackStatusMessage.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,80 +14,13 @@ Gnome.Vfs.ModuleCallback - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - - - - Method - - System.Void - - - - To be added - To be added - - + + + + + + Constructor @@ -97,7 +28,6 @@ To be added - a To be added @@ -110,7 +40,7 @@ To be added - a + a To be added @@ -123,7 +53,7 @@ To be added - a + a To be added @@ -136,21 +66,10 @@ To be added - a - To be added - - - - - Event - - Gnome.Vfs.ModuleCallbackHandler - - - - To be added + a To be added + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/Monitor.xml b/doc/en/Gnome.Vfs/Monitor.xml index d52840657..a845e1e7e 100644 --- a/doc/en/Gnome.Vfs/Monitor.xml +++ b/doc/en/Gnome.Vfs/Monitor.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -57,7 +54,6 @@ Create a new instance. - a To be added @@ -134,4 +130,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/MonitorHandler.xml b/doc/en/Gnome.Vfs/MonitorHandler.xml index a4d53780d..a96b570c8 100644 --- a/doc/en/Gnome.Vfs/MonitorHandler.xml +++ b/doc/en/Gnome.Vfs/MonitorHandler.xml @@ -1,29 +1,20 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Delegate used for notification of changes in monitored files and/or directories. See . To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -32,4 +23,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/MonitorType.xml b/doc/en/Gnome.Vfs/MonitorType.xml index e6d430ddc..c034fc5c9 100644 --- a/doc/en/Gnome.Vfs/MonitorType.xml +++ b/doc/en/Gnome.Vfs/MonitorType.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -54,18 +40,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/OpenMode.xml b/doc/en/Gnome.Vfs/OpenMode.xml index 4267200dd..d1053ded2 100644 --- a/doc/en/Gnome.Vfs/OpenMode.xml +++ b/doc/en/Gnome.Vfs/OpenMode.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,20 +13,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -84,18 +71,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/Priority.xml b/doc/en/Gnome.Vfs/Priority.xml deleted file mode 100644 index 76396b3b0..000000000 --- a/doc/en/Gnome.Vfs/Priority.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - - gnome-vfs-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Standard values for the priority to use when executing asynchronous operations. - To be added - - - System.Enum - - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - - - - - Field - - Gnome.Vfs.Async+Priority - - - - - Minimum priority value. - To be added - - - - - Field - - Gnome.Vfs.Async+Priority - - - - - Default priority value. - To be added - - - - - Field - - Gnome.Vfs.Async+Priority - - - - - Maximum priority value. - To be added - - - - - Field - - System.Int32 - - - - - To be added - To be added - - - - \ No newline at end of file diff --git a/doc/en/Gnome.Vfs/Result.xml b/doc/en/Gnome.Vfs/Result.xml index 8583392f8..b28e49e79 100644 --- a/doc/en/Gnome.Vfs/Result.xml +++ b/doc/en/Gnome.Vfs/Result.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -639,18 +625,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/SeekPosition.xml b/doc/en/Gnome.Vfs/SeekPosition.xml index be86eae11..174f25d20 100644 --- a/doc/en/Gnome.Vfs/SeekPosition.xml +++ b/doc/en/Gnome.Vfs/SeekPosition.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -67,18 +53,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/SetFileInfoMask.xml b/doc/en/Gnome.Vfs/SetFileInfoMask.xml index 44309645e..05abf333f 100644 --- a/doc/en/Gnome.Vfs/SetFileInfoMask.xml +++ b/doc/en/Gnome.Vfs/SetFileInfoMask.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,20 +13,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -97,18 +84,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/Sync.xml b/doc/en/Gnome.Vfs/Sync.xml index 2f7fc4aa6..c4e36b3c0 100644 --- a/doc/en/Gnome.Vfs/Sync.xml +++ b/doc/en/Gnome.Vfs/Sync.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -65,7 +63,6 @@ namespace Test.Gnome.Vfs { System.Object - @@ -319,4 +316,4 @@ namespace Test.Gnome.Vfs { - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/Uri.xml b/doc/en/Gnome.Vfs/Uri.xml index a04919b2e..726da8d41 100644 --- a/doc/en/Gnome.Vfs/Uri.xml +++ b/doc/en/Gnome.Vfs/Uri.xml @@ -1,11 +1,9 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,11 +14,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -231,7 +225,6 @@ To be added a - a To be added @@ -246,7 +239,6 @@ Create a new Uri instance from the representation. representation of a Uri. - a To be added @@ -259,7 +251,7 @@ Retrieve the Uris host name. - a + a To be added @@ -272,7 +264,7 @@ Check if the Uri points to an existing entity. - a + a To be added @@ -285,7 +277,7 @@ Retrieve the host port number. - The host port number used. If the value is zero, the default port value for the specified toplevel access method is used. + The host port number used. If the value is zero, the default port value for the specified toplevel access method is used. To be added @@ -298,7 +290,7 @@ Retrieve the full path name. - a + a To be added @@ -311,7 +303,7 @@ Retrieve the user name. - a + a To be added @@ -324,7 +316,7 @@ Retrieve the optional fragment identifier. - a + a To be added @@ -337,7 +329,7 @@ Retrieve the password. - a + a To be added @@ -350,7 +342,7 @@ Check if the Uri is a local (native) file system. - a + a To be added @@ -363,7 +355,7 @@ Retrieve the Uris parent. - a + a To be added @@ -376,7 +368,7 @@ Check if Uri has a parent or not. - a + a To be added @@ -389,7 +381,7 @@ Retrieve the scheme. - a + a To be added @@ -402,7 +394,7 @@ The Uris . - a + a To be added @@ -502,7 +494,7 @@ Returns the amount of free space on a . - a + a Only works for Uris with the file: . @@ -559,4 +551,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/UriHideOptions.xml b/doc/en/Gnome.Vfs/UriHideOptions.xml index 6524885dd..eafebcb52 100644 --- a/doc/en/Gnome.Vfs/UriHideOptions.xml +++ b/doc/en/Gnome.Vfs/UriHideOptions.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,20 +13,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -123,18 +110,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/Vfs.xml b/doc/en/Gnome.Vfs/Vfs.xml index ff35c7ee1..365e7ffc9 100644 --- a/doc/en/Gnome.Vfs/Vfs.xml +++ b/doc/en/Gnome.Vfs/Vfs.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -129,7 +126,7 @@ Returns whether Gnome.Vfs has already been initialized. - a + a Gnome.Vfs must be initialized prior to using any methods or operations. @@ -162,4 +159,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/VfsException.xml b/doc/en/Gnome.Vfs/VfsException.xml index d727c81fa..b9fcb7d41 100644 --- a/doc/en/Gnome.Vfs/VfsException.xml +++ b/doc/en/Gnome.Vfs/VfsException.xml @@ -1,11 +1,9 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,11 +14,7 @@ System.Exception - - System.Runtime.Serialization.ISerializable - - @@ -33,7 +27,6 @@ Create a new VfsException based on the specified . return value from an operation. - a To be added @@ -46,9 +39,9 @@ the error code from the underlying operation. - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/VfsStream.xml b/doc/en/Gnome.Vfs/VfsStream.xml index 28a787590..f6f25c833 100644 --- a/doc/en/Gnome.Vfs/VfsStream.xml +++ b/doc/en/Gnome.Vfs/VfsStream.xml @@ -1,11 +1,9 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,11 +18,7 @@ System.IO.Stream - - System.IDisposable - - @@ -263,7 +257,6 @@ while (!asyncResult.IsCompleted) { representing the to open. specifying how to open the . - a The underlying file will be accessed synchronously using the class. @@ -283,7 +276,6 @@ while (!asyncResult.IsCompleted) { specifying how to open the . whether to access the file (a)sychronously. - a The underlying file will be accessed either by using the or class. @@ -339,7 +331,7 @@ while (!asyncResult.IsCompleted) { value indicating whether the current stream is (a)synchronous. - a + a To be added @@ -352,7 +344,7 @@ while (!asyncResult.IsCompleted) { Gets the representing the which this stream reads and writes from. - a + a To be added @@ -383,4 +375,4 @@ while (!asyncResult.IsCompleted) { - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/VfsStreamAsyncResult.xml b/doc/en/Gnome.Vfs/VfsStreamAsyncResult.xml index d8668dbf7..cd550a289 100644 --- a/doc/en/Gnome.Vfs/VfsStreamAsyncResult.xml +++ b/doc/en/Gnome.Vfs/VfsStreamAsyncResult.xml @@ -1,11 +1,9 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -30,10 +28,9 @@ while (!asyncResult.IsCompleted) { System.IAsyncResult - - + Property System.Object @@ -41,12 +38,12 @@ while (!asyncResult.IsCompleted) { Gets the user-provided state object supplied at the time the asynchronous operation was started. - a + a To be added - + Property System.Threading.WaitHandle @@ -54,12 +51,12 @@ while (!asyncResult.IsCompleted) { Retrieving this property will throw a . Instead use "while (!asyncResult.IsCompleted) { GLib.MainContext.Iteration(); }" to wait for the operation to finish. - a + a To be added - + Property System.Boolean @@ -67,7 +64,7 @@ while (!asyncResult.IsCompleted) { Returns whether the asynchronous operation completed synchronously. - a + a To be added @@ -80,12 +77,12 @@ while (!asyncResult.IsCompleted) { Retrieves the that occurred during the asynchronous operation. - a + a To be added - + Property System.Boolean @@ -93,7 +90,7 @@ while (!asyncResult.IsCompleted) { Indicates whether the asynchronous operation has finished. - a + a If an error occurred during the operation, contains the exception that was thrown. @@ -106,9 +103,9 @@ while (!asyncResult.IsCompleted) { Returns the number of bytes read or written during the operation. - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/Volume.xml b/doc/en/Gnome.Vfs/Volume.xml index 4cb6b9c35..17f093af2 100644 --- a/doc/en/Gnome.Vfs/Volume.xml +++ b/doc/en/Gnome.Vfs/Volume.xml @@ -1,11 +1,9 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -64,10 +55,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -78,7 +72,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -89,7 +82,6 @@ To be added - a To be added @@ -102,7 +94,7 @@ GType Property. - a + a Returns the native value for . @@ -115,7 +107,7 @@ Returns the on which this Volume resides. - a + a To be added @@ -128,7 +120,7 @@ The type of the file system (i.e. ext3). - a + a To be added @@ -141,7 +133,7 @@ User readable string representing this Volume (i.e. "Harddrive"). - a + a To be added @@ -154,7 +146,7 @@ The icon name used to represent this Volume. - a + a To be added @@ -167,7 +159,7 @@ Internal Volume Id. - a + a To be added @@ -180,7 +172,7 @@ Returns whether the Volume is mounted. - a + a To be added @@ -193,7 +185,7 @@ The which represents this Volume (i.e. file:///media/cdrecorder). - a + a To be added @@ -206,7 +198,7 @@ The location of the actual device if applicable (i.e. /dev/hdc). - a + a To be added @@ -219,7 +211,7 @@ Returns the type of Volume. - a + a To be added @@ -232,7 +224,7 @@ Returns whether the Volume should be visible to the user. - a + a To be added @@ -245,7 +237,7 @@ Returns whether this Volume supports handling trash items. - a + a To be added @@ -258,7 +250,7 @@ Returns whether this Volume allows write access. - a + a To be added @@ -271,9 +263,9 @@ The type of device this Volume represents. - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/VolumeMonitor.xml b/doc/en/Gnome.Vfs/VolumeMonitor.xml index 5a8b230ea..a93f9ebee 100644 --- a/doc/en/Gnome.Vfs/VolumeMonitor.xml +++ b/doc/en/Gnome.Vfs/VolumeMonitor.xml @@ -1,11 +1,9 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -184,10 +175,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -198,7 +192,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -209,7 +202,6 @@ To be added - a To be added @@ -222,7 +214,7 @@ GType Property. - a + a Returns the native value for . @@ -237,7 +229,11 @@ a is about to be unmounted. To be added - + + + GLib.Signal(CName="volume_pre_unmount") + + Event @@ -249,7 +245,11 @@ a was disconnected. To be added - + + + GLib.Signal(CName="drive_disconnected") + + Event @@ -261,7 +261,11 @@ a was unmounted. To be added - + + + GLib.Signal(CName="volume_unmounted") + + Event @@ -273,7 +277,11 @@ a new was connected. To be added - + + + GLib.Signal(CName="drive_connected") + + Event @@ -285,9 +293,13 @@ a was mounted. To be added - + + + GLib.Signal(CName="volume_mounted") + + - + Property Gnome.Vfs.Drive[] @@ -295,12 +307,12 @@ Returns an array of connected s. - a + a To be added - + Property Gnome.Vfs.Volume[] @@ -308,9 +320,9 @@ Returns an array of mounted s. - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/VolumeMountedArgs.xml b/doc/en/Gnome.Vfs/VolumeMountedArgs.xml index 1aad7377f..1a59795c7 100644 --- a/doc/en/Gnome.Vfs/VolumeMountedArgs.xml +++ b/doc/en/Gnome.Vfs/VolumeMountedArgs.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -32,7 +30,6 @@ GLib.SignalArgs - @@ -41,7 +38,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -54,9 +50,9 @@ the that was mounted. - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/VolumeMountedHandler.xml b/doc/en/Gnome.Vfs/VolumeMountedHandler.xml index 7961edc56..4cc3edd62 100644 --- a/doc/en/Gnome.Vfs/VolumeMountedHandler.xml +++ b/doc/en/Gnome.Vfs/VolumeMountedHandler.xml @@ -1,14 +1,14 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -33,15 +33,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -50,4 +41,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/VolumePreUnmountArgs.xml b/doc/en/Gnome.Vfs/VolumePreUnmountArgs.xml index 95bc00b98..ffa2d5c91 100644 --- a/doc/en/Gnome.Vfs/VolumePreUnmountArgs.xml +++ b/doc/en/Gnome.Vfs/VolumePreUnmountArgs.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -32,7 +30,6 @@ GLib.SignalArgs - @@ -41,7 +38,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -54,9 +50,9 @@ the about to be unmounted. - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/VolumePreUnmountHandler.xml b/doc/en/Gnome.Vfs/VolumePreUnmountHandler.xml index e8d933947..2359cd28c 100644 --- a/doc/en/Gnome.Vfs/VolumePreUnmountHandler.xml +++ b/doc/en/Gnome.Vfs/VolumePreUnmountHandler.xml @@ -1,14 +1,14 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -33,15 +33,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -50,4 +41,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/VolumeType.xml b/doc/en/Gnome.Vfs/VolumeType.xml index 978b26169..3bf0e60e5 100644 --- a/doc/en/Gnome.Vfs/VolumeType.xml +++ b/doc/en/Gnome.Vfs/VolumeType.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -67,18 +53,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/VolumeUnmountedArgs.xml b/doc/en/Gnome.Vfs/VolumeUnmountedArgs.xml index 8e76ef074..dc9aafdbe 100644 --- a/doc/en/Gnome.Vfs/VolumeUnmountedArgs.xml +++ b/doc/en/Gnome.Vfs/VolumeUnmountedArgs.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -32,7 +30,6 @@ GLib.SignalArgs - @@ -41,7 +38,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -54,9 +50,9 @@ the that was unmounted. - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/VolumeUnmountedHandler.xml b/doc/en/Gnome.Vfs/VolumeUnmountedHandler.xml index 0d0746ad1..5c69500d7 100644 --- a/doc/en/Gnome.Vfs/VolumeUnmountedHandler.xml +++ b/doc/en/Gnome.Vfs/VolumeUnmountedHandler.xml @@ -1,14 +1,14 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -33,15 +33,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -50,4 +41,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/Xfer.xml b/doc/en/Gnome.Vfs/Xfer.xml index a9095200b..552c859f2 100644 --- a/doc/en/Gnome.Vfs/Xfer.xml +++ b/doc/en/Gnome.Vfs/Xfer.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -99,9 +96,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/XferErrorAction.xml b/doc/en/Gnome.Vfs/XferErrorAction.xml index 2c26b4a30..0abe96cd5 100644 --- a/doc/en/Gnome.Vfs/XferErrorAction.xml +++ b/doc/en/Gnome.Vfs/XferErrorAction.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -67,18 +53,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/XferErrorMode.xml b/doc/en/Gnome.Vfs/XferErrorMode.xml index 13b6bacd4..0187420be 100644 --- a/doc/en/Gnome.Vfs/XferErrorMode.xml +++ b/doc/en/Gnome.Vfs/XferErrorMode.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -54,18 +40,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/XferOptions.xml b/doc/en/Gnome.Vfs/XferOptions.xml index 9feb21a80..37718dbf9 100644 --- a/doc/en/Gnome.Vfs/XferOptions.xml +++ b/doc/en/Gnome.Vfs/XferOptions.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,20 +13,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -201,18 +188,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/XferOverwriteAction.xml b/doc/en/Gnome.Vfs/XferOverwriteAction.xml index b8575c76f..7a9035cbf 100644 --- a/doc/en/Gnome.Vfs/XferOverwriteAction.xml +++ b/doc/en/Gnome.Vfs/XferOverwriteAction.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -93,18 +79,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/XferOverwriteMode.xml b/doc/en/Gnome.Vfs/XferOverwriteMode.xml index 7a6db7589..aa4234862 100644 --- a/doc/en/Gnome.Vfs/XferOverwriteMode.xml +++ b/doc/en/Gnome.Vfs/XferOverwriteMode.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -80,18 +66,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/XferPhase.xml b/doc/en/Gnome.Vfs/XferPhase.xml index 60d6cea80..3b15992f0 100644 --- a/doc/en/Gnome.Vfs/XferPhase.xml +++ b/doc/en/Gnome.Vfs/XferPhase.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -262,18 +248,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/XferProgressCallback.xml b/doc/en/Gnome.Vfs/XferProgressCallback.xml index 2f0253640..afdf84e9f 100644 --- a/doc/en/Gnome.Vfs/XferProgressCallback.xml +++ b/doc/en/Gnome.Vfs/XferProgressCallback.xml @@ -1,29 +1,20 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. To be added To be added + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Int32 @@ -31,4 +22,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome.Vfs/XferProgressInfo.xml b/doc/en/Gnome.Vfs/XferProgressInfo.xml index 6fcaf6627..52c670c2d 100644 --- a/doc/en/Gnome.Vfs/XferProgressInfo.xml +++ b/doc/en/Gnome.Vfs/XferProgressInfo.xml @@ -1,11 +1,9 @@ - + gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.ValueType - @@ -160,7 +157,7 @@ To be added - a + a To be added @@ -173,7 +170,7 @@ To be added - a + a To be added diff --git a/doc/en/Gnome.Vfs/XferProgressStatus.xml b/doc/en/Gnome.Vfs/XferProgressStatus.xml index 65dc15843..09544ed17 100644 --- a/doc/en/Gnome.Vfs/XferProgressStatus.xml +++ b/doc/en/Gnome.Vfs/XferProgressStatus.xml @@ -4,8 +4,6 @@ gnome-vfs-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -80,18 +66,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome/About.xml b/doc/en/Gnome/About.xml index 4c2cde546..5e0739719 100644 --- a/doc/en/Gnome/About.xml +++ b/doc/en/Gnome/About.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -87,23 +85,10 @@ class GnomeAboutSample Gtk.Dialog - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - + Method System.Void @@ -153,7 +138,6 @@ class GnomeAboutSample Internal constructor Pointer to the C object. - An instance of About, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -198,10 +182,14 @@ class GnomeAboutSample The name of the application. an object of type - an object of type + an object of type - + + + GLib.Property(Name="name") + + Property @@ -213,10 +201,14 @@ class GnomeAboutSample The translator for the current locale. an object of type - an object of type + an object of type - + + + GLib.Property(Name="translator_credits") + + Property @@ -228,10 +220,14 @@ class GnomeAboutSample The copyright statement of the application. an object of type - an object of type + an object of type - + + + GLib.Property(Name="copyright") + + Property @@ -243,10 +239,14 @@ class GnomeAboutSample The logo for the application. an object of type - an object of type + an object of type - + + + GLib.Property(Name="logo") + + Property @@ -258,10 +258,14 @@ class GnomeAboutSample The version string of the application. an object of type - an object of type + an object of type - + + + GLib.Property(Name="version") + + Property @@ -273,10 +277,14 @@ class GnomeAboutSample A short miscellaneous string. an object of type - an object of type + an object of type - + + + GLib.Property(Name="comments") + + Property @@ -286,7 +294,7 @@ class GnomeAboutSample GType Property. - a + a Returns the native value for . @@ -300,9 +308,38 @@ class GnomeAboutSample Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. + + + System.Obsolete(Message=null, IsError=False) + + + + + Constructor + + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + diff --git a/doc/en/Gnome/App.xml b/doc/en/Gnome/App.xml index 52fa18e53..e6c76e66b 100644 --- a/doc/en/Gnome/App.xml +++ b/doc/en/Gnome/App.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.Window - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -572,7 +557,6 @@ Internal constructor Pointer to the C object. - An instance of , wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -590,7 +574,6 @@ Creates a new instance. an object of type an object of type - an object of type @@ -606,7 +589,7 @@ Sets the main toolbar of the application window. an object of type - an object of type + an object of type @@ -622,7 +605,7 @@ The content area of the main window of the . an object of type - an object of type + an object of type @@ -638,7 +621,7 @@ Sets the of the application window. an object of type - an object of type + an object of type @@ -654,7 +637,7 @@ The status bar of the application window. an object of type - an object of type + an object of type @@ -668,10 +651,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="app_id") + + Method @@ -701,7 +688,7 @@ GType Property. - a + a Returns the native value for . @@ -715,10 +702,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -726,7 +716,6 @@ To be added - a To be added @@ -982,7 +971,7 @@ The application name - a + a @@ -996,7 +985,7 @@ The application's install prefix - a + a @@ -1010,10 +999,10 @@ The 's - a + a - \ No newline at end of file + diff --git a/doc/en/Gnome/AppBar.xml b/doc/en/Gnome/AppBar.xml index 2fb6fd189..de33ef836 100644 --- a/doc/en/Gnome/AppBar.xml +++ b/doc/en/Gnome/AppBar.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.HBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -152,7 +137,6 @@ Internal constructor Pointer to the C object. - An instance of AppBar, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -172,7 +156,6 @@ an object of type an object of type an object of type - an object of type @@ -185,7 +168,7 @@ Get the response to the prompt, if any. - an object of type + an object of type @@ -198,7 +181,7 @@ Retrieves the widget. - an object of type + an object of type @@ -211,7 +194,7 @@ Retrieves the widget for further manipulation. - an object of type + an object of type @@ -227,7 +210,7 @@ What to show when showing nothing else is on the stack; defaults to the empty string. an object of type - an object of type + an object of type @@ -243,7 +226,7 @@ Sets progress bar to . an object of type - an object of type + an object of type @@ -256,11 +239,15 @@ Whether or not the user can edit the text in the portion of a instance. - an object of type + an object of type - + + + GLib.Property(Name="interactivity") + + Property @@ -269,11 +256,15 @@ Whether or not the contains a . - an object of type + an object of type - + + + GLib.Property(Name="has_progress") + + Property @@ -282,11 +273,15 @@ Whether or not the contains a . - an object of type + an object of type - + + + GLib.Property(Name="has_status") + + Event @@ -299,7 +294,11 @@ - + + + GLib.Signal(CName="clear_prompt") + + Event @@ -312,7 +311,11 @@ - + + + GLib.Signal(CName="user_response") + + Property @@ -322,7 +325,7 @@ GType Property. - a + a Returns the native value for . @@ -360,9 +363,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/AppBarMsg.xml b/doc/en/Gnome/AppBarMsg.xml index 871ab0193..7091bc0e3 100644 --- a/doc/en/Gnome/AppBarMsg.xml +++ b/doc/en/Gnome/AppBarMsg.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,11 +27,10 @@ Internal constructor Pointer to the C object. - An instance of AppBarMsg, wrapping the C object. This is an internal constructor, and should not be used by user code. - \ No newline at end of file + diff --git a/doc/en/Gnome/AppProgressCancelFunc.xml b/doc/en/Gnome/AppProgressCancelFunc.xml index 05cf81fe2..5b75d49db 100644 --- a/doc/en/Gnome/AppProgressCancelFunc.xml +++ b/doc/en/Gnome/AppProgressCancelFunc.xml @@ -1,11 +1,9 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,9 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/AppProgressFunc.xml b/doc/en/Gnome/AppProgressFunc.xml index 2e4b08820..3fb7d0c88 100644 --- a/doc/en/Gnome/AppProgressFunc.xml +++ b/doc/en/Gnome/AppProgressFunc.xml @@ -1,32 +1,22 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. To be added To be added + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Double - \ No newline at end of file + diff --git a/doc/en/Gnome/ApplyArgs.xml b/doc/en/Gnome/ApplyArgs.xml index c27a2f31f..694265286 100644 --- a/doc/en/Gnome/ApplyArgs.xml +++ b/doc/en/Gnome/ApplyArgs.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/ApplyHandler.xml b/doc/en/Gnome/ApplyHandler.xml index 04f58077e..47c9be9c2 100644 --- a/doc/en/Gnome/ApplyHandler.xml +++ b/doc/en/Gnome/ApplyHandler.xml @@ -1,14 +1,14 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/BackClickedArgs.xml b/doc/en/Gnome/BackClickedArgs.xml index 4952724f8..3489836e8 100644 --- a/doc/en/Gnome/BackClickedArgs.xml +++ b/doc/en/Gnome/BackClickedArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - To be added: an object of type 'Gtk.Widget' + To be added: an object of type 'Gtk.Widget' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/BackClickedHandler.xml b/doc/en/Gnome/BackClickedHandler.xml index 9c6e703c9..641b9fecf 100644 --- a/doc/en/Gnome/BackClickedHandler.xml +++ b/doc/en/Gnome/BackClickedHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/BonoboUIVerb.xml b/doc/en/Gnome/BonoboUIVerb.xml index 3b399387d..132056777 100644 --- a/doc/en/Gnome/BonoboUIVerb.xml +++ b/doc/en/Gnome/BonoboUIVerb.xml @@ -1,11 +1,9 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.ValueType - @@ -30,9 +27,8 @@ To be added a a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CancelClickedArgs.xml b/doc/en/Gnome/CancelClickedArgs.xml index dacfd4c0b..d4a6822d4 100644 --- a/doc/en/Gnome/CancelClickedArgs.xml +++ b/doc/en/Gnome/CancelClickedArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - To be added: an object of type 'Gtk.Widget' + To be added: an object of type 'Gtk.Widget' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CancelClickedHandler.xml b/doc/en/Gnome/CancelClickedHandler.xml index 717f1ae39..48e6c94d6 100644 --- a/doc/en/Gnome/CancelClickedHandler.xml +++ b/doc/en/Gnome/CancelClickedHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/Canvas.xml b/doc/en/Gnome/Canvas.xml index 6fb2081c2..f3685cfca 100644 --- a/doc/en/Gnome/Canvas.xml +++ b/doc/en/Gnome/Canvas.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -110,20 +108,7 @@ Gtk.Layout - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -693,7 +678,6 @@ Internal constructor Pointer to the C object. - An instance of Canvas, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -706,7 +690,6 @@ Creates a new empty canvas in non-antialiased mode. - A newly-created canvas. Creates a new empty canvas in non-antialiased mode. If you @@ -732,7 +715,7 @@ The value of dither should be , , or . The default canvas setting is - The type of dithering used to render an antialiased canvas. + The type of dithering used to render an antialiased canvas. @@ -754,7 +737,7 @@ Whether to center the scrolling region in the canvas window when it is smaller than the canvas' allocation. - Whether the scroll region is being centered in the canvas window. + Whether the scroll region is being centered in the canvas window. When the scrolling region of the canvas is smaller than @@ -784,6 +767,7 @@ This is typically only needed by item implementations. + To be added. @@ -794,8 +778,8 @@ Whether to enable anti-aliasing mode - - to enable anti-aliasing + + to enable anti-aliasing Note that this parameter can only be set at the time of @@ -805,7 +789,11 @@ - + + + GLib.Property(Name="aa") + + Event @@ -822,7 +810,11 @@ - + + + GLib.Signal(CName="draw_background") + + Event @@ -840,7 +832,11 @@ - + + + GLib.Signal(CName="render_background") + + Method @@ -894,7 +890,7 @@ GType Property. - a + a Returns the native value for . @@ -946,10 +942,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -959,7 +958,7 @@ Gets or Sets the number of pixels that correspond to one canvas unit. - a + a The anchor point for zooming, i.e. the point that stays @@ -975,5 +974,20 @@ + + + Method + + System.Void + + + + + + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasBpath.xml b/doc/en/Gnome/CanvasBpath.xml index 1585823cc..cbde89bf6 100644 --- a/doc/en/Gnome/CanvasBpath.xml +++ b/doc/en/Gnome/CanvasBpath.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -22,14 +20,7 @@ Gnome.CanvasShape - - GLib.IWrapper - - - System.IDisposable - - @@ -53,7 +44,6 @@ Internal constructor Pointer to the C object. - An instance of CanvasBpath, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -72,7 +62,6 @@ The that this item belongs to. - the newly-created object @@ -90,7 +79,7 @@ Pointer to a structure. - Pointer to a GnomeCanvasPathDef structure. + Pointer to a GnomeCanvasPathDef structure. Pointer to a structure. This can be @@ -98,7 +87,11 @@ - + + + GLib.Property(Name="bpath") + + Property @@ -108,7 +101,7 @@ GType Property. - a + a Returns the native value for . @@ -122,10 +115,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -133,9 +129,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasBpathPriv.xml b/doc/en/Gnome/CanvasBpathPriv.xml index ac3e1a1e5..afdaa2b02 100644 --- a/doc/en/Gnome/CanvasBpathPriv.xml +++ b/doc/en/Gnome/CanvasBpathPriv.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,11 +27,10 @@ Internal constructor Pointer to the C object. - An instance of CanvasBpathPriv, wrapping the C object. This is an internal constructor, and should not be used by user code. - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasBuf.xml b/doc/en/Gnome/CanvasBuf.xml index b6fdd4e48..3466fa06c 100644 --- a/doc/en/Gnome/CanvasBuf.xml +++ b/doc/en/Gnome/CanvasBuf.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -107,7 +104,7 @@ To be added - a + a To be added @@ -120,9 +117,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasClipgroup.xml b/doc/en/Gnome/CanvasClipgroup.xml index d3ac2904c..9ec645ecc 100644 --- a/doc/en/Gnome/CanvasClipgroup.xml +++ b/doc/en/Gnome/CanvasClipgroup.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,14 +18,7 @@ Gnome.CanvasGroup - - GLib.IWrapper - - - System.IDisposable - - @@ -51,7 +42,6 @@ Internal constructor Pointer to the C object. - An instance of CanvasClipgroup, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -70,7 +60,6 @@ The that this belongs to. - The newly-created object @@ -88,7 +77,7 @@ Pointer to a structure. - Pointer to a GnomeCanvasPathDef structure. + Pointer to a GnomeCanvasPathDef structure. Pointer to a structure. This can be @@ -96,7 +85,11 @@ - + + + GLib.Property(Name="path") + + Property @@ -108,11 +101,15 @@ Winding rule for defining the clipping intersection rule the winding rule - Winding rule for defining the clipping intersection rule + Winding rule for defining the clipping intersection rule - + + + GLib.Property(Name="wind") + + Property @@ -122,7 +119,7 @@ GType Property. - a + a Returns the native value for . @@ -136,10 +133,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -147,9 +147,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasEllipse.xml b/doc/en/Gnome/CanvasEllipse.xml index 4a6855073..07704c585 100644 --- a/doc/en/Gnome/CanvasEllipse.xml +++ b/doc/en/Gnome/CanvasEllipse.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -23,14 +21,7 @@ Gnome.CanvasRE - - GLib.IWrapper - - - System.IDisposable - - @@ -54,7 +45,6 @@ Internal constructor Pointer to the C object. - An instance of CanvasEllipse, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -75,9 +65,6 @@ The that this belongs to. - - The newly-created object - @@ -91,7 +78,7 @@ GType Property. - a + a Returns the native value for . @@ -105,10 +92,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -116,9 +106,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasEventArgs.xml b/doc/en/Gnome/CanvasEventArgs.xml index 5d443c593..162afa934 100644 --- a/doc/en/Gnome/CanvasEventArgs.xml +++ b/doc/en/Gnome/CanvasEventArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,7 +19,6 @@ GLib.SignalArgs - @@ -30,7 +27,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -42,9 +38,9 @@ To be added - To be added: an object of type 'Gdk.Event' + To be added: an object of type 'Gdk.Event' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasEventHandler.xml b/doc/en/Gnome/CanvasEventHandler.xml index 56247ebdb..0fded5261 100644 --- a/doc/en/Gnome/CanvasEventHandler.xml +++ b/doc/en/Gnome/CanvasEventHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Called when a canvas receives events from a such as enter/leave, mouse movements, etc. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasGroup.xml b/doc/en/Gnome/CanvasGroup.xml index 6103f61f7..390506e70 100644 --- a/doc/en/Gnome/CanvasGroup.xml +++ b/doc/en/Gnome/CanvasGroup.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -27,14 +25,7 @@ Gnome.CanvasItem - - GLib.IWrapper - - - System.IDisposable - - @@ -58,7 +49,6 @@ Internal constructor Pointer to the C object. - An instance of CanvasGroup, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -75,11 +65,15 @@ X coordinate of the group's origin. X coordinate of the group's origin. - X coordinate of the group's origin. + X coordinate of the group's origin. - + + + GLib.Property(Name="y") + + Property @@ -91,11 +85,15 @@ Y coordinate of the group's origin Y coordinate of the group's origin - Y coordinate of the group's origin + Y coordinate of the group's origin - + + + GLib.Property(Name="x") + + Property @@ -105,7 +103,7 @@ GType Property. - a + a Returns the native value for . @@ -119,10 +117,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -135,7 +136,6 @@ To be added a a - a To be added @@ -149,7 +149,6 @@ To be added a - a To be added @@ -160,9 +159,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasHacktext.xml b/doc/en/Gnome/CanvasHacktext.xml index 81d97c169..f9b764a91 100644 --- a/doc/en/Gnome/CanvasHacktext.xml +++ b/doc/en/Gnome/CanvasHacktext.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gnome.CanvasItem - - GLib.IWrapper - - - System.IDisposable - - @@ -49,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -62,10 +52,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="x") + + Property @@ -75,10 +69,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="y") + + Property @@ -88,10 +86,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="font") + + Property @@ -101,10 +103,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="text") + + Property @@ -114,10 +120,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="glyphlist") + + Property @@ -127,10 +137,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="fill_color_rgba") + + Property @@ -139,10 +153,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="fill_color") + + Property @@ -152,7 +170,7 @@ GType Property. - a + a Returns the native value for . @@ -166,10 +184,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -177,9 +198,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasHacktextPriv.xml b/doc/en/Gnome/CanvasHacktextPriv.xml index 3b8b30e06..6e882c871 100644 --- a/doc/en/Gnome/CanvasHacktextPriv.xml +++ b/doc/en/Gnome/CanvasHacktextPriv.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,9 +27,8 @@ To be added a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasItem.xml b/doc/en/Gnome/CanvasItem.xml index aeebee1e9..a58a005a8 100644 --- a/doc/en/Gnome/CanvasItem.xml +++ b/doc/en/Gnome/CanvasItem.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -87,14 +85,7 @@ Gtk.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -472,7 +463,6 @@ Internal constructor Pointer to the C object. - An instance of CanvasItem, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -486,7 +476,7 @@ To be added - To be added: an object of type 'Gnome.Canvas' + To be added: an object of type 'Gnome.Canvas' To be added @@ -501,11 +491,15 @@ The parent item the parent item - the parent item + the parent item - + + + GLib.Property(Name="parent") + + Event @@ -524,7 +518,11 @@ - + + + GLib.Signal(CName="event") + + Property @@ -534,7 +532,7 @@ GType Property. - a + a Returns the native value for . @@ -564,10 +562,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -580,7 +581,6 @@ To be added a a - a To be added @@ -591,7 +591,6 @@ To be added - a To be added @@ -670,7 +669,7 @@ - + Method System.Void @@ -689,7 +688,7 @@ - + Method System.Void @@ -708,7 +707,7 @@ - + Method System.Void @@ -746,5 +745,35 @@ To be added + + + Method + + System.Void + + + + + + To be added. + To be added. + To be added. + + + + + Method + + System.Void + + + + + + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasLine.xml b/doc/en/Gnome/CanvasLine.xml index 10203a759..a6318b98a 100644 --- a/doc/en/Gnome/CanvasLine.xml +++ b/doc/en/Gnome/CanvasLine.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -59,14 +57,7 @@ namespace GnomeSamples { Gnome.CanvasItem - - GLib.IWrapper - - - System.IDisposable - - @@ -90,7 +81,6 @@ namespace GnomeSamples { Internal constructor Pointer to the C object. - An instance of CanvasLine, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -109,7 +99,6 @@ namespace GnomeSamples { The that this item belongs to. - the newly-created object @@ -125,11 +114,15 @@ namespace GnomeSamples { Stipple pattern for the line. Stipple pattern for the line. - Stipple pattern for the line. + Stipple pattern for the line. - + + + GLib.Property(Name="fill_stipple") + + Property @@ -144,11 +137,15 @@ namespace GnomeSamples { along the shaft. Distance from tip of arrowhead to trailing point, measured along shaft. - Distance from tip of arrowhead to trailing point, measured along shaft. + Distance from tip of arrowhead to trailing point, measured along shaft. - + + + GLib.Property(Name="arrow_shape_b") + + Property @@ -160,11 +157,15 @@ namespace GnomeSamples { Distance from tip of arrowhead to center. Distance from tip of arrowhead to center. - Distance from tip of arrowhead to center. + Distance from tip of arrowhead to center. - + + + GLib.Property(Name="arrow_shape_a") + + Property @@ -177,11 +178,15 @@ namespace GnomeSamples { Specifies whether to smooth the line using parabolic splines. to smooth the line - Whether to smooth the line using parabolic splines + Whether to smooth the line using parabolic splines - + + + GLib.Property(Name="smooth") + + Property @@ -193,11 +198,15 @@ namespace GnomeSamples { Line dash style. Line dash style - Line dash style + Line dash style - + + + GLib.Property(Name="line_style") + + Property @@ -211,11 +220,15 @@ namespace GnomeSamples { can be created by a call to the constructor. a pointer. - a pointer. + a pointer. - + + + GLib.Property(Name="points") + + Property @@ -228,11 +241,15 @@ namespace GnomeSamples { Specifies whether to draw an arrowhead on the first point of the line. to draw an arrowhead - whether to draw an arrowhead on the first point of the line. + whether to draw an arrowhead on the first point of the line. - + + + GLib.Property(Name="first_arrowhead") + + Property @@ -244,11 +261,15 @@ namespace GnomeSamples { Specifies the number of steps to use when rendering curves. the number of steps to use when rendering curves. - the number of steps to use when rendering curves. + the number of steps to use when rendering curves. - + + + GLib.Property(Name="spline_steps") + + Property @@ -261,10 +282,14 @@ namespace GnomeSamples { Specifies whether to draw an arrowhead on the last point of the line. to draw an arrowhead - whether to draw an arrowhead on the last point of the line. + whether to draw an arrowhead on the last point of the line. To be added - + + + GLib.Property(Name="last_arrowhead") + + Property @@ -276,11 +301,15 @@ namespace GnomeSamples { Determines how the ends of lines are drawn (the line cap style). the line cap style. - the line cap style + the line cap style - + + + GLib.Property(Name="cap_style") + + Property @@ -292,7 +321,7 @@ namespace GnomeSamples { Vertex join style for line segments the vertext join style - Vertex join style + Vertex join style ( to join by extending @@ -302,7 +331,11 @@ namespace GnomeSamples { - + + + GLib.Property(Name="join_style") + + Property @@ -314,11 +347,15 @@ namespace GnomeSamples { Line color with an alpha component (in the format 0xRRGGBBAA). line color with alpha component - the line color + the line color - + + + GLib.Property(Name="fill_color_rgba") + + Property @@ -330,11 +367,15 @@ namespace GnomeSamples { The to draw the line with. the line color - the line color + the line color - + + + GLib.Property(Name="fill_color_gdk") + + Property @@ -346,11 +387,15 @@ namespace GnomeSamples { Width of the line in canvas units. The line width will be scaled when the canvas zoom factor changes. width of the line - width of the line in canvas units + width of the line in canvas units - + + + GLib.Property(Name="width_units") + + Property @@ -362,11 +407,15 @@ namespace GnomeSamples { Distance of arrowhead trailing points from outside edge of shaft. distance of the arrowing trailing points - Distance of arrowhead trailing points from outside edge of shaft. + Distance of arrowhead trailing points from outside edge of shaft. - + + + GLib.Property(Name="arrow_shape_c") + + Property @@ -378,10 +427,14 @@ namespace GnomeSamples { Width of the line in pixels. The line width will not be scaled when the canvas zoom factor changes. width of the line - width of the line in pixels. + width of the line in pixels. To be added - + + + GLib.Property(Name="width_pixels") + + Property @@ -393,11 +446,15 @@ namespace GnomeSamples { X color specification for line. X color specification for the line - X color specification for the line + X color specification for the line - + + + GLib.Property(Name="fill_color") + + Property @@ -407,7 +464,7 @@ namespace GnomeSamples { GType Property. - a + a Returns the native value for . @@ -421,10 +478,13 @@ namespace GnomeSamples { Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -432,9 +492,8 @@ namespace GnomeSamples { To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasPathDef.xml b/doc/en/Gnome/CanvasPathDef.xml index c29d71ae6..ea569681a 100644 --- a/doc/en/Gnome/CanvasPathDef.xml +++ b/doc/en/Gnome/CanvasPathDef.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -459,7 +453,6 @@ Internal constructor Pointer to the C object. - An instance of CanvasPathDef, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -472,7 +465,6 @@ To be added - To be added: an object of type 'Gnome.CanvasPathDef' To be added @@ -486,7 +478,6 @@ To be added To be added: an object of type 'int' - To be added: an object of type 'Gnome.CanvasPathDef' To be added @@ -499,7 +490,7 @@ To be added - a + a To be added @@ -512,7 +503,7 @@ To be added - a + a To be added @@ -526,9 +517,8 @@ To be added a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasPixbuf.xml b/doc/en/Gnome/CanvasPixbuf.xml index 018cf5a74..c8c5fb0bb 100644 --- a/doc/en/Gnome/CanvasPixbuf.xml +++ b/doc/en/Gnome/CanvasPixbuf.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,14 +19,7 @@ Gnome.CanvasItem - - GLib.IWrapper - - - System.IDisposable - - @@ -52,7 +43,6 @@ Internal constructor Pointer to the C object. - An instance of CanvasPixbuf, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -68,7 +58,6 @@ Creates a new CanvasPixbuf from . an object of type - an object of type @@ -84,11 +73,15 @@ Pixbuf height. the height of this item - The height of this item + The height of this item - + + + GLib.Property(Name="height") + + Property @@ -100,11 +93,15 @@ The pixbuf image to draw. The pixbuf image to draw. - The pixbuf image + The pixbuf image - + + + GLib.Property(Name="pixbuf") + + Property @@ -118,11 +115,15 @@ if it is in pixel units, for canvas world units. - The unit used by the property + The unit used by the property - + + + GLib.Property(Name="width_in_pixels") + + Property @@ -138,11 +139,15 @@ point of reference for positioning the image. anchor (handle) position within the pixbuf - Anchor (handle) position within the pixbuf + Anchor (handle) position within the pixbuf - + + + GLib.Property(Name="anchor") + + Property @@ -154,11 +159,15 @@ Pixbuf width. Pixbuf width - The width of the pixbuf + The width of the pixbuf - + + + GLib.Property(Name="width") + + Property @@ -177,14 +186,18 @@ should be used as the pixbuf width, to use the actual width of the image. - + Whether or not the should be used - + - + + + GLib.Property(Name="width_set") + + Property @@ -196,11 +209,15 @@ The Y coordinate of the position to place the pixbuf Y coordinate - The Y coordinate of the position to place the pixbuf + The Y coordinate of the position to place the pixbuf - + + + GLib.Property(Name="y") + + Property @@ -212,11 +229,15 @@ The X coordinate of the position to place the pixbuf X coordinate - the X coordinate of the position to place the pixbuf + the X coordinate of the position to place the pixbuf - + + + GLib.Property(Name="x") + + Property @@ -232,13 +253,17 @@ if it is in pixel units, for canvas world units. - + The unit used by the property. - + - + + + GLib.Property(Name="height_in_pixels") + + Property @@ -257,14 +282,18 @@ should be used as the pixbuf width, to use the actual width of the image. - + Whether or not the should be used - + - + + + GLib.Property(Name="height_set") + + Property @@ -278,11 +307,15 @@ if it is in pixel units, for canvas world units. - The unit used by the property + The unit used by the property - + + + GLib.Property(Name="x_in_pixels") + + Property @@ -296,11 +329,15 @@ if it is in pixel units, for canvas world units. - The unit used by the property + The unit used by the property - + + + GLib.Property(Name="y_in_pixels") + + Property @@ -310,7 +347,7 @@ GType Property. - a + a Returns the native value for . @@ -324,10 +361,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -335,9 +375,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasPoints.xml b/doc/en/Gnome/CanvasPoints.xml index 37764a1cb..17e664d50 100644 --- a/doc/en/Gnome/CanvasPoints.xml +++ b/doc/en/Gnome/CanvasPoints.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ GLib.Opaque - @@ -54,7 +51,6 @@ To be added a - a To be added @@ -68,12 +64,11 @@ To be added a - a To be added - + Constructor @@ -83,7 +78,6 @@ Creates canvas points from x and y coordinates stored in array. array of coordinates (num_points * 2 in size), X coordinates are stored in the even-numbered indices, and Y coordinates are stored in the odd-numbered indices. - a @@ -135,9 +129,9 @@ namespace GnomeSamples { GType Property. - a + a Returns the native value for . - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasPolygon.xml b/doc/en/Gnome/CanvasPolygon.xml index 1fd7794fa..f30ed3389 100644 --- a/doc/en/Gnome/CanvasPolygon.xml +++ b/doc/en/Gnome/CanvasPolygon.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,14 +19,7 @@ Gnome.CanvasShape - - GLib.IWrapper - - - System.IDisposable - - @@ -52,7 +43,6 @@ Internal constructor Pointer to the C object. - An instance of CanvasPolygon, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -71,7 +61,6 @@ The that this item belongs to. - the newly-created object @@ -89,11 +78,15 @@ can be created by a call to the constructor. a pointer. - a pointer. + a pointer. - + + + GLib.Property(Name="points") + + Method @@ -128,7 +121,7 @@ GType Property. - a + a Returns the native value for . @@ -142,10 +135,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -153,9 +149,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasRE.xml b/doc/en/Gnome/CanvasRE.xml index 0537dfff3..ec6bec0f4 100644 --- a/doc/en/Gnome/CanvasRE.xml +++ b/doc/en/Gnome/CanvasRE.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -22,14 +20,7 @@ Gnome.CanvasShape - - GLib.IWrapper - - - System.IDisposable - - @@ -53,7 +44,6 @@ Internal constructor Pointer to the C object. - An instance of CanvasRE, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -70,11 +60,15 @@ Rightmost coordinate of rectangle or ellipse. Rightmost coordinate of rectangle or ellipse. - Rightmost coordinate of rectangle or ellipse. + Rightmost coordinate of rectangle or ellipse. - + + + GLib.Property(Name="x2") + + Property @@ -86,11 +80,15 @@ Leftmost coordinate of rectangle or ellipse. Leftmost coordinate of rectangle or ellipse. - Leftmost coordinate of rectangle or ellipse. + Leftmost coordinate of rectangle or ellipse. - + + + GLib.Property(Name="x1") + + Property @@ -102,11 +100,15 @@ Bottommost coordinate of rectangle or ellipse. Bottommost coordinate of rectangle or ellipse. - Bottommost coordinate of rectangle or ellipse. + Bottommost coordinate of rectangle or ellipse. - + + + GLib.Property(Name="y2") + + Property @@ -118,11 +120,15 @@ Topmost coordinate of rectangle or ellipse. Topmost coordinate of rectangle or ellipse. - Topmost coordinate of rectangle or ellipse. + Topmost coordinate of rectangle or ellipse. - + + + GLib.Property(Name="y1") + + Property @@ -132,7 +138,7 @@ GType Property. - a + a Returns the native value for . @@ -146,10 +152,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -162,7 +171,6 @@ To be added a a - a To be added @@ -173,9 +181,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasRect.xml b/doc/en/Gnome/CanvasRect.xml index c70b560e0..86a3b92fc 100644 --- a/doc/en/Gnome/CanvasRect.xml +++ b/doc/en/Gnome/CanvasRect.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -25,14 +23,7 @@ Gnome.CanvasRE - - GLib.IWrapper - - - System.IDisposable - - @@ -56,7 +47,6 @@ Internal constructor Pointer to the C object. - An instance of CanvasRect, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -75,7 +65,6 @@ The that this item belongs to. - the newly-created object @@ -89,7 +78,7 @@ GType Property. - a + a Returns the native value for . @@ -103,10 +92,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -114,9 +106,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasRichText.xml b/doc/en/Gnome/CanvasRichText.xml index 284e8b138..72da4f843 100644 --- a/doc/en/Gnome/CanvasRichText.xml +++ b/doc/en/Gnome/CanvasRichText.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gnome.CanvasItem - - GLib.IWrapper - - - System.IDisposable - - @@ -92,7 +83,6 @@ Internal constructor Pointer to the C object. - An instance of CanvasRichText, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -108,7 +98,6 @@ Add a new RichTextItem to the given . To be added: an object of type 'Gnome.CanvasGroup' - To be added: an object of type 'Gnome.CanvasRichText' To be added @@ -122,8 +111,7 @@ The that is displayed on the . - To be added: an object of type 'Gtk.TextBuffer' - To be added: an object of type 'Gtk.TextBuffer' + To be added: an object of type 'Gtk.TextBuffer' To be added @@ -137,11 +125,14 @@ Whether the cursor is visible or not. - To be added: an object of type 'bool' - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added - + + + GLib.Property(Name="cursor_visible") + + Property @@ -152,11 +143,14 @@ Whether the item is visible or not. - To be added: an object of type 'bool' - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added - + + + GLib.Property(Name="visible") + + Property @@ -167,11 +161,14 @@ Whether the box height should grow if the text does not fit. - To be added: an object of type 'bool' - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added - + + + GLib.Property(Name="grow_height") + + Property @@ -182,11 +179,14 @@ The height of the text box. - To be added: an object of type 'double' - To be added: an object of type 'double' + To be added: an object of type 'double' To be added - + + + GLib.Property(Name="height") + + Property @@ -197,11 +197,14 @@ How the text in the widget should wrap. - To be added: an object of type 'Gtk.WrapMode' - To be added: an object of type 'Gtk.WrapMode' + To be added: an object of type 'Gtk.WrapMode' To be added - + + + GLib.Property(Name="wrap_mode") + + Property @@ -212,11 +215,14 @@ Anchor point for text. - To be added: an object of type 'Gtk.AnchorType' - To be added: an object of type 'Gtk.AnchorType' + To be added: an object of type 'Gtk.AnchorType' To be added - + + + GLib.Property(Name="anchor") + + Property @@ -227,11 +233,14 @@ The number of pixels in the left margin. - To be added: an object of type 'int' - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - + + + GLib.Property(Name="left_margin") + + Property @@ -242,11 +251,14 @@ The width of the text box. - To be added: an object of type 'double' - To be added: an object of type 'double' + To be added: an object of type 'double' To be added - + + + GLib.Property(Name="width") + + Property @@ -257,11 +269,14 @@ The text to be displayed. - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="text") + + Property @@ -272,11 +287,14 @@ The direction for the text. - To be added: an object of type 'Gtk.DirectionType' - To be added: an object of type 'Gtk.DirectionType' + To be added: an object of type 'Gtk.DirectionType' To be added - + + + GLib.Property(Name="direction") + + Property @@ -287,11 +305,14 @@ The number of pixels above each line. - To be added: an object of type 'int' - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - + + + GLib.Property(Name="pixels_above_lines") + + Property @@ -302,11 +323,14 @@ The Y position. - To be added: an object of type 'double' - To be added: an object of type 'double' + To be added: an object of type 'double' To be added - + + + GLib.Property(Name="y") + + Property @@ -317,11 +341,14 @@ The X position. - To be added: an object of type 'double' - To be added: an object of type 'double' + To be added: an object of type 'double' To be added - + + + GLib.Property(Name="x") + + Property @@ -332,11 +359,14 @@ The justification for the text. - To be added: an object of type 'Gtk.Justification' - To be added: an object of type 'Gtk.Justification' + To be added: an object of type 'Gtk.Justification' To be added - + + + GLib.Property(Name="justification") + + Property @@ -347,11 +377,14 @@ The number of pixels to indent. - To be added: an object of type 'int' - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - + + + GLib.Property(Name="indent") + + Property @@ -362,11 +395,14 @@ Whether the text is editable or not. - To be added: an object of type 'bool' - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added - + + + GLib.Property(Name="editable") + + Property @@ -377,11 +413,14 @@ The number of pixels in the right margin. - To be added: an object of type 'int' - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - + + + GLib.Property(Name="right_margin") + + Property @@ -392,11 +431,14 @@ Whether the cursor blinks or not. - To be added: an object of type 'bool' - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added - + + + GLib.Property(Name="cursor_blink") + + Property @@ -407,11 +449,14 @@ The number of pixels below each line. - To be added: an object of type 'int' - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - + + + GLib.Property(Name="pixels_below_lines") + + Property @@ -422,11 +467,14 @@ The number of pixels inside the wrap. - To be added: an object of type 'int' - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - + + + GLib.Property(Name="pixels_inside_wrap") + + Property @@ -436,7 +484,7 @@ GType Property. - a + a Returns the native value for . @@ -450,10 +498,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -495,9 +546,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasShape.xml b/doc/en/Gnome/CanvasShape.xml index f63ae4d26..ec359e847 100644 --- a/doc/en/Gnome/CanvasShape.xml +++ b/doc/en/Gnome/CanvasShape.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -25,14 +23,7 @@ Gnome.CanvasItem - - GLib.IWrapper - - - System.IDisposable - - @@ -56,7 +47,6 @@ Internal constructor Pointer to the C object. - An instance of CanvasShape, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -73,9 +63,9 @@ The used a - + a or if none is set for the shape. - + It does not request updates, as it is meant to be used @@ -95,11 +85,15 @@ Stipple pattern for fill. Stipple pattern - Stipple pattern + Stipple pattern - + + + GLib.Property(Name="fill_stipple") + + Property @@ -111,11 +105,15 @@ X color specification for outline color, or pointer for no color (transparent). X color specification - X color specification + X color specification - + + + GLib.Property(Name="outline_color") + + Property @@ -127,11 +125,15 @@ Cap (end point) style for the Bezier path. Cap style - Cap style used by the Bezier path + Cap style used by the Bezier path - + + + GLib.Property(Name="cap_style") + + Property @@ -143,11 +145,15 @@ Vertex join style for the Bezier path. Vertex join style - Verty join style used by the Bezier path + Verty join style used by the Bezier path - + + + GLib.Property(Name="join_style") + + Property @@ -159,11 +165,15 @@ Fill color with an alpha component (in the format 0xRRGGBBAA). the color to fill - the fill color + the fill color - + + + GLib.Property(Name="fill_color_rgba") + + Property @@ -175,11 +185,15 @@ Minimum angle between segments, where miter join rule is applied. minium angle between segments - Minimum angle between segments, where miter join rule is applied. + Minimum angle between segments, where miter join rule is applied. - + + + GLib.Property(Name="miterlimit") + + Property @@ -191,11 +205,15 @@ Allocated for fill. a - the to fill + the to fill - + + + GLib.Property(Name="fill_color_gdk") + + Property @@ -207,11 +225,15 @@ Width of the outline in canvas units. The outline will be scaled when the canvas zoom factor is changed. width of the outline - width of the outline + width of the outline - + + + GLib.Property(Name="width_units") + + Property @@ -223,11 +245,15 @@ Outline color with an alpha component (in the format 0xRRGGBBAA). outline color - outline color + outline color - + + + GLib.Property(Name="outline_color_rgba") + + Property @@ -239,11 +265,15 @@ Width of the outline in pixels. The outline will not be scaled when the canvas zoom factor is changed. Width of the outline - width of the outline + width of the outline - + + + GLib.Property(Name="width_pixels") + + Property @@ -255,11 +285,15 @@ Winding rule for the Bezier path winding rule - winding rule used by the Bezier path + winding rule used by the Bezier path - + + + GLib.Property(Name="wind") + + Property @@ -271,11 +305,15 @@ Stipple pattern for outline. a stipple pattern - Stipple pattern used by the outline + Stipple pattern used by the outline - + + + GLib.Property(Name="outline_stipple") + + Property @@ -289,11 +327,15 @@ X color specification for fill color, or pointer for no color (transparent). X color specification - X color specification + X color specification - + + + GLib.Property(Name="fill_color") + + Property @@ -305,11 +347,15 @@ Allocated for outline. a - the color of the outline + the color of the outline - + + + GLib.Property(Name="outline_color_gdk") + + Property @@ -319,10 +365,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="dash") + + Property @@ -332,7 +382,7 @@ GType Property. - a + a Returns the native value for . @@ -346,10 +396,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -362,7 +415,6 @@ To be added a a - a To be added @@ -373,9 +425,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasShapePriv.xml b/doc/en/Gnome/CanvasShapePriv.xml index 21c8f1f8a..275c07366 100644 --- a/doc/en/Gnome/CanvasShapePriv.xml +++ b/doc/en/Gnome/CanvasShapePriv.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,11 +27,10 @@ Internal constructor Pointer to the C object. - An instance of CanvasShapePriv, wrapping the C object. This is an internal constructor, and should not be used by user code. - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasText.xml b/doc/en/Gnome/CanvasText.xml index c04685d37..2df9f520b 100644 --- a/doc/en/Gnome/CanvasText.xml +++ b/doc/en/Gnome/CanvasText.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -82,14 +80,7 @@ class CanvasTest Gnome.CanvasItem - - GLib.IWrapper - - - System.IDisposable - - @@ -113,7 +104,6 @@ class CanvasTest Internal constructor Pointer to the C object. - An instance of CanvasText, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -129,7 +119,6 @@ class CanvasTest To be added an object of type - an object of type To be added @@ -144,10 +133,14 @@ class CanvasTest Pango marked up text to render. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="markup") + + Property @@ -159,10 +152,14 @@ class CanvasTest Whether to strike through the text. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="strikethrough") + + Property @@ -174,10 +171,14 @@ class CanvasTest Offset of text above the baseline. an object of type - an object of type + an object of type This property specifies the offset of the text below the baseline if Rise is negative. - + + + GLib.Property(Name="rise") + + Property @@ -189,10 +190,14 @@ class CanvasTest The text to display. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="text") + + Property @@ -204,10 +209,14 @@ class CanvasTest Name of the font family. an object of type - an object of type + an object of type e.g. Sans, Helvetica, Times, Monospace - + + + GLib.Property(Name="family") + + Property @@ -219,10 +228,14 @@ class CanvasTest Y coordinate of anchor point. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="y") + + Property @@ -234,10 +247,14 @@ class CanvasTest X coordinate of anchor point. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="x") + + Property @@ -249,10 +266,14 @@ class CanvasTest Height of clip rectangle. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="clip_height") + + Property @@ -264,10 +285,14 @@ class CanvasTest Pango stretch of font to use. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="stretch") + + Property @@ -279,10 +304,14 @@ class CanvasTest Justification for multiline text. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="justification") + + Property @@ -294,10 +323,14 @@ class CanvasTest Used to query the height of the rendered text. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="text_height") + + Property @@ -309,10 +342,14 @@ class CanvasTest Vertical offset distance from anchor position. an object of type 'double' - an object of type 'double' + an object of type 'double' To be added - + + + GLib.Property(Name="y_offset") + + Property @@ -324,10 +361,14 @@ class CanvasTest Stipple pattern for filling the text. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="fill_stipple") + + Property @@ -339,10 +380,14 @@ class CanvasTest Anchor position for the text. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="anchor") + + Property @@ -354,10 +399,14 @@ class CanvasTest Size (in points) of font. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="size_points") + + Property @@ -369,10 +418,14 @@ class CanvasTest Pango weight of font to use. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="weight") + + Property @@ -384,10 +437,14 @@ class CanvasTest Use clipping rectangle? an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="clip") + + Property @@ -399,10 +456,14 @@ class CanvasTest Reference to a Pango attribute list. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="attributes") + + Property @@ -414,10 +475,14 @@ class CanvasTest Pango underline style for text. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="underline") + + Property @@ -429,10 +494,14 @@ class CanvasTest Size of font, relative to default size. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="scale") + + Property @@ -444,10 +513,14 @@ class CanvasTest RGBA value used for AA color an object of type - an object of type + an object of type The color should be specified in the format 0xRRGGBBAA (R: red, G: green, B: blue, A: alpha) - + + + GLib.Property(Name="fill_color_rgba") + + Property @@ -459,10 +532,14 @@ class CanvasTest Size (in pixels) of font. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="size") + + Property @@ -474,10 +551,14 @@ class CanvasTest Width of clip rectangle. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="clip_width") + + Property @@ -489,10 +570,14 @@ class CanvasTest Pango style of font to use. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="style") + + Property @@ -504,10 +589,14 @@ class CanvasTest Pango variant of font to use. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="variant") + + Property @@ -519,10 +608,14 @@ class CanvasTest An allocated Gdk.Color specification for text. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="fill_color_gdk") + + Property @@ -534,10 +627,14 @@ class CanvasTest Font description as a Pango.FontDescription class. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="font_desc") + + Property @@ -549,10 +646,14 @@ class CanvasTest Font description as a string. an object of type - an object of type + an object of type See for a description of the format of the string representation. - + + + GLib.Property(Name="font") + + Property @@ -564,10 +665,14 @@ class CanvasTest Used to query the width of the rendered text. an object of type 'double' - an object of type 'double' + an object of type 'double' To be added - + + + GLib.Property(Name="text_width") + + Property @@ -579,10 +684,14 @@ class CanvasTest Horizontal offset distance from anchor position. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="x_offset") + + Property @@ -594,10 +703,14 @@ class CanvasTest X color specification for text. an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="fill_color") + + Property @@ -607,7 +720,7 @@ class CanvasTest GType Property. - a + a Returns the native value for . @@ -621,10 +734,13 @@ class CanvasTest Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -632,9 +748,8 @@ class CanvasTest To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CanvasWidget.xml b/doc/en/Gnome/CanvasWidget.xml index 604351745..a93bdfe1f 100644 --- a/doc/en/Gnome/CanvasWidget.xml +++ b/doc/en/Gnome/CanvasWidget.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -22,14 +20,7 @@ Gnome.CanvasItem - - GLib.IWrapper - - - System.IDisposable - - @@ -53,7 +44,6 @@ Internal constructor Pointer to the C object. - An instance of CanvasWidget, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -72,7 +62,6 @@ The that this item belongs to. - the newly-created object @@ -90,11 +79,15 @@ Width of widget (units specified by property). the width of the widget - the width of the widget + the width of the widget - + + + GLib.Property(Name="width") + + Property @@ -108,11 +101,15 @@ Height of widget (units specified by property). the height of the widget - the height of the widget + the height of the widget - + + + GLib.Property(Name="height") + + Property @@ -124,11 +121,15 @@ Anchor position for widget. the anchor's position - anchor position for the widget + anchor position for the widget - + + + GLib.Property(Name="anchor") + + Property @@ -140,11 +141,15 @@ The embedded widget The embedded widget - the embedded widget + the embedded widget - + + + GLib.Property(Name="widget") + + Property @@ -158,11 +163,15 @@ to use pixels unit, to use canvas units - whether the widget size is specified in pixels or canvas units. + whether the widget size is specified in pixels or canvas units. - + + + GLib.Property(Name="size_pixels") + + Property @@ -174,11 +183,15 @@ Y coordinate of anchor point. Y coordinate of anchor point. - Y coordinate of anchor point. + Y coordinate of anchor point. - + + + GLib.Property(Name="y") + + Property @@ -190,11 +203,15 @@ X coordinate of anchor point. X coordinate of anchor point. - X coordinate of anchor point. + X coordinate of anchor point. - + + + GLib.Property(Name="x") + + Property @@ -204,7 +221,7 @@ GType Property. - a + a Returns the native value for . @@ -218,10 +235,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -229,9 +249,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/ChangeBackgroundArgs.xml b/doc/en/Gnome/ChangeBackgroundArgs.xml index 0e9f1be8c..ec02983e1 100644 --- a/doc/en/Gnome/ChangeBackgroundArgs.xml +++ b/doc/en/Gnome/ChangeBackgroundArgs.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ GLib.SignalArgs - @@ -25,7 +22,6 @@ To be added - a To be added @@ -38,7 +34,7 @@ To be added - a + a To be added @@ -51,7 +47,7 @@ To be added - a + a To be added @@ -64,9 +60,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/ChangeBackgroundHandler.xml b/doc/en/Gnome/ChangeBackgroundHandler.xml index c29d039e0..57d489d78 100644 --- a/doc/en/Gnome/ChangeBackgroundHandler.xml +++ b/doc/en/Gnome/ChangeBackgroundHandler.xml @@ -1,29 +1,20 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -32,4 +23,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/ChangeSizeArgs.xml b/doc/en/Gnome/ChangeSizeArgs.xml index 7894b6a5c..37e1fb6b3 100644 --- a/doc/en/Gnome/ChangeSizeArgs.xml +++ b/doc/en/Gnome/ChangeSizeArgs.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ GLib.SignalArgs - @@ -25,7 +22,6 @@ To be added - a To be added @@ -38,9 +34,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/ChangeSizeHandler.xml b/doc/en/Gnome/ChangeSizeHandler.xml index c6162c086..2f223a8a5 100644 --- a/doc/en/Gnome/ChangeSizeHandler.xml +++ b/doc/en/Gnome/ChangeSizeHandler.xml @@ -1,29 +1,20 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -32,4 +23,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/ClickedArgs.xml b/doc/en/Gnome/ClickedArgs.xml index 5ceb8ccdf..5573c652d 100644 --- a/doc/en/Gnome/ClickedArgs.xml +++ b/doc/en/Gnome/ClickedArgs.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/ClickedHandler.xml b/doc/en/Gnome/ClickedHandler.xml index 51cc0a24b..f65cf747f 100644 --- a/doc/en/Gnome/ClickedHandler.xml +++ b/doc/en/Gnome/ClickedHandler.xml @@ -1,14 +1,14 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/Client.xml b/doc/en/Gnome/Client.xml index 500aff134..d5d7a2f16 100644 --- a/doc/en/Gnome/Client.xml +++ b/doc/en/Gnome/Client.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gtk.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -52,23 +43,7 @@ To be added - - - Method - - System.Void - - - - - - - To be added - To be added: an object of type 'int' - To be added: an object of type 'string []' - To be added - - + Method @@ -104,40 +79,8 @@ To be added - - - Method - - System.Void - - - - - - - To be added - To be added: an object of type 'int' - To be added: an object of type 'string []' - To be added - - - - - Method - - System.Void - - - - - - - To be added - To be added: an object of type 'int' - To be added: an object of type 'string []' - To be added - - + + Method @@ -176,23 +119,7 @@ To be added - - - Method - - System.Void - - - - - - - To be added - To be added: an object of type 'int' - To be added: an object of type 'string []' - To be added - - + Method @@ -244,23 +171,7 @@ To be added - - - Method - - System.Void - - - - - - - To be added - To be added: an object of type 'int' - To be added: an object of type 'string []' - To be added - - + Method @@ -315,7 +226,6 @@ Internal constructor Pointer to the C object. - An instance of Client, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -328,7 +238,6 @@ To be added - To be added: an object of type 'Gnome.Client' To be added @@ -342,8 +251,7 @@ To be added - To be added: an object of type 'uint' - To be added: an object of type 'uint' + To be added: an object of type 'uint' To be added @@ -357,8 +265,7 @@ To be added - To be added: an object of type 'Gnome.RestartStyle' - To be added: an object of type 'Gnome.RestartStyle' + To be added: an object of type 'Gnome.RestartStyle' To be added @@ -370,7 +277,7 @@ To be added - To be added: an object of type 'Gnome.ClientFlags' + To be added: an object of type 'Gnome.ClientFlags' To be added @@ -384,8 +291,7 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -397,7 +303,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -411,8 +317,7 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -426,8 +331,7 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -439,7 +343,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -453,8 +357,7 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -468,8 +371,7 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -481,7 +383,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -496,7 +398,11 @@ To be added To be added - + + + GLib.Signal(CName="shutdown_cancelled") + + Event @@ -508,7 +414,11 @@ To be added To be added - + + + GLib.Signal(CName="die") + + Event @@ -520,7 +430,11 @@ To be added To be added - + + + GLib.Signal(CName="save_yourself") + + Event @@ -532,7 +446,11 @@ To be added To be added - + + + GLib.Signal(CName="disconnect") + + Event @@ -544,7 +462,11 @@ To be added To be added - + + + GLib.Signal(CName="save_complete") + + Event @@ -556,7 +478,11 @@ To be added To be added - + + + GLib.Signal(CName="connect") + + Property @@ -566,7 +492,7 @@ GType Property. - a + a Returns the native value for . @@ -667,10 +593,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -683,5 +612,90 @@ To be added + + + Method + + System.Void + + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Void + + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Void + + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Void + + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Void + + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gnome/ClientFlags.xml b/doc/en/Gnome/ClientFlags.xml index 556379ce9..454cc44f1 100644 --- a/doc/en/Gnome/ClientFlags.xml +++ b/doc/en/Gnome/ClientFlags.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.ClientFlagsGType)) + + + System.Flags + + @@ -88,4 +82,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/ClientState.xml b/doc/en/Gnome/ClientState.xml index e993a4743..1d966f0c1 100644 --- a/doc/en/Gnome/ClientState.xml +++ b/doc/en/Gnome/ClientState.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.ClientStateGType)) + + @@ -134,4 +125,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/CloseArgs.xml b/doc/en/Gnome/CloseArgs.xml index bf28c55f4..724d7826c 100644 --- a/doc/en/Gnome/CloseArgs.xml +++ b/doc/en/Gnome/CloseArgs.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,9 +24,8 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. - \ No newline at end of file + diff --git a/doc/en/Gnome/CloseHandler.xml b/doc/en/Gnome/CloseHandler.xml index 4bb873709..500681b00 100644 --- a/doc/en/Gnome/CloseHandler.xml +++ b/doc/en/Gnome/CloseHandler.xml @@ -1,14 +1,14 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/CollateSetArgs.xml b/doc/en/Gnome/CollateSetArgs.xml index d4a5b853a..9aeb9ee02 100644 --- a/doc/en/Gnome/CollateSetArgs.xml +++ b/doc/en/Gnome/CollateSetArgs.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CollateSetHandler.xml b/doc/en/Gnome/CollateSetHandler.xml index 62dc96f01..b9088c3d2 100644 --- a/doc/en/Gnome/CollateSetHandler.xml +++ b/doc/en/Gnome/CollateSetHandler.xml @@ -1,14 +1,14 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/ColorPicker.xml b/doc/en/Gnome/ColorPicker.xml index 80b4ca24d..1b3104689 100644 --- a/doc/en/Gnome/ColorPicker.xml +++ b/doc/en/Gnome/ColorPicker.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,12 @@ Gtk.Button - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - + + + System.Obsolete(Message=null, IsError=False) + + @@ -117,7 +107,6 @@ Internal constructor Pointer to the C object. - An instance of ColorPicker, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -130,7 +119,6 @@ Create a new ColorPicker widget. - To be added: an object of type 'Gnome.ColorPicker' To be added @@ -145,10 +133,14 @@ The green value for the color in the widget. Value of the color in the range from 0 to 65535. - The current value of the channel. + The current value of the channel. To be added - + + + GLib.Property(Name="green") + + Property @@ -160,10 +152,14 @@ The alpha value for the color in the widget. Value of the color in the range from 0 to 65535. - The current value of the channel. + The current value of the channel. To be added - + + + GLib.Property(Name="alpha") + + Property @@ -175,10 +171,14 @@ The title to be displayed on the color selection dialog. The text to use. - Current text to be used for the color selection dialog. + Current text to be used for the color selection dialog. To be added - + + + GLib.Property(Name="title") + + Property @@ -190,10 +190,14 @@ Whether the sample is dithered or simply a solid color. Whether to dither or not. - Current dither settings for the widget. + Current dither settings for the widget. To be added - + + + GLib.Property(Name="dither") + + Property @@ -205,10 +209,14 @@ The blue value for the color in the widget. Value of the color in the range from 0 to 65535. - The current value of the channel. + The current value of the channel. To be added - + + + GLib.Property(Name="blue") + + Property @@ -220,10 +228,14 @@ Enable/Disable support for an alpha channel for the color. Whether to support an alpha channel or not. - Curren rule for the use of the alpha channel. + Curren rule for the use of the alpha channel. To be added - + + + GLib.Property(Name="use_alpha") + + Property @@ -235,10 +247,14 @@ The red value for the color in the widget. Value of the color in the range from 0 to 65535. - The current value of the channel. + The current value of the channel. To be added - + + + GLib.Property(Name="red") + + Event @@ -250,7 +266,11 @@ Emitted when a color is selected in the color dialog. To be added - + + + GLib.Signal(CName="color_set") + + Method @@ -323,7 +343,7 @@ GType Property. - a + a Returns the native value for . @@ -358,9 +378,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/ColorSetArgs.xml b/doc/en/Gnome/ColorSetArgs.xml index 1eea8ebc3..d8d361adf 100644 --- a/doc/en/Gnome/ColorSetArgs.xml +++ b/doc/en/Gnome/ColorSetArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The value of the alpha channel. - To be added: an object of type 'uint' + To be added: an object of type 'uint' To be added @@ -52,7 +48,7 @@ The value of the blue channel. - To be added: an object of type 'uint' + To be added: an object of type 'uint' To be added @@ -64,7 +60,7 @@ The value of the green channel. - To be added: an object of type 'uint' + To be added: an object of type 'uint' To be added @@ -76,9 +72,9 @@ The value of the red channel. - To be added: an object of type 'uint' + To be added: an object of type 'uint' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/ColorSetHandler.xml b/doc/en/Gnome/ColorSetHandler.xml index 7673c32f7..9eedb8cf8 100644 --- a/doc/en/Gnome/ColorSetHandler.xml +++ b/doc/en/Gnome/ColorSetHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/Config.xml b/doc/en/Gnome/Config.xml index 9d9ff9ee1..1fece2a05 100644 --- a/doc/en/Gnome/Config.xml +++ b/doc/en/Gnome/Config.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -55,7 +52,7 @@ - + Method System.Void @@ -372,7 +369,6 @@ To be added - a To be added @@ -518,4 +514,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/ConnectedArgs.xml b/doc/en/Gnome/ConnectedArgs.xml index 4e29ee031..da14c160a 100644 --- a/doc/en/Gnome/ConnectedArgs.xml +++ b/doc/en/Gnome/ConnectedArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/ConnectedHandler.xml b/doc/en/Gnome/ConnectedHandler.xml index cfce565e2..9993cf325 100644 --- a/doc/en/Gnome/ConnectedHandler.xml +++ b/doc/en/Gnome/ConnectedHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/ContextMenuItemCallback.xml b/doc/en/Gnome/ContextMenuItemCallback.xml index dc3b6ce77..9f5b7f624 100644 --- a/doc/en/Gnome/ContextMenuItemCallback.xml +++ b/doc/en/Gnome/ContextMenuItemCallback.xml @@ -1,11 +1,9 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,9 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/CopiesSetArgs.xml b/doc/en/Gnome/CopiesSetArgs.xml index e25bb95b6..06b6641bf 100644 --- a/doc/en/Gnome/CopiesSetArgs.xml +++ b/doc/en/Gnome/CopiesSetArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/CopiesSetHandler.xml b/doc/en/Gnome/CopiesSetHandler.xml index 9ca80c474..3e6ba1b21 100644 --- a/doc/en/Gnome/CopiesSetHandler.xml +++ b/doc/en/Gnome/CopiesSetHandler.xml @@ -1,15 +1,15 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/DateEdit.xml b/doc/en/Gnome/DateEdit.xml index 64b07f33c..10431fe73 100644 --- a/doc/en/Gnome/DateEdit.xml +++ b/doc/en/Gnome/DateEdit.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.HBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -86,7 +71,6 @@ Internal constructor Pointer to the C object. - An instance of DateEdit, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -100,7 +84,7 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -114,11 +98,14 @@ To be added - To be added: an object of type 'int' - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - + + + GLib.Property(Name="lower_hour") + + Property @@ -129,11 +116,14 @@ To be added - To be added: an object of type 'Gnome.DateEditFlags' - To be added: an object of type 'Gnome.DateEditFlags' + To be added: an object of type 'Gnome.DateEditFlags' To be added - + + + GLib.Property(Name="dateedit_flags") + + Property @@ -144,11 +134,14 @@ To be added - To be added: an object of type 'int' - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - + + + GLib.Property(Name="upper_hour") + + Event @@ -160,7 +153,11 @@ To be added To be added - + + + GLib.Signal(CName="time_changed") + + Event @@ -172,7 +169,11 @@ To be added To be added - + + + GLib.Signal(CName="date_changed") + + Property @@ -184,10 +185,14 @@ To be added a - a + a To be added - + + + GLib.Property(Name="initial_time") + + Property @@ -197,7 +202,7 @@ GType Property. - a + a Returns the native value for . @@ -235,10 +240,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -248,10 +256,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="time") + + Method @@ -283,7 +295,6 @@ a a a - a To be added @@ -299,7 +310,6 @@ To be added a a - a To be added @@ -310,7 +320,6 @@ To be added - a To be added @@ -324,7 +333,6 @@ To be added a - a To be added @@ -340,7 +348,6 @@ To be added a a - a To be added @@ -353,9 +360,13 @@ To be added - a + a To be added - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/DateEditFlags.xml b/doc/en/Gnome/DateEditFlags.xml index 907d8d663..ab683f113 100644 --- a/doc/en/Gnome/DateEditFlags.xml +++ b/doc/en/Gnome/DateEditFlags.xml @@ -1,32 +1,27 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Flags specifying how behaves + To be added. System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.DateEditFlagsGType)) + + + System.Flags + + @@ -81,4 +76,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/Dialog.xml b/doc/en/Gnome/Dialog.xml index 0446fea7f..3bef95e2b 100644 --- a/doc/en/Gnome/Dialog.xml +++ b/doc/en/Gnome/Dialog.xml @@ -1,11 +1,9 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,19 +14,10 @@ Gtk.Window - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - System.ObsoleteAttribute + System.Obsolete(Message=null, IsError=False) @@ -288,10 +277,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -302,7 +294,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -318,7 +309,6 @@ To be added a a - a To be added @@ -331,7 +321,7 @@ GType Property. - a + a Returns the native value for . @@ -343,7 +333,7 @@ To be added - a + a To be added @@ -358,7 +348,11 @@ To be added To be added - + + + GLib.Signal(CName="close") + + Event @@ -370,6 +364,10 @@ To be added To be added - + + + GLib.Signal(CName="clicked") + + - \ No newline at end of file + diff --git a/doc/en/Gnome/DialogType.xml b/doc/en/Gnome/DialogType.xml index 4b38211fa..7879b7a39 100644 --- a/doc/en/Gnome/DialogType.xml +++ b/doc/en/Gnome/DialogType.xml @@ -1,32 +1,24 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. The dialogs used by the session manager to handle user interactions. + To be added. System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.DialogTypeGType)) + + @@ -68,4 +60,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/DrawBackgroundArgs.xml b/doc/en/Gnome/DrawBackgroundArgs.xml index 7120fa306..76eb403d0 100644 --- a/doc/en/Gnome/DrawBackgroundArgs.xml +++ b/doc/en/Gnome/DrawBackgroundArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -52,7 +48,7 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -64,7 +60,7 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -76,7 +72,7 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -88,9 +84,9 @@ To be added - To be added: an object of type 'Gdk.Drawable' + To be added: an object of type 'Gdk.Drawable' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/DrawBackgroundHandler.xml b/doc/en/Gnome/DrawBackgroundHandler.xml index 9570c51f3..fe8a9c251 100644 --- a/doc/en/Gnome/DrawBackgroundHandler.xml +++ b/doc/en/Gnome/DrawBackgroundHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/Druid.xml b/doc/en/Gnome/Druid.xml index 1a22f2abe..5d2795e6e 100644 --- a/doc/en/Gnome/Druid.xml +++ b/doc/en/Gnome/Druid.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,17 +22,7 @@ The widget which ultimately holds all of the druid's pages and information. This Gtk.Container - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -133,7 +121,6 @@ The widget which ultimately holds all of the druid's pages and information. This Internal constructor Pointer to the C object. - An instance of Druid, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -146,7 +133,6 @@ The widget which ultimately holds all of the druid's pages and information. This Creates a new GnomeDruid widget. - a new Widget. You need to add this druid to a dialog yourself, it is not a dialog. @@ -161,7 +147,7 @@ The widget which ultimately holds all of the druid's pages and information. This This will make the currently showing page in the druid. an object of type - an object of type + an object of type must already be in the druid. @@ -181,12 +167,16 @@ The widget which ultimately holds all of the druid's pages and information. This The to be brought to the foreground. - an object of type + an object of type The page must already be in the druid. - + + + GLib.Property(Name="show_finish") + + Property @@ -198,10 +188,14 @@ The widget which ultimately holds all of the druid's pages and information. This Used to specify if the druid is currently showing the last page of the sequence. If true, then the "Next" button is changed to be "Finish". - an object of type + an object of type If set to true, the druid will display "Finish", rather than "Next". - + + + GLib.Property(Name="show_help") + + Event @@ -213,7 +207,11 @@ The widget which ultimately holds all of the druid's pages and information. This Used to specify if the "Help" button on the druid is visible. If set to true, the "Help" button is shown in the lower left corner of the widget. - + + + GLib.Signal(CName="help") + + Event @@ -226,7 +224,11 @@ The widget which ultimately holds all of the druid's pages and information. This - + + + GLib.Signal(CName="cancel") + + Property @@ -236,7 +238,7 @@ The widget which ultimately holds all of the druid's pages and information. This GType Property. - a + a Returns the native value for . @@ -274,10 +276,13 @@ The widget which ultimately holds all of the druid's pages and information. This Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -312,7 +317,6 @@ The widget which ultimately holds all of the druid's pages and information. This a a a - a To be added @@ -328,7 +332,6 @@ The widget which ultimately holds all of the druid's pages and information. This To be added a a - a To be added @@ -346,7 +349,6 @@ The widget which ultimately holds all of the druid's pages and information. This a a a - a To be added @@ -366,7 +368,6 @@ The widget which ultimately holds all of the druid's pages and information. This a a a - a To be added @@ -379,8 +380,9 @@ The widget which ultimately holds all of the druid's pages and information. This The druid's "Finish" button. - a - + a + + @@ -392,8 +394,9 @@ The widget which ultimately holds all of the druid's pages and information. This The druid's "Next" button. - a - + a + + @@ -405,8 +408,9 @@ The widget which ultimately holds all of the druid's pages and information. This The druid's "Help" button. - a - + a + + @@ -418,8 +422,9 @@ The widget which ultimately holds all of the druid's pages and information. This The druid's "Back" button. - a - + a + + @@ -431,9 +436,10 @@ The widget which ultimately holds all of the druid's pages and information. This The druid's "Cancel" button. - a - + a + + - \ No newline at end of file + diff --git a/doc/en/Gnome/DruidPage.xml b/doc/en/Gnome/DruidPage.xml index f9f7da774..d087afa42 100644 --- a/doc/en/Gnome/DruidPage.xml +++ b/doc/en/Gnome/DruidPage.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,17 +15,7 @@ Gtk.Bin - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -114,7 +102,6 @@ Internal constructor Pointer to the C object. - An instance of DruidPage, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -127,7 +114,6 @@ Creates a new . - an object of type @@ -144,7 +130,11 @@ - + + + GLib.Signal(CName="cancel") + + Event @@ -157,7 +147,11 @@ - + + + GLib.Signal(CName="back") + + Event @@ -170,7 +164,11 @@ - + + + GLib.Signal(CName="finish") + + Event @@ -183,7 +181,11 @@ - + + + GLib.Signal(CName="next") + + Event @@ -196,7 +198,11 @@ - + + + GLib.Signal(CName="prepare") + + Property @@ -206,7 +212,7 @@ GType Property. - a + a Returns the native value for . @@ -298,9 +304,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/DruidPageEdge.xml b/doc/en/Gnome/DruidPageEdge.xml index 363f0107b..40aa64233 100644 --- a/doc/en/Gnome/DruidPageEdge.xml +++ b/doc/en/Gnome/DruidPageEdge.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,17 +18,7 @@ Gnome.DruidPage - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -82,7 +70,6 @@ Internal constructor Pointer to the C object. - An instance of DruidPageEdge, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -98,7 +85,6 @@ Creates a new widget. Position in druid. - a new . @@ -125,7 +111,6 @@ The logo in the upper right corner. The watermark on the left. The top watermark. - a new . It is acceptable for any of the reference values to be null. @@ -140,7 +125,7 @@ The color of the page border. The color. - The color. + The color. @@ -156,7 +141,7 @@ The page title. The page title. - The page title. + The page title. @@ -172,7 +157,7 @@ The background color of the main text area. The color. - The color. + The color. @@ -188,7 +173,7 @@ The color of the text in the body of the page. The color. - The color. + The color. @@ -204,7 +189,7 @@ The background color to render the logo image against. The color. - The color. + The color. @@ -220,7 +205,7 @@ The watermark image to display on the left strip on the druid. The to use as a watermark. - The watermark, as a + The watermark, as a If set to , then no left-side watermark will be displayed. @@ -235,7 +220,7 @@ The watermark image to display on the top strip on the druid. The to use as a watermark. - The watermark, as a + The watermark, as a If set to , then no top watermark will be displayed. @@ -250,7 +235,7 @@ The color of the title text. The color. - The color. + The color. @@ -266,7 +251,7 @@ The logo to display in the top right corner. The logo image. - the logo, as a + the logo, as a If set to , then no logo will be displayed. @@ -281,7 +266,7 @@ The current text of the page. The text. - The text. + The text. @@ -295,7 +280,7 @@ GType Property. - a + a Returns the native value for . @@ -309,10 +294,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -320,7 +308,6 @@ To be added - a To be added @@ -333,9 +320,10 @@ The position of the page within the druid. - a - + a + + - \ No newline at end of file + diff --git a/doc/en/Gnome/DruidPageStandard.xml b/doc/en/Gnome/DruidPageStandard.xml index 060b81a57..423ecfa3c 100644 --- a/doc/en/Gnome/DruidPageStandard.xml +++ b/doc/en/Gnome/DruidPageStandard.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,17 +18,7 @@ Gnome.DruidPage - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -76,7 +64,6 @@ Internal constructor Pointer to the C object. - An instance of DruidPageStandard, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -89,7 +76,6 @@ Construct a new . - a new . @@ -108,7 +94,6 @@ The title of the druid page. The logo to put on the druid page. The watermark to put at the top of the druid page. - a new . @@ -124,7 +109,7 @@ The color of the main contents section background. an object of type - an object of type + an object of type @@ -140,11 +125,15 @@ Sets the color of the main contents section's background. The new color for the main body's background. - an object of type + an object of type - + + + GLib.Property(Name="title_foreground_gdk") + + Property @@ -156,11 +145,15 @@ The background of the logo. an object of type - an object of type + an object of type - + + + GLib.Property(Name="logo_background_gdk") + + Property @@ -172,10 +165,14 @@ To be added an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="title_foreground_set") + + Property @@ -187,10 +184,14 @@ Sets a as the logo in the top right corner. an object of type - an object of type + an object of type If , then no logo will be displayed. - + + + GLib.Property(Name="logo") + + Property @@ -202,7 +203,8 @@ The color of the title text. The color of the title text. - an object of type + an object of type + To be added. @@ -216,7 +218,7 @@ The background color to render the logo image against. The color. - The color. + The color. @@ -232,7 +234,7 @@ The color of the page border. The color. - The color. + The color. @@ -248,11 +250,15 @@ The page title. The page title. - The page title. + The page title. - + + + GLib.Property(Name="title") + + Property @@ -264,11 +270,15 @@ The background color of the top section of the druid page. an object of type - an object of type + an object of type - + + + GLib.Property(Name="background_gdk") + + Property @@ -280,10 +290,14 @@ Sets a as the watermark on the top strip on the druid. an object of type - an object of type + an object of type If , it is reset to the normal color. - + + + GLib.Property(Name="top_watermark") + + Property @@ -295,10 +309,14 @@ Sets a as the watermark on top of the top strip on the druid. The to use as a top watermark. - an object of type + an object of type If set to null, the top watermark is reset to the normal color. - + + + GLib.Property(Name="logo_background_set") + + Property @@ -310,10 +328,14 @@ To be added an object of type - an object of type + an object of type To be added - + + + GLib.Property(Name="background_set") + + Property @@ -323,7 +345,7 @@ GType Property. - a + a Returns the native value for . @@ -337,10 +359,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -350,9 +375,10 @@ The page's - The page's - + The page's + + - \ No newline at end of file + diff --git a/doc/en/Gnome/EdgePosition.xml b/doc/en/Gnome/EdgePosition.xml index eca011c4e..046b4024c 100644 --- a/doc/en/Gnome/EdgePosition.xml +++ b/doc/en/Gnome/EdgePosition.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.EdgePositionGType)) + + @@ -98,4 +89,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/Entry.xml b/doc/en/Gnome/Entry.xml index 7719ed8bf..70858c4ac 100644 --- a/doc/en/Gnome/Entry.xml +++ b/doc/en/Gnome/Entry.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,26 +19,15 @@ Gtk.Editable - - GLib.IWrapper - - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - + + + System.Obsolete(Message=null, IsError=False) + + - + Method System.Void @@ -58,7 +45,7 @@ - + Method System.String @@ -77,7 +64,7 @@ - + Method System.Void @@ -95,7 +82,7 @@ - + Method System.Void @@ -107,7 +94,7 @@ - + Method System.Void @@ -120,7 +107,7 @@ - + Method System.Boolean @@ -139,7 +126,7 @@ - + Method System.Void @@ -151,7 +138,7 @@ - + Method System.Void @@ -246,7 +233,6 @@ Internal constructor Pointer to the C object. - An instance of Entry, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -262,13 +248,12 @@ Creates a new instance. an object of type - an object of type - + Property System.Boolean @@ -278,13 +263,13 @@ Whether the is editable by the user. an object of type - an object of type + an object of type - + Property System.Int32 @@ -294,7 +279,7 @@ The position of the cursor in the entry. an object of type - an object of type + an object of type @@ -310,7 +295,7 @@ Internal limit on number of history items saved to the config file. an object of type - an object of type + an object of type Zero is an acceptable value, but the same thing is accomplished by setting the to . @@ -322,11 +307,15 @@ The internal of the . - an object of type + an object of type - + + + GLib.Property(Name="gtk_entry") + + Property @@ -338,13 +327,17 @@ The history id of the widget. an object of type - an object of type + an object of type - + + + GLib.Property(Name="history_id") + + - + Event System.EventHandler @@ -355,7 +348,11 @@ - + + + GLib.Signal(CName="changed") + + Event @@ -367,9 +364,13 @@ Emitted when the is activated. This usually occurs when the user presses the "enter" or "return" key. - + + + GLib.Signal(CName="activate") + + - + Method System.Void @@ -394,7 +395,7 @@ GType Property. - a + a Returns the native value for . @@ -466,12 +467,15 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - + Event Gtk.TextDeletedHandler @@ -481,9 +485,13 @@ Emitted when text is deleted from the entry. - + + + GLib.Signal(CName="delete_text") + + - + Event Gtk.TextInsertedHandler @@ -493,6 +501,10 @@ Emitted when text is inserted into the entry. - + + + GLib.Signal(CName="insert_text") + + - \ No newline at end of file + diff --git a/doc/en/Gnome/Error.xml b/doc/en/Gnome/Error.xml index 288797856..7bb1c1e1c 100644 --- a/doc/en/Gnome/Error.xml +++ b/doc/en/Gnome/Error.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -59,9 +56,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/FileDomain.xml b/doc/en/Gnome/FileDomain.xml index 28c4801b2..05098db46 100644 --- a/doc/en/Gnome/FileDomain.xml +++ b/doc/en/Gnome/FileDomain.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -23,18 +21,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.FileDomainGType)) + + @@ -219,4 +210,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/FileEntry.xml b/doc/en/Gnome/FileEntry.xml index 7050cad4f..15204621b 100644 --- a/doc/en/Gnome/FileEntry.xml +++ b/doc/en/Gnome/FileEntry.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,20 +18,10 @@ Gtk.Editable - - GLib.IWrapper - - - Atk.Implementor - - - System.IDisposable - - - + Method System.Void @@ -51,7 +39,7 @@ - + Method System.String @@ -70,7 +58,7 @@ - + Method System.Void @@ -88,7 +76,7 @@ - + Method System.Void @@ -101,7 +89,7 @@ - + Method System.Void @@ -114,7 +102,7 @@ - + Method System.Boolean @@ -133,7 +121,7 @@ - + Method System.Void @@ -146,7 +134,7 @@ - + Method System.Void @@ -214,7 +202,6 @@ Internal constructor Pointer to the C object. - An instance of FileEntry, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -232,13 +219,12 @@ Creates a new . an object of type an object of type - an object of type - + Property System.Boolean @@ -248,13 +234,13 @@ Whether the should be editable by the user. an object of type - an object of type + an object of type - + Property System.Int32 @@ -264,7 +250,7 @@ The cursor position in the . an object of type - an object of type + an object of type @@ -280,7 +266,7 @@ Set the title of the browse dialog. an object of type - an object of type + an object of type The new title will go into effect the next time the browse button is pressed. @@ -293,11 +279,15 @@ The associated . - an object of type + an object of type - + + + GLib.Property(Name="gtk_entry") + + Property @@ -309,11 +299,15 @@ Whether the browse dialog is modal. an object of type - an object of type + an object of type - + + + GLib.Property(Name="modal") + + Property @@ -325,11 +319,15 @@ Set the default path of browse dialog. an object of type - an object of type + an object of type The default path is only used if the entry is empty or if the current path of the entry is not an absolute path, in which case the default path is prepended to it before the dialog is started. - + + + GLib.Property(Name="default_path") + + Property @@ -341,11 +339,15 @@ The value of the internal . an object of type - an object of type + an object of type - + + + GLib.Property(Name="filename") + + Property @@ -357,11 +359,15 @@ Title of the browse dialog. an object of type - an object of type + an object of type - + + + GLib.Property(Name="browse_dialog_title") + + Property @@ -373,11 +379,15 @@ Whether this is a directory only entry. an object of type - an object of type + an object of type If , then will check for the file being a directory, and the browse dialog will have the file list disabled. - + + + GLib.Property(Name="directory_entry") + + Property @@ -389,11 +399,15 @@ The ID for the associated history. an object of type - an object of type + an object of type - + + + GLib.Property(Name="history_id") + + Property @@ -402,13 +416,17 @@ The associated . - an object of type + an object of type - + + + GLib.Property(Name="gnome_entry") + + - + Event System.EventHandler @@ -419,7 +437,11 @@ - + + + GLib.Signal(CName="changed") + + Event @@ -432,7 +454,11 @@ - + + + GLib.Signal(CName="browse_clicked") + + Event @@ -445,9 +471,13 @@ - + + + GLib.Signal(CName="activate") + + - + Method System.Void @@ -473,7 +503,7 @@ GType Property. - a + a Returns the native value for . @@ -557,12 +587,15 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - + Event Gtk.TextDeletedHandler @@ -572,9 +605,13 @@ Emitted when text is deleted into the . - + + + GLib.Signal(CName="delete_text") + + - + Event Gtk.TextInsertedHandler @@ -584,7 +621,11 @@ Emitted when text is inserted into the . - + + + GLib.Signal(CName="insert_text") + + Property @@ -594,10 +635,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="use_filechooser") + + Property @@ -607,10 +652,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="filechooser_action") + + Property @@ -619,9 +668,13 @@ To be added - a + a To be added - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/FinishClickedArgs.xml b/doc/en/Gnome/FinishClickedArgs.xml index f03419a6c..6dee54422 100644 --- a/doc/en/Gnome/FinishClickedArgs.xml +++ b/doc/en/Gnome/FinishClickedArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - To be added: an object of type 'Gtk.Widget' + To be added: an object of type 'Gtk.Widget' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/FinishClickedHandler.xml b/doc/en/Gnome/FinishClickedHandler.xml index e773342af..c1b003ee8 100644 --- a/doc/en/Gnome/FinishClickedHandler.xml +++ b/doc/en/Gnome/FinishClickedHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/Font.xml b/doc/en/Gnome/Font.xml index 9ba6795a3..c0143f406 100644 --- a/doc/en/Gnome/Font.xml +++ b/doc/en/Gnome/Font.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -239,7 +230,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -252,10 +242,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="Ascender") + + Property @@ -265,10 +259,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="IsFixedPitch") + + Property @@ -278,10 +276,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="FamilyName") + + Property @@ -291,10 +293,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="FullName") + + Property @@ -304,10 +310,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="UnderlinePosition") + + Property @@ -317,10 +327,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="FontName") + + Property @@ -330,10 +344,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="Descender") + + Property @@ -343,10 +361,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="CapHeight") + + Property @@ -356,10 +378,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="FontBBox") + + Property @@ -369,10 +395,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="Weight") + + Property @@ -382,10 +412,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="Size") + + Property @@ -395,10 +429,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="XHeight") + + Property @@ -408,10 +446,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="ItalicAngle") + + Property @@ -421,10 +463,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="Version") + + Property @@ -434,10 +480,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="UnderlineThickness") + + Property @@ -447,7 +497,7 @@ To be added - a + a To be added @@ -566,7 +616,7 @@ GType Property. - a + a Returns the native value for . @@ -580,12 +630,15 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - + Method System.String[] @@ -598,7 +651,7 @@ - + Method System.String[] @@ -622,7 +675,7 @@ To be added - a + a To be added @@ -635,7 +688,7 @@ To be added - a + a To be added @@ -648,7 +701,7 @@ To be added - a + a To be added @@ -659,9 +712,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/FontDialog.xml b/doc/en/Gnome/FontDialog.xml index 39b30fd5e..80dfac010 100644 --- a/doc/en/Gnome/FontDialog.xml +++ b/doc/en/Gnome/FontDialog.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.Dialog - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -55,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -69,7 +53,6 @@ To be added a - a To be added @@ -82,7 +65,7 @@ To be added - a + a To be added @@ -95,7 +78,7 @@ To be added - a + a To be added @@ -109,10 +92,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -122,9 +108,9 @@ GType Property. - a + a Returns the native value for . - \ No newline at end of file + diff --git a/doc/en/Gnome/FontFace.xml b/doc/en/Gnome/FontFace.xml index f8f6ebee8..d26b15e15 100644 --- a/doc/en/Gnome/FontFace.xml +++ b/doc/en/Gnome/FontFace.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -239,7 +230,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -252,10 +242,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="Ascender") + + Property @@ -265,10 +259,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="IsFixedPitch") + + Property @@ -278,10 +276,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="FamilyName") + + Property @@ -291,10 +293,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="FullName") + + Property @@ -304,10 +310,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="UnderlinePosition") + + Property @@ -317,10 +327,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="FontName") + + Property @@ -330,10 +344,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="Descender") + + Property @@ -343,10 +361,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="CapHeight") + + Property @@ -356,10 +378,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="FontBBox") + + Property @@ -369,10 +395,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="Weight") + + Property @@ -382,10 +412,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="XHeight") + + Property @@ -395,10 +429,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="ItalicAngle") + + Property @@ -408,10 +446,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="Version") + + Property @@ -421,10 +463,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="UnderlineThickness") + + Property @@ -434,7 +480,7 @@ To be added - a + a To be added @@ -447,7 +493,7 @@ To be added - a + a To be added @@ -460,7 +506,7 @@ To be added - a + a To be added @@ -473,7 +519,7 @@ To be added - a + a To be added @@ -486,7 +532,7 @@ To be added - a + a To be added @@ -499,7 +545,7 @@ To be added - a + a To be added @@ -512,7 +558,7 @@ To be added - a + a To be added @@ -611,7 +657,7 @@ To be added - a + a To be added @@ -624,7 +670,7 @@ To be added - a + a To be added @@ -637,7 +683,7 @@ GType Property. - a + a Returns the native value for . @@ -651,10 +697,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -662,9 +711,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/FontFamily.xml b/doc/en/Gnome/FontFamily.xml index 618b68a5e..a4ef5a395 100644 --- a/doc/en/Gnome/FontFamily.xml +++ b/doc/en/Gnome/FontFamily.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -65,7 +56,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -79,7 +69,6 @@ To be added a - a To be added @@ -92,7 +81,7 @@ GType Property. - a + a Returns the native value for . @@ -106,12 +95,15 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - + Method System.String[] @@ -124,7 +116,7 @@ - + Method System.String[] @@ -137,4 +129,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/FontPicker.xml b/doc/en/Gnome/FontPicker.xml index 312a0176d..1f95b795d 100644 --- a/doc/en/Gnome/FontPicker.xml +++ b/doc/en/Gnome/FontPicker.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,12 @@ Gtk.Button - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - + + + System.Obsolete(Message=null, IsError=False) + + @@ -114,7 +104,6 @@ Internal constructor Pointer to the C object. - An instance of FontPicker, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -127,7 +116,6 @@ To be added - To be added: an object of type 'Gnome.FontPicker' To be added @@ -141,11 +129,14 @@ To be added - To be added: an object of type 'bool' - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added - + + + GLib.Property(Name="show-size") + + Property @@ -156,11 +147,14 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="title") + + Property @@ -171,11 +165,14 @@ To be added - To be added: an object of type 'bool' - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added - + + + GLib.Property(Name="use-font-in-label") + + Property @@ -186,11 +183,14 @@ To be added - To be added: an object of type 'Gnome.FontPickerMode' - To be added: an object of type 'Gnome.FontPickerMode' + To be added: an object of type 'Gnome.FontPickerMode' To be added - + + + GLib.Property(Name="mode") + + Property @@ -201,11 +201,14 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="font_name") + + Property @@ -216,11 +219,14 @@ To be added - To be added: an object of type 'int' - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - + + + GLib.Property(Name="label-font-size") + + Property @@ -231,11 +237,14 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="preview_text") + + Property @@ -244,10 +253,14 @@ To be added - To be added: an object of type 'IntPtr' + To be added: an object of type 'IntPtr' To be added - + + + GLib.Property(Name="font") + + Event @@ -259,7 +272,11 @@ To be added To be added - + + + GLib.Signal(CName="font_set") + + Property @@ -269,7 +286,7 @@ GType Property. - a + a Returns the native value for . @@ -298,10 +315,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -319,4 +339,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/FontPickerMode.xml b/doc/en/Gnome/FontPickerMode.xml index bfa0eb0b3..40ce51f36 100644 --- a/doc/en/Gnome/FontPickerMode.xml +++ b/doc/en/Gnome/FontPickerMode.xml @@ -1,33 +1,25 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. button mode (or what to show). + To be added. System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.FontPickerModeGType)) + + diff --git a/doc/en/Gnome/FontPreview.xml b/doc/en/Gnome/FontPreview.xml index 7c6072cb5..d5399e001 100644 --- a/doc/en/Gnome/FontPreview.xml +++ b/doc/en/Gnome/FontPreview.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.Image - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -55,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -66,7 +50,6 @@ To be added - a To be added @@ -78,7 +61,7 @@ To be added - a + a To be added @@ -90,7 +73,7 @@ To be added - a + a To be added @@ -102,7 +85,7 @@ To be added - a + a To be added @@ -116,10 +99,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -129,9 +115,9 @@ GType Property. - a + a Returns the native value for . - \ No newline at end of file + diff --git a/doc/en/Gnome/FontSelection.xml b/doc/en/Gnome/FontSelection.xml index 0767c5193..7c6a70c66 100644 --- a/doc/en/Gnome/FontSelection.xml +++ b/doc/en/Gnome/FontSelection.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.HBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -55,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -66,7 +50,6 @@ To be added - a To be added @@ -79,7 +62,7 @@ To be added - a + a To be added @@ -92,7 +75,7 @@ To be added - a + a To be added @@ -105,7 +88,7 @@ To be added - a + a To be added @@ -120,7 +103,11 @@ To be added To be added - + + + GLib.Signal(CName="font_set") + + Method @@ -146,10 +133,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -159,9 +149,9 @@ GType Property. - a + a Returns the native value for . - \ No newline at end of file + diff --git a/doc/en/Gnome/FontSetArgs.xml b/doc/en/Gnome/FontSetArgs.xml index d006d44d2..a05550544 100644 --- a/doc/en/Gnome/FontSetArgs.xml +++ b/doc/en/Gnome/FontSetArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -33,7 +31,6 @@ GLib.SignalArgs - @@ -42,7 +39,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -55,9 +51,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/FontSetHandler.xml b/doc/en/Gnome/FontSetHandler.xml index c600ba291..11402202a 100644 --- a/doc/en/Gnome/FontSetHandler.xml +++ b/doc/en/Gnome/FontSetHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -31,15 +32,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -48,4 +40,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/FontWeight.xml b/doc/en/Gnome/FontWeight.xml index 5374efb21..94d0053c8 100644 --- a/doc/en/Gnome/FontWeight.xml +++ b/doc/en/Gnome/FontWeight.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -253,4 +239,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/GPAApplicationOption.xml b/doc/en/Gnome/GPAApplicationOption.xml index ab3fe6345..b966327bc 100644 --- a/doc/en/Gnome/GPAApplicationOption.xml +++ b/doc/en/Gnome/GPAApplicationOption.xml @@ -1,11 +1,9 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.ValueType - @@ -87,4 +84,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/GPACheckbutton.xml b/doc/en/Gnome/GPACheckbutton.xml index ebcb13d42..bc0da8538 100644 --- a/doc/en/Gnome/GPACheckbutton.xml +++ b/doc/en/Gnome/GPACheckbutton.xml @@ -1,11 +1,9 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,17 +14,7 @@ Gnome.GPAWidget - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -51,10 +39,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -65,7 +56,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -83,7 +73,6 @@ a a a - a To be added @@ -96,9 +85,9 @@ GType Property. - a + a Returns the native value for . - \ No newline at end of file + diff --git a/doc/en/Gnome/GPAOptionMenu.xml b/doc/en/Gnome/GPAOptionMenu.xml index 0ee05d7d4..df98d819c 100644 --- a/doc/en/Gnome/GPAOptionMenu.xml +++ b/doc/en/Gnome/GPAOptionMenu.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gnome.GPAWidget - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -55,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -71,7 +55,6 @@ To be added a a - a To be added @@ -84,7 +67,7 @@ GType Property. - a + a Returns the native value for . @@ -98,9 +81,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/GPAPrintToFile.xml b/doc/en/Gnome/GPAPrintToFile.xml index 1eba0ce64..f9df968e7 100644 --- a/doc/en/Gnome/GPAPrintToFile.xml +++ b/doc/en/Gnome/GPAPrintToFile.xml @@ -1,11 +1,9 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,17 +14,7 @@ Gnome.GPAWidget - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -51,10 +39,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -65,7 +56,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -76,9 +66,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/GPAPrinterSelector.xml b/doc/en/Gnome/GPAPrinterSelector.xml index 2218629f5..a6bc0ddc3 100644 --- a/doc/en/Gnome/GPAPrinterSelector.xml +++ b/doc/en/Gnome/GPAPrinterSelector.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gnome.GPAWidget - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -55,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -69,7 +53,6 @@ To be added a - a To be added @@ -82,7 +65,7 @@ GType Property. - a + a Returns the native value for . @@ -96,9 +79,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/GPARadiobutton.xml b/doc/en/Gnome/GPARadiobutton.xml index 91e9bc952..473a635cb 100644 --- a/doc/en/Gnome/GPARadiobutton.xml +++ b/doc/en/Gnome/GPARadiobutton.xml @@ -1,11 +1,9 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,17 +14,7 @@ Gnome.GPAWidget - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -51,10 +39,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -65,7 +56,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -83,7 +73,6 @@ a a a - a To be added @@ -96,9 +85,9 @@ GType Property. - a + a Returns the native value for . - \ No newline at end of file + diff --git a/doc/en/Gnome/GPASettingsSelector.xml b/doc/en/Gnome/GPASettingsSelector.xml index 056cdb85e..a24ea44c5 100644 --- a/doc/en/Gnome/GPASettingsSelector.xml +++ b/doc/en/Gnome/GPASettingsSelector.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gnome.GPAWidget - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -55,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -68,7 +52,7 @@ GType Property. - a + a Returns the native value for . @@ -82,10 +66,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -93,9 +80,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/GPASpinbutton.xml b/doc/en/Gnome/GPASpinbutton.xml index 932ecc977..374583c97 100644 --- a/doc/en/Gnome/GPASpinbutton.xml +++ b/doc/en/Gnome/GPASpinbutton.xml @@ -1,11 +1,9 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,17 +14,7 @@ Gnome.GPAWidget - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -63,10 +51,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -77,7 +68,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -107,7 +97,6 @@ a a a - a To be added @@ -120,7 +109,7 @@ GType Property. - a + a Returns the native value for . @@ -132,9 +121,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/GPATransportSelector.xml b/doc/en/Gnome/GPATransportSelector.xml index 4278cd8b9..d2eb9d16d 100644 --- a/doc/en/Gnome/GPATransportSelector.xml +++ b/doc/en/Gnome/GPATransportSelector.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gnome.GPAWidget - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -55,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -68,7 +52,7 @@ GType Property. - a + a Returns the native value for . @@ -82,10 +66,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -93,7 +80,6 @@ To be added - a To be added @@ -111,4 +97,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/GPAWidget.xml b/doc/en/Gnome/GPAWidget.xml index 0e55ee742..4fc3e9c52 100644 --- a/doc/en/Gnome/GPAWidget.xml +++ b/doc/en/Gnome/GPAWidget.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.Bin - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -71,7 +56,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -84,7 +68,7 @@ GType Property. - a + a Returns the native value for . @@ -98,10 +82,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -114,9 +101,8 @@ To be added a a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/GPFamilyEntry.xml b/doc/en/Gnome/GPFamilyEntry.xml index e8f85ebdf..3fa50a2be 100644 --- a/doc/en/Gnome/GPFamilyEntry.xml +++ b/doc/en/Gnome/GPFamilyEntry.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -88,4 +85,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/GPFontEntry.xml b/doc/en/Gnome/GPFontEntry.xml index fbb88aac7..e106a71c4 100644 --- a/doc/en/Gnome/GPFontEntry.xml +++ b/doc/en/Gnome/GPFontEntry.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -94,7 +91,7 @@ To be added - a + a To be added @@ -229,4 +226,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/GPFontEntryAlias.xml b/doc/en/Gnome/GPFontEntryAlias.xml index 095eb83b3..ceb584d88 100644 --- a/doc/en/Gnome/GPFontEntryAlias.xml +++ b/doc/en/Gnome/GPFontEntryAlias.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -57,7 +54,7 @@ To be added - a + a To be added @@ -75,4 +72,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/GPFontEntryType.xml b/doc/en/Gnome/GPFontEntryType.xml index a9c8112b4..d534ee81a 100644 --- a/doc/en/Gnome/GPFontEntryType.xml +++ b/doc/en/Gnome/GPFontEntryType.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -99,4 +85,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/GPFontMap.xml b/doc/en/Gnome/GPFontMap.xml index 3597a6e89..3936eac1f 100644 --- a/doc/en/Gnome/GPFontMap.xml +++ b/doc/en/Gnome/GPFontMap.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -116,4 +113,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/GPGC.xml b/doc/en/Gnome/GPGC.xml index 2be2aa854..ed2294767 100644 --- a/doc/en/Gnome/GPGC.xml +++ b/doc/en/Gnome/GPGC.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,9 +27,8 @@ To be added a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/GPPath.xml b/doc/en/Gnome/GPPath.xml index a949773b3..65bda2809 100644 --- a/doc/en/Gnome/GPPath.xml +++ b/doc/en/Gnome/GPPath.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -461,7 +455,6 @@ To be added a - a To be added @@ -472,7 +465,6 @@ To be added - a To be added @@ -486,7 +478,6 @@ To be added a - a To be added @@ -499,7 +490,7 @@ To be added - a + a To be added @@ -512,7 +503,7 @@ To be added - a + a To be added @@ -526,9 +517,8 @@ To be added a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/Gconf.xml b/doc/en/Gnome/Gconf.xml index df45a685f..eb389ab04 100644 --- a/doc/en/Gnome/Gconf.xml +++ b/doc/en/Gnome/Gconf.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -60,9 +57,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/GdkHelper.xml b/doc/en/Gnome/GdkHelper.xml index 07a3009d3..5a7499af4 100644 --- a/doc/en/Gnome/GdkHelper.xml +++ b/doc/en/Gnome/GdkHelper.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -77,9 +74,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/GdkPixbufAsyncHandle.xml b/doc/en/Gnome/GdkPixbufAsyncHandle.xml index c5c44bcb4..915d81c8c 100644 --- a/doc/en/Gnome/GdkPixbufAsyncHandle.xml +++ b/doc/en/Gnome/GdkPixbufAsyncHandle.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,11 +27,10 @@ Internal constructor Pointer to the C object. - An instance of GdkPixbufAsyncHandle, wrapping the C object. This is an internal constructor, and should not be used by user code. - \ No newline at end of file + diff --git a/doc/en/Gnome/GdkPixbufDoneCallback.xml b/doc/en/Gnome/GdkPixbufDoneCallback.xml index 814b150fd..5badf9b5f 100644 --- a/doc/en/Gnome/GdkPixbufDoneCallback.xml +++ b/doc/en/Gnome/GdkPixbufDoneCallback.xml @@ -1,27 +1,18 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -29,4 +20,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/GdkPixbufLoadCallback.xml b/doc/en/Gnome/GdkPixbufLoadCallback.xml index 4e45ae101..af6680347 100644 --- a/doc/en/Gnome/GdkPixbufLoadCallback.xml +++ b/doc/en/Gnome/GdkPixbufLoadCallback.xml @@ -1,9 +1,8 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -13,19 +12,10 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/Global.xml b/doc/en/Gnome/Global.xml index d43c6158f..da1d374fb 100644 --- a/doc/en/Gnome/Global.xml +++ b/doc/en/Gnome/Global.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -92,7 +89,6 @@ Default constructor - a @@ -127,4 +123,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/GlyphList.xml b/doc/en/Gnome/GlyphList.xml index ebc1e5474..cf37edc9f 100644 --- a/doc/en/Gnome/GlyphList.xml +++ b/doc/en/Gnome/GlyphList.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -212,7 +206,6 @@ To be added a - a To be added @@ -223,7 +216,6 @@ To be added - a To be added @@ -334,7 +326,7 @@ GType Property. - a + a Returns the native value for . @@ -355,4 +347,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/GpaModuleInfo.xml b/doc/en/Gnome/GpaModuleInfo.xml index ef94d8cae..0d9674aca 100644 --- a/doc/en/Gnome/GpaModuleInfo.xml +++ b/doc/en/Gnome/GpaModuleInfo.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -49,4 +46,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/GpaPaperPreviewItem.xml b/doc/en/Gnome/GpaPaperPreviewItem.xml index 04bcdd393..196cbe149 100644 --- a/doc/en/Gnome/GpaPaperPreviewItem.xml +++ b/doc/en/Gnome/GpaPaperPreviewItem.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gnome.CanvasItem - - GLib.IWrapper - - - System.IDisposable - - @@ -70,7 +61,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -86,7 +76,6 @@ To be added a a - a To be added @@ -99,7 +88,7 @@ GType Property. - a + a Returns the native value for . @@ -113,10 +102,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -139,4 +131,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/GtkHelper.xml b/doc/en/Gnome/GtkHelper.xml index 743d81078..887f95a12 100644 --- a/doc/en/Gnome/GtkHelper.xml +++ b/doc/en/Gnome/GtkHelper.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -58,9 +55,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/HRef.xml b/doc/en/Gnome/HRef.xml index 65533ef2e..c710c251d 100644 --- a/doc/en/Gnome/HRef.xml +++ b/doc/en/Gnome/HRef.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.Button - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -71,7 +56,6 @@ Internal constructor Pointer to the C object. - An instance of HRef, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -89,7 +73,6 @@ To be added To be added: an object of type 'string' To be added: an object of type 'string' - To be added: an object of type 'Gnome.HRef' To be added @@ -103,11 +86,14 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="text") + + Property @@ -118,11 +104,14 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="url") + + Property @@ -132,7 +121,7 @@ GType Property. - a + a Returns the native value for . @@ -146,9 +135,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/Help.xml b/doc/en/Gnome/Help.xml index 4b4111541..8544b11d2 100644 --- a/doc/en/Gnome/Help.xml +++ b/doc/en/Gnome/Help.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -26,7 +23,6 @@ Creates a new instance. - a This is the default constructor for . diff --git a/doc/en/Gnome/HelpArgs.xml b/doc/en/Gnome/HelpArgs.xml index 12ee55633..c3b134d72 100644 --- a/doc/en/Gnome/HelpArgs.xml +++ b/doc/en/Gnome/HelpArgs.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/HelpError.xml b/doc/en/Gnome/HelpError.xml index 2286021d3..50d334be3 100644 --- a/doc/en/Gnome/HelpError.xml +++ b/doc/en/Gnome/HelpError.xml @@ -1,32 +1,24 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. The different error codes which can be thrown by . + To be added. System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.HelpErrorGType)) + + @@ -68,4 +60,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/HelpHandler.xml b/doc/en/Gnome/HelpHandler.xml index 90374a9d2..179f41b6f 100644 --- a/doc/en/Gnome/HelpHandler.xml +++ b/doc/en/Gnome/HelpHandler.xml @@ -1,14 +1,14 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/Icon.xml b/doc/en/Gnome/Icon.xml index 34e806a5b..e7dd79df5 100644 --- a/doc/en/Gnome/Icon.xml +++ b/doc/en/Gnome/Icon.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -26,7 +23,6 @@ To be added - a To be added @@ -57,4 +53,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/IconData.xml b/doc/en/Gnome/IconData.xml index a540555bf..768569292 100644 --- a/doc/en/Gnome/IconData.xml +++ b/doc/en/Gnome/IconData.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -173,9 +170,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/IconDataPoint.xml b/doc/en/Gnome/IconDataPoint.xml index 8cf82b2e3..2686d13c2 100644 --- a/doc/en/Gnome/IconDataPoint.xml +++ b/doc/en/Gnome/IconDataPoint.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -75,4 +72,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/IconEntry.xml b/doc/en/Gnome/IconEntry.xml index 177fb382d..47aa9fcc4 100644 --- a/doc/en/Gnome/IconEntry.xml +++ b/doc/en/Gnome/IconEntry.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -110,7 +95,6 @@ Internal constructor Pointer to the C object. - An instance of IconEntry, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -128,7 +112,6 @@ Creates a new icon entry control. To be added: an object of type 'string' To be added: an object of type 'string' - To be added: an object of type 'Gnome.IconEntry' To be added @@ -142,8 +125,7 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -157,11 +139,14 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="pixmap_subdir") + + Property @@ -172,11 +157,14 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="browse_dialog_title") + + Property @@ -185,10 +173,14 @@ To be added - To be added: an object of type 'Gtk.Dialog' + To be added: an object of type 'Gtk.Dialog' To be added - + + + GLib.Property(Name="pick_dialog") + + Property @@ -199,11 +191,14 @@ Unique identifier for the icon entry. This will be used to save the history list. - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="history_id") + + Property @@ -214,11 +209,14 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="filename") + + Event @@ -230,7 +228,11 @@ To be added To be added - + + + GLib.Signal(CName="browse") + + Event @@ -242,7 +244,11 @@ To be added To be added - + + + GLib.Signal(CName="changed") + + Property @@ -252,7 +258,7 @@ GType Property. - a + a Returns the native value for . @@ -290,10 +296,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -302,7 +311,7 @@ To be added - a + a To be added @@ -323,4 +332,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/IconFocusedArgs.xml b/doc/en/Gnome/IconFocusedArgs.xml index 04f7efef1..fe2dd5ba0 100644 --- a/doc/en/Gnome/IconFocusedArgs.xml +++ b/doc/en/Gnome/IconFocusedArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/IconFocusedHandler.xml b/doc/en/Gnome/IconFocusedHandler.xml index 3b551b665..64fa68ef1 100644 --- a/doc/en/Gnome/IconFocusedHandler.xml +++ b/doc/en/Gnome/IconFocusedHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/IconList.xml b/doc/en/Gnome/IconList.xml index 01d53dd68..a604244b2 100644 --- a/doc/en/Gnome/IconList.xml +++ b/doc/en/Gnome/IconList.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gnome.Canvas - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -408,7 +393,6 @@ Internal constructor Pointer to the C object. - An instance of IconList, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -428,7 +412,6 @@ To be added: an object of type 'uint' To be added: an object of type 'Gtk.Adjustment' To be added: an object of type 'int' - To be added: an object of type 'Gnome.IconList' To be added @@ -442,8 +425,7 @@ To be added - To be added: an object of type 'int' - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -457,8 +439,7 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -472,8 +453,7 @@ To be added - To be added: an object of type 'int' - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -485,7 +465,7 @@ To be added - To be added: an object of type 'uint' + To be added: an object of type 'uint' To be added @@ -499,8 +479,7 @@ To be added - To be added: an object of type 'int' - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -514,8 +493,7 @@ To be added - To be added: an object of type 'int' - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -529,8 +507,7 @@ To be added - To be added: an object of type 'Gtk.SelectionMode' - To be added: an object of type 'Gtk.SelectionMode' + To be added: an object of type 'Gtk.SelectionMode' To be added @@ -544,8 +521,7 @@ To be added - To be added: an object of type 'int' - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -557,7 +533,7 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added @@ -572,7 +548,11 @@ To be added To be added - + + + GLib.Signal(CName="text_changed") + + Event @@ -584,7 +564,11 @@ To be added To be added - + + + GLib.Signal(CName="toggle_cursor_selection") + + Event @@ -596,7 +580,11 @@ To be added To be added - + + + GLib.Signal(CName="move_cursor") + + Event @@ -608,7 +596,11 @@ To be added To be added - + + + GLib.Signal(CName="select_icon") + + Event @@ -620,7 +612,11 @@ To be added To be added - + + + GLib.Signal(CName="focus_icon") + + Event @@ -632,7 +628,11 @@ To be added To be added - + + + GLib.Signal(CName="unselect_icon") + + Property @@ -642,7 +642,7 @@ GType Property. - a + a Returns the native value for . @@ -752,12 +752,15 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - + Property System.Int32[] @@ -765,7 +768,7 @@ To be added - a + a To be added @@ -776,7 +779,6 @@ To be added - a To be added @@ -800,4 +802,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/IconListMode.xml b/doc/en/Gnome/IconListMode.xml index 22b79aff3..1a56c5a14 100644 --- a/doc/en/Gnome/IconListMode.xml +++ b/doc/en/Gnome/IconListMode.xml @@ -1,32 +1,24 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. How icons should be displayed + To be added. System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.IconListModeGType)) + + @@ -81,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/IconLookupFlags.xml b/doc/en/Gnome/IconLookupFlags.xml index dd72dfa75..7c2a71ff3 100644 --- a/doc/en/Gnome/IconLookupFlags.xml +++ b/doc/en/Gnome/IconLookupFlags.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,20 +14,12 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + GLib.GType(WrapperType=typeof(Gnome.IconLookupFlagsGType)) + + + System.Flags @@ -102,4 +92,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/IconLookupResultFlags.xml b/doc/en/Gnome/IconLookupResultFlags.xml index fef89fe02..0b3bfaad4 100644 --- a/doc/en/Gnome/IconLookupResultFlags.xml +++ b/doc/en/Gnome/IconLookupResultFlags.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,20 +14,12 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + GLib.GType(WrapperType=typeof(Gnome.IconLookupResultFlagsGType)) + + + System.Flags @@ -75,4 +65,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/IconSelectedArgs.xml b/doc/en/Gnome/IconSelectedArgs.xml index 2d68ec762..1d958c5cf 100644 --- a/doc/en/Gnome/IconSelectedArgs.xml +++ b/doc/en/Gnome/IconSelectedArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ To be added - To be added: an object of type 'Gdk.Event' + To be added: an object of type 'Gdk.Event' To be added @@ -52,9 +48,9 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/IconSelectedHandler.xml b/doc/en/Gnome/IconSelectedHandler.xml index 0b7258a7c..2d980b1d4 100644 --- a/doc/en/Gnome/IconSelectedHandler.xml +++ b/doc/en/Gnome/IconSelectedHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/IconSelection.xml b/doc/en/Gnome/IconSelection.xml index 794b960ac..f9c214ca8 100644 --- a/doc/en/Gnome/IconSelection.xml +++ b/doc/en/Gnome/IconSelection.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -151,7 +136,6 @@ Internal constructor Pointer to the C object. - An instance of IconSelection, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -164,7 +148,6 @@ To be added - To be added: an object of type 'Gnome.IconSelection' To be added @@ -176,7 +159,7 @@ To be added - To be added: an object of type 'Gtk.Widget' + To be added: an object of type 'Gtk.Widget' To be added @@ -188,7 +171,7 @@ To be added - To be added: an object of type 'Gtk.Widget' + To be added: an object of type 'Gtk.Widget' To be added @@ -201,7 +184,7 @@ GType Property. - a + a Returns the native value for . @@ -215,9 +198,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/IconTextItem.xml b/doc/en/Gnome/IconTextItem.xml index f001a9ce8..c4cb65efa 100644 --- a/doc/en/Gnome/IconTextItem.xml +++ b/doc/en/Gnome/IconTextItem.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gnome.CanvasItem - - GLib.IWrapper - - - System.IDisposable - - @@ -149,7 +140,6 @@ Internal constructor Pointer to the C object. - An instance of IconTextItem, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -165,7 +155,6 @@ To be added To be added: an object of type 'Gnome.CanvasGroup' - To be added: an object of type 'Gnome.IconTextItem' To be added @@ -177,7 +166,7 @@ To be added - To be added: an object of type 'Gtk.Editable' + To be added: an object of type 'Gtk.Editable' To be added @@ -189,7 +178,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -204,7 +193,11 @@ To be added To be added - + + + GLib.Signal(CName="text_changed") + + Event @@ -216,7 +209,11 @@ To be added To be added - + + + GLib.Signal(CName="selection_stopped") + + Event @@ -228,7 +225,11 @@ To be added To be added - + + + GLib.Signal(CName="height_changed") + + Event @@ -240,7 +241,11 @@ To be added To be added - + + + GLib.Signal(CName="editing_stopped") + + Event @@ -252,7 +257,11 @@ To be added To be added - + + + GLib.Signal(CName="width_changed") + + Event @@ -264,7 +273,11 @@ To be added To be added - + + + GLib.Signal(CName="selection_started") + + Event @@ -276,7 +289,11 @@ To be added To be added - + + + GLib.Signal(CName="editing_started") + + Property @@ -286,7 +303,7 @@ GType Property. - a + a Returns the native value for . @@ -385,10 +402,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -396,9 +416,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/IconTheme.xml b/doc/en/Gnome/IconTheme.xml index 09388b0a2..a30637649 100644 --- a/doc/en/Gnome/IconTheme.xml +++ b/doc/en/Gnome/IconTheme.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gtk.IconTheme - - GLib.IWrapper - - - System.IDisposable - - @@ -49,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -60,7 +50,6 @@ To be added - a To be added @@ -73,7 +62,7 @@ To be added - a + a To be added @@ -86,7 +75,7 @@ GType Property. - a + a Returns the native value for . @@ -100,7 +89,6 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. @@ -127,4 +115,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/IconUnselectedArgs.xml b/doc/en/Gnome/IconUnselectedArgs.xml index d1b874044..ae779d0c8 100644 --- a/doc/en/Gnome/IconUnselectedArgs.xml +++ b/doc/en/Gnome/IconUnselectedArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ To be added - To be added: an object of type 'Gdk.Event' + To be added: an object of type 'Gdk.Event' To be added @@ -52,9 +48,9 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/IconUnselectedHandler.xml b/doc/en/Gnome/IconUnselectedHandler.xml index 18383ca60..e016923b6 100644 --- a/doc/en/Gnome/IconUnselectedHandler.xml +++ b/doc/en/Gnome/IconUnselectedHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/InteractFunction.xml b/doc/en/Gnome/InteractFunction.xml index 2f08bd298..5dffed901 100644 --- a/doc/en/Gnome/InteractFunction.xml +++ b/doc/en/Gnome/InteractFunction.xml @@ -1,9 +1,8 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -29,15 +28,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -47,4 +37,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/InteractStyle.xml b/doc/en/Gnome/InteractStyle.xml index e1d9fc8aa..28c622ed1 100644 --- a/doc/en/Gnome/InteractStyle.xml +++ b/doc/en/Gnome/InteractStyle.xml @@ -1,32 +1,24 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Indicates how a "SaveYourself" command should interact with the user. + To be added. System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.InteractStyleGType)) + + @@ -81,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/MDIMode.xml b/doc/en/Gnome/MDIMode.xml index 95e034a97..3874c7325 100644 --- a/doc/en/Gnome/MDIMode.xml +++ b/doc/en/Gnome/MDIMode.xml @@ -1,11 +1,9 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,11 +14,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -32,7 +26,6 @@ To be added a - a To be added @@ -45,9 +38,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/ModuleClassInitHook.xml b/doc/en/Gnome/ModuleClassInitHook.xml index 5788c4814..704c112ff 100644 --- a/doc/en/Gnome/ModuleClassInitHook.xml +++ b/doc/en/Gnome/ModuleClassInitHook.xml @@ -1,30 +1,21 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Called to perform any class specific setup that is required by each module. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/ModuleHook.xml b/doc/en/Gnome/ModuleHook.xml index a10d922aa..1e3853a98 100644 --- a/doc/en/Gnome/ModuleHook.xml +++ b/doc/en/Gnome/ModuleHook.xml @@ -1,9 +1,8 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -13,19 +12,11 @@ The instance which is being initialized. The current module's structure. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +25,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/ModuleInfo.xml b/doc/en/Gnome/ModuleInfo.xml index f1b759fb4..7a55d5e35 100644 --- a/doc/en/Gnome/ModuleInfo.xml +++ b/doc/en/Gnome/ModuleInfo.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -55,7 +52,7 @@ To be added - To be added: an object of type 'Gnome.ModuleRequirement' + To be added: an object of type 'Gnome.ModuleRequirement' To be added @@ -68,7 +65,7 @@ GType Property. - a + a Returns the native value for . @@ -124,5 +121,37 @@ To be added + + + Method + + GLib.Value + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Gnome.ModuleInfo + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gnome/ModuleInitHook.xml b/doc/en/Gnome/ModuleInitHook.xml index 311452158..497c70acb 100644 --- a/doc/en/Gnome/ModuleInitHook.xml +++ b/doc/en/Gnome/ModuleInitHook.xml @@ -1,9 +1,8 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -35,4 +25,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/ModuleRequirement.xml b/doc/en/Gnome/ModuleRequirement.xml index 290560f10..6a3742462 100644 --- a/doc/en/Gnome/ModuleRequirement.xml +++ b/doc/en/Gnome/ModuleRequirement.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -55,7 +52,7 @@ To be added - To be added: an object of type 'Gnome.ModuleInfo' + To be added: an object of type 'Gnome.ModuleInfo' To be added @@ -73,4 +70,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/Modules.xml b/doc/en/Gnome/Modules.xml index d372de37e..3a0c104b4 100644 --- a/doc/en/Gnome/Modules.xml +++ b/doc/en/Gnome/Modules.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -26,7 +23,6 @@ To be added - To be added: an object of type 'Gnome.Modules' To be added @@ -38,7 +34,7 @@ To be added - To be added: an object of type 'Gnome.ModuleInfo' + To be added: an object of type 'Gnome.ModuleInfo' To be added @@ -50,9 +46,9 @@ To be added - To be added: an object of type 'Gnome.ModuleInfo' + To be added: an object of type 'Gnome.ModuleInfo' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/MoveCursorArgs.xml b/doc/en/Gnome/MoveCursorArgs.xml index f88af6640..28e4271c4 100644 --- a/doc/en/Gnome/MoveCursorArgs.xml +++ b/doc/en/Gnome/MoveCursorArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ To be added - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added @@ -52,9 +48,9 @@ To be added - To be added: an object of type 'Gtk.DirectionType' + To be added: an object of type 'Gtk.DirectionType' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/MoveCursorHandler.xml b/doc/en/Gnome/MoveCursorHandler.xml index 841a05783..5ac0fb091 100644 --- a/doc/en/Gnome/MoveCursorHandler.xml +++ b/doc/en/Gnome/MoveCursorHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/MoveFocusOutOfAppletArgs.xml b/doc/en/Gnome/MoveFocusOutOfAppletArgs.xml index 453de378a..bc06ff237 100644 --- a/doc/en/Gnome/MoveFocusOutOfAppletArgs.xml +++ b/doc/en/Gnome/MoveFocusOutOfAppletArgs.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ GLib.SignalArgs - @@ -25,7 +22,6 @@ To be added - a To be added @@ -38,9 +34,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/MoveFocusOutOfAppletHandler.xml b/doc/en/Gnome/MoveFocusOutOfAppletHandler.xml index e6b3030e3..2fa9735b3 100644 --- a/doc/en/Gnome/MoveFocusOutOfAppletHandler.xml +++ b/doc/en/Gnome/MoveFocusOutOfAppletHandler.xml @@ -1,29 +1,20 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -32,4 +23,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/NextClickedArgs.xml b/doc/en/Gnome/NextClickedArgs.xml index b15b21e9c..21a394381 100644 --- a/doc/en/Gnome/NextClickedArgs.xml +++ b/doc/en/Gnome/NextClickedArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - To be added: an object of type 'Gtk.Widget' + To be added: an object of type 'Gtk.Widget' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/NextClickedHandler.xml b/doc/en/Gnome/NextClickedHandler.xml index 1b0294416..99268256f 100644 --- a/doc/en/Gnome/NextClickedHandler.xml +++ b/doc/en/Gnome/NextClickedHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/Ok.xml b/doc/en/Gnome/Ok.xml index 9201bc4aa..4d107183e 100644 --- a/doc/en/Gnome/Ok.xml +++ b/doc/en/Gnome/Ok.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -139,9 +136,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/PanelApplet.xml b/doc/en/Gnome/PanelApplet.xml index 2941fdd13..0d4e34ef0 100644 --- a/doc/en/Gnome/PanelApplet.xml +++ b/doc/en/Gnome/PanelApplet.xml @@ -1,11 +1,9 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,30 +14,9 @@ Gtk.EventBox - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -306,7 +283,7 @@ - + Method System.Void @@ -327,10 +304,13 @@ To be added a - a To be added - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -341,7 +321,6 @@ To be added a - a To be added @@ -352,7 +331,6 @@ To be added - a To be added @@ -365,7 +343,7 @@ To be added - a + a To be added @@ -378,7 +356,7 @@ To be added - a + a To be added @@ -391,7 +369,7 @@ To be added - a + a To be added @@ -404,7 +382,7 @@ To be added - a + a To be added @@ -417,12 +395,12 @@ To be added - a + a To be added - + Property System.String @@ -430,12 +408,12 @@ To be added - a + a To be added - + Property System.String @@ -443,7 +421,7 @@ To be added - a + a To be added @@ -458,7 +436,11 @@ To be added To be added - + + + GLib.Signal(CName="change_background") + + Event @@ -470,7 +452,11 @@ To be added To be added - + + + GLib.Signal(CName="move_focus_out_of_applet") + + Event @@ -482,6 +468,10 @@ To be added To be added - + + + GLib.Signal(CName="change_size") + + - \ No newline at end of file + diff --git a/doc/en/Gnome/PanelAppletBackgroundType.xml b/doc/en/Gnome/PanelAppletBackgroundType.xml index fe8766eea..42bd3def0 100644 --- a/doc/en/Gnome/PanelAppletBackgroundType.xml +++ b/doc/en/Gnome/PanelAppletBackgroundType.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -67,18 +53,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome/PanelAppletFactory.xml b/doc/en/Gnome/PanelAppletFactory.xml index 0e80a9a7a..9e85dd91a 100644 --- a/doc/en/Gnome/PanelAppletFactory.xml +++ b/doc/en/Gnome/PanelAppletFactory.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -34,4 +31,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PanelAppletFactoryCallback.xml b/doc/en/Gnome/PanelAppletFactoryCallback.xml index 1eb5d1b85..4a878a5fa 100644 --- a/doc/en/Gnome/PanelAppletFactoryCallback.xml +++ b/doc/en/Gnome/PanelAppletFactoryCallback.xml @@ -1,29 +1,21 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. To be added To be added + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Boolean @@ -32,4 +24,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PanelAppletFlags.xml b/doc/en/Gnome/PanelAppletFlags.xml index 0f0c1f5f0..70227c7f3 100644 --- a/doc/en/Gnome/PanelAppletFlags.xml +++ b/doc/en/Gnome/PanelAppletFlags.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,20 +13,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -84,18 +71,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gnome/PaperPreview.xml b/doc/en/Gnome/PaperPreview.xml index 19781407e..d4a326978 100644 --- a/doc/en/Gnome/PaperPreview.xml +++ b/doc/en/Gnome/PaperPreview.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.HBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -55,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -69,7 +53,6 @@ To be added a - a To be added @@ -82,7 +65,7 @@ GType Property. - a + a Returns the native value for . @@ -96,9 +79,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/PaperSelector.xml b/doc/en/Gnome/PaperSelector.xml index 7d55f82f0..8e0225baf 100644 --- a/doc/en/Gnome/PaperSelector.xml +++ b/doc/en/Gnome/PaperSelector.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.HBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -55,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -69,7 +53,6 @@ To be added a - a To be added @@ -85,7 +68,6 @@ To be added a a - a To be added @@ -98,7 +80,7 @@ GType Property. - a + a Returns the native value for . @@ -112,9 +94,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/PaperSelectorFlags.xml b/doc/en/Gnome/PaperSelectorFlags.xml index 8314df10e..aa10888fe 100644 --- a/doc/en/Gnome/PaperSelectorFlags.xml +++ b/doc/en/Gnome/PaperSelectorFlags.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -71,4 +57,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/Password.xml b/doc/en/Gnome/Password.xml index a824dfd9e..894e4521b 100644 --- a/doc/en/Gnome/Password.xml +++ b/doc/en/Gnome/Password.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -62,9 +59,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/PasswordDialogRemember.xml b/doc/en/Gnome/PasswordDialogRemember.xml index 260e677f3..d4afde704 100644 --- a/doc/en/Gnome/PasswordDialogRemember.xml +++ b/doc/en/Gnome/PasswordDialogRemember.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.PasswordDialogRememberGType)) + + @@ -81,4 +72,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/Pgl.xml b/doc/en/Gnome/Pgl.xml index b30ede82c..c8bd5af7d 100644 --- a/doc/en/Gnome/Pgl.xml +++ b/doc/en/Gnome/Pgl.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -79,7 +76,6 @@ To be added - a To be added @@ -160,4 +156,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/Pixmap.xml b/doc/en/Gnome/Pixmap.xml index 8273d633c..7d1aa84ac 100644 --- a/doc/en/Gnome/Pixmap.xml +++ b/doc/en/Gnome/Pixmap.xml @@ -1,11 +1,9 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,19 +14,10 @@ Gtk.Image - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - System.ObsoleteAttribute + System.Obsolete(Message=null, IsError=False) @@ -159,10 +148,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -173,7 +165,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -187,7 +178,6 @@ To be added a - a To be added @@ -201,7 +191,6 @@ To be added a - a To be added @@ -214,7 +203,7 @@ GType Property. - a + a Returns the native value for . @@ -232,7 +221,6 @@ a a a - a To be added diff --git a/doc/en/Gnome/PixmapEntry.xml b/doc/en/Gnome/PixmapEntry.xml index be5c5bed4..18125738f 100644 --- a/doc/en/Gnome/PixmapEntry.xml +++ b/doc/en/Gnome/PixmapEntry.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,26 +15,7 @@ Gnome.FileEntry - - Gtk.Editable - - - GLib.IWrapper - - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -122,7 +101,6 @@ Internal constructor Pointer to the C object. - An instance of PixmapEntry, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -142,7 +120,6 @@ To be added: an object of type 'string' To be added: an object of type 'string' To be added: an object of type 'bool' - To be added: an object of type 'Gnome.PixmapEntry' To be added @@ -156,8 +133,7 @@ To be added - To be added: an object of type 'bool' - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added @@ -171,8 +147,7 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -186,11 +161,14 @@ To be added - To be added: an object of type 'bool' - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added - + + + GLib.Property(Name="do_preview") + + Property @@ -200,7 +178,7 @@ GType Property. - a + a Returns the native value for . @@ -214,10 +192,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -232,4 +213,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/Popup.xml b/doc/en/Gnome/Popup.xml index b1400322e..84829f296 100644 --- a/doc/en/Gnome/Popup.xml +++ b/doc/en/Gnome/Popup.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -72,7 +70,6 @@ class PopupSample System.Object - @@ -228,9 +225,8 @@ class PopupSample Creates a new instance. - a The default constructor for . - \ No newline at end of file + diff --git a/doc/en/Gnome/PosGlyphList.xml b/doc/en/Gnome/PosGlyphList.xml index 092827994..9120619dd 100644 --- a/doc/en/Gnome/PosGlyphList.xml +++ b/doc/en/Gnome/PosGlyphList.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,9 +27,8 @@ To be added a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/PreferencesType.xml b/doc/en/Gnome/PreferencesType.xml index 0ee031925..5f619af6b 100644 --- a/doc/en/Gnome/PreferencesType.xml +++ b/doc/en/Gnome/PreferencesType.xml @@ -1,32 +1,24 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Flags if something should be done. + To be added. System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.PreferencesTypeGType)) + + @@ -81,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PreparedArgs.xml b/doc/en/Gnome/PreparedArgs.xml index bc66b2df9..592d305bb 100644 --- a/doc/en/Gnome/PreparedArgs.xml +++ b/doc/en/Gnome/PreparedArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - To be added: an object of type 'Gtk.Widget' + To be added: an object of type 'Gtk.Widget' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/PreparedHandler.xml b/doc/en/Gnome/PreparedHandler.xml index 5a4712761..f87804028 100644 --- a/doc/en/Gnome/PreparedHandler.xml +++ b/doc/en/Gnome/PreparedHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/Print.xml b/doc/en/Gnome/Print.xml index b1bbb01f4..dc5fe379d 100644 --- a/doc/en/Gnome/Print.xml +++ b/doc/en/Gnome/Print.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -102,7 +100,6 @@ class PrintSample System.Object - @@ -111,7 +108,6 @@ class PrintSample To be added - a To be added @@ -611,7 +607,7 @@ class PrintSample - + Method System.Int32 @@ -733,7 +729,7 @@ class PrintSample - + Method System.Int32 @@ -1019,7 +1015,7 @@ class PrintSample - + Method System.Int32 diff --git a/doc/en/Gnome/PrintButtons.xml b/doc/en/Gnome/PrintButtons.xml index 9abf88be2..312e895fe 100644 --- a/doc/en/Gnome/PrintButtons.xml +++ b/doc/en/Gnome/PrintButtons.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -85,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintConfig.xml b/doc/en/Gnome/PrintConfig.xml index 3c3a97fdd..961e8a20b 100644 --- a/doc/en/Gnome/PrintConfig.xml +++ b/doc/en/Gnome/PrintConfig.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -147,7 +138,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -360,7 +350,7 @@ GType Property. - a + a Returns the native value for . @@ -374,10 +364,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -385,7 +378,6 @@ To be added - a To be added @@ -466,4 +458,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintConfigDialog.xml b/doc/en/Gnome/PrintConfigDialog.xml index 4bc732f3d..f338fe625 100644 --- a/doc/en/Gnome/PrintConfigDialog.xml +++ b/doc/en/Gnome/PrintConfigDialog.xml @@ -1,11 +1,9 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,17 +14,7 @@ Gtk.Dialog - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -63,10 +51,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -77,7 +68,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -91,7 +81,6 @@ To be added a - a To be added @@ -104,9 +93,9 @@ GType Property. - a + a Returns the native value for . - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintConfigOption.xml b/doc/en/Gnome/PrintConfigOption.xml index 9c3e1f993..33bac8a0e 100644 --- a/doc/en/Gnome/PrintConfigOption.xml +++ b/doc/en/Gnome/PrintConfigOption.xml @@ -1,11 +1,9 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.ValueType - @@ -87,4 +84,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintContext.xml b/doc/en/Gnome/PrintContext.xml index 9d5d4cc8d..a009462e8 100644 --- a/doc/en/Gnome/PrintContext.xml +++ b/doc/en/Gnome/PrintContext.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -75,7 +66,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -89,7 +79,6 @@ To be added a - a To be added @@ -102,7 +91,7 @@ GType Property. - a + a Returns the native value for . @@ -116,10 +105,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -751,4 +743,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintCopiesSelector.xml b/doc/en/Gnome/PrintCopiesSelector.xml index fa4b6b641..0ce5f61f7 100644 --- a/doc/en/Gnome/PrintCopiesSelector.xml +++ b/doc/en/Gnome/PrintCopiesSelector.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -72,7 +57,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -83,7 +67,6 @@ To be added - a To be added @@ -96,7 +79,7 @@ To be added - a + a To be added @@ -109,7 +92,7 @@ To be added - a + a To be added @@ -124,7 +107,11 @@ To be added To be added - + + + GLib.Signal(CName="copies_set") + + Constructor @@ -135,10 +122,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -148,7 +138,7 @@ GType Property. - a + a Returns the native value for . @@ -163,7 +153,11 @@ To be added To be added - + + + GLib.Signal(CName="collate_set") + + Method @@ -195,4 +189,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintDialog.xml b/doc/en/Gnome/PrintDialog.xml index 99ff4be3d..205853722 100644 --- a/doc/en/Gnome/PrintDialog.xml +++ b/doc/en/Gnome/PrintDialog.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.Dialog - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -87,7 +72,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -100,7 +84,7 @@ To be added - a + a To be added @@ -113,7 +97,7 @@ To be added - a + a To be added @@ -192,7 +176,6 @@ a a a - a To be added @@ -208,7 +191,6 @@ To be added a a - a To be added @@ -239,7 +221,7 @@ GType Property. - a + a Returns the native value for . @@ -253,10 +235,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -288,4 +273,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintDialogFlags.xml b/doc/en/Gnome/PrintDialogFlags.xml index 7547bbd0c..924ac72a3 100644 --- a/doc/en/Gnome/PrintDialogFlags.xml +++ b/doc/en/Gnome/PrintDialogFlags.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -71,4 +57,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintDialogRangeFlags.xml b/doc/en/Gnome/PrintDialogRangeFlags.xml index 1cee02628..fdd0f02cc 100644 --- a/doc/en/Gnome/PrintDialogRangeFlags.xml +++ b/doc/en/Gnome/PrintDialogRangeFlags.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -113,4 +99,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintFRGBA.xml b/doc/en/Gnome/PrintFRGBA.xml index 942ed4765..5bb397703 100644 --- a/doc/en/Gnome/PrintFRGBA.xml +++ b/doc/en/Gnome/PrintFRGBA.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gnome.PrintContext - - GLib.IWrapper - - - System.IDisposable - - @@ -49,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -63,7 +53,6 @@ To be added a - a To be added @@ -76,7 +65,7 @@ GType Property. - a + a Returns the native value for . @@ -90,9 +79,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintJob.xml b/doc/en/Gnome/PrintJob.xml index 63ab93cf3..1b6264076 100644 --- a/doc/en/Gnome/PrintJob.xml +++ b/doc/en/Gnome/PrintJob.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -127,7 +118,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -141,7 +131,6 @@ To be added a - a To be added @@ -154,10 +143,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="config") + + Property @@ -167,7 +160,7 @@ To be added - a + a To be added @@ -180,7 +173,7 @@ To be added - a + a To be added @@ -191,7 +184,6 @@ To be added - a To be added @@ -242,7 +234,7 @@ GType Property. - a + a Returns the native value for . @@ -256,10 +248,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -268,9 +263,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintJobPreview.xml b/doc/en/Gnome/PrintJobPreview.xml index 147951500..d13c21089 100644 --- a/doc/en/Gnome/PrintJobPreview.xml +++ b/doc/en/Gnome/PrintJobPreview.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.Window - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -55,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -71,7 +55,6 @@ To be added a a - a To be added @@ -85,10 +68,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -98,7 +84,7 @@ GType Property. - a + a Returns the native value for . @@ -111,10 +97,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="nx") + + Property @@ -124,9 +114,13 @@ To be added - a + a To be added - + + + GLib.Property(Name="ny") + + - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintMeta.xml b/doc/en/Gnome/PrintMeta.xml index 625587cde..b70d6a4e2 100644 --- a/doc/en/Gnome/PrintMeta.xml +++ b/doc/en/Gnome/PrintMeta.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gnome.PrintContext - - GLib.IWrapper - - - System.IDisposable - - @@ -49,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -60,7 +50,6 @@ To be added - a To be added @@ -73,7 +62,7 @@ To be added - a + a To be added @@ -86,7 +75,7 @@ To be added - a + a To be added @@ -99,7 +88,7 @@ To be added - a + a To be added @@ -196,7 +185,7 @@ GType Property. - a + a Returns the native value for . @@ -210,9 +199,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintModule.xml b/doc/en/Gnome/PrintModule.xml index dc2ea5603..89e7c7976 100644 --- a/doc/en/Gnome/PrintModule.xml +++ b/doc/en/Gnome/PrintModule.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -74,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintModuleFlags.xml b/doc/en/Gnome/PrintModuleFlags.xml index 00b6b82b7..011a2b5df 100644 --- a/doc/en/Gnome/PrintModuleFlags.xml +++ b/doc/en/Gnome/PrintModuleFlags.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -85,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintMultipage.xml b/doc/en/Gnome/PrintMultipage.xml index 52721f632..b18b30902 100644 --- a/doc/en/Gnome/PrintMultipage.xml +++ b/doc/en/Gnome/PrintMultipage.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gnome.PrintContext - - GLib.IWrapper - - - System.IDisposable - - @@ -62,7 +53,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -78,7 +68,6 @@ To be added a a - a To be added @@ -91,7 +80,7 @@ GType Property. - a + a Returns the native value for . @@ -105,9 +94,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintPaper.xml b/doc/en/Gnome/PrintPaper.xml index 462388dc0..f6c90b05e 100644 --- a/doc/en/Gnome/PrintPaper.xml +++ b/doc/en/Gnome/PrintPaper.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -110,7 +107,7 @@ To be added - a + a To be added @@ -123,7 +120,7 @@ To be added - a + a To be added @@ -152,7 +149,7 @@ To be added - a + a To be added @@ -183,4 +180,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintPdf.xml b/doc/en/Gnome/PrintPdf.xml index f0fa12562..ec4233cd2 100644 --- a/doc/en/Gnome/PrintPdf.xml +++ b/doc/en/Gnome/PrintPdf.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -49,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -63,7 +53,6 @@ To be added a - a To be added @@ -76,7 +65,7 @@ GType Property. - a + a Returns the native value for . @@ -90,9 +79,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintPreview.xml b/doc/en/Gnome/PrintPreview.xml index 774fc0198..59ba10dc3 100644 --- a/doc/en/Gnome/PrintPreview.xml +++ b/doc/en/Gnome/PrintPreview.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gnome.PrintContext - - GLib.IWrapper - - - System.IDisposable - - @@ -49,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -65,7 +55,6 @@ To be added a a - a To be added @@ -85,7 +74,6 @@ a a a - a To be added @@ -98,7 +86,7 @@ GType Property. - a + a Returns the native value for . @@ -112,9 +100,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintPs2.xml b/doc/en/Gnome/PrintPs2.xml index c2c35d5f2..2371fadac 100644 --- a/doc/en/Gnome/PrintPs2.xml +++ b/doc/en/Gnome/PrintPs2.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gnome.PrintContext - - GLib.IWrapper - - - System.IDisposable - - @@ -49,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -63,7 +53,6 @@ To be added a - a To be added @@ -76,7 +65,7 @@ GType Property. - a + a Returns the native value for . @@ -90,9 +79,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintRBuf.xml b/doc/en/Gnome/PrintRBuf.xml index 0e7d3864a..b275863ff 100644 --- a/doc/en/Gnome/PrintRBuf.xml +++ b/doc/en/Gnome/PrintRBuf.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gnome.PrintContext - - GLib.IWrapper - - - System.IDisposable - - @@ -49,12 +40,11 @@ Internal constructor a - a This is not typically used by C# code. - + Constructor @@ -73,7 +63,6 @@ a a a - a To be added @@ -86,7 +75,7 @@ GType Property. - a + a Returns the native value for . @@ -100,9 +89,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintRGBP.xml b/doc/en/Gnome/PrintRGBP.xml index 008f3a49f..ea757fc7f 100644 --- a/doc/en/Gnome/PrintRGBP.xml +++ b/doc/en/Gnome/PrintRGBP.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gnome.PrintContext - - GLib.IWrapper - - - System.IDisposable - - @@ -71,7 +62,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -91,7 +81,6 @@ a a a - a To be added @@ -104,7 +93,7 @@ GType Property. - a + a Returns the native value for . @@ -118,9 +107,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintRangeType.xml b/doc/en/Gnome/PrintRangeType.xml index f18f33a98..3f9fdd068 100644 --- a/doc/en/Gnome/PrintRangeType.xml +++ b/doc/en/Gnome/PrintRangeType.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -85,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintReturnCode.xml b/doc/en/Gnome/PrintReturnCode.xml index 3c3866c14..f30d6f918 100644 --- a/doc/en/Gnome/PrintReturnCode.xml +++ b/doc/en/Gnome/PrintReturnCode.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -169,4 +155,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintTransport.xml b/doc/en/Gnome/PrintTransport.xml index f12a22cb1..2639e9433 100644 --- a/doc/en/Gnome/PrintTransport.xml +++ b/doc/en/Gnome/PrintTransport.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -91,7 +82,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -105,7 +95,6 @@ To be added a - a To be added @@ -136,7 +125,7 @@ GType Property. - a + a Returns the native value for . @@ -150,10 +139,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -171,4 +163,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintUnit.xml b/doc/en/Gnome/PrintUnit.xml index e1420e2fe..2b96917d1 100644 --- a/doc/en/Gnome/PrintUnit.xml +++ b/doc/en/Gnome/PrintUnit.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -124,7 +121,7 @@ To be added - a + a To be added @@ -169,7 +166,7 @@ GType Property. - a + a Returns the native value for . @@ -182,7 +179,7 @@ To be added - a + a To be added @@ -195,7 +192,7 @@ To be added - a + a To be added @@ -212,5 +209,37 @@ To be added + + + Method + + GLib.Value + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Gnome.PrintUnit + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintUnitBase.xml b/doc/en/Gnome/PrintUnitBase.xml index c14f57609..c46de8887 100644 --- a/doc/en/Gnome/PrintUnitBase.xml +++ b/doc/en/Gnome/PrintUnitBase.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -99,4 +85,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintUnitSelector.xml b/doc/en/Gnome/PrintUnitSelector.xml index ecf69f5cb..9b9f57130 100644 --- a/doc/en/Gnome/PrintUnitSelector.xml +++ b/doc/en/Gnome/PrintUnitSelector.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.HBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -85,7 +70,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -99,7 +83,6 @@ To be added a - a To be added @@ -112,7 +95,7 @@ To be added - a + a To be added @@ -124,7 +107,7 @@ To be added - a + a To be added @@ -139,7 +122,11 @@ To be added To be added - + + + GLib.Signal(CName="modified") + + Property @@ -149,7 +136,7 @@ GType Property. - a + a Returns the native value for . @@ -175,9 +162,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintWidget.xml b/doc/en/Gnome/PrintWidget.xml index b29293ce7..cc4803036 100644 --- a/doc/en/Gnome/PrintWidget.xml +++ b/doc/en/Gnome/PrintWidget.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -85,9 +82,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/PrintWidgetType.xml b/doc/en/Gnome/PrintWidgetType.xml index f0cbdae08..464ff24ec 100644 --- a/doc/en/Gnome/PrintWidgetType.xml +++ b/doc/en/Gnome/PrintWidgetType.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -55,4 +41,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/PrinterSelector.xml b/doc/en/Gnome/PrinterSelector.xml index acd05fcaf..c697b5b21 100644 --- a/doc/en/Gnome/PrinterSelector.xml +++ b/doc/en/Gnome/PrinterSelector.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gnome.GPAWidget - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -55,7 +40,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -69,7 +53,6 @@ To be added a - a To be added @@ -80,7 +63,6 @@ To be added - a To be added @@ -93,7 +75,7 @@ To be added - a + a To be added @@ -107,10 +89,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -120,7 +105,7 @@ GType Property. - a + a Returns the native value for . @@ -138,4 +123,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/Program.xml b/doc/en/Gnome/Program.xml index aa5c41192..90b4aa2ea 100644 --- a/doc/en/Gnome/Program.xml +++ b/doc/en/Gnome/Program.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -178,34 +169,12 @@ Internal constructor Pointer to the C object. - An instance of Program, wrapping the C object. This is an internal constructor, and should not be used by user code. - - - Constructor - - - - - - - - - - To be added - To be added: an object of type 'string' - To be added: an object of type 'string' - To be added: an object of type 'Gnome.ModuleInfo' - To be added: an object of type 'string []' - To be added: an object of type 'object []' - To be added: an object of type 'Gnome.Program' - To be added - - + Property @@ -214,10 +183,14 @@ To be added - To be added: an object of type 'IntPtr' + To be added: an object of type 'IntPtr' To be added - + + + GLib.Property(Name="popt-context") + + Property @@ -226,10 +199,14 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="gnome-prefix") + + Property @@ -238,10 +215,14 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="app-version") + + Property @@ -250,10 +231,14 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="human-readable-name") + + Property @@ -262,10 +247,14 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="app-id") + + Property @@ -274,10 +263,14 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="gnome-sysconfdir") + + Property @@ -286,10 +279,14 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="gnome-libdir") + + Property @@ -300,11 +297,14 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="app-sysconfdir") + + Property @@ -313,10 +313,14 @@ To be added - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added - + + + GLib.Property(Name="create-directories") + + Property @@ -325,10 +329,14 @@ To be added - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added - + + + GLib.Property(Name="enable-sound") + + Property @@ -339,11 +347,14 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="app-datadir") + + Property @@ -352,10 +363,14 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="espeaker") + + Property @@ -366,11 +381,14 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="app-libdir") + + Property @@ -381,11 +399,14 @@ To be added - To be added: an object of type 'string' - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="app-prefix") + + Property @@ -394,10 +415,14 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="gnome-datadir") + + Property @@ -406,10 +431,14 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added - + + + GLib.Property(Name="gnome-path") + + Property @@ -419,7 +448,7 @@ GType Property. - a + a Returns the native value for . @@ -463,10 +492,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -474,9 +506,34 @@ To be added - a To be added + + + Constructor + + + + + + + + + System.ParamArray + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gnome/PropertyBox.xml b/doc/en/Gnome/PropertyBox.xml index 665be52c4..ecf31d4f3 100644 --- a/doc/en/Gnome/PropertyBox.xml +++ b/doc/en/Gnome/PropertyBox.xml @@ -1,11 +1,9 @@ - + gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,19 +14,10 @@ Gnome.Dialog - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - System.ObsoleteAttribute + System.Obsolete(Message=null, IsError=False) @@ -115,10 +104,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -129,7 +121,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -140,7 +131,6 @@ To be added - a To be added @@ -153,7 +143,7 @@ GType Property. - a + a Returns the native value for . @@ -165,7 +155,7 @@ To be added - a + a To be added @@ -177,7 +167,7 @@ To be added - a + a To be added @@ -192,7 +182,11 @@ To be added To be added - + + + GLib.Signal(CName="apply") + + Event @@ -204,6 +198,10 @@ To be added To be added - + + + GLib.Signal(CName="help") + + - \ No newline at end of file + diff --git a/doc/en/Gnome/Question.xml b/doc/en/Gnome/Question.xml index b379848d4..f51fcf221 100644 --- a/doc/en/Gnome/Question.xml +++ b/doc/en/Gnome/Question.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -105,9 +102,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/RFont.xml b/doc/en/Gnome/RFont.xml index acb9c63ba..fa87d4cd3 100644 --- a/doc/en/Gnome/RFont.xml +++ b/doc/en/Gnome/RFont.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -153,7 +144,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -166,7 +156,7 @@ To be added - a + a To be added @@ -179,7 +169,7 @@ To be added - a + a To be added @@ -192,7 +182,7 @@ To be added - a + a To be added @@ -221,7 +211,7 @@ GType Property. - a + a Returns the native value for . @@ -235,10 +225,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -246,9 +239,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/RenderBackgroundArgs.xml b/doc/en/Gnome/RenderBackgroundArgs.xml index 1cf738a7e..85a2c3201 100644 --- a/doc/en/Gnome/RenderBackgroundArgs.xml +++ b/doc/en/Gnome/RenderBackgroundArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - To be added: an object of type 'Gnome.CanvasBuf' + To be added: an object of type 'Gnome.CanvasBuf' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/RenderBackgroundHandler.xml b/doc/en/Gnome/RenderBackgroundHandler.xml index c8fd932c2..4aee4157f 100644 --- a/doc/en/Gnome/RenderBackgroundHandler.xml +++ b/doc/en/Gnome/RenderBackgroundHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/ReplyCallback.xml b/doc/en/Gnome/ReplyCallback.xml index 99e660b4d..63b01a3c4 100644 --- a/doc/en/Gnome/ReplyCallback.xml +++ b/doc/en/Gnome/ReplyCallback.xml @@ -1,27 +1,18 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -29,4 +20,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/Request.xml b/doc/en/Gnome/Request.xml index a608b64c6..186ab2cf4 100644 --- a/doc/en/Gnome/Request.xml +++ b/doc/en/Gnome/Request.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -131,9 +128,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/RestartStyle.xml b/doc/en/Gnome/RestartStyle.xml index 22a864e2b..7226a69a0 100644 --- a/doc/en/Gnome/RestartStyle.xml +++ b/doc/en/Gnome/RestartStyle.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.RestartStyleGType)) + + @@ -95,4 +86,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/SaveStyle.xml b/doc/en/Gnome/SaveStyle.xml index 45695f1c0..c7415cfe1 100644 --- a/doc/en/Gnome/SaveStyle.xml +++ b/doc/en/Gnome/SaveStyle.xml @@ -1,32 +1,24 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Which pieces of data a client should save when receiving a "SaveYourself" call from the session manager. + To be added. System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.SaveStyleGType)) + + @@ -81,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/SaveYourselfArgs.xml b/doc/en/Gnome/SaveYourselfArgs.xml index 0d62f5775..3a66640c0 100644 --- a/doc/en/Gnome/SaveYourselfArgs.xml +++ b/doc/en/Gnome/SaveYourselfArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ To be added - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added @@ -52,7 +48,7 @@ To be added - To be added: an object of type 'Gnome.InteractStyle' + To be added: an object of type 'Gnome.InteractStyle' To be added @@ -64,7 +60,7 @@ To be added - To be added: an object of type 'bool' + To be added: an object of type 'bool' To be added @@ -76,7 +72,7 @@ To be added - To be added: an object of type 'Gnome.SaveStyle' + To be added: an object of type 'Gnome.SaveStyle' To be added @@ -88,9 +84,9 @@ To be added - To be added: an object of type 'int' + To be added: an object of type 'int' To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/SaveYourselfHandler.xml b/doc/en/Gnome/SaveYourselfHandler.xml index 73a5efca3..d5ce78aa0 100644 --- a/doc/en/Gnome/SaveYourselfHandler.xml +++ b/doc/en/Gnome/SaveYourselfHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/Score.xml b/doc/en/Gnome/Score.xml index eb5716553..f5f1f4b09 100644 --- a/doc/en/Gnome/Score.xml +++ b/doc/en/Gnome/Score.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -42,7 +39,6 @@ To be added - a To be added @@ -71,4 +67,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/Scores.xml b/doc/en/Gnome/Scores.xml index 23b25ba56..be877aaac 100644 --- a/doc/en/Gnome/Scores.xml +++ b/doc/en/Gnome/Scores.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.Dialog - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -78,7 +63,6 @@ Internal constructor Pointer to the C object. - An instance of Scores, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -94,8 +78,7 @@ To be added - To be added: an object of type 'Gdk.Color' - To be added: an object of type 'Gdk.Color' + To be added: an object of type 'Gdk.Color' To be added @@ -107,7 +90,7 @@ To be added - a + a To be added @@ -119,7 +102,7 @@ To be added - a + a To be added @@ -131,7 +114,7 @@ To be added - a + a To be added @@ -143,7 +126,7 @@ To be added - a + a To be added @@ -155,7 +138,7 @@ To be added - a + a To be added @@ -204,7 +187,7 @@ GType Property. - a + a Returns the native value for . @@ -218,10 +201,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -262,7 +248,6 @@ a a a - a To be added @@ -273,9 +258,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/Sound.xml b/doc/en/Gnome/Sound.xml index 8dd19a486..9cbe19f78 100644 --- a/doc/en/Gnome/Sound.xml +++ b/doc/en/Gnome/Sound.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -99,9 +96,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/Stock.xml b/doc/en/Gnome/Stock.xml index 82a41edca..fb5350217 100644 --- a/doc/en/Gnome/Stock.xml +++ b/doc/en/Gnome/Stock.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -26,7 +23,6 @@ To be added - To be added: an object of type 'Gnome.Stock' To be added @@ -38,7 +34,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -50,7 +46,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -62,7 +58,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -74,7 +70,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -86,7 +82,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -98,7 +94,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -110,7 +106,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -122,7 +118,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -134,7 +130,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -146,7 +142,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -158,7 +154,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -170,7 +166,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -182,7 +178,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -194,7 +190,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -206,7 +202,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -218,7 +214,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -230,7 +226,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -242,7 +238,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -254,7 +250,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -266,7 +262,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -278,7 +274,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -290,7 +286,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -302,7 +298,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -314,7 +310,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -326,7 +322,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -338,7 +334,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -350,7 +346,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -362,7 +358,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -374,7 +370,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -386,7 +382,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -398,7 +394,7 @@ To be added - To be added: an object of type 'string' + To be added: an object of type 'string' To be added @@ -411,9 +407,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/StringCallback.xml b/doc/en/Gnome/StringCallback.xml index 02d28a9d1..9ad0340e1 100644 --- a/doc/en/Gnome/StringCallback.xml +++ b/doc/en/Gnome/StringCallback.xml @@ -1,27 +1,18 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -29,4 +20,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/TextChangedArgs.xml b/doc/en/Gnome/TextChangedArgs.xml index cc5258762..273d01ba2 100644 --- a/doc/en/Gnome/TextChangedArgs.xml +++ b/doc/en/Gnome/TextChangedArgs.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -33,7 +31,6 @@ GLib.SignalArgs - @@ -42,9 +39,8 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. - \ No newline at end of file + diff --git a/doc/en/Gnome/TextChangedHandler.xml b/doc/en/Gnome/TextChangedHandler.xml index b24b8dea5..6a501aca4 100644 --- a/doc/en/Gnome/TextChangedHandler.xml +++ b/doc/en/Gnome/TextChangedHandler.xml @@ -1,12 +1,13 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -31,15 +32,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -48,4 +40,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/ThemeFile.xml b/doc/en/Gnome/ThemeFile.xml index e1d0df91f..4ab431fdb 100644 --- a/doc/en/Gnome/ThemeFile.xml +++ b/doc/en/Gnome/ThemeFile.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -154,7 +148,6 @@ To be added a - a To be added @@ -168,7 +161,6 @@ To be added a - a To be added @@ -206,4 +198,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/ThemeFileLineFunc.xml b/doc/en/Gnome/ThemeFileLineFunc.xml index c02d3eef5..acfedff81 100644 --- a/doc/en/Gnome/ThemeFileLineFunc.xml +++ b/doc/en/Gnome/ThemeFileLineFunc.xml @@ -1,30 +1,23 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -35,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/ThemeFileParseError.xml b/doc/en/Gnome/ThemeFileParseError.xml index 4c44ee3dc..5aab0da33 100644 --- a/doc/en/Gnome/ThemeFileParseError.xml +++ b/doc/en/Gnome/ThemeFileParseError.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -85,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/ThemeFileSectionFunc.xml b/doc/en/Gnome/ThemeFileSectionFunc.xml index 8d70a9438..018586af2 100644 --- a/doc/en/Gnome/ThemeFileSectionFunc.xml +++ b/doc/en/Gnome/ThemeFileSectionFunc.xml @@ -1,30 +1,21 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -33,4 +24,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/Thumbnail.xml b/doc/en/Gnome/Thumbnail.xml index ec6347f3b..e8284ae89 100644 --- a/doc/en/Gnome/Thumbnail.xml +++ b/doc/en/Gnome/Thumbnail.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -98,7 +95,6 @@ To be added - a To be added @@ -123,4 +119,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/ThumbnailFactory.xml b/doc/en/Gnome/ThumbnailFactory.xml index 53b3bece6..a2629c8ed 100644 --- a/doc/en/Gnome/ThumbnailFactory.xml +++ b/doc/en/Gnome/ThumbnailFactory.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -67,7 +58,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -81,7 +71,6 @@ To be added a - a To be added @@ -94,7 +83,7 @@ GType Property. - a + a Returns the native value for . @@ -108,10 +97,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -205,4 +197,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/ThumbnailSize.xml b/doc/en/Gnome/ThumbnailSize.xml index dcb81eac6..27470c05a 100644 --- a/doc/en/Gnome/ThumbnailSize.xml +++ b/doc/en/Gnome/ThumbnailSize.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.ThumbnailSizeGType)) + + @@ -71,4 +62,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/Trigger.xml b/doc/en/Gnome/Trigger.xml index 016d2758c..6da952454 100644 --- a/doc/en/Gnome/Trigger.xml +++ b/doc/en/Gnome/Trigger.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -74,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/TriggerActionFunction.xml b/doc/en/Gnome/TriggerActionFunction.xml index 8af495b22..7f584d2da 100644 --- a/doc/en/Gnome/TriggerActionFunction.xml +++ b/doc/en/Gnome/TriggerActionFunction.xml @@ -1,9 +1,8 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,19 +16,11 @@ The severity level of the event. May be null. The section in which the event belongs. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -39,4 +30,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/TriggerList.xml b/doc/en/Gnome/TriggerList.xml index d48c888bd..774c7f7b1 100644 --- a/doc/en/Gnome/TriggerList.xml +++ b/doc/en/Gnome/TriggerList.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -55,7 +52,7 @@ To be added - To be added: an object of type 'Gnome.Trigger' + To be added: an object of type 'Gnome.Trigger' To be added @@ -67,7 +64,7 @@ To be added - To be added: an object of type 'Gnome.TriggerList' + To be added: an object of type 'Gnome.TriggerList' To be added @@ -111,4 +108,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/TriggerType.xml b/doc/en/Gnome/TriggerType.xml index 7d3b316ec..e6cef2caf 100644 --- a/doc/en/Gnome/TriggerType.xml +++ b/doc/en/Gnome/TriggerType.xml @@ -1,32 +1,24 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. These are the different types of triggers that can be activated by an application. + To be added. System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gnome.TriggerTypeGType)) + + @@ -94,4 +86,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/Triggers.xml b/doc/en/Gnome/Triggers.xml index e83a02f78..db6a0b11a 100644 --- a/doc/en/Gnome/Triggers.xml +++ b/doc/en/Gnome/Triggers.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,10 +15,9 @@ System.Object - - + Method System.Void @@ -37,7 +34,7 @@ - + Method System.Void @@ -62,9 +59,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/UIBuilderData.xml b/doc/en/Gnome/UIBuilderData.xml index 0048213d5..1ec233242 100644 --- a/doc/en/Gnome/UIBuilderData.xml +++ b/doc/en/Gnome/UIBuilderData.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -61,4 +58,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/UIInfo.xml b/doc/en/Gnome/UIInfo.xml index 8dbec955d..7bf625e1a 100644 --- a/doc/en/Gnome/UIInfo.xml +++ b/doc/en/Gnome/UIInfo.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -57,8 +54,7 @@ To be added - To be added: an object of type 'Gtk.Widget' - To be added: an object of type 'Gtk.Widget' + To be added: an object of type 'Gtk.Widget' To be added @@ -141,4 +137,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/UIInfoConfigurableTypes.xml b/doc/en/Gnome/UIInfoConfigurableTypes.xml index d6192175a..7d2c3499a 100644 --- a/doc/en/Gnome/UIInfoConfigurableTypes.xml +++ b/doc/en/Gnome/UIInfoConfigurableTypes.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,18 +18,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -463,4 +449,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/UIInfoType.xml b/doc/en/Gnome/UIInfoType.xml index ed6b4f434..fdc10e97c 100644 --- a/doc/en/Gnome/UIInfoType.xml +++ b/doc/en/Gnome/UIInfoType.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,18 +19,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -197,4 +183,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/UIPixmapType.xml b/doc/en/Gnome/UIPixmapType.xml index 0fd4e649a..ed6297599 100644 --- a/doc/en/Gnome/UIPixmapType.xml +++ b/doc/en/Gnome/UIPixmapType.xml @@ -1,32 +1,19 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. These values identify the type of pixmap used in an item. + To be added. System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -94,4 +81,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/UISignalConnectFunc.xml b/doc/en/Gnome/UISignalConnectFunc.xml index 4dd92ab8c..21885144f 100644 --- a/doc/en/Gnome/UISignalConnectFunc.xml +++ b/doc/en/Gnome/UISignalConnectFunc.xml @@ -1,9 +1,8 @@ - + gnome-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -39,4 +29,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gnome/URLError.xml b/doc/en/Gnome/URLError.xml index 2f14aa4b3..72564c62c 100644 --- a/doc/en/Gnome/URLError.xml +++ b/doc/en/Gnome/URLError.xml @@ -1,12 +1,10 @@ - + gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -121,4 +107,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/Url.xml b/doc/en/Gnome/Url.xml index 395e58b32..21469cbd3 100644 --- a/doc/en/Gnome/Url.xml +++ b/doc/en/Gnome/Url.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -55,7 +52,6 @@ To be added - a To be added @@ -78,4 +74,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gnome/User.xml b/doc/en/Gnome/User.xml index 59a636323..43aef7bc6 100644 --- a/doc/en/Gnome/User.xml +++ b/doc/en/Gnome/User.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -65,9 +62,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/Warning.xml b/doc/en/Gnome/Warning.xml index 72cb9c644..62e4243f3 100644 --- a/doc/en/Gnome/Warning.xml +++ b/doc/en/Gnome/Warning.xml @@ -4,8 +4,6 @@ gnome-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -59,9 +56,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gnome/Window.xml b/doc/en/Gnome/Window.xml index f4694934b..2ac577a66 100644 --- a/doc/en/Gnome/Window.xml +++ b/doc/en/Gnome/Window.xml @@ -4,9 +4,7 @@ gnome-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -141,9 +138,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/GnomeDb/Application.xml b/doc/en/GnomeDb/Application.xml index 96fcf983c..e67cfa7a6 100644 --- a/doc/en/GnomeDb/Application.xml +++ b/doc/en/GnomeDb/Application.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -49,7 +46,7 @@ - + Method System.Void @@ -64,7 +61,7 @@ - + Method System.Void @@ -113,9 +110,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/GnomeDb/Browser.xml b/doc/en/GnomeDb/Browser.xml index f05c5d2b3..20a0e9dce 100644 --- a/doc/en/GnomeDb/Browser.xml +++ b/doc/en/GnomeDb/Browser.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -66,7 +40,6 @@ To be added a - a To be added @@ -77,7 +50,6 @@ To be added - a To be added @@ -90,10 +62,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="connection") + + Event @@ -105,7 +81,11 @@ To be added To be added - + + + GLib.Signal(CName="progress_message") + + Property @@ -115,7 +95,7 @@ GType Property. - a + a Returns the native value for . @@ -144,9 +124,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/Combo.xml b/doc/en/GnomeDb/Combo.xml index 2e9483767..9fd3ada4d 100644 --- a/doc/en/GnomeDb/Combo.xml +++ b/doc/en/GnomeDb/Combo.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.Combo - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -54,7 +28,6 @@ To be added a - a To be added @@ -65,7 +38,6 @@ To be added - a To be added @@ -78,10 +50,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="model") + + Property @@ -91,7 +67,7 @@ GType Property. - a + a Returns the native value for . @@ -105,10 +81,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -127,4 +106,4 @@ - \ No newline at end of file + diff --git a/doc/en/GnomeDb/ComponentInfo.xml b/doc/en/GnomeDb/ComponentInfo.xml index 9a731589c..d5a8ee929 100644 --- a/doc/en/GnomeDb/ComponentInfo.xml +++ b/doc/en/GnomeDb/ComponentInfo.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -57,7 +54,7 @@ To be added - a + a To be added @@ -153,4 +150,4 @@ - \ No newline at end of file + diff --git a/doc/en/GnomeDb/ComponentType.xml b/doc/en/GnomeDb/ComponentType.xml index 60336c414..9e4939b98 100644 --- a/doc/en/GnomeDb/ComponentType.xml +++ b/doc/en/GnomeDb/ComponentType.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -99,4 +85,4 @@ - \ No newline at end of file + diff --git a/doc/en/GnomeDb/Config.xml b/doc/en/GnomeDb/Config.xml index 931412649..b274b9fe2 100644 --- a/doc/en/GnomeDb/Config.xml +++ b/doc/en/GnomeDb/Config.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -431,7 +428,6 @@ To be added - a To be added @@ -444,9 +440,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/GnomeDb/ConnectionProperties.xml b/doc/en/GnomeDb/ConnectionProperties.xml index 6fa9f6e2d..9cdfecce8 100644 --- a/doc/en/GnomeDb/ConnectionProperties.xml +++ b/doc/en/GnomeDb/ConnectionProperties.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -54,7 +28,6 @@ To be added a - a To be added @@ -68,7 +41,6 @@ To be added a - a To be added @@ -81,7 +53,7 @@ To be added - a + a To be added @@ -94,7 +66,7 @@ GType Property. - a + a Returns the native value for . @@ -108,9 +80,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/ConnectionSelector.xml b/doc/en/GnomeDb/ConnectionSelector.xml index 4a273cd69..b25acb7eb 100644 --- a/doc/en/GnomeDb/ConnectionSelector.xml +++ b/doc/en/GnomeDb/ConnectionSelector.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.OptionMenu - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -54,7 +28,6 @@ To be added a - a To be added @@ -65,7 +38,6 @@ To be added - a To be added @@ -78,7 +50,7 @@ GType Property. - a + a Returns the native value for . @@ -92,9 +64,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/ControlWidget.xml b/doc/en/GnomeDb/ControlWidget.xml index 71cb12b2a..ef106204e 100644 --- a/doc/en/GnomeDb/ControlWidget.xml +++ b/doc/en/GnomeDb/ControlWidget.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -78,7 +52,6 @@ To be added a - a To be added @@ -91,7 +64,7 @@ To be added - a + a To be added @@ -104,7 +77,7 @@ To be added - a + a To be added @@ -117,7 +90,7 @@ GType Property. - a + a Returns the native value for . @@ -131,9 +104,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/CreatePopupMenuArgs.xml b/doc/en/GnomeDb/CreatePopupMenuArgs.xml index 6a3a71f3a..d388f89d0 100644 --- a/doc/en/GnomeDb/CreatePopupMenuArgs.xml +++ b/doc/en/GnomeDb/CreatePopupMenuArgs.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/GnomeDb/CreatePopupMenuHandler.xml b/doc/en/GnomeDb/CreatePopupMenuHandler.xml index 098639a67..1b7d5dd76 100644 --- a/doc/en/GnomeDb/CreatePopupMenuHandler.xml +++ b/doc/en/GnomeDb/CreatePopupMenuHandler.xml @@ -1,15 +1,15 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/GnomeDb/DataSourceSelector.xml b/doc/en/GnomeDb/DataSourceSelector.xml index 8d2f44ef3..be7a4ea36 100644 --- a/doc/en/GnomeDb/DataSourceSelector.xml +++ b/doc/en/GnomeDb/DataSourceSelector.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.OptionMenu - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -54,7 +28,6 @@ To be added a - a To be added @@ -68,7 +41,6 @@ To be added a - a To be added @@ -81,7 +53,7 @@ GType Property. - a + a Returns the native value for . @@ -95,9 +67,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/DoubleClickedArgs.xml b/doc/en/GnomeDb/DoubleClickedArgs.xml index 7f23fa90a..2fed4622c 100644 --- a/doc/en/GnomeDb/DoubleClickedArgs.xml +++ b/doc/en/GnomeDb/DoubleClickedArgs.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/GnomeDb/DoubleClickedHandler.xml b/doc/en/GnomeDb/DoubleClickedHandler.xml index 0062af650..1d35536ff 100644 --- a/doc/en/GnomeDb/DoubleClickedHandler.xml +++ b/doc/en/GnomeDb/DoubleClickedHandler.xml @@ -1,15 +1,15 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/GnomeDb/DsnConfig.xml b/doc/en/GnomeDb/DsnConfig.xml index 3266280c8..35272344e 100644 --- a/doc/en/GnomeDb/DsnConfig.xml +++ b/doc/en/GnomeDb/DsnConfig.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -54,7 +28,6 @@ To be added a - a To be added @@ -65,7 +38,6 @@ To be added - a To be added @@ -78,7 +50,7 @@ To be added - a + a To be added @@ -93,7 +65,11 @@ To be added To be added - + + + GLib.Signal(CName="changed") + + Property @@ -103,7 +79,7 @@ GType Property. - a + a Returns the native value for . @@ -129,9 +105,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/DsnConfigDruid.xml b/doc/en/GnomeDb/DsnConfigDruid.xml index 516ab0cd1..f13857369 100644 --- a/doc/en/GnomeDb/DsnConfigDruid.xml +++ b/doc/en/GnomeDb/DsnConfigDruid.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gnome.Druid - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -54,7 +28,6 @@ To be added a - a To be added @@ -65,7 +38,6 @@ To be added - a To be added @@ -78,7 +50,7 @@ To be added - a + a To be added @@ -93,7 +65,11 @@ To be added To be added - + + + GLib.Signal(CName="finished") + + Property @@ -103,7 +79,7 @@ GType Property. - a + a Returns the native value for . @@ -132,9 +108,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/Editor.xml b/doc/en/GnomeDb/Editor.xml index fb7f40e18..485671b38 100644 --- a/doc/en/GnomeDb/Editor.xml +++ b/doc/en/GnomeDb/Editor.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -137,7 +111,6 @@ To be added a - a To be added @@ -148,7 +121,6 @@ To be added - a To be added @@ -161,7 +133,7 @@ To be added - a + a To be added @@ -174,7 +146,7 @@ To be added - a + a To be added @@ -187,7 +159,7 @@ To be added - a + a To be added @@ -200,7 +172,7 @@ GType Property. - a + a Returns the native value for . @@ -214,10 +186,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -226,9 +201,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/GnomeDb/Error.xml b/doc/en/GnomeDb/Error.xml index be1f48e03..70a2aa3c9 100644 --- a/doc/en/GnomeDb/Error.xml +++ b/doc/en/GnomeDb/Error.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -105,7 +79,6 @@ To be added a - a To be added @@ -116,7 +89,6 @@ To be added - a To be added @@ -129,7 +101,7 @@ To be added - a + a To be added @@ -142,7 +114,7 @@ GType Property. - a + a Returns the native value for . @@ -156,9 +128,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/ErrorDialog.xml b/doc/en/GnomeDb/ErrorDialog.xml index 8cfc879a3..b395471a2 100644 --- a/doc/en/GnomeDb/ErrorDialog.xml +++ b/doc/en/GnomeDb/ErrorDialog.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.Dialog - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -69,7 +43,6 @@ To be added a - a To be added @@ -83,7 +56,6 @@ To be added a - a To be added @@ -96,10 +68,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="title") + + Property @@ -109,7 +85,7 @@ GType Property. - a + a Returns the native value for . @@ -123,9 +99,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/FinishedArgs.xml b/doc/en/GnomeDb/FinishedArgs.xml index 565d2f546..ce0b6529d 100644 --- a/doc/en/GnomeDb/FinishedArgs.xml +++ b/doc/en/GnomeDb/FinishedArgs.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/GnomeDb/FinishedHandler.xml b/doc/en/GnomeDb/FinishedHandler.xml index 6f4427b00..fc1346741 100644 --- a/doc/en/GnomeDb/FinishedHandler.xml +++ b/doc/en/GnomeDb/FinishedHandler.xml @@ -1,15 +1,15 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/GnomeDb/Form.xml b/doc/en/GnomeDb/Form.xml index 635579ed9..976ab19cc 100644 --- a/doc/en/GnomeDb/Form.xml +++ b/doc/en/GnomeDb/Form.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -54,7 +28,6 @@ To be added a - a To be added @@ -65,7 +38,6 @@ To be added - a To be added @@ -78,7 +50,7 @@ To be added - a + a To be added @@ -91,7 +63,7 @@ To be added - a + a To be added @@ -104,7 +76,7 @@ To be added - a + a To be added @@ -119,7 +91,11 @@ To be added To be added - + + + GLib.Signal(CName="model_changed") + + Property @@ -129,7 +105,7 @@ GType Property. - a + a Returns the native value for . @@ -155,9 +131,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/FormType.xml b/doc/en/GnomeDb/FormType.xml index cce6bf978..a7a1df86a 100644 --- a/doc/en/GnomeDb/FormType.xml +++ b/doc/en/GnomeDb/FormType.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -71,4 +57,4 @@ - \ No newline at end of file + diff --git a/doc/en/GnomeDb/Global.xml b/doc/en/GnomeDb/Global.xml index 7c8a7528e..25e922b52 100644 --- a/doc/en/GnomeDb/Global.xml +++ b/doc/en/GnomeDb/Global.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -124,9 +121,8 @@ Default constructor - a - \ No newline at end of file + diff --git a/doc/en/GnomeDb/GrayBar.xml b/doc/en/GnomeDb/GrayBar.xml index 2894fec21..dff14a478 100644 --- a/doc/en/GnomeDb/GrayBar.xml +++ b/doc/en/GnomeDb/GrayBar.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.Bin - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -71,7 +45,6 @@ To be added a - a To be added @@ -85,7 +58,6 @@ To be added a - a To be added @@ -98,10 +70,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="text") + + Property @@ -111,10 +87,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="show_icon") + + Property @@ -123,7 +103,7 @@ To be added - a + a To be added @@ -136,7 +116,7 @@ GType Property. - a + a Returns the native value for . @@ -150,9 +130,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/Grid.xml b/doc/en/GnomeDb/Grid.xml index 985abe4ac..6eb29a805 100644 --- a/doc/en/GnomeDb/Grid.xml +++ b/doc/en/GnomeDb/Grid.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -183,7 +157,6 @@ To be added a - a To be added @@ -194,7 +167,6 @@ To be added - a To be added @@ -208,7 +180,6 @@ To be added a - a To be added @@ -221,10 +192,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="model") + + Property @@ -234,7 +209,7 @@ To be added - a + a To be added @@ -247,7 +222,7 @@ To be added - a + a To be added @@ -260,7 +235,7 @@ To be added - a + a To be added @@ -273,7 +248,7 @@ To be added - a + a To be added @@ -285,7 +260,7 @@ To be added - a + a To be added @@ -298,7 +273,7 @@ To be added - a + a To be added @@ -313,7 +288,11 @@ To be added To be added - + + + GLib.Signal(CName="double_clicked") + + Event @@ -325,7 +304,11 @@ To be added To be added - + + + GLib.Signal(CName="selection_cleared") + + Event @@ -337,7 +320,11 @@ To be added To be added - + + + GLib.Signal(CName="row_selected") + + Event @@ -349,7 +336,11 @@ To be added To be added - + + + GLib.Signal(CName="create_popup_menu") + + Property @@ -359,7 +350,7 @@ GType Property. - a + a Returns the native value for . @@ -430,9 +421,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/GridForeachFunc.xml b/doc/en/GnomeDb/GridForeachFunc.xml index c42ec11c4..da557bb90 100644 --- a/doc/en/GnomeDb/GridForeachFunc.xml +++ b/doc/en/GnomeDb/GridForeachFunc.xml @@ -1,30 +1,21 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -33,4 +24,4 @@ - \ No newline at end of file + diff --git a/doc/en/GnomeDb/IconList.xml b/doc/en/GnomeDb/IconList.xml index b3a7a5376..5244f3364 100644 --- a/doc/en/GnomeDb/IconList.xml +++ b/doc/en/GnomeDb/IconList.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gnome.IconList - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -54,7 +28,6 @@ To be added a - a To be added @@ -68,7 +41,6 @@ To be added a - a To be added @@ -81,10 +53,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="model") + + Property @@ -94,7 +70,7 @@ GType Property. - a + a Returns the native value for . @@ -108,9 +84,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/List.xml b/doc/en/GnomeDb/List.xml index 8e216d9de..96ef2207d 100644 --- a/doc/en/GnomeDb/List.xml +++ b/doc/en/GnomeDb/List.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -54,7 +28,6 @@ To be added a - a To be added @@ -65,7 +38,6 @@ To be added - a To be added @@ -81,7 +53,6 @@ To be added a a - a To be added @@ -94,10 +65,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="model") + + Event @@ -109,7 +84,11 @@ To be added To be added - + + + GLib.Signal(CName="row_selected") + + Property @@ -119,7 +98,7 @@ GType Property. - a + a Returns the native value for . @@ -148,10 +127,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Event @@ -163,7 +145,11 @@ To be added To be added - + + + GLib.Signal(CName="selection_cleared") + + Method @@ -194,4 +180,4 @@ - \ No newline at end of file + diff --git a/doc/en/GnomeDb/Login.xml b/doc/en/GnomeDb/Login.xml index 44884df8a..5b38ddcb6 100644 --- a/doc/en/GnomeDb/Login.xml +++ b/doc/en/GnomeDb/Login.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -54,7 +28,6 @@ To be added a - a To be added @@ -68,7 +41,6 @@ To be added a - a To be added @@ -81,10 +53,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="password") + + Property @@ -94,10 +70,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="dsn") + + Property @@ -107,10 +87,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="username") + + Property @@ -119,7 +103,7 @@ To be added - a + a To be added @@ -132,7 +116,7 @@ GType Property. - a + a Returns the native value for . @@ -146,9 +130,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/LoginDialog.xml b/doc/en/GnomeDb/LoginDialog.xml index 7b62a36cd..b1f03cb9c 100644 --- a/doc/en/GnomeDb/LoginDialog.xml +++ b/doc/en/GnomeDb/LoginDialog.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.Dialog - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Method @@ -67,7 +41,6 @@ To be added a - a To be added @@ -81,7 +54,6 @@ To be added a - a To be added @@ -94,10 +66,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="password") + + Property @@ -107,10 +83,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="dsn") + + Property @@ -120,10 +100,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="username") + + Property @@ -133,7 +117,7 @@ To be added - a + a To be added @@ -146,7 +130,7 @@ GType Property. - a + a Returns the native value for . @@ -160,9 +144,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/Main.xml b/doc/en/GnomeDb/Main.xml index 4f1445918..7f1acf658 100644 --- a/doc/en/GnomeDb/Main.xml +++ b/doc/en/GnomeDb/Main.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -53,9 +50,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/GnomeDb/New.xml b/doc/en/GnomeDb/New.xml index 99bc1b651..90926045f 100644 --- a/doc/en/GnomeDb/New.xml +++ b/doc/en/GnomeDb/New.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -445,9 +442,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/GnomeDb/Option.xml b/doc/en/GnomeDb/Option.xml index 2069a2293..93ac49ea1 100644 --- a/doc/en/GnomeDb/Option.xml +++ b/doc/en/GnomeDb/Option.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -76,9 +73,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/GnomeDb/ProgressMessageArgs.xml b/doc/en/GnomeDb/ProgressMessageArgs.xml index d6536ee71..02507c475 100644 --- a/doc/en/GnomeDb/ProgressMessageArgs.xml +++ b/doc/en/GnomeDb/ProgressMessageArgs.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/GnomeDb/ProgressMessageHandler.xml b/doc/en/GnomeDb/ProgressMessageHandler.xml index 9dedc0adc..2860432bd 100644 --- a/doc/en/GnomeDb/ProgressMessageHandler.xml +++ b/doc/en/GnomeDb/ProgressMessageHandler.xml @@ -1,15 +1,15 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/GnomeDb/ProviderSelector.xml b/doc/en/GnomeDb/ProviderSelector.xml index 933e5a3d6..1feadc47f 100644 --- a/doc/en/GnomeDb/ProviderSelector.xml +++ b/doc/en/GnomeDb/ProviderSelector.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.OptionMenu - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -54,7 +28,6 @@ To be added a - a To be added @@ -65,7 +38,6 @@ To be added - a To be added @@ -78,7 +50,7 @@ GType Property. - a + a Returns the native value for . @@ -92,9 +64,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/QueryBuilder.xml b/doc/en/GnomeDb/QueryBuilder.xml index bc5d71802..cc1b0f098 100644 --- a/doc/en/GnomeDb/QueryBuilder.xml +++ b/doc/en/GnomeDb/QueryBuilder.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -54,7 +28,6 @@ To be added a - a To be added @@ -68,7 +41,6 @@ To be added a - a To be added @@ -81,7 +53,7 @@ To be added - a + a To be added @@ -94,7 +66,7 @@ GType Property. - a + a Returns the native value for . @@ -108,9 +80,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/ReportEditor.xml b/doc/en/GnomeDb/ReportEditor.xml index 0616bb836..9d527a04a 100644 --- a/doc/en/GnomeDb/ReportEditor.xml +++ b/doc/en/GnomeDb/ReportEditor.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -54,7 +28,6 @@ To be added a - a To be added @@ -65,7 +38,6 @@ To be added - a To be added @@ -78,7 +50,7 @@ GType Property. - a + a Returns the native value for . @@ -92,9 +64,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/RowSelectedArgs.xml b/doc/en/GnomeDb/RowSelectedArgs.xml index 546d9740b..dadfc4154 100644 --- a/doc/en/GnomeDb/RowSelectedArgs.xml +++ b/doc/en/GnomeDb/RowSelectedArgs.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -33,7 +31,6 @@ GLib.SignalArgs - @@ -42,7 +39,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -55,9 +51,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/GnomeDb/RowSelectedHandler.xml b/doc/en/GnomeDb/RowSelectedHandler.xml index 35df54ec2..9e6784f82 100644 --- a/doc/en/GnomeDb/RowSelectedHandler.xml +++ b/doc/en/GnomeDb/RowSelectedHandler.xml @@ -1,15 +1,15 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -34,15 +34,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -51,4 +42,4 @@ - \ No newline at end of file + diff --git a/doc/en/GnomeDb/SelectionClearedArgs.xml b/doc/en/GnomeDb/SelectionClearedArgs.xml deleted file mode 100644 index 53902ef09..000000000 --- a/doc/en/GnomeDb/SelectionClearedArgs.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - gnomedb-sharp - - - 0.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Event data. - - The event invokes delegates which pass event data via this class. - - - - GLib.SignalArgs - - - - - - - Constructor - - - - Public Constructor. - A new . - Create a new instance with this constructor if you need to invoke a delegate. - - - - - Property - - System.Int32 - - - - To be added - a - To be added - - - - \ No newline at end of file diff --git a/doc/en/GnomeDb/SelectionClearedHandler.xml b/doc/en/GnomeDb/SelectionClearedHandler.xml deleted file mode 100644 index 2bc0318da..000000000 --- a/doc/en/GnomeDb/SelectionClearedHandler.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - gnomedb-sharp - - - 0.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Event handler. - - The event utilizes this delegate: - Event data is passed via the parameter. - To attach a to an event, add the SelectionClearedHandler instance to the event. The methods referenced by the SelectionClearedHandler instance are invoked whenever the event is raised, until the SelectionClearedHandler is removed from the event. - - - - System.Delegate - - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - - - - System.Void - - - - - - \ No newline at end of file diff --git a/doc/en/GnomeDb/SqlViewer.xml b/doc/en/GnomeDb/SqlViewer.xml index 94f5753ec..2fceabf4f 100644 --- a/doc/en/GnomeDb/SqlViewer.xml +++ b/doc/en/GnomeDb/SqlViewer.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -54,7 +28,6 @@ To be added a - a To be added @@ -70,7 +43,6 @@ To be added a a - a To be added @@ -83,7 +55,7 @@ GType Property. - a + a Returns the native value for . @@ -97,9 +69,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/Stock.xml b/doc/en/GnomeDb/Stock.xml index 891dea278..46d096500 100644 --- a/doc/en/GnomeDb/Stock.xml +++ b/doc/en/GnomeDb/Stock.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -26,7 +23,6 @@ To be added - a To be added @@ -39,7 +35,7 @@ To be added - a + a To be added @@ -52,7 +48,7 @@ To be added - a + a To be added @@ -65,7 +61,7 @@ To be added - a + a To be added @@ -78,7 +74,7 @@ To be added - a + a To be added @@ -91,7 +87,7 @@ To be added - a + a To be added @@ -104,7 +100,7 @@ To be added - a + a To be added @@ -117,7 +113,7 @@ To be added - a + a To be added @@ -130,7 +126,7 @@ To be added - a + a To be added @@ -143,7 +139,7 @@ To be added - a + a To be added @@ -156,7 +152,7 @@ To be added - a + a To be added @@ -169,7 +165,7 @@ To be added - a + a To be added @@ -182,7 +178,7 @@ To be added - a + a To be added @@ -195,7 +191,7 @@ To be added - a + a To be added @@ -208,7 +204,7 @@ To be added - a + a To be added @@ -221,9 +217,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/GnomeDb/StockManager.xml b/doc/en/GnomeDb/StockManager.xml index 37fe7c0b1..f0e93d18b 100644 --- a/doc/en/GnomeDb/StockManager.xml +++ b/doc/en/GnomeDb/StockManager.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -74,9 +71,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/GnomeDb/TableEditor.xml b/doc/en/GnomeDb/TableEditor.xml index 1e494c738..61e4354bd 100644 --- a/doc/en/GnomeDb/TableEditor.xml +++ b/doc/en/GnomeDb/TableEditor.xml @@ -1,12 +1,10 @@ - + gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,33 +15,9 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - - - Method - - System.Void - - - - To be added - To be added - - + Constructor @@ -54,7 +28,6 @@ To be added a - a To be added @@ -65,7 +38,6 @@ To be added - a To be added @@ -78,7 +50,7 @@ GType Property. - a + a Returns the native value for . @@ -92,9 +64,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/GnomeDb/Text.xml b/doc/en/GnomeDb/Text.xml index 89daf2ffc..a518c3d81 100644 --- a/doc/en/GnomeDb/Text.xml +++ b/doc/en/GnomeDb/Text.xml @@ -4,9 +4,7 @@ gnomedb-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -168,9 +165,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gtk.DotNet/Graphics.xml b/doc/en/Gtk.DotNet/Graphics.xml index c7cf8b686..66aac2fd1 100644 --- a/doc/en/Gtk.DotNet/Graphics.xml +++ b/doc/en/Gtk.DotNet/Graphics.xml @@ -4,8 +4,6 @@ gtk-dotnet [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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -84,4 +81,4 @@ class PrettyGraphic : DrawingArea { - \ No newline at end of file + diff --git a/doc/en/Gtk/AboutDialog.xml b/doc/en/Gtk/AboutDialog.xml index cc57e1b51..915012067 100644 --- a/doc/en/Gtk/AboutDialog.xml +++ b/doc/en/Gtk/AboutDialog.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -27,20 +25,7 @@ To make constructing a as convenient as possibl Gtk.Dialog - - System.Collections.IEnumerable - - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -65,10 +50,13 @@ To make constructing a as convenient as possibl Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -79,7 +67,6 @@ To make constructing a as convenient as possibl Internal constructor a - a This is not typically used by C# code. @@ -90,7 +77,6 @@ To make constructing a as convenient as possibl Default constructor - a @@ -103,7 +89,7 @@ To make constructing a as convenient as possibl GType Property. - a + a Returns the native value for . @@ -116,10 +102,14 @@ To make constructing a as convenient as possibl The license of the program. - a + a This string is displayed in a text view in a secondary dialog, therefore it is fine to use a long multi-paragraph text. Note that the text is not wrapped in the text view, thus it must contain the intended linebreaks. - + + + GLib.Property(Name="license") + + Property @@ -129,12 +119,16 @@ To make constructing a as convenient as possibl The name of the program. - a + a - + + + GLib.Property(Name="name") + + Property @@ -144,10 +138,14 @@ To make constructing a as convenient as possibl Copyright information for the program. - a + a - + + + GLib.Property(Name="copyright") + + Property @@ -157,10 +155,14 @@ To make constructing a as convenient as possibl Credits to the translators. - a + a This string should be marked as translatable. The string may contain email addresses and URLs, which will be displayed as links, see the introduction for more details. - + + + GLib.Property(Name="translator_credits") + + Property @@ -170,12 +172,16 @@ To make constructing a as convenient as possibl A named icon to use as the logo for the about box. - a + a This property overrides the property. - + + + GLib.Property(Name="logo_icon_name") + + Property @@ -185,10 +191,14 @@ To make constructing a as convenient as possibl The label for the link to the website of the program. - a + a If this is not set, it defaults to the URL specified in the property. - + + + GLib.Property(Name="website_label") + + Property @@ -198,10 +208,14 @@ To make constructing a as convenient as possibl A logo for the about box. - a + a If this is not set, it defaults to . - + + + GLib.Property(Name="logo") + + Property @@ -211,10 +225,14 @@ To make constructing a as convenient as possibl The URL for the link to the website of the program. - a + a This should be a string starting with "http://". - + + + GLib.Property(Name="website") + + Property @@ -224,10 +242,14 @@ To make constructing a as convenient as possibl Comments about the program. - a + a This string is displayed in a label in the main dialog, thus it should be a short explanation of the main purpose of the program, not a detailed list of features. - + + + GLib.Property(Name="comments") + + Property @@ -237,10 +259,14 @@ To make constructing a as convenient as possibl The version of the program. - a + a - + + + GLib.Property(Name="version") + + Method @@ -274,4 +300,4 @@ To make constructing a as convenient as possibl - \ No newline at end of file + diff --git a/doc/en/Gtk/AboutDialogActivateLinkFunc.xml b/doc/en/Gtk/AboutDialogActivateLinkFunc.xml index 91d1dd298..f8f40ce35 100644 --- a/doc/en/Gtk/AboutDialogActivateLinkFunc.xml +++ b/doc/en/Gtk/AboutDialogActivateLinkFunc.xml @@ -1,29 +1,20 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -32,4 +23,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Accel.xml b/doc/en/Gtk/Accel.xml index 109a90073..d224d71f9 100644 --- a/doc/en/Gtk/Accel.xml +++ b/doc/en/Gtk/Accel.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,7 +18,6 @@ System.Object - @@ -273,7 +270,6 @@ - An default constructor. @@ -294,4 +290,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelActivateArgs.xml b/doc/en/Gtk/AccelActivateArgs.xml index 236923d9f..f05b7bf69 100644 --- a/doc/en/Gtk/AccelActivateArgs.xml +++ b/doc/en/Gtk/AccelActivateArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new Create a new instance with this constructor if you need to invoke a delegate. @@ -40,8 +36,9 @@ The object on which the accelerator was activated - a - + a + + @@ -53,8 +50,9 @@ The accelerator keyval - a - + a + + @@ -66,9 +64,10 @@ The modifier combination of the accelerator - a - + a + + - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelActivateHandler.xml b/doc/en/Gtk/AccelActivateHandler.xml index e5a7db988..3473c9cc0 100644 --- a/doc/en/Gtk/AccelActivateHandler.xml +++ b/doc/en/Gtk/AccelActivateHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelCanActivateArgs.xml b/doc/en/Gtk/AccelCanActivateArgs.xml index 0f110b895..c50ea3c88 100644 --- a/doc/en/Gtk/AccelCanActivateArgs.xml +++ b/doc/en/Gtk/AccelCanActivateArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ GLib.SignalArgs - @@ -25,7 +22,6 @@ Public constructor. - a @@ -38,9 +34,9 @@ An identifier for a particular signal. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelCanActivateHandler.xml b/doc/en/Gtk/AccelCanActivateHandler.xml index 40c96f3db..f248bb55a 100644 --- a/doc/en/Gtk/AccelCanActivateHandler.xml +++ b/doc/en/Gtk/AccelCanActivateHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Delegate for determining whether an accelerator can activate a particular widget; see @@ -16,15 +16,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -33,4 +24,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelChangedArgs.xml b/doc/en/Gtk/AccelChangedArgs.xml index ff366afbf..0ec82e4fd 100644 --- a/doc/en/Gtk/AccelChangedArgs.xml +++ b/doc/en/Gtk/AccelChangedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ A pointer to the underlying C data of the accelerator that was changed. - A + A @@ -52,7 +48,7 @@ Gets the state of the Shift, Control, Alt, and other modifier keys and mouse buttons. - An object of type + An object of type @@ -64,9 +60,9 @@ Gets the key value for the accelerator event. - An integer. + An integer. - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelChangedHandler.xml b/doc/en/Gtk/AccelChangedHandler.xml index b391c0cb3..89d8dd850 100644 --- a/doc/en/Gtk/AccelChangedHandler.xml +++ b/doc/en/Gtk/AccelChangedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelFlags.xml b/doc/en/Gtk/AccelFlags.xml index 07198b60f..61d9b9fd6 100644 --- a/doc/en/Gtk/AccelFlags.xml +++ b/doc/en/Gtk/AccelFlags.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,18 +18,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.AccelFlagsGType)) + + + System.Flags + + @@ -91,4 +85,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelGroup.xml b/doc/en/Gtk/AccelGroup.xml index b496bb3d5..b375434d6 100644 --- a/doc/en/Gtk/AccelGroup.xml +++ b/doc/en/Gtk/AccelGroup.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -35,14 +33,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -109,6 +100,7 @@ match the key and modifiers for the path. Path used for determining key and modifiers. Closure to be executed upon accelerator activation + To be added. @@ -127,6 +119,7 @@ Modifier combination of the accelerator. if there was an accelerator which could be removed, otherwise. + To be added. @@ -196,7 +189,6 @@ Internal constructor Pointer to the C object. - An instance of AccelGroup, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -209,7 +201,6 @@ Default public constructor. - A new . @@ -224,7 +215,11 @@ - + + + GLib.Signal(CName="accel_changed") + + Method @@ -271,7 +266,7 @@ GType Property. - a + a Returns the native value for . @@ -304,10 +299,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -344,7 +342,11 @@ - + + + GLib.Signal(CName="accel_activate") + + Method @@ -366,4 +368,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelGroupActivate.xml b/doc/en/Gtk/AccelGroupActivate.xml index 285d5b75a..a2387292e 100644 --- a/doc/en/Gtk/AccelGroupActivate.xml +++ b/doc/en/Gtk/AccelGroupActivate.xml @@ -1,28 +1,23 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. A delegate to activate all the accelerators in a given . + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -33,4 +28,4 @@ System.Boolean - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelGroupEntry.xml b/doc/en/Gtk/AccelGroupEntry.xml index 9a4379c53..c0e92530c 100644 --- a/doc/en/Gtk/AccelGroupEntry.xml +++ b/doc/en/Gtk/AccelGroupEntry.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -75,4 +72,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelGroupFindFunc.xml b/doc/en/Gtk/AccelGroupFindFunc.xml index 330b55601..c8eaf7781 100644 --- a/doc/en/Gtk/AccelGroupFindFunc.xml +++ b/doc/en/Gtk/AccelGroupFindFunc.xml @@ -1,29 +1,21 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. A delegate to locate a particular accelerator. See . + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -32,4 +24,4 @@ System.Boolean - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelKey.xml b/doc/en/Gtk/AccelKey.xml index ca4eccc25..4bb03465c 100644 --- a/doc/en/Gtk/AccelKey.xml +++ b/doc/en/Gtk/AccelKey.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -69,7 +66,7 @@ The flags for this AccelKey that determine whether will display it. - a + a @@ -100,9 +97,8 @@ a enumerated in a enumerated in , the modifiers (shift, ctrl, etc) that apply for this AccelKey a enumerated in for whether this AccelKey should be displayed in the menu - a - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelLabel.xml b/doc/en/Gtk/AccelLabel.xml index 567f1c225..a5aef1afb 100644 --- a/doc/en/Gtk/AccelLabel.xml +++ b/doc/en/Gtk/AccelLabel.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,20 +22,7 @@ Gtk.Label - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -79,7 +64,6 @@ Internal constructor Pointer to the C object. - An instance of AccelLabel, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -95,7 +79,6 @@ Creates an accelerator label. The accelerator label. - @@ -109,7 +92,7 @@ Returns the width needed to display the accelerator key(s). - The width needed to display the accelerator key(s) + The width needed to display the accelerator key(s) Returns the width needed to display the accelerator key(s). This is used by menus to align all of the widgets, and shouldn't be needed by applications. @@ -128,14 +111,18 @@ Sets the closure to be monitored by this accelerator label. A - A + A Sets the closure to be monitored by this accelerator label. The closure must be connected to an accelerator group. See . - + + + GLib.Property(Name="accel_closure") + + Property @@ -147,14 +134,18 @@ Fetches the widget monitored by this accelerator label. The widget to be monitored - The object monitored by the accelerator label, or + The object monitored by the accelerator label, or Fetches the widget monitored by this accelerator label. - + + + GLib.Property(Name="accel_widget") + + Property @@ -164,7 +155,7 @@ The GLib Type assigned to this class. - a + a Used internally. @@ -178,9 +169,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelMap.xml b/doc/en/Gtk/AccelMap.xml index 732f0c23c..e56475903 100644 --- a/doc/en/Gtk/AccelMap.xml +++ b/doc/en/Gtk/AccelMap.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -356,10 +347,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -370,7 +364,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -381,7 +374,6 @@ Protected constructor. - a @@ -395,7 +387,7 @@ GType Property. - a + a Returns the native value for . @@ -408,9 +400,14 @@ Fired when there is a change to the global accelerator map. - + + - + + + GLib.Signal(CName="changed") + + Method @@ -431,4 +428,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/AccelMapForeach.xml b/doc/en/Gtk/AccelMapForeach.xml index 36eb53211..c30de131a 100644 --- a/doc/en/Gtk/AccelMapForeach.xml +++ b/doc/en/Gtk/AccelMapForeach.xml @@ -1,27 +1,22 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. + To be added. A delegate for running over each entry in an accelerator. See . System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -33,4 +28,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Accelerator.xml b/doc/en/Gtk/Accelerator.xml index 9026ba211..a5765624e 100644 --- a/doc/en/Gtk/Accelerator.xml +++ b/doc/en/Gtk/Accelerator.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -71,7 +68,6 @@ Basic constructor. - a @@ -86,7 +82,7 @@ A mask to specify the default modifier key(s). a - a + a @@ -128,4 +124,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/AcceptPositionArgs.xml b/doc/en/Gtk/AcceptPositionArgs.xml index 5fc2ae9ba..584406a3c 100644 --- a/doc/en/Gtk/AcceptPositionArgs.xml +++ b/doc/en/Gtk/AcceptPositionArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,9 +25,8 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. - \ No newline at end of file + diff --git a/doc/en/Gtk/AcceptPositionHandler.xml b/doc/en/Gtk/AcceptPositionHandler.xml index d8b468751..88027d99b 100644 --- a/doc/en/Gtk/AcceptPositionHandler.xml +++ b/doc/en/Gtk/AcceptPositionHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Accessible.xml b/doc/en/Gtk/Accessible.xml index 774d3804f..153ad65a1 100644 --- a/doc/en/Gtk/Accessible.xml +++ b/doc/en/Gtk/Accessible.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Atk.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -60,7 +51,6 @@ Internal constructor Pointer to the C object. - An instance of Accessible, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -75,7 +65,7 @@ GType Property. - a + a Returns the native value for . @@ -89,10 +79,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -100,9 +93,8 @@ Protected constructor. - a Chain to this constructor if you have not registered a native value for your subclass. - \ No newline at end of file + diff --git a/doc/en/Gtk/Action.xml b/doc/en/Gtk/Action.xml index 03b59711b..ac0297af2 100644 --- a/doc/en/Gtk/Action.xml +++ b/doc/en/Gtk/Action.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -55,14 +53,7 @@ Each action can have one or more proxy menu item, toolbar button or other proxy GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -243,10 +234,13 @@ If the widget is already connected to an action, it is disconnected first. Internal constructor a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -257,7 +251,6 @@ If the widget is already connected to an action, it is disconnected first. Internal constructor a - a @@ -277,7 +270,6 @@ If the widget is already connected to an action, it is disconnected first. the label displayed in menu items and on buttons a tooltip for the action, or for no tooltip the stock icon to display in widgets representing the action, or - a @@ -293,7 +285,6 @@ If the widget is already connected to an action, it is disconnected first.Creates a new action from the and . A unique name for the action the label displayed in menu items and on buttons - a Convenience constructor for passing in for the last two parameters. @@ -306,7 +297,7 @@ If the widget is already connected to an action, it is disconnected first. GType Property. - a + a Returns the native value for . @@ -319,12 +310,16 @@ If the widget is already connected to an action, it is disconnected first. Whether the action is considered important. - a + a When , toolitem proxies for this action show text in mode. Default value: - + + + GLib.Property(Name="is_important") + + Property @@ -334,10 +329,14 @@ Default value: When , toolitem proxies for this action are represented in the toolbar overflow menu. - a + a Default value is - + + + GLib.Property(Name="visible_vertical") + + Property @@ -347,10 +346,14 @@ Default value: The stock icon displayed in widgets representing this action. - a + a Default value is - + + + GLib.Property(Name="stock_id") + + Property @@ -360,10 +363,14 @@ Default value: When , empty menu proxies for this action are hidden. - a + a Default value: - + + + GLib.Property(Name="hide_if_empty") + + Property @@ -373,10 +380,14 @@ Default value: A unique name for the action. - a + a - + + + GLib.Property(Name="name") + + Property @@ -386,10 +397,14 @@ Default value: A shorter label that may be used on toolbar buttons. - a + a Default value is - + + + GLib.Property(Name="short_label") + + Property @@ -399,10 +414,14 @@ Default value: Whether the toolbar item is visible when the toolbar is in a horizontal orientation. - a + a Default value is - + + + GLib.Property(Name="visible_horizontal") + + Property @@ -412,10 +431,14 @@ Default value: The GtkActionGroup this GtkAction is associated with. - a + a Can be set to for internal use. - + + + GLib.Property(Name="action_group") + + Property @@ -425,10 +448,14 @@ Default value: The label used for menu items and buttons that activate this action. - a + a Default value is - + + + GLib.Property(Name="label") + + Property @@ -438,10 +465,14 @@ Default value: A tooltip for this action. - a + a Default value is - + + + GLib.Property(Name="tooltip") + + Property @@ -451,7 +482,7 @@ Default value: Whether the action itself is sensitive. - a + a @@ -460,7 +491,11 @@ This does not necessarily mean effective sensitivity. See + + Property @@ -470,7 +505,7 @@ This does not necessarily mean effective sensitivity. See + a @@ -479,7 +514,11 @@ This does not necessarily mean effective visibility. See + + Property @@ -488,7 +527,7 @@ This does not necessarily mean effective visibility. See in which the accelerator for this action will be installed. - a or + a or @@ -501,7 +540,7 @@ This does not necessarily mean effective visibility. See + a if the action and its associated action group are both sensitive. @@ -515,7 +554,7 @@ This does not necessarily mean effective visibility. See + a if the action and its associated action group are both visible. @@ -529,7 +568,7 @@ This does not necessarily mean effective visibility. See + a All proxy widgets associated with the action will have this accel path, so that their accelerators are consistent. @@ -545,9 +584,13 @@ This does not necessarily mean effective visibility. See + + - + Property Gtk.Widget[] @@ -555,7 +598,7 @@ This does not necessarily mean effective visibility. See of proxy widgets. + a of proxy widgets. @@ -569,9 +612,13 @@ This does not necessarily mean effective visibility. See + a To be added - + + + GLib.Property(Name="visible_overflown") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/ActionActivatedArgs.xml b/doc/en/Gtk/ActionActivatedArgs.xml index db4e7f4f4..9700ad396 100644 --- a/doc/en/Gtk/ActionActivatedArgs.xml +++ b/doc/en/Gtk/ActionActivatedArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The index of the action that was triggered. - a + a See and for more context about the index property. @@ -48,4 +44,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ActionActivatedHandler.xml b/doc/en/Gtk/ActionActivatedHandler.xml index bc84cdcb1..c2363c6eb 100644 --- a/doc/en/Gtk/ActionActivatedHandler.xml +++ b/doc/en/Gtk/ActionActivatedHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ActionEntry.xml b/doc/en/Gtk/ActionEntry.xml index 70f130c1c..3eb282b18 100644 --- a/doc/en/Gtk/ActionEntry.xml +++ b/doc/en/Gtk/ActionEntry.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ System.ValueType - @@ -111,8 +108,8 @@ Public constructor. a , a unique name a , a stock icon - a - + + @@ -129,8 +126,8 @@ a , a unique name a , a stock icon a , a handler to run when the action is activated - a - + + @@ -153,8 +150,8 @@ a , an accelerator sequence a , tooltip text a , a handler to run when the action is activated - a - + + diff --git a/doc/en/Gtk/ActionGroup.xml b/doc/en/Gtk/ActionGroup.xml index 53ae358d3..4cb088537 100644 --- a/doc/en/Gtk/ActionGroup.xml +++ b/doc/en/Gtk/ActionGroup.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -28,14 +26,12 @@ Accelerators are handled by the Gtk accelerator map. All actions are assigned an GLib.Object - - GLib.IWrapper - - - System.IDisposable - - + + + System.Reflection.DefaultMember(MemberName="Item") + + @@ -134,10 +130,13 @@ Therefore you must either set the accel path yourself with a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -148,7 +147,6 @@ Therefore you must either set the accel path yourself with a - a @@ -162,7 +160,6 @@ Therefore you must either set the accel path yourself with object. a , the name of the action group. - a The name of the action group is used when associating keybindings with the actions. @@ -175,7 +172,7 @@ Therefore you must either set the accel path yourself with + a Returns the native value for . @@ -188,10 +185,14 @@ Therefore you must either set the accel path yourself with + a The constituent actions can only be logically visible (see ) if they are visible (see ) and their group is visible. - + + + GLib.Property(Name="visible") + + Property @@ -201,10 +202,14 @@ Therefore you must either set the accel path yourself with + a The constituent actions can only be logically sensitive (see ) if they are sensitive (see ) and their group is sensitive. - + + + GLib.Property(Name="sensitive") + + Property @@ -214,10 +219,14 @@ Therefore you must either set the accel path yourself with + a - + + + GLib.Property(Name="name") + + Property @@ -226,7 +235,7 @@ Therefore you must either set the accel path yourself with s added by . - a + a @@ -295,7 +304,7 @@ Therefore you must either set the accel path yourself with - + Property Gtk.Action @@ -306,7 +315,7 @@ Therefore you must either set the accel path yourself with with the specified name. a - a + a See for more info. @@ -321,7 +330,11 @@ Therefore you must either set the accel path yourself with + + Event @@ -333,7 +346,11 @@ Therefore you must either set the accel path yourself with + + Event @@ -345,7 +362,11 @@ Therefore you must either set the accel path yourself with + + Event @@ -357,7 +378,11 @@ Therefore you must either set the accel path yourself with + + Method @@ -430,7 +455,7 @@ Therefore you must either set the accel path yourself with . - a + a If you are using gettext(), it is enough to set the translation domain with . @@ -451,4 +476,4 @@ Therefore you must either set the accel path yourself with Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ Whether to hide the current menu item or not. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/ActivateCurrentHandler.xml b/doc/en/Gtk/ActivateCurrentHandler.xml index 2704af8b9..34765e708 100644 --- a/doc/en/Gtk/ActivateCurrentHandler.xml +++ b/doc/en/Gtk/ActivateCurrentHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ActivateCursorItemArgs.xml b/doc/en/Gtk/ActivateCursorItemArgs.xml index 8f7e07b79..fcb2722e4 100644 --- a/doc/en/Gtk/ActivateCursorItemArgs.xml +++ b/doc/en/Gtk/ActivateCursorItemArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,9 +24,8 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. - \ No newline at end of file + diff --git a/doc/en/Gtk/ActivateCursorItemHandler.xml b/doc/en/Gtk/ActivateCursorItemHandler.xml index 4da84369f..24a2bb960 100644 --- a/doc/en/Gtk/ActivateCursorItemHandler.xml +++ b/doc/en/Gtk/ActivateCursorItemHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/AddWidgetArgs.xml b/doc/en/Gtk/AddWidgetArgs.xml index 538515edf..ca461a394 100644 --- a/doc/en/Gtk/AddWidgetArgs.xml +++ b/doc/en/Gtk/AddWidgetArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,8 +36,9 @@ The widget (menubar or toolbar) that was added to the UI. - a - + a + + diff --git a/doc/en/Gtk/AddWidgetHandler.xml b/doc/en/Gtk/AddWidgetHandler.xml index 3700bfdb2..93433d149 100644 --- a/doc/en/Gtk/AddWidgetHandler.xml +++ b/doc/en/Gtk/AddWidgetHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/AddedArgs.xml b/doc/en/Gtk/AddedArgs.xml index 14490228f..599794ada 100644 --- a/doc/en/Gtk/AddedArgs.xml +++ b/doc/en/Gtk/AddedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The widget that was added to the container. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/AddedHandler.xml b/doc/en/Gtk/AddedHandler.xml index bcaa03bbe..f877e33b2 100644 --- a/doc/en/Gtk/AddedHandler.xml +++ b/doc/en/Gtk/AddedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/AdjustBoundsArgs.xml b/doc/en/Gtk/AdjustBoundsArgs.xml index bdb813419..98dcfac0b 100644 --- a/doc/en/Gtk/AdjustBoundsArgs.xml +++ b/doc/en/Gtk/AdjustBoundsArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The new value for the bounds of the range. - A . + A . - \ No newline at end of file + diff --git a/doc/en/Gtk/AdjustBoundsHandler.xml b/doc/en/Gtk/AdjustBoundsHandler.xml index b8711eb9f..ec540dbe5 100644 --- a/doc/en/Gtk/AdjustBoundsHandler.xml +++ b/doc/en/Gtk/AdjustBoundsHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Adjustment.xml b/doc/en/Gtk/Adjustment.xml index b1407db5f..7b4623279 100644 --- a/doc/en/Gtk/Adjustment.xml +++ b/doc/en/Gtk/Adjustment.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,14 +19,7 @@ Gtk.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -132,7 +123,6 @@ Internal constructor Pointer to the C object. - An instance of Adjustment, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -158,7 +148,6 @@ The increment to use to make minor changes to the value. The increment to use to make major changes to the value. The page size. In a this is the size of the area that is currently visible. - A new Adjustment @@ -173,12 +162,16 @@ Manage the size of a 'page'. The new page size. - The current size of pages in this Adjustment. + The current size of pages in this Adjustment. In a this is the size of the area which is currently visible. - + + + GLib.Property(Name="page-size") + + Property @@ -190,12 +183,16 @@ Manage the increment used to make major changes to the value. A new value for the PageIncrement - The current PageIncrement. + The current PageIncrement. The usefulness of this value is entirely dependent upon the context in whic hthe Adjustment is used. - + + + GLib.Property(Name="page-increment") + + Property @@ -207,12 +204,16 @@ Manage the current . A new value for this Adjustment. - The current value of this adjustment. + The current value of this adjustment. If you set this property, you should manually call so that all listening objects are notified of the change. - + + + GLib.Property(Name="value") + + Event @@ -226,7 +227,11 @@ This event can be handled to be notified of changes to the Adjustment's value. However, this relies on all objects that change the calling . - + + + GLib.Signal(CName="value_changed") + + Event @@ -240,7 +245,11 @@ If the Adjustment's properties change, (such as , etc.), it is up to whichever class changes the values to call to ensure this event is fired. - + + + GLib.Signal(CName="changed") + + Property @@ -250,7 +259,7 @@ GType Property. - a + a Returns the native value for . @@ -288,10 +297,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -301,10 +313,14 @@ Retrieve the lower bound of this Adjustment. - a + a The minimum possible value that is currently allowed. - + + + GLib.Property(Name="lower") + + Property @@ -314,10 +330,14 @@ Retrieve the upper bound of this Adjustment. - a + a The maximum possible value that is currently allowed. - + + + GLib.Property(Name="upper") + + Property @@ -327,12 +347,16 @@ The increment to use to make minor changes to the value. - a + a In a this increment is used when the mouse is clicked on the arrows at the top and bottom of the , to scroll by a small amount. - + + + GLib.Property(Name="step-increment") + + Constructor @@ -340,9 +364,8 @@ Default constructor. - a - \ No newline at end of file + diff --git a/doc/en/Gtk/Alignment.xml b/doc/en/Gtk/Alignment.xml index 4bc84c3ab..7623afa5e 100644 --- a/doc/en/Gtk/Alignment.xml +++ b/doc/en/Gtk/Alignment.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -22,20 +20,7 @@ Gtk.Bin - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -82,7 +67,6 @@ Internal constructor Pointer to the C object. - An instance of Alignment, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -104,7 +88,6 @@ The vertical alignment of the child widget, from 0 (top) to 1 (bottom). The amount that the child widget expands horizontally to fill up unused space, from 0 to 1. The amount that the child widget expands vertically to fill up unused space, from 0 to 1. - A new Alignment. @@ -119,12 +102,16 @@ Manage the vertical alignment of the child widget. A new vertical alignment for the child widget. - The child widget's current vertical alignment. + The child widget's current vertical alignment. This property is a value between 0 and 1 where 0 indicates alignment at the top of the container, and 1 indicates alignment at the bottom of the container. - + + + GLib.Property(Name="yalign") + + Property @@ -136,12 +123,16 @@ Manage the horizontal alignment of the child widget. A new horizontal alignment for the child widget. - The child widget's current horizontal alignment. + The child widget's current horizontal alignment. This property is a value between 0 and 1, where 0 indicates no child expansion, and 1 indicates the child expands to fill the Alignment's allocated horizontal size. - + + + GLib.Property(Name="xalign") + + Property @@ -153,12 +144,16 @@ Manage the horizontal expansion of the child widget. The proportion that the child widget should expand horizontally. - The current horizontal expansion of the child widget. + The current horizontal expansion of the child widget. This property is a value between 0 and 1, where 0 indicates no child expansion, and 1 indicates the child expands to fill the Alignment's allocated horizontal size. - + + + GLib.Property(Name="xscale") + + Property @@ -170,12 +165,16 @@ Manage the vertical expansion of the child widget. The proportion that the child widget should expand vertically. - The current vertical expansion of the child widget. + The current vertical expansion of the child widget. This property is a value between 0 and 1, where 0 indicates no child expansion, and 1 indicates the child expands to fill the Alignment's allocated vertical size. - + + + GLib.Property(Name="yscale") + + Property @@ -185,7 +184,7 @@ GType Property. - a + a Returns the native value for . @@ -199,10 +198,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -212,11 +214,15 @@ The padding to insert at the left of the child widget. - a + a - + + + GLib.Property(Name="left_padding") + + Property @@ -226,11 +232,15 @@ The padding to insert at the bottom of the child widget. - a + a - + + + GLib.Property(Name="bottom_padding") + + Property @@ -240,11 +250,15 @@ The padding to insert at the top of the child widget. - a + a - + + + GLib.Property(Name="top_padding") + + Property @@ -254,11 +268,15 @@ The padding to insert at the right of the child widget. - a + a - + + + GLib.Property(Name="right_padding") + + Method @@ -317,4 +335,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/AnchorType.xml b/doc/en/Gtk/AnchorType.xml index 9f94edced..859073224 100644 --- a/doc/en/Gtk/AnchorType.xml +++ b/doc/en/Gtk/AnchorType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,18 +16,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.AnchorTypeGType)) + + @@ -249,4 +240,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Application.xml b/doc/en/Gtk/Application.xml index 95f773a6d..6869d0bcc 100644 --- a/doc/en/Gtk/Application.xml +++ b/doc/en/Gtk/Application.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -52,7 +50,6 @@ public class HelloWorld { System.Object - @@ -243,7 +240,7 @@ void LongComputation () Runs a single iteration of the main loop. - A boolean value, whether the iteration should block or not + A boolean value, whether the iteration should block or not Runs a single iteration of the main loop. If is , then if no events are @@ -251,6 +248,7 @@ void LongComputation () then it if no events are waiting to be processed Gtk#, routine will return immediately. + To be added. @@ -262,9 +260,44 @@ void LongComputation () Returns the event currently taking place. - a + a + + + Method + + System.Void + + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gtk/Arg.xml b/doc/en/Gtk/Arg.xml index 11005b00f..54876ce06 100644 --- a/doc/en/Gtk/Arg.xml +++ b/doc/en/Gtk/Arg.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ System.ValueType - - GLib.IWrapper - - @@ -97,4 +91,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ArgFlags.xml b/doc/en/Gtk/ArgFlags.xml index 8e8d2b19b..1abe13f97 100644 --- a/doc/en/Gtk/ArgFlags.xml +++ b/doc/en/Gtk/ArgFlags.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,20 +14,12 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + GLib.GType(WrapperType=typeof(Gtk.ArgFlagsGType)) + + + System.Flags @@ -56,7 +46,8 @@ Do not use. - + + @@ -69,7 +60,8 @@ Do not use. - + + @@ -82,7 +74,8 @@ Do not use. - + + @@ -95,7 +88,8 @@ Do not use. - + + @@ -108,7 +102,8 @@ Do not use. - + + diff --git a/doc/en/Gtk/Arrow.xml b/doc/en/Gtk/Arrow.xml index 8141754fb..97d19698f 100644 --- a/doc/en/Gtk/Arrow.xml +++ b/doc/en/Gtk/Arrow.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -35,20 +33,7 @@ Gtk.Misc - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -72,7 +57,6 @@ Internal constructor Pointer to the C object. - An instance of Arrow, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -90,7 +74,6 @@ Constructor A valid ArrowType. A valid ShadowType. - A new Arrow @@ -105,7 +88,7 @@ Used to change the appearance of an outline typically provided by a Frame. A valid Shadow type. - Returns a new ShadowType. + Returns a new ShadowType. Changes the appearance of an outline typically provided by a . @@ -117,7 +100,11 @@ - + + + GLib.Property(Name="shadow_type") + + Property @@ -129,7 +116,7 @@ Used to change the direction of an Arrow. A valid ArrowType. - A new Arrow. + A new Arrow. Changes the direction of an Arrow. @@ -139,7 +126,11 @@ - + + + GLib.Property(Name="arrow_type") + + Property @@ -149,7 +140,7 @@ GType Property. - a + a Returns the native value for . @@ -163,9 +154,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/ArrowType.xml b/doc/en/Gtk/ArrowType.xml index 562fd38c4..713745bfb 100644 --- a/doc/en/Gtk/ArrowType.xml +++ b/doc/en/Gtk/ArrowType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.ArrowTypeGType)) + + @@ -91,4 +82,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/AspectFrame.xml b/doc/en/Gtk/AspectFrame.xml index 1195c0029..dad6e11f7 100644 --- a/doc/en/Gtk/AspectFrame.xml +++ b/doc/en/Gtk/AspectFrame.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,20 +17,7 @@ Gtk.Frame - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -79,7 +64,6 @@ Internal constructor Pointer to the C object. - An instance of AspectFrame, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -103,7 +87,6 @@ Vertical alignment of the child within the allocation of the AspectFrame. The desired aspect ratio. If , ratio is ignored, and the aspect ratio is taken from the requistion of the child. - A new AspectFrame Alignment values range from 0.0 (left/top aligned) to 1.0 (right/bottom aligned). @@ -120,10 +103,14 @@ Vertical alignment of the child widget in the AspectFrame. A value between 0.0 (top aligned) and 1.0 (bottom aligned). - A value between 0.0 and 1.0. + A value between 0.0 and 1.0. - + + + GLib.Property(Name="yalign") + + Property @@ -135,10 +122,14 @@ Horiontal alignment of the child widget in the AspectFrame. A value between 0.0 (left aligned) and 1.0 (right aligned). - A value between 0.0 and 1.0. + A value between 0.0 and 1.0. - + + + GLib.Property(Name="xalign") + + Property @@ -150,12 +141,16 @@ The aspect ratio of the child widget's size. A ratio between 0.0 and 1.0 - The aspect ratio between 0.0 and 1.0 representing the child's size constraints. + The aspect ratio between 0.0 and 1.0 representing the child's size constraints. Setting this ratio is ignored if is set to . - + + + GLib.Property(Name="ratio") + + Property @@ -168,10 +163,14 @@ Allow the frame to use its child widget's aspect ratio. for the AspectFrame to use the child widget's size ratio, for to control the ratio. - The current size ratio of the child widget + The current size ratio of the child widget - + + + GLib.Property(Name="obey_child") + + Property @@ -181,7 +180,7 @@ GType Property. - a + a Returns the native value for . @@ -195,9 +194,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/AttachOptions.xml b/doc/en/Gtk/AttachOptions.xml index 32a057775..fd5e6dbf3 100644 --- a/doc/en/Gtk/AttachOptions.xml +++ b/doc/en/Gtk/AttachOptions.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.AttachOptionsGType)) + + + System.Flags + + @@ -79,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Bin.xml b/doc/en/Gtk/Bin.xml index 48b7616a2..51d78493e 100644 --- a/doc/en/Gtk/Bin.xml +++ b/doc/en/Gtk/Bin.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -130,20 +128,7 @@ class Y { Gtk.Container - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -167,7 +152,6 @@ class Y { Internal constructor Pointer to the C object. - An instance of Bin, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -182,7 +166,7 @@ class Y { GType Property. - a + a Returns the native value for . @@ -196,10 +180,13 @@ class Y { Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -207,7 +194,6 @@ class Y { Protected constructor. - a Chain to this constructor if you have not manually registered a native value for your subclass. @@ -220,10 +206,10 @@ class Y { Accesses the one and only child widget of this Bin object. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/BindingAttribute.xml b/doc/en/Gtk/BindingAttribute.xml index 3df536889..68e7a27d4 100644 --- a/doc/en/Gtk/BindingAttribute.xml +++ b/doc/en/Gtk/BindingAttribute.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,37 +16,48 @@ - System.AttributeUsageAttribute + System.AttributeUsage(AllowMultiple=True, Inherited=True, ValidOn=System.AttributeTargets.Class) - + Constructor - + + + + System.ParamArray + + + Constructs a Binding attribute with no key modifier. a key value name of the instance method to call. an array containing the parameters to pass to the handler. - a - + Constructor - + + + + System.ParamArray + + + Constructs a Binding attribute for a key and modifier. @@ -56,7 +65,6 @@ a modifier type, like ctrl or shift name of the instance method to call. an array containing the parameters to pass to the handler. - a @@ -69,7 +77,7 @@ The key value - a + a @@ -82,7 +90,7 @@ The key modifier, such as ctrl or shift. - a + a @@ -95,12 +103,12 @@ The name of the instance method to call on activation. - a + a - + Property System.Object[] @@ -108,7 +116,7 @@ An Array of parameters to pass to the Handler. - a + a diff --git a/doc/en/Gtk/Bindings.xml b/doc/en/Gtk/Bindings.xml index dae388033..1f7bb13dc 100644 --- a/doc/en/Gtk/Bindings.xml +++ b/doc/en/Gtk/Bindings.xml @@ -4,19 +4,17 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Key bindings for individual widgets. - + + System.Object - @@ -29,12 +27,13 @@ - Looks up key bindings for to find one matching - , and if one was found, activates it. + Looks up key bindings for to find one matching + , and if one was found, activates it. a a a - + + @@ -44,8 +43,8 @@ Public constructor. - a - + + diff --git a/doc/en/Gtk/BoxChild.xml b/doc/en/Gtk/Box+BoxChild.xml similarity index 60% rename from doc/en/Gtk/BoxChild.xml rename to doc/en/Gtk/Box+BoxChild.xml index f1d258dc6..866d6ce94 100644 --- a/doc/en/Gtk/BoxChild.xml +++ b/doc/en/Gtk/Box+BoxChild.xml @@ -1,104 +1,102 @@ - - + + gtk-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] 2.0.0.0 - neutral - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - A child of a , used to interact with its container child properties. - - - Gtk.Container+ContainerChild - Property + + + Gtk.ChildProperty(Name="pack_type") + + Gtk.PackType - The child's pack type (start or end) - a + a See for more details about child properties. Property + + + Gtk.ChildProperty(Name="padding") + + System.UInt32 - The child's padding - the padding + the padding See for more details about child properties. Property + + + Gtk.ChildProperty(Name="fill") + + System.Boolean - The "fill" property for the child - the child's "fill" property + the child's "fill" property See for more details about child properties. Property + + + Gtk.ChildProperty(Name="expand") + + System.Boolean - The "expand" property for the child - the child's "expand" property + the child's "expand" property See for more details about child properties. Property + + + Gtk.ChildProperty(Name="position") + + System.Int32 - The child's position in the - the child's position + The Child's position. The child's position in the parent reflects the order it was added in. Children with lower position values appear closer to the end they were packed onto. Children with higher position values appear closer to the center, or the opposite end. - - - Constructor - - - - - - - Constructor - a - a - a - - - - \ No newline at end of file + + A child of a , used to interact with its container child properties. + + + diff --git a/doc/en/Gtk/Box.xml b/doc/en/Gtk/Box.xml index cb5479bfd..41f31c9dd 100644 --- a/doc/en/Gtk/Box.xml +++ b/doc/en/Gtk/Box.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -23,20 +21,12 @@ Gtk.Container - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - + + + System.Reflection.DefaultMember(MemberName="Item") + + @@ -184,7 +174,6 @@ Internal constructor Pointer to the C object. - An instance of Box, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -201,10 +190,14 @@ Adjust the spacing between child widgets. The number of pixels of space to put between child widgets. - The current pixel spacing between child widgets + The current pixel spacing between child widgets - + + + GLib.Property(Name="spacing") + + Property @@ -216,11 +209,15 @@ Set the size of all child widgets to be the same If , all child widgets are forced to have the same size, otherwise they appear at their preferred size. - - if child widgets size themselves equally, false otherwise. + + if child widgets size themselves equally, false otherwise. - + + + GLib.Property(Name="homogeneous") + + Method @@ -253,7 +250,7 @@ GType Property. - a + a Returns the native value for . @@ -267,10 +264,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -278,7 +278,6 @@ Protected constructor. - a @@ -300,4 +299,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Button.xml b/doc/en/Gtk/Button.xml index 803f8a421..0ad89aa45 100644 --- a/doc/en/Gtk/Button.xml +++ b/doc/en/Gtk/Button.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -58,20 +56,7 @@ public class ButtonApp { Gtk.Bin - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -85,12 +70,16 @@ public class ButtonApp { Whether the should use a . Boolean value to select if the uses a or not. - Gets a value indicating if the uses a . + Gets a value indicating if the uses a . It is possible to create a from , which is recommended for consistency in apps. They also provide a and a key shortcut. - + + + GLib.Property(Name="use_stock") + + Property @@ -103,11 +92,15 @@ public class ButtonApp { Indicates if a mnemonic is associated with the . Boolean value to select if the uses underline or not. - Gets a value indicating if the uses underline - or not. + Gets a value indicating if the uses underline + or not. - + + + GLib.Property(Name="use_underline") + + Property @@ -120,11 +113,15 @@ public class ButtonApp { The for the . The for the . - An instance of that - represents the relief style of the . + An instance of that + represents the relief style of the . - + + + GLib.Property(Name="relief") + + Property @@ -137,10 +134,14 @@ public class ButtonApp { The text of the in the . A to be used for the 's - The contained by the . + The contained by the . If you want the Label to have a mnemonic you need to set to . - + + + GLib.Property(Name="label") + + Event @@ -153,7 +154,11 @@ public class ButtonApp { Event launched when the is activated. - + + + GLib.Signal(CName="activate") + + Event @@ -166,7 +171,11 @@ public class ButtonApp { Event launched when the is clicked. - + + + GLib.Signal(CName="clicked") + + Event @@ -179,7 +188,11 @@ public class ButtonApp { Event launched when the cursor leaves the area. - + + + GLib.Signal(CName="leave") + + Event @@ -192,7 +205,11 @@ public class ButtonApp { Event launched when the is pressed. - + + + GLib.Signal(CName="pressed") + + Event @@ -205,7 +222,11 @@ public class ButtonApp { Event launched when the is released. - + + + GLib.Signal(CName="released") + + Event @@ -218,7 +239,11 @@ public class ButtonApp { Event launched when the cursor enters the area. - + + + GLib.Signal(CName="enter") + + Method @@ -316,7 +341,6 @@ public class ButtonApp { Default parameterless constructor. - An instance of . This is the default constructor for the class. @@ -330,7 +354,6 @@ public class ButtonApp { Internal constructor an object of type - an object of type This is not typically used by C# code. @@ -343,7 +366,7 @@ public class ButtonApp { Whether or not the cursor is inside the button. - a , true if the cursor is inside the button. + a , true if the cursor is inside the button. @@ -374,7 +397,6 @@ public class ButtonApp { Creates a new containing the image and text from a stock item. a - a The valid names of Stock items can be found in the class. @@ -387,7 +409,7 @@ public class ButtonApp { GType Property. - a + a Returns the native value for . @@ -487,10 +509,13 @@ public class ButtonApp { Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -501,7 +526,6 @@ public class ButtonApp { Constructs a button containing a specified Child widget. a child - a @@ -517,11 +541,15 @@ public class ButtonApp { Whether the button grabs focus when it is clicked with the mouse. - a + a - + + + GLib.Property(Name="focus_on_click") + + Property @@ -535,13 +563,17 @@ public class ButtonApp { or , this property can be used to control its horizontal alignment. - a ; + a ; 0.0 is left aligned, 1.0 is right aligned. - + - + + + GLib.Property(Name="xalign") + + Property @@ -555,14 +587,18 @@ public class ButtonApp { or , this property can be used to control its vertical alignment. - + a ; 0.0 is top aligned, 1.0 is bottom aligned. - + - + + + GLib.Property(Name="yalign") + + Method @@ -616,9 +652,13 @@ public class ButtonApp { To be added - a + a To be added - + + + GLib.Property(Name="image") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/ButtonBox+ButtonBoxChild.xml b/doc/en/Gtk/ButtonBox+ButtonBoxChild.xml new file mode 100644 index 000000000..8937da10a --- /dev/null +++ b/doc/en/Gtk/ButtonBox+ButtonBoxChild.xml @@ -0,0 +1,36 @@ + + + + gtk-sharp + 2.0.0.0 + + + Gtk.Box+BoxChild + + + + + + Property + + + Gtk.ChildProperty(Name="secondary") + + + + System.Boolean + + + Whether or not the child should appear in a secondary group of children + or . + + A secondary group appears after the other children if the style is , or , and before the the other children if the style is . For horizontal button boxes, the definition of before/after depends on direction of the widget (see ). If the style is or , then the secondary children are aligned at the other end of the button box from the main children. For the other styles, they appear immediately next to the main children. + + + + + + A child of a , used to interact with its container child properties. + + + diff --git a/doc/en/Gtk/ButtonBox.xml b/doc/en/Gtk/ButtonBox.xml index fc205b587..03db07587 100644 --- a/doc/en/Gtk/ButtonBox.xml +++ b/doc/en/Gtk/ButtonBox.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,20 +17,12 @@ Gtk.Box - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - + + + System.Reflection.DefaultMember(MemberName="Item") + + @@ -56,7 +46,6 @@ Internal constructor Pointer to the C object. - An instance of ButtonBox, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -73,7 +62,7 @@ Alter the way the buttons in this box are arranged. the new style to arrange the buttons in. - The style that the child widgets are currently arranged in. + The style that the child widgets are currently arranged in. See for more information about the styles of button boxes. @@ -88,10 +77,14 @@ See - + - + + + GLib.Property(Name="layout_style") + + Property @@ -101,7 +94,7 @@ GType Property. - a + a Returns the native value for . @@ -115,10 +108,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -126,7 +122,6 @@ Default parameterless constructor. - a This is the default constructor for the class. @@ -279,4 +274,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ButtonBoxChild.xml b/doc/en/Gtk/ButtonBoxChild.xml deleted file mode 100644 index 055298adc..000000000 --- a/doc/en/Gtk/ButtonBoxChild.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - gtk-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - A child of a , used to interact with its container child properties. - - - - - Gtk.Box+BoxChild - - - - - - - Property - - System.Boolean - - - - Whether or not the child should appear in a secondary group of children - - or - - A secondary group appears after the other children if the style is , or , and before the the other children if the style is . For horizontal button boxes, the definition of before/after depends on direction of the widget (see ). If the style is or , then the secondary children are aligned at the other end of the button box from the main children. For the other styles, they appear immediately next to the main children. - - - - - - Constructor - - - - - - - Constructor - a - a - a - - - - - \ No newline at end of file diff --git a/doc/en/Gtk/ButtonBoxStyle.xml b/doc/en/Gtk/ButtonBoxStyle.xml index 2b57f7f35..d5d6bede0 100644 --- a/doc/en/Gtk/ButtonBoxStyle.xml +++ b/doc/en/Gtk/ButtonBoxStyle.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.ButtonBoxStyleGType)) + + @@ -104,4 +95,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ButtonPressEventArgs.xml b/doc/en/Gtk/ButtonPressEventArgs.xml index 76ebc9f12..854dbb87d 100644 --- a/doc/en/Gtk/ButtonPressEventArgs.xml +++ b/doc/en/Gtk/ButtonPressEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The button that was pressed. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/ButtonPressEventHandler.xml b/doc/en/Gtk/ButtonPressEventHandler.xml index 7dab832ab..5ccf8c35a 100644 --- a/doc/en/Gtk/ButtonPressEventHandler.xml +++ b/doc/en/Gtk/ButtonPressEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Represents a method that will handle a button press event The events is provided an value that contains @@ -16,15 +17,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -33,4 +25,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ButtonReleaseEventArgs.xml b/doc/en/Gtk/ButtonReleaseEventArgs.xml index 895c957d1..5b810ec3b 100644 --- a/doc/en/Gtk/ButtonReleaseEventArgs.xml +++ b/doc/en/Gtk/ButtonReleaseEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The button that was released. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/ButtonReleaseEventHandler.xml b/doc/en/Gtk/ButtonReleaseEventHandler.xml index 9bb2fbb0c..b3d9033bf 100644 --- a/doc/en/Gtk/ButtonReleaseEventHandler.xml +++ b/doc/en/Gtk/ButtonReleaseEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ButtonsType.xml b/doc/en/Gtk/ButtonsType.xml index de992076f..f7185327c 100644 --- a/doc/en/Gtk/ButtonsType.xml +++ b/doc/en/Gtk/ButtonsType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,18 +18,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.ButtonsTypeGType)) + + @@ -119,4 +110,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Calendar.xml b/doc/en/Gtk/Calendar.xml index 62317ca07..7c2a68461 100644 --- a/doc/en/Gtk/Calendar.xml +++ b/doc/en/Gtk/Calendar.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -46,20 +44,7 @@ void HandleDaySelected (object obj, EventArgs args) Gtk.Widget - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -220,7 +205,6 @@ void HandleDaySelected (object obj, EventArgs args) Internal constructor Pointer to the C object. - An instance of Calendar, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -233,7 +217,6 @@ void HandleDaySelected (object obj, EventArgs args) Creates a new Calendar displaying the current month and having the current day selected - A new Calendar. @@ -250,7 +233,11 @@ void HandleDaySelected (object obj, EventArgs args) This may happen when the user explicitly advances the year, or when advancing from December to January. - + + + GLib.Signal(CName="next_year") + + Event @@ -262,7 +249,11 @@ void HandleDaySelected (object obj, EventArgs args) Fired when the user "double clicks" on a day. - + + + GLib.Signal(CName="day_selected_double_click") + + Event @@ -276,7 +267,11 @@ void HandleDaySelected (object obj, EventArgs args) This may happen when the user explicitly advances the year, or when clicking 'back' from January to December. - + + + GLib.Signal(CName="prev_year") + + Event @@ -288,7 +283,11 @@ void HandleDaySelected (object obj, EventArgs args) Fired when the current month changes. - + + + GLib.Signal(CName="month_changed") + + Event @@ -300,7 +299,11 @@ void HandleDaySelected (object obj, EventArgs args) Fired when the month of the Calendar moves to the next one. - + + + GLib.Signal(CName="next_month") + + Event @@ -312,7 +315,11 @@ void HandleDaySelected (object obj, EventArgs args) Fired when a day is selected on the Calendar. - + + + GLib.Signal(CName="day_selected") + + Event @@ -324,7 +331,11 @@ void HandleDaySelected (object obj, EventArgs args) Fired when the Calendar moves to the previous month. - + + + GLib.Signal(CName="prev_month") + + Method @@ -349,7 +360,7 @@ void HandleDaySelected (object obj, EventArgs args) GType Property. - a + a Returns the native value for . @@ -447,10 +458,13 @@ void HandleDaySelected (object obj, EventArgs args) Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -460,7 +474,7 @@ void HandleDaySelected (object obj, EventArgs args) a DateTime that contains the current day for the Calendar widget - a + a Setting the date fires Calendar changes events (Day, Month/Year) @@ -473,11 +487,15 @@ void HandleDaySelected (object obj, EventArgs args) The selected day as a number between 1 and 31, or 0 to unselect the currently selected day. - a + a - + + + GLib.Property(Name="day") + + Property @@ -487,11 +505,15 @@ void HandleDaySelected (object obj, EventArgs args) If , week numbers are displayed - a + a - + + + GLib.Property(Name="show_week_numbers") + + Property @@ -501,11 +523,15 @@ void HandleDaySelected (object obj, EventArgs args) If , day names are displayed. - a + a - + + + GLib.Property(Name="show_day_names") + + Property @@ -515,11 +541,15 @@ void HandleDaySelected (object obj, EventArgs args) If , a heading is displayed - a + a - + + + GLib.Property(Name="show_heading") + + Property @@ -529,11 +559,15 @@ void HandleDaySelected (object obj, EventArgs args) The selected month as a number between 0 and 11. - a + a - + + + GLib.Property(Name="month") + + Property @@ -543,11 +577,15 @@ void HandleDaySelected (object obj, EventArgs args) The selected year. - a + a - + + + GLib.Property(Name="year") + + Property @@ -557,11 +595,15 @@ void HandleDaySelected (object obj, EventArgs args) If , the selected month can not be changed. - a + a - + + + GLib.Property(Name="no_month_change") + + Property @@ -571,11 +613,11 @@ void HandleDaySelected (object obj, EventArgs args) Set the display options for this Calendar. - One or more values from , combined using a bit-wise OR. + One or more values from , combined using a bit-wise OR. This method allows fine control over which parts of the Calendar, such as day names, are displayed. The describe the choices in more detail. - \ No newline at end of file + diff --git a/doc/en/Gtk/CalendarDisplayOptions.xml b/doc/en/Gtk/CalendarDisplayOptions.xml index 46ec2a71a..f2d8cd31d 100644 --- a/doc/en/Gtk/CalendarDisplayOptions.xml +++ b/doc/en/Gtk/CalendarDisplayOptions.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.CalendarDisplayOptionsGType)) + + + System.Flags + + @@ -107,4 +101,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Callback.xml b/doc/en/Gtk/Callback.xml index ef36e1aca..5e991ae96 100644 --- a/doc/en/Gtk/Callback.xml +++ b/doc/en/Gtk/Callback.xml @@ -1,27 +1,18 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. A delegate that can be run over a series of widgets. Invoked by and . System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - diff --git a/doc/en/Gtk/CallbackInvoker.xml b/doc/en/Gtk/CallbackInvoker.xml deleted file mode 100644 index 842cac9b6..000000000 --- a/doc/en/Gtk/CallbackInvoker.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - gtk-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] - 1.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - An class to invoke callback methods; mostly internal. Used by . - Offer an example here. - - - System.ValueType - - - - - - - Method - - System.Void - - - - - - Do not use. - a - Do not use. - - - - \ No newline at end of file diff --git a/doc/en/Gtk/CallbackMarshal.xml b/doc/en/Gtk/CallbackMarshal.xml index e10d94523..236470e0b 100644 --- a/doc/en/Gtk/CallbackMarshal.xml +++ b/doc/en/Gtk/CallbackMarshal.xml @@ -1,27 +1,21 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. Delegate for specifying a function signature for marshalling callbacks. FIXME: provide an example here System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -32,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/CancelPositionArgs.xml b/doc/en/Gtk/CancelPositionArgs.xml index e03ce1d1c..fe0916ab7 100644 --- a/doc/en/Gtk/CancelPositionArgs.xml +++ b/doc/en/Gtk/CancelPositionArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,9 +25,8 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. - \ No newline at end of file + diff --git a/doc/en/Gtk/CancelPositionHandler.xml b/doc/en/Gtk/CancelPositionHandler.xml index 5dcf4e2ea..940459a2c 100644 --- a/doc/en/Gtk/CancelPositionHandler.xml +++ b/doc/en/Gtk/CancelPositionHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/CellEditable.xml b/doc/en/Gtk/CellEditable.xml index b3db5f004..e17fb2192 100644 --- a/doc/en/Gtk/CellEditable.xml +++ b/doc/en/Gtk/CellEditable.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -14,16 +12,14 @@ - GLib.IWrapper - - + Method System.Void @@ -42,7 +38,7 @@ - + Method System.Void @@ -58,7 +54,7 @@ - + Method System.Void @@ -74,7 +70,7 @@ - + Event System.EventHandler @@ -86,7 +82,7 @@ - + Event System.EventHandler @@ -98,4 +94,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/CellLayout.xml b/doc/en/Gtk/CellLayout.xml index b5b247873..922bca8ec 100644 --- a/doc/en/Gtk/CellLayout.xml +++ b/doc/en/Gtk/CellLayout.xml @@ -1,27 +1,23 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Manages layout for table cells. - GLib.IWrapper - - + Method System.Void @@ -41,7 +37,7 @@ - + Method System.Void @@ -65,7 +61,7 @@ - + Method System.Void @@ -89,7 +85,7 @@ - + Method System.Void @@ -116,7 +112,7 @@ - + Method System.Void @@ -132,7 +128,7 @@ - + Method System.Void @@ -144,7 +140,7 @@ - + Method System.Void @@ -165,7 +161,7 @@ - + Method System.Void @@ -182,4 +178,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/CellLayoutDataFunc.xml b/doc/en/Gtk/CellLayoutDataFunc.xml index 8a5dd5fae..972470cbb 100644 --- a/doc/en/Gtk/CellLayoutDataFunc.xml +++ b/doc/en/Gtk/CellLayoutDataFunc.xml @@ -1,31 +1,24 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. - Delegate class used as an argument for ; see that method's documentation for usage details. + Delegate class used as an argument for ; see that method's documentation for usage details. - + System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void diff --git a/doc/en/Gtk/CellRenderer.xml b/doc/en/Gtk/CellRenderer.xml index d20d9895c..08e1ce437 100644 --- a/doc/en/Gtk/CellRenderer.xml +++ b/doc/en/Gtk/CellRenderer.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -36,14 +34,7 @@ Gtk.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -157,7 +148,6 @@ Internal constructor Pointer to the C object. - An instance of CellRenderer, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -174,10 +164,14 @@ The fixed height. an object of type - an object of type + an object of type - + + + GLib.Property(Name="height") + + Property @@ -189,10 +183,14 @@ Display the cell. an object of type - an object of type + an object of type - + + + GLib.Property(Name="visible") + + Property @@ -204,10 +202,14 @@ The x-align. an object of type - an object of type + an object of type - + + + GLib.Property(Name="xalign") + + Property @@ -219,10 +221,14 @@ The fixed width. an object of type - an object of type + an object of type - + + + GLib.Property(Name="width") + + Property @@ -234,10 +240,14 @@ The y-align. an object of type - an object of type + an object of type - + + + GLib.Property(Name="yalign") + + Property @@ -249,10 +259,14 @@ Row has children. an object of type - an object of type + an object of type - + + + GLib.Property(Name="is_expander") + + Property @@ -264,10 +278,14 @@ The ypad. an object of type - an object of type + an object of type - + + + GLib.Property(Name="ypad") + + Property @@ -279,10 +297,14 @@ The xpad. an object of type - an object of type + an object of type - + + + GLib.Property(Name="xpad") + + Property @@ -294,10 +316,14 @@ Row is an expander row, and is expanded. an object of type - an object of type + an object of type - + + + GLib.Property(Name="is_expanded") + + Property @@ -309,10 +335,14 @@ Editable mode of the CellRenderer. an object of type - an object of type + an object of type - + + + GLib.Property(Name="mode") + + Property @@ -324,10 +354,14 @@ Cell background color as a . a - a + a - + + + GLib.Property(Name="cell_background_gdk") + + Property @@ -339,10 +373,14 @@ Cell background color as a . a - a + a - + + + GLib.Property(Name="cell_background") + + Property @@ -352,7 +390,7 @@ GType Property. - a + a Returns the native value for . @@ -366,10 +404,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -377,7 +418,6 @@ Protected constructor. - a @@ -474,7 +514,11 @@ editing when the user presses Escape. - + + + GLib.Signal(CName="editing-canceled") + + Method @@ -512,10 +556,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="sensitive") + + Event @@ -527,7 +575,11 @@ To be added To be added - + + + GLib.Signal(CName="editing-started") + + Method @@ -560,5 +612,22 @@ To be added + + + Method + + System.Void + + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gtk/CellRendererCombo.xml b/doc/en/Gtk/CellRendererCombo.xml index a77a70a2d..68d11c39a 100644 --- a/doc/en/Gtk/CellRendererCombo.xml +++ b/doc/en/Gtk/CellRendererCombo.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,14 +17,7 @@ The combo cell renderer takes care of adding a text cell renderer to the combo b Gtk.CellRendererText - - GLib.IWrapper - - - System.IDisposable - - @@ -51,10 +42,13 @@ The combo cell renderer takes care of adding a text cell renderer to the combo b Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -65,7 +59,6 @@ The combo cell renderer takes care of adding a text cell renderer to the combo b Internal constructor a - a This is not typically used by C# code. @@ -76,7 +69,6 @@ The combo cell renderer takes care of adding a text cell renderer to the combo b Default constructor - a @@ -89,7 +81,7 @@ The combo cell renderer takes care of adding a text cell renderer to the combo b GType Property. - a + a Returns the native value for . @@ -102,7 +94,7 @@ The combo cell renderer takes care of adding a text cell renderer to the combo b Specifies the model column which holds the possible values for the combo box. - a + a this refers to the model specified in the model property, not the model backing the tree view to which this cell renderer is attached. @@ -110,7 +102,11 @@ The combo cell renderer takes care of adding a text cell renderer to the combo b automatically adds a text cell renderer for this column to its combo box. - + + + GLib.Property(Name="text_column") + + Property @@ -120,10 +116,14 @@ The combo cell renderer takes care of adding a text cell renderer to the combo b Holds a tree model containing the possible values for the combo box. - a + a Use the property to specify the column holding the values. - + + + GLib.Property(Name="model") + + Property @@ -133,9 +133,13 @@ The combo cell renderer takes care of adding a text cell renderer to the combo b Whether to use an entry. - a + a If , the cell renderer will include an entry and allow to enter values other than the ones in the popup list. - + + + GLib.Property(Name="has_entry") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/CellRendererMode.xml b/doc/en/Gtk/CellRendererMode.xml index 6df08ef11..249cd4535 100644 --- a/doc/en/Gtk/CellRendererMode.xml +++ b/doc/en/Gtk/CellRendererMode.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.CellRendererModeGType)) + + @@ -79,4 +70,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/CellRendererPixbuf.xml b/doc/en/Gtk/CellRendererPixbuf.xml index 88820a5e9..3bbfb70f2 100644 --- a/doc/en/Gtk/CellRendererPixbuf.xml +++ b/doc/en/Gtk/CellRendererPixbuf.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gtk.CellRenderer - - GLib.IWrapper - - - System.IDisposable - - @@ -48,7 +39,6 @@ Internal constructor Pointer to the C object. - An instance of CellRendererPixbuf, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -61,7 +51,6 @@ Creates a new - an object of type This is the default constructor for . @@ -77,10 +66,14 @@ for closed expander. an object of type - an object of type + an object of type - + + + GLib.Property(Name="pixbuf_expander_closed") + + Property @@ -92,10 +85,14 @@ The to render. an object of type - an object of type + an object of type - + + + GLib.Property(Name="pixbuf") + + Property @@ -108,10 +105,14 @@ for open expander. an object of type - an object of type + an object of type - + + + GLib.Property(Name="pixbuf_expander_open") + + Property @@ -123,10 +124,14 @@ Render detail to pass to the theme engine. a - a + a - + + + GLib.Property(Name="stock_detail") + + Property @@ -138,10 +143,14 @@ The stock ID of the stock icon to render. a - a + a - + + + GLib.Property(Name="stock_id") + + Property @@ -151,7 +160,7 @@ GType Property. - a + a Returns the native value for . @@ -165,10 +174,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -178,9 +190,13 @@ The size of the rendered icon. - a + a - + + + GLib.Property(Name="stock_size") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/CellRendererProgress.xml b/doc/en/Gtk/CellRendererProgress.xml index c8d93aeb5..829759fec 100644 --- a/doc/en/Gtk/CellRendererProgress.xml +++ b/doc/en/Gtk/CellRendererProgress.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Gtk.CellRenderer - - GLib.IWrapper - - - System.IDisposable - - @@ -48,10 +39,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -62,7 +56,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -73,7 +66,6 @@ Default constructor - a @@ -86,7 +78,7 @@ GType Property. - a + a Returns the native value for . @@ -99,10 +91,14 @@ Determines the label which will be drawn over the progress bar. - a + a Setting this property to causes the default label to be displayed. Setting this property to an empty string causes no label to be displayed. - + + + GLib.Property(Name="text") + + Property @@ -112,9 +108,13 @@ Determines the percentage to which the progress bar will be "filled in". - a + a Allowed values are between 0 and 100. - + + + GLib.Property(Name="value") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/CellRendererSepText.xml b/doc/en/Gtk/CellRendererSepText.xml deleted file mode 100644 index 6c2e34f24..000000000 --- a/doc/en/Gtk/CellRendererSepText.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - - gtk-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Renders a separator in a cell. - - - - Gtk.CellRendererText - - - - GLib.IWrapper - - - System.IDisposable - - - - - - - Method - - System.Void - - - - Disposes the resources associated with this object. - - - - - - - Constructor - - - - - - Protected Constructor. - a - a - Chain to this constructor if you have manually registered a native value for your subclass. - - - - - Constructor - - - - - - Internal constructor - a - a - This is not typically used by C# code. - - - - - Constructor - - - - Protected constructor. - a - - - - - diff --git a/doc/en/Gtk/CellRendererState.xml b/doc/en/Gtk/CellRendererState.xml index 484e539db..e8c165d60 100644 --- a/doc/en/Gtk/CellRendererState.xml +++ b/doc/en/Gtk/CellRendererState.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.CellRendererStateGType)) + + + System.Flags + + @@ -105,4 +99,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/CellRendererText.xml b/doc/en/Gtk/CellRendererText.xml index fd4ee5d7f..f9f1e045c 100644 --- a/doc/en/Gtk/CellRendererText.xml +++ b/doc/en/Gtk/CellRendererText.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gtk.CellRenderer - - GLib.IWrapper - - - System.IDisposable - - @@ -48,7 +39,6 @@ Internal constructor Pointer to the C object. - An instance of CellRendererText, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -61,7 +51,6 @@ Creates a new . - an object of type The default constructor. @@ -76,7 +65,7 @@ Sets the height of a renderer to explicitly be determined by the . an object of type - an object of type + an object of type @@ -92,10 +81,14 @@ Font size. an object of type - an object of type + an object of type - + + + GLib.Property(Name="size") + + Property @@ -107,10 +100,14 @@ Font scaling factor. an object of type - an object of type + an object of type - + + + GLib.Property(Name="scale") + + Property @@ -122,10 +119,14 @@ Foreground color as a string. an object of type - an object of type + an object of type - + + + GLib.Property(Name="foreground") + + Property @@ -137,10 +138,14 @@ Whether to strike through the text. an object of type - an object of type + an object of type - + + + GLib.Property(Name="strikethrough") + + Property @@ -152,10 +157,14 @@ The font description as a an object of type - an object of type + an object of type - + + + GLib.Property(Name="font_desc") + + Property @@ -167,10 +176,14 @@ Font description as a . an object of type - an object of type + an object of type - + + + GLib.Property(Name="font") + + Property @@ -182,10 +195,14 @@ Font size in points. an object of type - an object of type + an object of type - + + + GLib.Property(Name="size_points") + + Property @@ -197,10 +214,14 @@ Offset of text above the baseline (below the baseline if rise is negative). an object of type - an object of type + an object of type - + + + GLib.Property(Name="rise") + + Property @@ -212,10 +233,14 @@ Text to render. an object of type - an object of type + an object of type - + + + GLib.Property(Name="text") + + Property @@ -227,10 +252,14 @@ Font weight. an object of type - an object of type + an object of type - + + + GLib.Property(Name="weight") + + Property @@ -242,10 +271,14 @@ Background color as a . an object of type - an object of type + an object of type - + + + GLib.Property(Name="background") + + Property @@ -257,10 +290,14 @@ Whether the text can be modified by the user. an object of type - an object of type + an object of type - + + + GLib.Property(Name="editable") + + Property @@ -272,10 +309,14 @@ Font variant. an object of type - an object of type + an object of type - + + + GLib.Property(Name="variant") + + Property @@ -287,10 +328,14 @@ Background color as a . an object of type - an object of type + an object of type - + + + GLib.Property(Name="background_gdk") + + Property @@ -302,10 +347,14 @@ Name of the font family, e.g. Sans, Helvetica, Times, Monospace. an object of type - an object of type + an object of type - + + + GLib.Property(Name="family") + + Property @@ -317,10 +366,14 @@ A list of style attributes to apply to the text of the renderer. an object of type - an object of type + an object of type - + + + GLib.Property(Name="attributes") + + Property @@ -332,10 +385,14 @@ Font stretch. an object of type - an object of type + an object of type - + + + GLib.Property(Name="stretch") + + Property @@ -347,10 +404,14 @@ Marked up text to render. an object of type - an object of type + an object of type - + + + GLib.Property(Name="markup") + + Property @@ -362,10 +423,14 @@ Font style. an object of type - an object of type + an object of type - + + + GLib.Property(Name="style") + + Property @@ -377,10 +442,14 @@ Style of underline for this text. an object of type - an object of type + an object of type - + + + GLib.Property(Name="underline") + + Property @@ -392,10 +461,14 @@ Foreground color as a . an object of type - an object of type + an object of type - + + + GLib.Property(Name="foreground_gdk") + + Event @@ -408,7 +481,11 @@ - + + + GLib.Signal(CName="edited") + + Property @@ -418,7 +495,7 @@ GType Property. - a + a Returns the native value for . @@ -449,10 +526,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -462,11 +542,15 @@ Whether or not to keep all text in a single paragraph. - a + a - + + + GLib.Property(Name="single_paragraph_mode") + + Property @@ -476,13 +560,17 @@ The language this text is in, as an ISO code. - a + a Pango can use this as a hint when rendering the text. If you don't understand this parameter, you probably don't need it. - + + + GLib.Property(Name="language") + + Property @@ -492,10 +580,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="ellipsize") + + Property @@ -505,9 +597,13 @@ To be added - a + a To be added - + + + GLib.Property(Name="width_chars") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/CellRendererToggle.xml b/doc/en/Gtk/CellRendererToggle.xml index 2ae55dfe3..092b43f36 100644 --- a/doc/en/Gtk/CellRendererToggle.xml +++ b/doc/en/Gtk/CellRendererToggle.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -54,14 +52,7 @@ void crt_toggled(object o, ToggledArgs args) { Gtk.CellRenderer - - GLib.IWrapper - - - System.IDisposable - - @@ -85,7 +76,6 @@ void crt_toggled(object o, ToggledArgs args) { Internal constructor Pointer to the C object. - An instance of CellRendererToggle, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -98,7 +88,6 @@ void crt_toggled(object o, ToggledArgs args) { Creates a new . - an object of type The default constructor. @@ -113,10 +102,14 @@ void crt_toggled(object o, ToggledArgs args) { The can be activated. an object of type - an object of type + an object of type - + + + GLib.Property(Name="activatable") + + Property @@ -128,10 +121,14 @@ void crt_toggled(object o, ToggledArgs args) { The toggle state of the . an object of type - an object of type + an object of type - + + + GLib.Property(Name="active") + + Property @@ -143,10 +140,14 @@ void crt_toggled(object o, ToggledArgs args) { Draw the as a . an object of type - an object of type + an object of type - + + + GLib.Property(Name="radio") + + Event @@ -158,7 +159,11 @@ void crt_toggled(object o, ToggledArgs args) { Emitted when the cell is clicked. - + + + GLib.Signal(CName="toggled") + + Property @@ -170,10 +175,14 @@ void crt_toggled(object o, ToggledArgs args) { The inconsistent state of the button. a - a + a - + + + GLib.Property(Name="inconsistent") + + Property @@ -183,7 +192,7 @@ void crt_toggled(object o, ToggledArgs args) { GType Property. - a + a Returns the native value for . @@ -212,9 +221,12 @@ void crt_toggled(object o, ToggledArgs args) { Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/CellView.xml b/doc/en/Gtk/CellView.xml index 7d049dcc7..7f78e821b 100644 --- a/doc/en/Gtk/CellView.xml +++ b/doc/en/Gtk/CellView.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,17 +17,7 @@ Gtk.CellLayout - - GLib.IWrapper - - - Atk.Implementor - - - System.IDisposable - - @@ -79,7 +67,7 @@ - + Method System.Void @@ -99,7 +87,7 @@ - + Method System.Void @@ -120,7 +108,7 @@ - + Method System.Void @@ -141,7 +129,7 @@ - + Method System.Void @@ -167,7 +155,7 @@ - + Method System.Void @@ -176,12 +164,15 @@ - Clears all existing attributes previously set with - . - a + + a + + + To be added. + - + Method System.Void @@ -203,10 +194,13 @@ Internal constructor a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -217,7 +211,6 @@ Internal constructor a - a @@ -228,7 +221,6 @@ Creates a new widget. - a @@ -242,7 +234,6 @@ Creates a new widget, adds a to it, and makes its show . a - a @@ -255,7 +246,7 @@ GType Property. - a + a Returns the native value for . @@ -268,10 +259,14 @@ The background color as a - a + a - + + + GLib.Property(Name="background_gdk") + + Property @@ -280,10 +275,14 @@ Background color as a string. - a + a - + + + GLib.Property(Name="background") + + Property @@ -292,7 +291,7 @@ Sets the model for the CellView. - a + a If the CellView already has a model set, it will remove it before setting the new model. If is , then it will unset the old model. @@ -304,7 +303,7 @@ The background color - a + a @@ -317,12 +316,12 @@ The row of the model that is currently displayed - a , or to unset. + a , or to unset. If the path is unset, then the contents of the cellview "stick" at their last value; this is not normally a desired result, but may be a needed intermediate state if say, the model for the becomes temporarily empty. - + Method System.Void @@ -344,14 +343,20 @@ - + Method System.Void - + + + + System.ParamArray + + + Sets the attribute to model column bindings for a renderer. @@ -370,7 +375,6 @@ Creates a new widget, adds a to it, and makes it show . a - a @@ -383,9 +387,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gtk/CellViewMenuItem.xml b/doc/en/Gtk/CellViewMenuItem.xml deleted file mode 100644 index 48c5c7d3b..000000000 --- a/doc/en/Gtk/CellViewMenuItem.xml +++ /dev/null @@ -1,162 +0,0 @@ - - - - gtk-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - A cell view that's used to represent a menu item. - - - - - Gtk.MenuItem - - - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - - - - - - Method - - Gtk.CellViewMenuItem - - - - - - Creates a new widget, adds a to it, and makes it show . - a , some HTML - a - - - - - - - Method - - System.Void - - - - Disposes the resources associated with this object. - - - - - - - Constructor - - - - - - Protected Constructor. - a - a - Chain to this constructor if you have manually registered a native value for your subclass. - - - - - Constructor - - - - - - Internal constructor - a - a - This is not typically used by C# code. - - - - - Constructor - - - - Public constructor. - a - - - - - - - Constructor - - - - - - - Public constructor. - a - a - a - - - - - - - Constructor - - - - - - Public constructor. - a - a - - - - - - - Property - - GLib.GType - - - - GType Property. - a - Returns the native value for . - - - - - Constructor - - - - - - Creates a new widget, adds a to it, and makes it show . - a - a - - - - - diff --git a/doc/en/Gtk/ChangeCurrentPageArgs.xml b/doc/en/Gtk/ChangeCurrentPageArgs.xml index ae837e607..44915518c 100644 --- a/doc/en/Gtk/ChangeCurrentPageArgs.xml +++ b/doc/en/Gtk/ChangeCurrentPageArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The offset of the notebook page to display. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/ChangeCurrentPageHandler.xml b/doc/en/Gtk/ChangeCurrentPageHandler.xml index 910f3de49..8346ca839 100644 --- a/doc/en/Gtk/ChangeCurrentPageHandler.xml +++ b/doc/en/Gtk/ChangeCurrentPageHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ChangeValueArgs.xml b/doc/en/Gtk/ChangeValueArgs.xml index a5788f181..3b2111e37 100644 --- a/doc/en/Gtk/ChangeValueArgs.xml +++ b/doc/en/Gtk/ChangeValueArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The type of incrementation or decrementation to perform. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/ChangeValueHandler.xml b/doc/en/Gtk/ChangeValueHandler.xml index d5c1dbd94..2d412cba3 100644 --- a/doc/en/Gtk/ChangeValueHandler.xml +++ b/doc/en/Gtk/ChangeValueHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ChangedArgs.xml b/doc/en/Gtk/ChangedArgs.xml index 9b72d4ef9..91dae6417 100644 --- a/doc/en/Gtk/ChangedArgs.xml +++ b/doc/en/Gtk/ChangedArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,8 +36,9 @@ The action which has just been activated. - a - + a + + diff --git a/doc/en/Gtk/ChangedHandler.xml b/doc/en/Gtk/ChangedHandler.xml index 962ff6b26..241e838aa 100644 --- a/doc/en/Gtk/ChangedHandler.xml +++ b/doc/en/Gtk/ChangedHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/CheckButton.xml b/doc/en/Gtk/CheckButton.xml index e9ccbff71..9761bb7a0 100644 --- a/doc/en/Gtk/CheckButton.xml +++ b/doc/en/Gtk/CheckButton.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -67,20 +65,7 @@ class CheckButtonSample Gtk.ToggleButton - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -121,7 +106,6 @@ class CheckButtonSample Internal constructor Pointer to the C object. - An instance of , wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -134,7 +118,6 @@ class CheckButtonSample Constructor - A new @@ -148,7 +131,6 @@ class CheckButtonSample Constructor A string for the . - A new with a @@ -161,7 +143,7 @@ class CheckButtonSample GType Property. - a + a Returns the native value for . @@ -175,9 +157,12 @@ class CheckButtonSample Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/CheckMenuItem.xml b/doc/en/Gtk/CheckMenuItem.xml index 6f8b689f3..58f72237e 100644 --- a/doc/en/Gtk/CheckMenuItem.xml +++ b/doc/en/Gtk/CheckMenuItem.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,20 +19,7 @@ Gtk.MenuItem - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -70,7 +55,6 @@ Internal constructor Pointer to the C object. - An instance of CheckMenuItem, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -83,7 +67,6 @@ Creates a CheckMenuItem with no label - A new CheckMenuItem @@ -97,7 +80,6 @@ Create a new CheckMenuItem with the specified . The text to appear on the menu item. - A new CheckMenuItem The text label will be created using , so underscores in the label indicate the mnemonic for the menu item. @@ -115,14 +97,18 @@ Manages whether the CheckMenuItem is in the 'inconsistent' state. to mark the check box as inconsistent, otherwise. - - if this CheckMenuItem is in the inconsistent state, otherwise. + + if this CheckMenuItem is in the inconsistent state, otherwise. If the user has selected a range of elements (such as some text or spreadsheet cells) that are affected by a boolean setting, and the current values in that range are inconsistent, you may want to display the check in an "in between" state. This property turns on "in between" display. Normally you would turn off the inconsistent state again if the user explicitly selects a setting. This has to be done manually, this property only affects visual appearance, it doesn't affect the semantics of the widget. - + + + GLib.Property(Name="inconsistent") + + Property @@ -135,10 +121,14 @@ The 'active' state of the CheckMenuItem if the menu item has been set active, otherwise. - + - + + + GLib.Property(Name="active") + + Event @@ -152,7 +142,11 @@ Connect to this event with a standard . - + + + GLib.Signal(CName="toggled") + + Property @@ -162,7 +156,7 @@ GType Property. - a + a Returns the native value for . @@ -188,10 +182,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -201,11 +198,15 @@ Whether the menu item looks like a radio menu item. - a + a - + + + GLib.Property(Name="draw_as_radio") + + Property @@ -214,11 +215,15 @@ Whether this menu item can be toggled. - a + a - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -233,4 +238,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ChildAnchorInsertedArgs.xml b/doc/en/Gtk/ChildAnchorInsertedArgs.xml index fd61cd3b2..919c99b4e 100644 --- a/doc/en/Gtk/ChildAnchorInsertedArgs.xml +++ b/doc/en/Gtk/ChildAnchorInsertedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The anchor that was inserted. - A + A @@ -52,9 +48,9 @@ The position where the anchor was inserted. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/ChildAnchorInsertedHandler.xml b/doc/en/Gtk/ChildAnchorInsertedHandler.xml index 4ffedef7a..4033b26b1 100644 --- a/doc/en/Gtk/ChildAnchorInsertedHandler.xml +++ b/doc/en/Gtk/ChildAnchorInsertedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ChildAttachedArgs.xml b/doc/en/Gtk/ChildAttachedArgs.xml index b4185d7d1..19a162221 100644 --- a/doc/en/Gtk/ChildAttachedArgs.xml +++ b/doc/en/Gtk/ChildAttachedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The child widget that was attached. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/ChildAttachedHandler.xml b/doc/en/Gtk/ChildAttachedHandler.xml index fd15c59e6..dab7707db 100644 --- a/doc/en/Gtk/ChildAttachedHandler.xml +++ b/doc/en/Gtk/ChildAttachedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ChildDetachedArgs.xml b/doc/en/Gtk/ChildDetachedArgs.xml index a549f26df..505fc981e 100644 --- a/doc/en/Gtk/ChildDetachedArgs.xml +++ b/doc/en/Gtk/ChildDetachedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The child widget that was detached. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/ChildDetachedHandler.xml b/doc/en/Gtk/ChildDetachedHandler.xml index 030bd11f2..925252889 100644 --- a/doc/en/Gtk/ChildDetachedHandler.xml +++ b/doc/en/Gtk/ChildDetachedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ChildNotifiedArgs.xml b/doc/en/Gtk/ChildNotifiedArgs.xml index 3c46e1994..63370e73b 100644 --- a/doc/en/Gtk/ChildNotifiedArgs.xml +++ b/doc/en/Gtk/ChildNotifiedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ For internal use. - A , pointer to the underlying C object. + A , pointer to the underlying C object. - \ No newline at end of file + diff --git a/doc/en/Gtk/ChildNotifiedHandler.xml b/doc/en/Gtk/ChildNotifiedHandler.xml index 10f0fe442..72f231389 100644 --- a/doc/en/Gtk/ChildNotifiedHandler.xml +++ b/doc/en/Gtk/ChildNotifiedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ChildPropertyAttribute.xml b/doc/en/Gtk/ChildPropertyAttribute.xml index 025389fa0..6a625f80b 100644 --- a/doc/en/Gtk/ChildPropertyAttribute.xml +++ b/doc/en/Gtk/ChildPropertyAttribute.xml @@ -4,19 +4,17 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Attribute used to label a child property - + + System.Attribute - @@ -28,8 +26,8 @@ Attribute constructor the (C/GObject) name of the child property - a - + + @@ -41,9 +39,10 @@ The (C/GObject) name of the child property - a - + a + + - \ No newline at end of file + diff --git a/doc/en/Gtk/ClientEventArgs.xml b/doc/en/Gtk/ClientEventArgs.xml index 2c417ab9e..77a47125e 100644 --- a/doc/en/Gtk/ClientEventArgs.xml +++ b/doc/en/Gtk/ClientEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ Get the event that was received from another application. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/ClientEventHandler.xml b/doc/en/Gtk/ClientEventHandler.xml index 8056863b0..7fcd0e08a 100644 --- a/doc/en/Gtk/ClientEventHandler.xml +++ b/doc/en/Gtk/ClientEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Clipboard.xml b/doc/en/Gtk/Clipboard.xml index 288e3e3d7..7463e60e2 100644 --- a/doc/en/Gtk/Clipboard.xml +++ b/doc/en/Gtk/Clipboard.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,11 +22,7 @@ GLib.Object - - GLib.IWrapper - - @@ -113,7 +107,6 @@ Internal constructor Pointer to the C object. - An instance of Clipboard, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -127,7 +120,7 @@ The owner of the clipboard, if any; otherwise . - an object of type + an object of type If the clipboard contents callbacks were set with , and the or has not been subsequently called, it will return the owner set by . @@ -139,7 +132,7 @@ Sets the contents of the clipboard to the given UTF-8 string. - a + a Gtk# will make a copy of the text and take responsibility for responding for requests for the text, and for converting the text into the requested format. @@ -166,7 +159,7 @@ The associated with the clipboard. - a + a @@ -258,7 +251,7 @@ GType Property. - a + a Returns the native value for . @@ -306,10 +299,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -317,7 +313,6 @@ Proctected constructor. - a @@ -377,7 +372,7 @@ To be added - a + a To be added @@ -392,7 +387,11 @@ To be added To be added - + + + GLib.Signal(CName="owner_change") + + Method @@ -495,4 +494,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ClipboardClearFunc.xml b/doc/en/Gtk/ClipboardClearFunc.xml index c0774da7a..818e8e2d3 100644 --- a/doc/en/Gtk/ClipboardClearFunc.xml +++ b/doc/en/Gtk/ClipboardClearFunc.xml @@ -1,33 +1,23 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. Delegate for a function to run when the clipboard is cleared. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - - System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ClipboardGetFunc.xml b/doc/en/Gtk/ClipboardGetFunc.xml index 34503b4a6..35769188e 100644 --- a/doc/en/Gtk/ClipboardGetFunc.xml +++ b/doc/en/Gtk/ClipboardGetFunc.xml @@ -1,27 +1,20 @@ - + gtk-sharp 2.0.0.0 - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. Delegate for a function to call when getting data from the clipboard. TODO: add example code here System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - diff --git a/doc/en/Gtk/ClipboardImageReceivedFunc.xml b/doc/en/Gtk/ClipboardImageReceivedFunc.xml index 22d5688d7..68a67759e 100644 --- a/doc/en/Gtk/ClipboardImageReceivedFunc.xml +++ b/doc/en/Gtk/ClipboardImageReceivedFunc.xml @@ -1,29 +1,20 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -32,4 +23,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ClipboardReceivedFunc.xml b/doc/en/Gtk/ClipboardReceivedFunc.xml index af69cf188..897b9cda6 100644 --- a/doc/en/Gtk/ClipboardReceivedFunc.xml +++ b/doc/en/Gtk/ClipboardReceivedFunc.xml @@ -1,27 +1,19 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Delegate that specifies the shape of methods that run when the clipboard receives data. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -30,4 +22,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ClipboardTargetsReceivedFunc.xml b/doc/en/Gtk/ClipboardTargetsReceivedFunc.xml index 48e3d1673..040700868 100644 --- a/doc/en/Gtk/ClipboardTargetsReceivedFunc.xml +++ b/doc/en/Gtk/ClipboardTargetsReceivedFunc.xml @@ -1,29 +1,21 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - Delegate class for ; called with a list of possible targets for clipboard data. See that method's documentation for more details. - + To be added. + To be added. + To be added. + Delegate class for ; called with a list of possible targets for clipboard data. See that method's documentation for more details. + System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void diff --git a/doc/en/Gtk/ClipboardTextReceivedFunc.xml b/doc/en/Gtk/ClipboardTextReceivedFunc.xml index 4f4992340..29c6b3059 100644 --- a/doc/en/Gtk/ClipboardTextReceivedFunc.xml +++ b/doc/en/Gtk/ClipboardTextReceivedFunc.xml @@ -1,27 +1,19 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Delegate for a function to be called when an application receives text from the clipboard. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -30,4 +22,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ColorButton.xml b/doc/en/Gtk/ColorButton.xml index c36214679..e034c4492 100644 --- a/doc/en/Gtk/ColorButton.xml +++ b/doc/en/Gtk/ColorButton.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,17 +14,7 @@ Gtk.Button - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -62,10 +50,13 @@ Protected constructor. a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -76,7 +67,6 @@ Constructor; for internal use only. a , pointer to underlying C object. - a @@ -87,7 +77,6 @@ Constructor for public use. - a @@ -101,7 +90,6 @@ Constructor for public use. a , the color to make the button. - a @@ -114,7 +102,7 @@ Do not use. - a + a @@ -127,10 +115,14 @@ Whether or not to make this button transparent. - a + a - + + + GLib.Property(Name="use_alpha") + + Property @@ -140,10 +132,14 @@ The color this widget is set to. - a + a - + + + GLib.Property(Name="color") + + Property @@ -153,10 +149,14 @@ The title for this button. - a + a - + + + GLib.Property(Name="title") + + Property @@ -166,10 +166,14 @@ How transparent to make this button, if transparency is being used. - a + a - + + + GLib.Property(Name="alpha") + + Event @@ -181,6 +185,10 @@ Event that happens when the color of this ColorButton is set. - + + + GLib.Signal(CName="color_set") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/ColorSelection.xml b/doc/en/Gtk/ColorSelection.xml index 7b4415b52..e51e22c4d 100644 --- a/doc/en/Gtk/ColorSelection.xml +++ b/doc/en/Gtk/ColorSelection.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,20 +18,7 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -57,7 +42,6 @@ Internal constructor Pointer to the C object. - An instance of ColorSelection, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -70,7 +54,6 @@ The main way to create a new ColorSelection - A new ColorSelection @@ -85,7 +68,7 @@ Get the alpha value of the previous color A new setting for the 'previous' alpha value. - The previous alpha value - an integer between 0 and 65535. + The previous alpha value - an integer between 0 and 65535. It may be confusing for a user if this property is set with no interaction from them. @@ -102,10 +85,14 @@ Manage the current color of the ColorSelection. A color to set as the 'current' color. - The currently selected color in this ColorSelection. + The currently selected color in this ColorSelection. - + + + GLib.Property(Name="current_color") + + Property @@ -118,11 +105,15 @@ Manage whether or not the ColorSelection displays a palette. to display a palette in the ColorSelection, otherwise. - - if a palette is currently part of the ColorSelection, otherwise. + + if a palette is currently part of the ColorSelection, otherwise. - + + + GLib.Property(Name="has_palette") + + Property @@ -135,11 +126,15 @@ Manage whether or not opacity is part of the ColorSelection. to display opacity controls, otherwise. - - if the user can edit opacity, otherwise. + + if the user can edit opacity, otherwise. - + + + GLib.Property(Name="has_opacity_control") + + Property @@ -151,10 +146,14 @@ Manage the current alpha value of the ColorSelection. Sets the current opacity. - The existing opacity of this ColorSelection. + The existing opacity of this ColorSelection. - + + + GLib.Property(Name="current_alpha") + + Event @@ -166,7 +165,11 @@ This event is fired when the current color changes in the ColorSelection. - + + + GLib.Signal(CName="color_changed") + + Property @@ -178,7 +181,7 @@ The color that was selected before the current one. An object of type - a + a @@ -223,8 +226,8 @@ The current state of the ColorSelection - - if the user is currently dragging a color around, if the selection has stopped. + + if the user is currently dragging a color around, if the selection has stopped. @@ -238,7 +241,7 @@ GType Property. - a + a Returns the native value for . @@ -264,10 +267,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -276,9 +282,13 @@ Deprecated. Do not use. - a + a Before it was deprecated, this property set the policy controlling when ColorChanged signals are emitted. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/ColorSelectionChangePaletteFunc.xml b/doc/en/Gtk/ColorSelectionChangePaletteFunc.xml index 2a9947f45..f67f1accd 100644 --- a/doc/en/Gtk/ColorSelectionChangePaletteFunc.xml +++ b/doc/en/Gtk/ColorSelectionChangePaletteFunc.xml @@ -1,27 +1,19 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Delegate to specify function signature for methods that change the color palette in a . System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -30,4 +22,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ColorSelectionChangePaletteWithScreenFunc.xml b/doc/en/Gtk/ColorSelectionChangePaletteWithScreenFunc.xml index f9b60fe80..65d1e6de9 100644 --- a/doc/en/Gtk/ColorSelectionChangePaletteWithScreenFunc.xml +++ b/doc/en/Gtk/ColorSelectionChangePaletteWithScreenFunc.xml @@ -1,29 +1,21 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. Do not use. TODO: Not called by any other class; confirm that this code is necessary. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -33,4 +25,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ColorSelectionButton.xml b/doc/en/Gtk/ColorSelectionDialog+ColorSelectionButton.xml similarity index 52% rename from doc/en/Gtk/ColorSelectionButton.xml rename to doc/en/Gtk/ColorSelectionDialog+ColorSelectionButton.xml index 19702fee1..eb31a9c0b 100644 --- a/doc/en/Gtk/ColorSelectionButton.xml +++ b/doc/en/Gtk/ColorSelectionDialog+ColorSelectionButton.xml @@ -1,50 +1,30 @@ - - + + gtk-sharp - - - 0.0.0.0 - neutral - + 2.0.0.0 - Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details. - - For internal use. - A button used in ; not needed by developers. - Gtk.Button - - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - + + + + System.Obsolete(Message="Do not use this class. It will cause your app to crash in mysterious ways.", IsError=False) + + Constructor - - Constructor. A this button belongs to - A , pointer to underlying C color data. - A + An , pointer to underlying C color data. + Constructor. @@ -56,9 +36,13 @@ The color selection dialog this button belongs to. - A this button belongs to + A this button belongs to - \ No newline at end of file + + For internal use. + A button used in ; not needed by developers. + + diff --git a/doc/en/Gtk/ColorSelectionDialog.xml b/doc/en/Gtk/ColorSelectionDialog.xml index 313d8b4ae..be1acbaef 100644 --- a/doc/en/Gtk/ColorSelectionDialog.xml +++ b/doc/en/Gtk/ColorSelectionDialog.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,20 +17,7 @@ Gtk.Dialog - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -56,7 +41,6 @@ Internal constructor Pointer to the C object. - An instance of ColorSelectionDialog, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -72,7 +56,6 @@ The main way to construct a new color selector. A title that will appear in the window's title bar. - A new ColorSelectionDialog @@ -84,7 +67,7 @@ A button for providing help with this dialog - A standard . + A standard . @@ -96,7 +79,7 @@ A button for cancelling this dialog - A standard . + A standard . @@ -108,7 +91,7 @@ A button to confirm use of the selected color. - A standard . + A standard . @@ -120,7 +103,7 @@ An accessor to the actual ColorSelection widget. - The ColorSelection component of this . + The ColorSelection component of this . All color-related functions are available using the methods on this property, such as . @@ -135,7 +118,7 @@ GType Property. - a + a Returns the native value for . @@ -149,9 +132,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/Combo.xml b/doc/en/Gtk/Combo.xml index 734cdac2d..d683e4763 100644 --- a/doc/en/Gtk/Combo.xml +++ b/doc/en/Gtk/Combo.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -84,20 +82,12 @@ class ComboSample Gtk.HBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - + + + System.Obsolete(Message=null, IsError=False) + + @@ -151,7 +141,6 @@ class ComboSample Internal constructor Pointer to the C object. - An instance of , wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -164,7 +153,6 @@ class ComboSample Creates a new . - an object of type This is the default contructor for @@ -176,7 +164,7 @@ class ComboSample The asociated with the . - an object of type + an object of type @@ -189,7 +177,7 @@ class ComboSample The asociated with the . - an object of type + an object of type @@ -205,7 +193,7 @@ class ComboSample Does nothing. ---- REMOVE ---- See EnableArrowKeys. A . - a + a @@ -220,8 +208,8 @@ class ComboSample Specifies if the arrow (cursor) keys can be used to step through the items in the list. See also EnableArrowKeys. an object of type - - if the arrow keys can be used to step through the items in the list. + + if the arrow keys can be used to step through the items in the list. This is on by default. @@ -236,10 +224,14 @@ class ComboSample See a - a + a - + + + GLib.Property(Name="enable_arrows_always") + + Property @@ -252,11 +244,15 @@ class ComboSample Specifies whether the value entered in the text entry field must match one of the values in the list. if the value entered must match one of the values in the list. - - if the value entered must match one of the values in the list. + + if the value entered must match one of the values in the list. If this is set then the user will not be able to perform any other action until a valid value has been entered. - + + + GLib.Property(Name="value_in_list") + + Property @@ -269,11 +265,15 @@ class ComboSample Specifies if an empty field is acceptable. if an empty value is considered valid. - - if an empty value is considered valid. + + if an empty value is considered valid. - + + + GLib.Property(Name="allow_empty") + + Property @@ -286,11 +286,15 @@ class ComboSample Specifies if the arrow (cursor) keys can be used to step through the items in the list. A ; if the arrow keys can be used to step through the items in the list. - - if the arrow keys can be used to step through the items in the list. + + if the arrow keys can be used to step through the items in the list. This is by default. - + + + GLib.Property(Name="enable_arrow_keys") + + Property @@ -303,11 +307,15 @@ class ComboSample Specifies whether the text entered into the field and the text in the list items is case sensitive. if the text in the list items is case sensitive. - - if the text in the list items is case sensitive. + + if the text in the list items is case sensitive. This may be useful, for example, when you have set true ValueInList to limit the values entered, but you are not worried about differences in case. - + + + GLib.Property(Name="case_sensitive") + + Property @@ -317,7 +325,7 @@ class ComboSample GType Property. - a + a Returns the native value for . @@ -331,19 +339,22 @@ class ComboSample Protected constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - + Property System.String[] Property to set all of the items in the popup list. - An array of strings. + An array of strings. @@ -361,7 +372,8 @@ class ComboSample Whether entered values must already be present in the list. a a - + + diff --git a/doc/en/Gtk/ComboBox.xml b/doc/en/Gtk/ComboBox.xml index 5c6e27833..fa4b8a4e8 100644 --- a/doc/en/Gtk/ComboBox.xml +++ b/doc/en/Gtk/ComboBox.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -66,20 +64,13 @@ class ComboBoxSample Gtk.Bin + + Gtk.CellEditable + Gtk.CellLayout - - GLib.IWrapper - - - Atk.Implementor - - - System.IDisposable - - @@ -257,7 +248,7 @@ class ComboBoxSample - + Method System.Void @@ -277,7 +268,7 @@ class ComboBoxSample i - + Method System.Void @@ -298,7 +289,7 @@ class ComboBoxSample - + Method System.Void @@ -319,7 +310,7 @@ class ComboBoxSample - + Method System.Void @@ -345,7 +336,7 @@ class ComboBoxSample - + Method System.Void @@ -364,7 +355,7 @@ class ComboBoxSample - + Method System.Void @@ -377,7 +368,7 @@ class ComboBoxSample - + Method System.Void @@ -408,10 +399,13 @@ class ComboBoxSample Internal constructor a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -422,7 +416,6 @@ class ComboBoxSample Internal constructor a - a @@ -433,7 +426,6 @@ class ComboBoxSample Default constructor - a @@ -447,7 +439,6 @@ class ComboBoxSample Creates a new that uses a - a @@ -460,7 +451,7 @@ class ComboBoxSample GType Property - a + a Returns the native GLib.GType value for Combo. @@ -473,7 +464,7 @@ class ComboBoxSample Wrap width for laying out the items in a grid. - a + a Allowed values: >= 0 @@ -483,7 +474,11 @@ Default value: 0 - + + + GLib.Property(Name="wrap_width") + + Property @@ -493,10 +488,14 @@ Default value: 0 The column with column span information. - a + a The column span column contains integers which indicate how many columns an item should span. - + + + GLib.Property(Name="column_span_column") + + Property @@ -506,10 +505,14 @@ Default value: 0 The index of the currently active item. - a + a -1 if there is no active item. - + + + GLib.Property(Name="active") + + Property @@ -519,10 +522,14 @@ Default value: 0 The column with row span information - a + a The row span column contains integers which indicate how many rows an item should span. - + + + GLib.Property(Name="row_span_column") + + Property @@ -532,7 +539,7 @@ Default value: 0 The which is acting as data source for the . - a + a Will unset a previously set model (if applicable). If model is , then it will unset the model. @@ -541,7 +548,11 @@ Default value: 0 - + + + GLib.Property(Name="model") + + Event @@ -553,16 +564,26 @@ Default value: 0 Emitted when the selected item is changed. - + + + GLib.Signal(CName="changed") + + - + Method System.Void - + + + + System.ParamArray + + + Sets the attribute to column bindings for a renderer. @@ -580,10 +601,14 @@ Default value: 0 To be added - a + a To be added - + + + GLib.Property(Name="has-frame") + + Property @@ -593,10 +618,14 @@ Default value: 0 To be added - a + a To be added - + + + GLib.Property(Name="add-tearoffs") + + Property @@ -606,10 +635,14 @@ Default value: 0 To be added - a + a To be added - + + + GLib.Property(Name="focus_on_click") + + Property @@ -619,7 +652,7 @@ Default value: 0 To be added - a + a To be added @@ -632,12 +665,12 @@ Default value: 0 To be added - a + a To be added - + Event System.EventHandler @@ -647,9 +680,13 @@ Default value: 0 To be added To be added - + + + GLib.Signal(CName="editing_done") + + - + Event System.EventHandler @@ -659,7 +696,11 @@ Default value: 0 To be added To be added - + + + GLib.Signal(CName="remove_widget") + + Property @@ -669,12 +710,12 @@ Default value: 0 Callback function to indicate whether or not a given row of the combo box should be rendered as a separator. - a + a - + Method System.Void @@ -686,7 +727,7 @@ Default value: 0 - + Method System.Void @@ -698,7 +739,7 @@ Default value: 0 - + Method System.Void @@ -737,4 +778,4 @@ Default value: 0 - \ No newline at end of file + diff --git a/doc/en/Gtk/ComboBoxEntry.xml b/doc/en/Gtk/ComboBoxEntry.xml index d715fed3a..69aa47526 100644 --- a/doc/en/Gtk/ComboBoxEntry.xml +++ b/doc/en/Gtk/ComboBoxEntry.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,20 +14,7 @@ Gtk.ComboBox - - Gtk.CellLayout - - - GLib.IWrapper - - - Atk.Implementor - - - System.IDisposable - - @@ -66,10 +51,13 @@ Internal constructor a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -80,7 +68,6 @@ Internal constructor a - a @@ -91,7 +78,6 @@ Creates a new which has a as its child. - a @@ -107,7 +93,6 @@ Creates a new which has a as child and a list of strings as popup. a a - a @@ -120,7 +105,7 @@ GType Property. - a + a Returns the native value for . @@ -133,9 +118,13 @@ the column in the model which the combobox is using to get the strings from. - a + a - + + + GLib.Property(Name="text_column") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/CommitArgs.xml b/doc/en/Gtk/CommitArgs.xml index db9403135..830d2e7dc 100644 --- a/doc/en/Gtk/CommitArgs.xml +++ b/doc/en/Gtk/CommitArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The string generated by a text entry. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/CommitHandler.xml b/doc/en/Gtk/CommitHandler.xml index b94226433..a057f4d56 100644 --- a/doc/en/Gtk/CommitHandler.xml +++ b/doc/en/Gtk/CommitHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ConfigureEventArgs.xml b/doc/en/Gtk/ConfigureEventArgs.xml index 0fbd10527..e83109808 100644 --- a/doc/en/Gtk/ConfigureEventArgs.xml +++ b/doc/en/Gtk/ConfigureEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The GDK configure event related to this event; information about the window size and position that changed. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/ConfigureEventHandler.xml b/doc/en/Gtk/ConfigureEventHandler.xml index c09faf579..456d64f7a 100644 --- a/doc/en/Gtk/ConfigureEventHandler.xml +++ b/doc/en/Gtk/ConfigureEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ConnectProxyArgs.xml b/doc/en/Gtk/ConnectProxyArgs.xml index 8f2b917df..7436f826b 100644 --- a/doc/en/Gtk/ConnectProxyArgs.xml +++ b/doc/en/Gtk/ConnectProxyArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,8 +36,9 @@ The action being connected to a proxy. - a - + a + + @@ -53,8 +50,9 @@ The proxy to which an action is being connected. - a - + a + + diff --git a/doc/en/Gtk/ConnectProxyHandler.xml b/doc/en/Gtk/ConnectProxyHandler.xml index 411b57029..8a00eb966 100644 --- a/doc/en/Gtk/ConnectProxyHandler.xml +++ b/doc/en/Gtk/ConnectProxyHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Container+CallbackInvoker.xml b/doc/en/Gtk/Container+CallbackInvoker.xml new file mode 100644 index 000000000..034da1c96 --- /dev/null +++ b/doc/en/Gtk/Container+CallbackInvoker.xml @@ -0,0 +1,32 @@ + + + + gtk-sharp + 2.0.0.0 + + + System.ValueType + + + + + + Method + + System.Void + + + + + + To be added. + Invoke the contained delegate. + This should not typically be used by application code. + + + + + An class to invoke callback methods; mostly internal. Used by . + + + diff --git a/doc/en/Gtk/ContainerChild.xml b/doc/en/Gtk/Container+ContainerChild.xml similarity index 61% rename from doc/en/Gtk/ContainerChild.xml rename to doc/en/Gtk/Container+ContainerChild.xml index 5d9ee79c4..aafc8c7a6 100644 --- a/doc/en/Gtk/ContainerChild.xml +++ b/doc/en/Gtk/Container+ContainerChild.xml @@ -1,32 +1,34 @@ - - + + gtk-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] 2.0.0.0 - neutral - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - A mixin class for expressing the relation between a container - widget and its child widget(s). - - System.Object - + + + Constructor + + + + + + To be added. + To be added. + To be added. + To be added. + + Field Gtk.Container - - Protected internal data; the parent container. @@ -38,39 +40,20 @@ Gtk.Widget - - Protected internal data; the child widget. - - - Constructor - - - - - - - Public constructor. - a - a - a - - - Property Gtk.Container - The parent container. - a + a @@ -80,12 +63,16 @@ Gtk.Widget - The child widget. - a + a + + A mixin class for expressing the relation between a container + widget and its child widget(s). + + diff --git a/doc/en/Gtk/Container.xml b/doc/en/Gtk/Container.xml index 703b21a46..ef9e2d623 100644 --- a/doc/en/Gtk/Container.xml +++ b/doc/en/Gtk/Container.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -34,19 +32,14 @@ - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable + System.Collections.IEnumerable - + + + System.Reflection.DefaultMember(MemberName="Item") + + @@ -174,6 +167,7 @@ the child property name the value of the property of You will not normally need to use this method; Gtk# automatically generates child property accessors for all subclasses. + To be added. @@ -244,7 +238,6 @@ Internal constructor Pointer to the C object. - An instance of Container, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -261,7 +254,7 @@ The vertical focus adjustment. an object of type - an object of type + an object of type @@ -276,7 +269,7 @@ The horizontal focus adjustment. an object of type - an object of type + an object of type @@ -291,7 +284,7 @@ Moves the focus to a particular child widget or finds the last-focused widget. A , a child of this container. - an object of type + an object of type @@ -308,7 +301,7 @@ reallocation redraws get automatically redrawn if any of their children changed allocation. an object of type - an object of type + an object of type @@ -323,10 +316,14 @@ A child widget for this container. an object of type - an object of type + an object of type - + + + GLib.Property(Name="child") + + Property @@ -338,10 +335,14 @@ How this container behaves when resized. an object of type - an object of type + an object of type - + + + GLib.Property(Name="resize_mode") + + Property @@ -353,10 +354,14 @@ This container's border width. A - A + A - + + + GLib.Property(Name="border_width") + + Event @@ -368,7 +373,11 @@ Fired when a child widget is added to the container via . Note that this event is fired only when (or its C equivalent) is called. It is not a generic widget-added notification. For example, calling will not result in this event firing. - + + + GLib.Signal(CName="add") + + Event @@ -380,7 +389,11 @@ Fired when the focus moves to a child widget of this container. - + + + GLib.Signal(CName="set-focus-child") + + Event @@ -392,7 +405,11 @@ Fired when a child widget is removed from this container Note that this event is fired only when (or its C equivalent) is called. If a subclass defines additional methods for removing widgets, then calling those methods will not result in this event being fired. - + + + GLib.Signal(CName="remove") + + Event @@ -404,7 +421,11 @@ Fired when this container's resizability is queried. - + + + GLib.Signal(CName="check_resize") + + Property @@ -414,7 +435,7 @@ GType Property. - a + a Returns the native value for . @@ -520,12 +541,15 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - + Property Gtk.Widget[] @@ -533,7 +557,7 @@ Obtains an array of the container's (non-internal) children. - An array of non-internal children. + An array of non-internal children. Returns the container's non-internal children; that is, generally, the @@ -557,7 +581,7 @@ foreach (Widget w in myContainer) { - + Method System.Collections.IEnumerator @@ -591,7 +615,7 @@ foreach (Widget w in myContainer) { Allows you to enumerate all of the container's children. - an + an Enumerates all of the container's children, including those widgets that are internal implementation details of the container. @@ -599,7 +623,7 @@ foreach (Widget w in myContainer) { - + Property Gtk.Widget[] @@ -607,7 +631,7 @@ foreach (Widget w in myContainer) { Sets or obtains a focus chain of the container, overriding the one computed automatically by Gtk#. - An array of . + An array of . In principle each in the chain should be a descendant of the , but this is not enforced by this method, since it is allowed to set the focus chain before you pack the widgets, or have a widget in the chain that is not always packed. The necessary checks are done when the focus chain is actually traversed. @@ -625,7 +649,6 @@ foreach (Widget w in myContainer) { Protected constructor for chaining by descendant classes. - a @@ -708,7 +731,7 @@ foreach (Widget w in myContainer) { - + Property Gtk.Container+ContainerChild @@ -719,9 +742,9 @@ foreach (Widget w in myContainer) { Access for child properties a child of this container - a + a The base type is not very useful; you will normally need to cast it to a subclass of the appropriate type. - \ No newline at end of file + diff --git a/doc/en/Gtk/CornerType.xml b/doc/en/Gtk/CornerType.xml index c51751d3a..dae28301b 100644 --- a/doc/en/Gtk/CornerType.xml +++ b/doc/en/Gtk/CornerType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.CornerTypeGType)) + + @@ -91,4 +82,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/CreateMenuProxyArgs.xml b/doc/en/Gtk/CreateMenuProxyArgs.xml index adfd607c0..8d533e7dc 100644 --- a/doc/en/Gtk/CreateMenuProxyArgs.xml +++ b/doc/en/Gtk/CreateMenuProxyArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,9 +24,8 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. - \ No newline at end of file + diff --git a/doc/en/Gtk/CreateMenuProxyHandler.xml b/doc/en/Gtk/CreateMenuProxyHandler.xml index 2c40d116a..4f8f9c8b5 100644 --- a/doc/en/Gtk/CreateMenuProxyHandler.xml +++ b/doc/en/Gtk/CreateMenuProxyHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/CurrentParagraphAlignmentChangedArgs.xml b/doc/en/Gtk/CurrentParagraphAlignmentChangedArgs.xml index 19fc6a20b..f8bc01b16 100644 --- a/doc/en/Gtk/CurrentParagraphAlignmentChangedArgs.xml +++ b/doc/en/Gtk/CurrentParagraphAlignmentChangedArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The new alignment of the paragraph. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/CurrentParagraphAlignmentChangedHandler.xml b/doc/en/Gtk/CurrentParagraphAlignmentChangedHandler.xml index 0e6267edd..a2c00e36c 100644 --- a/doc/en/Gtk/CurrentParagraphAlignmentChangedHandler.xml +++ b/doc/en/Gtk/CurrentParagraphAlignmentChangedHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/CurrentParagraphIndentationChangedArgs.xml b/doc/en/Gtk/CurrentParagraphIndentationChangedArgs.xml index a82704934..2262160ac 100644 --- a/doc/en/Gtk/CurrentParagraphIndentationChangedArgs.xml +++ b/doc/en/Gtk/CurrentParagraphIndentationChangedArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The new indentation level of the paragraph. - An integer, the new indentation level. + An integer, the new indentation level. - \ No newline at end of file + diff --git a/doc/en/Gtk/CurrentParagraphIndentationChangedHandler.xml b/doc/en/Gtk/CurrentParagraphIndentationChangedHandler.xml index 8fb3b21c6..4a4acefaa 100644 --- a/doc/en/Gtk/CurrentParagraphIndentationChangedHandler.xml +++ b/doc/en/Gtk/CurrentParagraphIndentationChangedHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/CurrentParagraphStyleChangedArgs.xml b/doc/en/Gtk/CurrentParagraphStyleChangedArgs.xml index 042fcdfd7..d64c4d238 100644 --- a/doc/en/Gtk/CurrentParagraphStyleChangedArgs.xml +++ b/doc/en/Gtk/CurrentParagraphStyleChangedArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The new style that was set. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/CurrentParagraphStyleChangedHandler.xml b/doc/en/Gtk/CurrentParagraphStyleChangedHandler.xml index 043f8f6ab..0f30dffec 100644 --- a/doc/en/Gtk/CurrentParagraphStyleChangedHandler.xml +++ b/doc/en/Gtk/CurrentParagraphStyleChangedHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/CursorMoveArgs.xml b/doc/en/Gtk/CursorMoveArgs.xml index 0728162ae..bc2bf9ce7 100644 --- a/doc/en/Gtk/CursorMoveArgs.xml +++ b/doc/en/Gtk/CursorMoveArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The kind of skip being done in this cursor move. - A + A Approximately: whether to skip by characters, words, pages, or the whole document. @@ -52,9 +48,9 @@ The direction to move the cursor. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/CursorMoveHandler.xml b/doc/en/Gtk/CursorMoveHandler.xml index fd6b9bcce..4d1ab69f0 100644 --- a/doc/en/Gtk/CursorMoveHandler.xml +++ b/doc/en/Gtk/CursorMoveHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Curve.xml b/doc/en/Gtk/Curve.xml index afafdb8dd..192dfcdc3 100644 --- a/doc/en/Gtk/Curve.xml +++ b/doc/en/Gtk/Curve.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,20 +22,7 @@ Gtk.DrawingArea - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -144,7 +129,6 @@ Internal constructor Pointer to the C object. - An instance of Curve, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -157,7 +141,6 @@ Constructor. - An instance of . @@ -172,7 +155,7 @@ Recomputes the entire curve using the given gamma value. A gamma value. - A gamma value. + A gamma value. A gamma value of 1 results in a straight line. Values greater than 1 result in a curve above the straight line. Values less than 1 result in a curve below the straight. @@ -191,10 +174,14 @@ The maximum y value of the gamma curve. A max y value. - A max y value. + A max y value. - + + + GLib.Property(Name="max_y") + + Property @@ -206,10 +193,14 @@ The maximum x value of the gamma curve. A max x value. - A max x value. + A max x value. - + + + GLib.Property(Name="max_x") + + Property @@ -221,10 +212,14 @@ The minimum y value of the gamma curve. A min y value. - A min y value. + A min y value. - + + + GLib.Property(Name="min_y") + + Property @@ -236,10 +231,14 @@ The minimum x value of the gamma curve. A min x value. - A min x value. + A min x value. - + + + GLib.Property(Name="min_x") + + Property @@ -251,14 +250,18 @@ Sets the type of the curve. The type of the curve. - A . + A . The curve will remain unchanged except when changing from a free curve to a linear or spline curve, in which case the curve will be changed as little as possible. - + + + GLib.Property(Name="curve_type") + + Event @@ -274,7 +277,11 @@ - + + + GLib.Signal(CName="curve_type_changed") + + Property @@ -284,7 +291,7 @@ GType Property. - a + a Returns the native value for . @@ -310,9 +317,46 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. + + + System.Obsolete(Message=null, IsError=False) + + + + + Method + + System.Void + + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Void + + + + + + + To be added. + To be added. + To be added. + To be added. + - \ No newline at end of file + diff --git a/doc/en/Gtk/CurveType.xml b/doc/en/Gtk/CurveType.xml index ee5254878..909f312f9 100644 --- a/doc/en/Gtk/CurveType.xml +++ b/doc/en/Gtk/CurveType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.CurveTypeGType)) + + @@ -79,4 +70,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/CycleChildFocusArgs.xml b/doc/en/Gtk/CycleChildFocusArgs.xml index 0e06b3ef9..90db89ae3 100644 --- a/doc/en/Gtk/CycleChildFocusArgs.xml +++ b/doc/en/Gtk/CycleChildFocusArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ Whether the focus cycle should be reversed or not. - A , true if reversed. + A , true if reversed. - \ No newline at end of file + diff --git a/doc/en/Gtk/CycleChildFocusHandler.xml b/doc/en/Gtk/CycleChildFocusHandler.xml index 8c0cac143..f33de0fcb 100644 --- a/doc/en/Gtk/CycleChildFocusHandler.xml +++ b/doc/en/Gtk/CycleChildFocusHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/CycleHandleFocusArgs.xml b/doc/en/Gtk/CycleHandleFocusArgs.xml index 0c70b5804..878f34000 100644 --- a/doc/en/Gtk/CycleHandleFocusArgs.xml +++ b/doc/en/Gtk/CycleHandleFocusArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ Whether or not to reverse the cycle direction. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/CycleHandleFocusHandler.xml b/doc/en/Gtk/CycleHandleFocusHandler.xml index af10a7138..1fd08e17c 100644 --- a/doc/en/Gtk/CycleHandleFocusHandler.xml +++ b/doc/en/Gtk/CycleHandleFocusHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/DeleteEventArgs.xml b/doc/en/Gtk/DeleteEventArgs.xml index 194edcdb3..4a231af4f 100644 --- a/doc/en/Gtk/DeleteEventArgs.xml +++ b/doc/en/Gtk/DeleteEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -22,7 +20,6 @@ GLib.SignalArgs - @@ -31,7 +28,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -44,9 +40,9 @@ The event that triggered this window's deletion. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/DeleteEventHandler.xml b/doc/en/Gtk/DeleteEventHandler.xml index 115013e63..0b4fa64e5 100644 --- a/doc/en/Gtk/DeleteEventHandler.xml +++ b/doc/en/Gtk/DeleteEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/DeleteFromCursorArgs.xml b/doc/en/Gtk/DeleteFromCursorArgs.xml index 3336d7a0d..713a486c6 100644 --- a/doc/en/Gtk/DeleteFromCursorArgs.xml +++ b/doc/en/Gtk/DeleteFromCursorArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -33,7 +31,6 @@ GLib.SignalArgs - @@ -42,7 +39,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -54,7 +50,7 @@ How many units of the specified to delete. - a + a @@ -66,11 +62,11 @@ The kind/length of text to delete. - + - + - \ No newline at end of file + diff --git a/doc/en/Gtk/DeleteFromCursorHandler.xml b/doc/en/Gtk/DeleteFromCursorHandler.xml index 0e495107a..0a28262dd 100644 --- a/doc/en/Gtk/DeleteFromCursorHandler.xml +++ b/doc/en/Gtk/DeleteFromCursorHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -31,15 +32,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -48,4 +40,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/DeleteRangeArgs.xml b/doc/en/Gtk/DeleteRangeArgs.xml index 3945f28ae..8186911cf 100644 --- a/doc/en/Gtk/DeleteRangeArgs.xml +++ b/doc/en/Gtk/DeleteRangeArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The end of the text range to delete. - A + A @@ -52,9 +48,9 @@ The beginning of the text range to delete. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/DeleteRangeHandler.xml b/doc/en/Gtk/DeleteRangeHandler.xml index 7bbf52d0f..da2af5c3c 100644 --- a/doc/en/Gtk/DeleteRangeHandler.xml +++ b/doc/en/Gtk/DeleteRangeHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/DeleteType.xml b/doc/en/Gtk/DeleteType.xml index db2a8ea42..aa12caa39 100644 --- a/doc/en/Gtk/DeleteType.xml +++ b/doc/en/Gtk/DeleteType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,18 +18,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.DeleteTypeGType)) + + @@ -164,4 +155,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/DestDefaults.xml b/doc/en/Gtk/DestDefaults.xml index 3d5375e89..86059fc4b 100644 --- a/doc/en/Gtk/DestDefaults.xml +++ b/doc/en/Gtk/DestDefaults.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,20 +19,12 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + GLib.GType(WrapperType=typeof(Gtk.DestDefaultsGType)) + + + System.Flags @@ -124,4 +114,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/DestroyEventArgs.xml b/doc/en/Gtk/DestroyEventArgs.xml index 81b29a111..ba7b29934 100644 --- a/doc/en/Gtk/DestroyEventArgs.xml +++ b/doc/en/Gtk/DestroyEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ The event that triggered this window destruction. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/DestroyEventHandler.xml b/doc/en/Gtk/DestroyEventHandler.xml index 6b2cebf37..801ed3722 100644 --- a/doc/en/Gtk/DestroyEventHandler.xml +++ b/doc/en/Gtk/DestroyEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/DestroyNotify.xml b/doc/en/Gtk/DestroyNotify.xml index d1f7e1e00..6ce57b313 100644 --- a/doc/en/Gtk/DestroyNotify.xml +++ b/doc/en/Gtk/DestroyNotify.xml @@ -1,9 +1,8 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,19 +15,10 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Dialog.xml b/doc/en/Gtk/Dialog.xml index 024616dff..d8bf91a3b 100644 --- a/doc/en/Gtk/Dialog.xml +++ b/doc/en/Gtk/Dialog.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -153,20 +151,7 @@ namespace GtkDialogSample Gtk.Window - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -283,7 +268,6 @@ namespace GtkDialogSample Internal constructor Pointer to the C object. - An instance of Dialog, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -296,7 +280,6 @@ namespace GtkDialogSample Creates a new dialog box. - an object of type . Creates a new dialog box. This is an internal constructor, and should not be used by user code. @@ -304,14 +287,20 @@ namespace GtkDialogSample - + Constructor - + + + + System.ParamArray + + + Creates a new dialog box. @@ -319,7 +308,6 @@ namespace GtkDialogSample a parent , or for an unparented dialog. dialog characteristic such as modality and destruction policy. a list of button text/response pairs if desired. - a Creates a new with the specified title and parent widget. The argument can be used to make the dialog modal () @@ -335,7 +323,7 @@ namespace GtkDialogSample The that contains other widgets in this dialog. - an object of type . + an object of type . @@ -350,10 +338,14 @@ namespace GtkDialogSample Whether to display a . an object of type - an object of type + an object of type Whether to display a in the above the - + + + GLib.Property(Name="has_separator") + + Event @@ -371,7 +363,11 @@ namespace GtkDialogSample Otherwise, it depends on which action widget was clicked. - + + + GLib.Signal(CName="response") + + Event @@ -383,7 +379,11 @@ namespace GtkDialogSample Emitted when the dialog is closed. - + + + GLib.Signal(CName="close") + + Property @@ -393,7 +393,7 @@ namespace GtkDialogSample The area of the Dialog where the action widgets are placed. - a + a @@ -406,7 +406,7 @@ namespace GtkDialogSample GType Property. - a + a Returns the native value for . @@ -432,10 +432,13 @@ namespace GtkDialogSample Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -497,7 +500,7 @@ namespace GtkDialogSample Sets the default response_id. - a + a Sets the default response_id. @@ -550,4 +553,4 @@ namespace GtkDialogSample - \ No newline at end of file + diff --git a/doc/en/Gtk/DialogFlags.xml b/doc/en/Gtk/DialogFlags.xml index 312a91c2d..d030079d5 100644 --- a/doc/en/Gtk/DialogFlags.xml +++ b/doc/en/Gtk/DialogFlags.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.DialogFlagsGType)) + + + System.Flags + + @@ -79,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/DirectionChangedArgs.xml b/doc/en/Gtk/DirectionChangedArgs.xml index 6141679ed..5f9ffd8e8 100644 --- a/doc/en/Gtk/DirectionChangedArgs.xml +++ b/doc/en/Gtk/DirectionChangedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The direction of the text before the event. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/DirectionChangedHandler.xml b/doc/en/Gtk/DirectionChangedHandler.xml index b63751c05..c28b5e675 100644 --- a/doc/en/Gtk/DirectionChangedHandler.xml +++ b/doc/en/Gtk/DirectionChangedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/DirectionType.xml b/doc/en/Gtk/DirectionType.xml index 8f601b4b6..f2840c1b6 100644 --- a/doc/en/Gtk/DirectionType.xml +++ b/doc/en/Gtk/DirectionType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,18 +16,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.DirectionTypeGType)) + + @@ -139,4 +130,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/DisableDeviceArgs.xml b/doc/en/Gtk/DisableDeviceArgs.xml index 35696daa2..b5d800c8d 100644 --- a/doc/en/Gtk/DisableDeviceArgs.xml +++ b/doc/en/Gtk/DisableDeviceArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The device to enable. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/DisableDeviceHandler.xml b/doc/en/Gtk/DisableDeviceHandler.xml index 895287627..5543866d5 100644 --- a/doc/en/Gtk/DisableDeviceHandler.xml +++ b/doc/en/Gtk/DisableDeviceHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/DisconnectProxyArgs.xml b/doc/en/Gtk/DisconnectProxyArgs.xml index 236cdfc7f..944df6f56 100644 --- a/doc/en/Gtk/DisconnectProxyArgs.xml +++ b/doc/en/Gtk/DisconnectProxyArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The action being disconnected from a proxy. - a + a @@ -54,10 +50,10 @@ The proxy from which an action is being disconnected. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/DisconnectProxyHandler.xml b/doc/en/Gtk/DisconnectProxyHandler.xml index f5aeac862..52fe692a6 100644 --- a/doc/en/Gtk/DisconnectProxyHandler.xml +++ b/doc/en/Gtk/DisconnectProxyHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Drag.xml b/doc/en/Gtk/Drag.xml index d35963ed3..e5fd4f1ae 100644 --- a/doc/en/Gtk/Drag.xml +++ b/doc/en/Gtk/Drag.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,7 +19,6 @@ System.Object - @@ -454,7 +451,6 @@ A constructor. - Creates a new instance of . @@ -469,8 +465,8 @@ Sets the icon for a particular drag to the default icon. The context for a drag (this must be called with a context for the source side of a drag). - - if the icon has been made the default. + + if the icon has been made the default. @@ -676,4 +672,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/DragBeginArgs.xml b/doc/en/Gtk/DragBeginArgs.xml index 2cb6c5c0d..0102e8b1d 100644 --- a/doc/en/Gtk/DragBeginArgs.xml +++ b/doc/en/Gtk/DragBeginArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The context of this drag. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/DragBeginHandler.xml b/doc/en/Gtk/DragBeginHandler.xml index a17c33dd7..6d5b1d94d 100644 --- a/doc/en/Gtk/DragBeginHandler.xml +++ b/doc/en/Gtk/DragBeginHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/DragDataDeleteArgs.xml b/doc/en/Gtk/DragDataDeleteArgs.xml index c62f5d6be..e85d49a68 100644 --- a/doc/en/Gtk/DragDataDeleteArgs.xml +++ b/doc/en/Gtk/DragDataDeleteArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The context of this drag. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/DragDataDeleteHandler.xml b/doc/en/Gtk/DragDataDeleteHandler.xml index 9f8bb70c4..c9ac95577 100644 --- a/doc/en/Gtk/DragDataDeleteHandler.xml +++ b/doc/en/Gtk/DragDataDeleteHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/DragDataGetArgs.xml b/doc/en/Gtk/DragDataGetArgs.xml index 82308c4b5..758d9243e 100644 --- a/doc/en/Gtk/DragDataGetArgs.xml +++ b/doc/en/Gtk/DragDataGetArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The time this data was gotten from the source widget. - A + A @@ -52,7 +48,7 @@ For internal use. - A + A @@ -64,7 +60,7 @@ The data that's selected and dragged. - a + a @@ -76,9 +72,9 @@ The context of this drag. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/DragDataGetHandler.xml b/doc/en/Gtk/DragDataGetHandler.xml index f55e98bb4..8a0670b26 100644 --- a/doc/en/Gtk/DragDataGetHandler.xml +++ b/doc/en/Gtk/DragDataGetHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/DragDataReceivedArgs.xml b/doc/en/Gtk/DragDataReceivedArgs.xml index 21d752d1b..279825716 100644 --- a/doc/en/Gtk/DragDataReceivedArgs.xml +++ b/doc/en/Gtk/DragDataReceivedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The time the data was received by the destination widget. - A + A @@ -52,7 +48,7 @@ For internal use. - a + a @@ -64,7 +60,7 @@ The data from the drag-and-drop selection that was dropped as part of the event. - a object. + a object. @@ -76,7 +72,7 @@ The Y coordinate where the data was dropped. - An integer. + An integer. @@ -88,7 +84,7 @@ The X coordinate where the data was dropped. - An integer. + An integer. @@ -100,9 +96,9 @@ The context of this drag. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/DragDataReceivedHandler.xml b/doc/en/Gtk/DragDataReceivedHandler.xml index 043aa5a56..b30c54c26 100644 --- a/doc/en/Gtk/DragDataReceivedHandler.xml +++ b/doc/en/Gtk/DragDataReceivedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/DragDropArgs.xml b/doc/en/Gtk/DragDropArgs.xml index 673fe9d79..6488e24e7 100644 --- a/doc/en/Gtk/DragDropArgs.xml +++ b/doc/en/Gtk/DragDropArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The time the data was dropped. - A + A @@ -52,7 +48,7 @@ The Y coordinate where the data was dropped. - A + A @@ -64,7 +60,7 @@ The X coordinate where the data was dropped. - A + A @@ -76,9 +72,9 @@ The context of this drag. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/DragDropHandler.xml b/doc/en/Gtk/DragDropHandler.xml index c943d82bf..f603d76b5 100644 --- a/doc/en/Gtk/DragDropHandler.xml +++ b/doc/en/Gtk/DragDropHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/DragEndArgs.xml b/doc/en/Gtk/DragEndArgs.xml index 4a434cccb..9641533b7 100644 --- a/doc/en/Gtk/DragEndArgs.xml +++ b/doc/en/Gtk/DragEndArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The context of this drag. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/DragEndHandler.xml b/doc/en/Gtk/DragEndHandler.xml index 1b57dd373..c08944a4b 100644 --- a/doc/en/Gtk/DragEndHandler.xml +++ b/doc/en/Gtk/DragEndHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/DragLeaveArgs.xml b/doc/en/Gtk/DragLeaveArgs.xml index 851f9e1af..66defe3b4 100644 --- a/doc/en/Gtk/DragLeaveArgs.xml +++ b/doc/en/Gtk/DragLeaveArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The time of the event. - A + A @@ -52,9 +48,9 @@ The context of this drag. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/DragLeaveHandler.xml b/doc/en/Gtk/DragLeaveHandler.xml index 6b8627bba..cc8665558 100644 --- a/doc/en/Gtk/DragLeaveHandler.xml +++ b/doc/en/Gtk/DragLeaveHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/DragMotionArgs.xml b/doc/en/Gtk/DragMotionArgs.xml index c87ed09ae..595a6316e 100644 --- a/doc/en/Gtk/DragMotionArgs.xml +++ b/doc/en/Gtk/DragMotionArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The time the event happened. - A + A @@ -52,7 +48,7 @@ The Y coordinate being dragged over. - A + A @@ -64,7 +60,7 @@ The Y coordinate being dragged over. - A + A @@ -76,9 +72,9 @@ The context of this drag. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/DragMotionHandler.xml b/doc/en/Gtk/DragMotionHandler.xml index af6475524..a6c3e6ea5 100644 --- a/doc/en/Gtk/DragMotionHandler.xml +++ b/doc/en/Gtk/DragMotionHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Draw.xml b/doc/en/Gtk/Draw.xml index c8cf82c3a..8f2f134ba 100644 --- a/doc/en/Gtk/Draw.xml +++ b/doc/en/Gtk/Draw.xml @@ -4,19 +4,17 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. A class for drawing various shapes; mostly obsolete. - + + System.Object - @@ -44,7 +42,8 @@ a a a - + + @@ -73,7 +72,8 @@ a a a - + + @@ -108,7 +108,8 @@ a a a - + + @@ -139,7 +140,8 @@ a a a - + + @@ -164,7 +166,8 @@ a a a - + + @@ -189,7 +192,8 @@ a a a - + + @@ -222,7 +226,8 @@ a a a - + + @@ -251,7 +256,8 @@ a a a - + + @@ -280,7 +286,8 @@ a a a - + + @@ -307,7 +314,8 @@ a a a - + + @@ -332,7 +340,8 @@ a a a - + + @@ -361,7 +370,8 @@ a a a - + + @@ -390,7 +400,8 @@ a a a - + + @@ -419,7 +430,8 @@ a a a - + + @@ -444,7 +456,8 @@ a a a - + + @@ -475,7 +488,8 @@ a a a - + + @@ -510,7 +524,8 @@ a a a - + + @@ -539,7 +554,8 @@ a a a - + + @@ -566,7 +582,8 @@ a a a - + + @@ -591,7 +608,8 @@ a a a - + + @@ -622,7 +640,8 @@ a a a - + + @@ -641,15 +660,15 @@ - Draws a text caret on at . + Draws a text caret on at . * a a - a , rectangle to which the output is clipped, or if the output should not be clipped - a location where to draw the cursor (.Width is ignored) + a , rectangle to which the output is clipped, or if the output should not be clipped + a location where to draw the cursor (.Width is ignored) a , whether the cursor should be the primary cursor color. - a , whether the cursor is left-to-right or right-to-left. Should never be . - a , to draw a directional arrow on the cursor. Should be unless the cursor is split. + a , whether the cursor is left-to-right or right-to-left. Should never be . + a , to draw a directional arrow on the cursor. Should be unless the cursor is split. This is not a style function but merely a convenience function for drawing the standard cursor shape. @@ -663,8 +682,8 @@ Public constructor. - a - + + diff --git a/doc/en/Gtk/DrawGdkArgs.xml b/doc/en/Gtk/DrawGdkArgs.xml index 0154c4daf..dcace8447 100644 --- a/doc/en/Gtk/DrawGdkArgs.xml +++ b/doc/en/Gtk/DrawGdkArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,7 +37,7 @@ The pixmap to draw - a + a @@ -54,7 +50,7 @@ The graphics context - a + a @@ -67,7 +63,7 @@ An additional argument. - a + a @@ -80,7 +76,7 @@ A second additional argument. - a + a diff --git a/doc/en/Gtk/DrawGdkHandler.xml b/doc/en/Gtk/DrawGdkHandler.xml index 48b996fba..b82249bd5 100644 --- a/doc/en/Gtk/DrawGdkHandler.xml +++ b/doc/en/Gtk/DrawGdkHandler.xml @@ -1,15 +1,15 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/DrawPrintArgs.xml b/doc/en/Gtk/DrawPrintArgs.xml index 6468d73e4..7941023c9 100644 --- a/doc/en/Gtk/DrawPrintArgs.xml +++ b/doc/en/Gtk/DrawPrintArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ The print context currently in use. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/DrawPrintHandler.xml b/doc/en/Gtk/DrawPrintHandler.xml index eff5cd93b..1ad74cb78 100644 --- a/doc/en/Gtk/DrawPrintHandler.xml +++ b/doc/en/Gtk/DrawPrintHandler.xml @@ -1,15 +1,15 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/DrawingArea.xml b/doc/en/Gtk/DrawingArea.xml index 1a5d3f2c4..b3af21466 100644 --- a/doc/en/Gtk/DrawingArea.xml +++ b/doc/en/Gtk/DrawingArea.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -86,20 +84,7 @@ class LayoutSample : DrawingArea Gtk.Widget - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -123,7 +108,6 @@ class LayoutSample : DrawingArea Internal constructor Pointer to the C object. - An instance of DrawingArea, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -136,7 +120,6 @@ class LayoutSample : DrawingArea Default Constructor. - An instance of . @@ -149,7 +132,7 @@ class LayoutSample : DrawingArea GType Property. - a + a Returns the native value for . @@ -163,10 +146,13 @@ class LayoutSample : DrawingArea Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -181,7 +167,8 @@ class LayoutSample : DrawingArea Sets the size of the drawing area. a a - + + diff --git a/doc/en/Gtk/Editable.xml b/doc/en/Gtk/Editable.xml index 674ff1b2d..3a950c038 100644 --- a/doc/en/Gtk/Editable.xml +++ b/doc/en/Gtk/Editable.xml @@ -1,28 +1,24 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Interface for text-editing widgets. - GLib.IWrapper - - + Method System.Void @@ -40,7 +36,7 @@ - + Method System.String @@ -58,7 +54,7 @@ - + Method System.Void @@ -75,7 +71,7 @@ - + Method System.Void @@ -87,7 +83,7 @@ - + Method System.Void @@ -99,7 +95,7 @@ - + Method System.Boolean @@ -117,7 +113,7 @@ - + Method System.Void @@ -129,7 +125,7 @@ - + Method System.Void @@ -141,7 +137,7 @@ - + Property System.Boolean @@ -151,12 +147,12 @@ Whether or not the user can edit the text in the editable widget or not. A boolean; TRUE if the user can edit the text. - A boolean; TRUE if the user can edit the text. + A boolean; TRUE if the user can edit the text. - + Property System.Int32 @@ -166,12 +162,12 @@ The current cursor position. An integer position for the cursor. - An integer position for the cursor. + An integer position for the cursor. - + Event Gtk.TextInsertedHandler @@ -183,7 +179,7 @@ - + Event Gtk.TextDeletedHandler @@ -195,7 +191,7 @@ - + Event System.EventHandler @@ -207,7 +203,7 @@ - + Method System.Void @@ -224,4 +220,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/EditedArgs.xml b/doc/en/Gtk/EditedArgs.xml index d14ad2106..23b0de603 100644 --- a/doc/en/Gtk/EditedArgs.xml +++ b/doc/en/Gtk/EditedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The new text for the cell. - A + A @@ -52,9 +48,9 @@ The path string of the edited cell. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/EditedHandler.xml b/doc/en/Gtk/EditedHandler.xml index e09a8bb5b..62dcdb708 100644 --- a/doc/en/Gtk/EditedHandler.xml +++ b/doc/en/Gtk/EditedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/EditingStartedArgs.xml b/doc/en/Gtk/EditingStartedArgs.xml index 800c21bf9..140f259bd 100644 --- a/doc/en/Gtk/EditingStartedArgs.xml +++ b/doc/en/Gtk/EditingStartedArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ To be added - a + a To be added @@ -53,9 +49,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gtk/EditingStartedHandler.xml b/doc/en/Gtk/EditingStartedHandler.xml index 0956cae48..62ba01ae6 100644 --- a/doc/en/Gtk/EditingStartedHandler.xml +++ b/doc/en/Gtk/EditingStartedHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/EnableDeviceArgs.xml b/doc/en/Gtk/EnableDeviceArgs.xml index 1cec80eec..90cdd2582 100644 --- a/doc/en/Gtk/EnableDeviceArgs.xml +++ b/doc/en/Gtk/EnableDeviceArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The device to enable. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/EnableDeviceHandler.xml b/doc/en/Gtk/EnableDeviceHandler.xml index 420c99e0e..674df39ef 100644 --- a/doc/en/Gtk/EnableDeviceHandler.xml +++ b/doc/en/Gtk/EnableDeviceHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/EnterNotifyEventArgs.xml b/doc/en/Gtk/EnterNotifyEventArgs.xml index cda5bede4..f8f0d69b5 100644 --- a/doc/en/Gtk/EnterNotifyEventArgs.xml +++ b/doc/en/Gtk/EnterNotifyEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The underlying Gdk event that triggered this EnterNotifyEvent. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/EnterNotifyEventHandler.xml b/doc/en/Gtk/EnterNotifyEventHandler.xml index 1882f71d5..fcd7c549e 100644 --- a/doc/en/Gtk/EnterNotifyEventHandler.xml +++ b/doc/en/Gtk/EnterNotifyEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Entry.xml b/doc/en/Gtk/Entry.xml index 6a29b7530..9ec8c16b6 100644 --- a/doc/en/Gtk/Entry.xml +++ b/doc/en/Gtk/Entry.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -77,29 +75,13 @@ class EntrySample Gtk.Widget - - Gtk.Editable - - - GLib.IWrapper - Gtk.CellEditable - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable + Gtk.Editable - @@ -122,7 +104,7 @@ class EntrySample - + Method System.Void @@ -137,7 +119,7 @@ class EntrySample - + Method System.Void @@ -149,7 +131,7 @@ class EntrySample - + Method System.Void @@ -161,7 +143,7 @@ class EntrySample - + Method System.Void @@ -178,7 +160,7 @@ class EntrySample - + Method System.String @@ -198,7 +180,7 @@ class EntrySample - + Method System.Void @@ -215,7 +197,7 @@ class EntrySample - + Method System.Void @@ -227,7 +209,7 @@ class EntrySample - + Method System.Void @@ -239,7 +221,7 @@ class EntrySample - + Method System.Boolean @@ -260,7 +242,7 @@ class EntrySample - + Method System.Void @@ -272,7 +254,7 @@ class EntrySample - + Method System.Void @@ -305,7 +287,6 @@ class EntrySample Internal constructor Pointer to the C object. - An instance of Entry, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -318,12 +299,11 @@ class EntrySample Construct a new entry widget - Creates an entry widget with empty contents - + Property System.Boolean @@ -333,14 +313,14 @@ class EntrySample Implements the concrete version of Gtk.Editable.IsEditable, to determine if the text of the Entry can be edited. true to allow editing of the Entry, false otherwise. - + true if the Entry is editable, false otherwise. - + - + Property System.Int32 @@ -350,9 +330,9 @@ class EntrySample The position of the cursor. the new cursor position, in characters. - + the current cursor position - + The cursor is displayed before the character with the given (base 0) index in the widget. The value must be less than or equal to the number of characters in the widget. A value of -1 indicates that the position should be set after the last character in the entry. Note that this position is in characters, not in bytes. @@ -366,9 +346,9 @@ class EntrySample Get the object used by this Entry for text layout. - + The Pango.Layout used to render the text of this entry. - + This property is read only. @@ -385,14 +365,18 @@ class EntrySample Determine whether to display characters entered, or whether to mask them. true to display characters in the Entry, false to mask them - + true if characters are being displayed, false if they are being masked. - + This property should be used to create entry widgets for sensitive data such as passwords. - + + + GLib.Property(Name="visibility") + + Property @@ -404,14 +388,18 @@ class EntrySample The maximum number of characters that can be placed in this Entry. How many characters to limit this Entry to - + The maximum number of characters that can currently be set in this Entry. - + This property can be useful for ensuring no more than a specific number of characters are put in an entry. - + + + GLib.Property(Name="max_length") + + Property @@ -420,14 +408,18 @@ class EntrySample The position of the cursor in the text of the Entry. - + The current character of the cursor. - + Use this property to manipulate the position of the cursor - it is displayed before the character with the given (base 0) index in the widget. The value must be less than or equal to the number of characters in the widget. A value of -1 indicates that the position should be set after the last character in the entry. Note that this position is in characters, not in bytes. - + + + GLib.Property(Name="cursor_position") + + Property @@ -436,12 +428,16 @@ class EntrySample The length of the selected text. - + The number of selected characters. - + - + + + GLib.Property(Name="selection_bound") + + Property @@ -453,12 +449,16 @@ class EntrySample Manipulate the current text contents of an Entry. The new string to display in the Entry - overwrites any existing text in the widget. - + The current text in an Entry. - + - + + + GLib.Property(Name="text") + + Property @@ -467,10 +467,14 @@ class EntrySample Number of pixels the entry scrolled off the screen to the left. - A + A - + + + GLib.Property(Name="scroll_offset") + + Property @@ -482,14 +486,18 @@ class EntrySample Changes the size request of the entry to be about the right size for characters. Requested width, in characters - + The number of characters requested. - + Note that it changes the size request, the size can still be affected by how you pack the widget into containers. If n_chars is -1, the size reverts to the default entry size. - + + + GLib.Property(Name="width_chars") + + Property @@ -504,15 +512,19 @@ class EntrySample to make this Entry read-only, to allow editing. - + if this entry can be edited, otherwise. - + Set this property to false if you need to stop input into an Entry widget. For displaying textual data, it is more normal to use a instead. - + + + GLib.Property(Name="editable") + + Property @@ -524,17 +536,21 @@ class EntrySample Determine whether to activate the 'default widget' in the window when the return key is pressed. set to to activate the default button when enter is pressed, otherwise - + if the default button will be activated, false otherwise. - + If the value is , pressing Enter in the entry will activate the default widget for the window containing the entry. This usually means that the dialog box containing the entry will be closed, since the default widget is usually one of the dialog buttons. (For experts: if the value is , the entry calls on the containing the entry, in the default handler for the event). - + + + GLib.Property(Name="activates_default") + + Property @@ -547,15 +563,19 @@ class EntrySample Whether or not this Entry should be surrounded by a 3D frame. to surround this Entry in a frame (the default), otherwise. - - if a frame surrounds this Entry, otherwise + + if a frame surrounds this Entry, otherwise Unless there is a very specific reason for doing so, this property is best left to its default to ensure consistency in Entry widgets across applications. - + + + GLib.Property(Name="has_frame") + + - + Event System.EventHandler @@ -565,9 +585,13 @@ class EntrySample Implements the WidgetRemoved method of the interface. This will effectively destroy the Entry. - + + + GLib.Signal(CName="remove_widget") + + - + Event System.EventHandler @@ -577,9 +601,13 @@ class EntrySample Implements the EditingDone method of the interface. - + + + GLib.Signal(CName="editing_done") + + - + Event Gtk.TextInsertedHandler @@ -589,9 +617,13 @@ class EntrySample Connect to this event to be notified when text is inserted into the Entry. - + + + GLib.Signal(CName="insert_text") + + - + Event Gtk.TextDeletedHandler @@ -601,9 +633,13 @@ class EntrySample Connect to this event to be notified when text is deleted from the Entry. - + + + GLib.Signal(CName="delete_text") + + - + Event System.EventHandler @@ -613,7 +649,11 @@ class EntrySample When the contents of the Entry change, this event is fired. - + + + GLib.Signal(CName="changed") + + Event @@ -625,7 +665,11 @@ class EntrySample Connect to this event handler to be notified when the cursor of an Entry moves. Data pertaining to this event is passed with a . - + + + GLib.Signal(CName="move_cursor") + + Event @@ -637,7 +681,11 @@ class EntrySample Connect to this event to be notified when the user 'cuts' a selection in the Entry. Connect to this event with a standard . - + + + GLib.Signal(CName="cut_clipboard") + + Event @@ -651,7 +699,11 @@ class EntrySample Connect to this event with a standard . - + + + GLib.Signal(CName="activate") + + Event @@ -665,7 +717,11 @@ class EntrySample Data pertaining to this event is encapsulated in a . - + + + GLib.Signal(CName="delete_from_cursor") + + Event @@ -679,7 +735,11 @@ class EntrySample Connect to this event with a standard . - + + + GLib.Signal(CName="paste_clipboard") + + Event @@ -693,7 +753,11 @@ class EntrySample Connect to this event with a standard . - + + + GLib.Signal(CName="copy_clipboard") + + Event @@ -707,7 +771,11 @@ class EntrySample Data pertaining to this event is encapsulated in a . - + + + GLib.Signal(CName="populate_popup") + + Event @@ -721,7 +789,11 @@ class EntrySample Connect to this event with a standard . - + + + GLib.Signal(CName="toggle_overwrite") + + Event @@ -735,9 +807,13 @@ class EntrySample Data pertaining to this event is encapsulated in an . - + + + GLib.Signal(CName="insert_at_cursor") + + - + Method System.Void @@ -763,7 +839,6 @@ class EntrySample Public constructor. A - A @@ -795,7 +870,7 @@ class EntrySample GType Property. - a + a Returns the native value for . @@ -1005,10 +1080,13 @@ class EntrySample Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -1018,7 +1096,7 @@ class EntrySample The horizontal alignment, from 0 (left) to 1 (right). - a + a Reversed for RTL layouts. Allowed values: [0,1] @@ -1026,7 +1104,11 @@ Allowed values: [0,1] Default value: 0 - + + + GLib.Property(Name="xalign") + + Property @@ -1036,7 +1118,7 @@ Default value: 0 The alignment for the contents of the entry - a + a This controls the horizontal positioning of the contents when the displayed text is shorter than the width of the entry. The horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL layouts @@ -1052,7 +1134,7 @@ The horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL layouts The auxiliary completion object - a + a All further configuration of the completion mechanism is done on completion using the API. @@ -1096,7 +1178,6 @@ The horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL layouts Creates a new with the given maximum length. a , the maximum length of the entry, or 0 for no maximum. - a the existence of this function is inconsistent with the rest of the Gtk API. The normal setup would be to just require the user to make an extra call to instead. It is not expected that this function will be removed, but it would be better practice not to use it. @@ -1114,10 +1195,14 @@ The horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL layouts The character to display when is - a + a The is the character displayed in the entry in place of the actual characters of when is . The default invisible character is an asterisk ('*'). If you set this to 0, then no characters will be displayed at all. - + + + GLib.Property(Name="invisible_char") + + Event @@ -1129,7 +1214,11 @@ The horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL layouts To be added To be added - + + + GLib.Signal(CName="backspace") + + Method @@ -1175,4 +1264,4 @@ The horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL layouts - \ No newline at end of file + diff --git a/doc/en/Gtk/EntryCompletion.xml b/doc/en/Gtk/EntryCompletion.xml index bd670bed9..29736d87f 100644 --- a/doc/en/Gtk/EntryCompletion.xml +++ b/doc/en/Gtk/EntryCompletion.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -73,14 +71,7 @@ public class DemoEntryCompletion : Window Gtk.CellLayout - - GLib.IWrapper - - - System.IDisposable - - @@ -206,7 +197,7 @@ public class DemoEntryCompletion : Window - + Method System.Void @@ -226,7 +217,7 @@ public class DemoEntryCompletion : Window - + Method System.Void @@ -247,7 +238,7 @@ public class DemoEntryCompletion : Window - + Method System.Void @@ -268,7 +259,7 @@ public class DemoEntryCompletion : Window - + Method System.Void @@ -294,7 +285,7 @@ public class DemoEntryCompletion : Window - + Method System.Void @@ -312,7 +303,7 @@ public class DemoEntryCompletion : Window - + Method System.Void @@ -333,10 +324,13 @@ public class DemoEntryCompletion : Window Protected constructor. a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -347,7 +341,6 @@ public class DemoEntryCompletion : Window Constructor for internal use only. a - a @@ -358,7 +351,6 @@ public class DemoEntryCompletion : Window Constructor for general use. - a @@ -371,7 +363,7 @@ public class DemoEntryCompletion : Window GType Property. - a + a Returns the native value for . @@ -384,7 +376,7 @@ public class DemoEntryCompletion : Window Minimum string length for enabling completion. - a + a Requires the length of the search key for this completion to be at least a certain length. This is useful for long lists, where completing using a small @@ -392,7 +384,11 @@ public class DemoEntryCompletion : Window (ie, a too large dataset). - + + + GLib.Property(Name="minimum_key_length") + + Property @@ -402,14 +398,18 @@ public class DemoEntryCompletion : Window Setting this property generates a completion list with just strings. - a + a Setting this convenience property will set up the completion to have a list displaying all (and just) strings in the completion list, and to get those strings from a particular column number in the model of the completion object. - + + + GLib.Property(Name="text_column") + + Property @@ -421,7 +421,7 @@ public class DemoEntryCompletion : Window Returns the entry widget this completion object has been attached to. - a + a @@ -438,7 +438,11 @@ public class DemoEntryCompletion : Window - + + + GLib.Signal(CName="action_activated") + + Event @@ -450,9 +454,13 @@ public class DemoEntryCompletion : Window Event triggered when the user selects a match. - + + + GLib.Signal(CName="match_selected") + + - + Method System.Void @@ -481,19 +489,29 @@ public class DemoEntryCompletion : Window Tree data model. - a + a - + + + GLib.Property(Name="model") + + - + Method System.Void - + + + + System.ParamArray + + + Sets the attribute to model column bindings for a renderer. @@ -510,7 +528,7 @@ public class DemoEntryCompletion : Window The matching function - a + a The match function is used to determine if a row should or should not be in the completion list. @@ -523,10 +541,14 @@ public class DemoEntryCompletion : Window To be added - a + a To be added - + + + GLib.Property(Name="inline_completion") + + Property @@ -536,10 +558,14 @@ public class DemoEntryCompletion : Window To be added - a + a To be added - + + + GLib.Property(Name="popup_completion") + + Event @@ -551,7 +577,11 @@ public class DemoEntryCompletion : Window To be added To be added - + + + GLib.Signal(CName="insert_prefix") + + Method @@ -581,4 +611,4 @@ public class DemoEntryCompletion : Window - \ No newline at end of file + diff --git a/doc/en/Gtk/EntryCompletionMatchFunc.xml b/doc/en/Gtk/EntryCompletionMatchFunc.xml index 18e01602c..ee6f279e7 100644 --- a/doc/en/Gtk/EntryCompletionMatchFunc.xml +++ b/doc/en/Gtk/EntryCompletionMatchFunc.xml @@ -1,29 +1,22 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - Delegate class for callback methods; used by . See that method's documentation for details. - + To be added. + To be added. + To be added. + Delegate class for callback methods; used by . See that method's documentation for details. + + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Boolean diff --git a/doc/en/Gtk/EventBox.xml b/doc/en/Gtk/EventBox.xml index a03a25f0f..a62bba185 100644 --- a/doc/en/Gtk/EventBox.xml +++ b/doc/en/Gtk/EventBox.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -73,20 +71,7 @@ public class eventbox Gtk.Bin - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -110,7 +95,6 @@ public class eventbox Internal constructor Pointer to the C object. - An instance of EventBox, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -123,7 +107,6 @@ public class eventbox Creates a new . - an object of type Creates a new . EventBox eb = new EventBox(); @@ -139,7 +122,7 @@ public class eventbox GType Property. - a + a Returns the native value for . @@ -153,10 +136,13 @@ public class eventbox Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -166,11 +152,15 @@ public class eventbox Whether the event-trapping window of the eventbox is above the window of the child widget as opposed to below it. - a + a - + + + GLib.Property(Name="above-child") + + Property @@ -180,10 +170,14 @@ public class eventbox Whether the event box is visible, as opposed to invisible and only used to trap events. - a + a - + + + GLib.Property(Name="visible-window") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/ExpandCollapseCursorRowArgs.xml b/doc/en/Gtk/ExpandCollapseCursorRowArgs.xml index 01c51706a..7989cd88a 100644 --- a/doc/en/Gtk/ExpandCollapseCursorRowArgs.xml +++ b/doc/en/Gtk/ExpandCollapseCursorRowArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ Whether or not to open all children of this cursor row. - A + A @@ -52,7 +48,7 @@ Whether to expand (true) or collapse(false) the row. - A + A @@ -64,9 +60,9 @@ Whether or not this cursor row is a logical row. - A + A TODO: explain. - \ No newline at end of file + diff --git a/doc/en/Gtk/ExpandCollapseCursorRowHandler.xml b/doc/en/Gtk/ExpandCollapseCursorRowHandler.xml index 61d5e083f..e633ef098 100644 --- a/doc/en/Gtk/ExpandCollapseCursorRowHandler.xml +++ b/doc/en/Gtk/ExpandCollapseCursorRowHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Expander.xml b/doc/en/Gtk/Expander.xml index f826f2f34..e01336a80 100644 --- a/doc/en/Gtk/Expander.xml +++ b/doc/en/Gtk/Expander.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -113,17 +111,7 @@ class DemoExpander : Gtk.Window Gtk.Bin - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -159,10 +147,13 @@ class DemoExpander : Gtk.Window Internal constructor a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -173,7 +164,6 @@ class DemoExpander : Gtk.Window Internal constructor a - a @@ -187,7 +177,6 @@ class DemoExpander : Gtk.Window Creates a new expander with as its label. a - a @@ -200,7 +189,7 @@ class DemoExpander : Gtk.Window GType Property. - a + a Returns the native value for . @@ -213,7 +202,7 @@ class DemoExpander : Gtk.Window The text of the label of the expander. - a + a If the label text has not been set the return value will be . @@ -223,7 +212,11 @@ Setting the label will also clear any previously set labels. - + + + GLib.Property(Name="label") + + Property @@ -233,12 +226,16 @@ Setting the label will also clear any previously set labels. Whether the text of the label contains markup in Pango's text markup language. - a , if the label's text should be parsed for markup + a , if the label's text should be parsed for markup - + - + + + GLib.Property(Name="use_markup") + + Property @@ -248,7 +245,7 @@ Setting the label will also clear any previously set labels. Space to put between the label and the child. - a + a Allowed values: >= 0 @@ -258,7 +255,11 @@ Default value: 0 - + + + GLib.Property(Name="spacing") + + Property @@ -268,10 +269,14 @@ Default value: 0 The state of the expander. - a + a Returns if the child widget is revealed. - + + + GLib.Property(Name="expanded") + + Property @@ -281,10 +286,14 @@ Default value: 0 Whether an embedded underline in the expander label indicates a mnemonic. - a , if underlines in the text indicate mnemonics + a , if underlines in the text indicate mnemonics - + + + GLib.Property(Name="use_underline") + + Property @@ -294,10 +303,14 @@ Default value: 0 The label widget for the expander. - the label , or if there is none. + the label , or if there is none. This is the widget that will appear embedded alongside the expander arrow. - + + + GLib.Property(Name="label_widget") + + Event @@ -309,7 +322,11 @@ Default value: 0 Emitted when the expander is toggled. - + + + GLib.Signal(CName="activate") + + Method @@ -323,7 +340,8 @@ Default value: 0 Public constructor. a a - + + diff --git a/doc/en/Gtk/ExpanderStyle.xml b/doc/en/Gtk/ExpanderStyle.xml index 8425e87c4..b46f3043d 100644 --- a/doc/en/Gtk/ExpanderStyle.xml +++ b/doc/en/Gtk/ExpanderStyle.xml @@ -3,9 +3,7 @@ gtk-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] - 1.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.ExpanderStyleGType)) + + @@ -99,4 +90,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ExposeEventArgs.xml b/doc/en/Gtk/ExposeEventArgs.xml index 7ba57c8f0..5c06c65bd 100644 --- a/doc/en/Gtk/ExposeEventArgs.xml +++ b/doc/en/Gtk/ExposeEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The event that caused the widget to be exposed. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/ExposeEventHandler.xml b/doc/en/Gtk/ExposeEventHandler.xml index b32b39805..185c56cf7 100644 --- a/doc/en/Gtk/ExposeEventHandler.xml +++ b/doc/en/Gtk/ExposeEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/FileChooser.xml b/doc/en/Gtk/FileChooser.xml index 2fb3b1782..47932ecc4 100644 --- a/doc/en/Gtk/FileChooser.xml +++ b/doc/en/Gtk/FileChooser.xml @@ -1,20 +1,23 @@ -e - + + + gtk-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] 2.0.0.0 - neutral - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + + Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + Interface for a file-chooser. See for an actual implementation. - + + GLib.IWrapper - + + - + Method System.Boolean @@ -35,7 +38,7 @@ - + Method System.Void @@ -47,7 +50,7 @@ - + Method System.Boolean @@ -79,7 +82,7 @@ - + Method System.Boolean @@ -99,7 +102,7 @@ - + Method System.Boolean @@ -123,7 +126,7 @@ - + Method System.Void @@ -136,7 +139,7 @@ - + Method System.Boolean @@ -159,7 +162,7 @@ - + Method System.Void @@ -175,7 +178,7 @@ - + Method System.Boolean @@ -195,7 +198,7 @@ - + Method System.Boolean @@ -215,7 +218,7 @@ - + Method System.Void @@ -235,7 +238,7 @@ - + Method System.Void @@ -256,7 +259,7 @@ - + Method System.Boolean @@ -272,7 +275,7 @@ - + Method System.Void @@ -292,7 +295,7 @@ - + Method System.Boolean @@ -313,7 +316,7 @@ - + Method System.Boolean @@ -344,7 +347,7 @@ - + Property System.String @@ -352,13 +355,13 @@ The file chooser's current folder, if set from a URI. - a + a - + Property Gtk.Widget @@ -366,13 +369,13 @@ An application-supplied widget to provide extra options to the user. - a + a - + Property System.String @@ -382,7 +385,7 @@ Property to represent the current name in the file selector, as if entered by the user. - a + a Note that the name passed in here is a UTF-8 string rather than a filename. This function is meant for @@ -391,7 +394,7 @@ - + Property Gtk.FileFilter @@ -399,13 +402,13 @@ The currently-applied file filter. - a + a - + Property System.Boolean @@ -416,7 +419,7 @@ Sets whether only local files can be selected in the file selector. - a + a If true (the default), then the selected file are files are guaranteed to be @@ -431,7 +434,7 @@ - + Property System.Boolean @@ -442,14 +445,14 @@ Sets whether the preview widget set by should be shown for the current filename. - a + a When this property is set to false, the file chooser may display an internally generated preview of the current file or it may display no preview at all. - + Property System.String @@ -457,12 +460,12 @@ Internal function; gets the filename that should be previewed in a custom preview. - a + a Not for general programmer use. - + Property System.String @@ -471,7 +474,7 @@ The URI for the currently selected file in the file selector. - a + a If multiple files are selected, one of the filenames will be returned at random. @@ -481,7 +484,7 @@ - + Property System.Boolean @@ -492,7 +495,7 @@ Sets whether the file chooser should display a stock label with the name of the file that is being previewed; the default is true. - a + a Applications that want to draw the whole preview area themselves should set this @@ -501,7 +504,7 @@ - + Property System.String @@ -509,13 +512,13 @@ The current filename selected by the file chooser. - a + a - + Property System.String @@ -523,13 +526,13 @@ The URI that should be previewed in a custom preview widget. - a + a - + Property System.Boolean @@ -539,7 +542,7 @@ Sets whether multiple files can be selected in the file selector. - a + a This is only relevant if the action is set to be or @@ -549,7 +552,7 @@ - + Property Gtk.Widget @@ -560,7 +563,7 @@ An application-supplied widget to use to display a custom preview of the currently selected file. - a + a To implement a preview, after setting the @@ -585,7 +588,7 @@ - + Property Gtk.FileChooserAction @@ -596,7 +599,7 @@ Sets the type of operation that that the chooser is performing; the user interface is adapted to suit the selected action. - a + a For example, an option to create a new folder might be shown if the action is @@ -606,7 +609,7 @@ - + Property System.String @@ -614,13 +617,13 @@ The current folder for the file chooser, when the chooser has selected a local filename. - a + a - + Event System.EventHandler @@ -633,7 +636,7 @@ - + Event System.EventHandler @@ -654,7 +657,7 @@ - + Event System.EventHandler @@ -686,7 +689,7 @@ - + Event System.EventHandler @@ -709,7 +712,7 @@ - + Property System.Boolean @@ -717,8 +720,9 @@ To be added - a + a To be added - \ No newline at end of file + + diff --git a/doc/en/Gtk/FileChooserAction.xml b/doc/en/Gtk/FileChooserAction.xml index 252a05ed4..462bbcb1e 100644 --- a/doc/en/Gtk/FileChooserAction.xml +++ b/doc/en/Gtk/FileChooserAction.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.FileChooserActionGType)) + + @@ -98,4 +89,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/FileChooserButton.xml b/doc/en/Gtk/FileChooserButton.xml index a77f9e48f..836ba94a2 100644 --- a/doc/en/Gtk/FileChooserButton.xml +++ b/doc/en/Gtk/FileChooserButton.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,20 +14,7 @@ Gtk.HBox - - System.Collections.IEnumerable - - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -54,10 +39,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -68,7 +56,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -84,7 +71,6 @@ To be added a a - a To be added @@ -102,7 +88,6 @@ a a a - a To be added @@ -116,7 +101,6 @@ To be added a - a To be added @@ -129,7 +113,7 @@ GType Property. - a + a Returns the native value for . @@ -142,10 +126,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="title") + + Property @@ -155,9 +143,13 @@ To be added - a + a To be added - + + + GLib.Property(Name="width-chars") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/FileChooserDialog.xml b/doc/en/Gtk/FileChooserDialog.xml index 076a781fb..7769e808a 100644 --- a/doc/en/Gtk/FileChooserDialog.xml +++ b/doc/en/Gtk/FileChooserDialog.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,17 +17,7 @@ Gtk.FileChooser - - GLib.IWrapper - - - Atk.Implementor - - - System.IDisposable - - @@ -45,7 +33,7 @@ - + Method System.Boolean @@ -66,7 +54,7 @@ - + Method System.Void @@ -78,7 +66,7 @@ - + Method System.Boolean @@ -110,7 +98,7 @@ - + Method System.Boolean @@ -130,7 +118,7 @@ - + Method System.Boolean @@ -154,7 +142,7 @@ - + Method System.Void @@ -167,7 +155,7 @@ - + Method System.Boolean @@ -190,7 +178,7 @@ - + Method System.Void @@ -206,7 +194,7 @@ - + Method System.Boolean @@ -226,7 +214,7 @@ - + Method System.Boolean @@ -246,7 +234,7 @@ - + Method System.Void @@ -266,7 +254,7 @@ - + Method System.Void @@ -287,7 +275,7 @@ - + Method System.Boolean @@ -303,7 +291,7 @@ - + Method System.Void @@ -323,7 +311,7 @@ - + Method System.Boolean @@ -344,7 +332,7 @@ - + Method System.Boolean @@ -432,11 +420,14 @@ Protected constructor. a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -447,7 +438,6 @@ Constructor for internal use. a , pointer to underlying C object. - a @@ -461,13 +451,13 @@ The of this object. - a + a - + Property System.String @@ -475,13 +465,13 @@ The file chooser's current folder, if set from a URI. - a + a - + Property Gtk.Widget @@ -489,13 +479,13 @@ An application-supplied widget to provide extra options to the user. - a + a - + Property System.String @@ -505,7 +495,7 @@ Property to represent the current name in the file selector, as if entered by the user. - a + a Note that the name passed in here is a UTF-8 string rather than a filename. This function is meant for @@ -514,7 +504,7 @@ - + Property Gtk.FileFilter @@ -522,13 +512,13 @@ The currently-applied file filter. - a + a - + Property System.Boolean @@ -539,7 +529,7 @@ Sets whether only local files can be selected in the file selector. - a + a If true (the default), then the selected file are files are guaranteed to be @@ -554,7 +544,7 @@ - + Property System.Boolean @@ -565,14 +555,14 @@ Sets whether the preview widget set by should be shown for the current filename. - a + a When this property is set to false, the file chooser may display an internally generated preview of the current file or it may display no preview at all. - + Property System.String @@ -580,12 +570,12 @@ Internal function; gets the filename that should be previewed in a custom preview. - a + a Not for general programmer use. - + Property System.String @@ -594,7 +584,7 @@ The URI for the currently selected file in the file selector. - a + a If multiple files are selected, one of the filenames will be returned at random. @@ -604,7 +594,7 @@ - + Property System.Boolean @@ -615,7 +605,7 @@ Sets whether the file chooser should display a stock label with the name of the file that is being previewed; the default is true. - a + a Applications that want to draw the whole preview area themselves should set this @@ -624,7 +614,7 @@ - + Property System.String @@ -632,13 +622,13 @@ The current filename selected by the file chooser. - a + a - + Property System.String @@ -646,13 +636,13 @@ The URI that should be previewed in a custom preview widget. - a + a - + Property System.Boolean @@ -662,7 +652,7 @@ Sets whether multiple files can be selected in the file selector. - a + a This is only relevant if the action is set to be or @@ -672,7 +662,7 @@ - + Property Gtk.Widget @@ -683,7 +673,7 @@ An application-supplied widget to use to display a custom preview of the currently selected file. - a + a To implement a preview, after setting the @@ -708,7 +698,7 @@ - + Property Gtk.FileChooserAction @@ -719,7 +709,7 @@ Sets the type of operation that that the chooser is performing; the user interface is adapted to suit the selected action. - a + a For example, an option to create a new folder might be shown if the action is @@ -729,7 +719,7 @@ - + Property System.String @@ -737,13 +727,13 @@ The current folder for the file chooser, when the chooser has selected a local filename. - a + a - + Property System.String[] @@ -751,13 +741,13 @@ The filenames selected by this widget. - a + a - + Property System.String[] @@ -765,13 +755,13 @@ The URIs selected by this dialog. - a + a - + Property Gtk.FileFilter[] @@ -779,13 +769,13 @@ The filters currently in use by this dialog for patterns of files to display. - a + a - + Property System.String[] @@ -793,13 +783,13 @@ The shortcut folders currently in use for this dialog. - a + a - + Property System.String[] @@ -807,13 +797,13 @@ The shortcut URIs currently allowed for this dialog. - a + a - + Event System.EventHandler @@ -824,9 +814,13 @@ - + + + GLib.Signal(CName="selection-changed") + + - + Event System.EventHandler @@ -845,9 +839,13 @@ by the file chooser code to know when to activate the default button in the dialog. - + + + GLib.Signal(CName="file-activated") + + - + Event System.EventHandler @@ -877,9 +875,13 @@ - + + + GLib.Signal(CName="update-preview") + + - + Event System.EventHandler @@ -900,7 +902,11 @@ track of which folder a file chooser is showing. - + + + GLib.Signal(CName="current-folder-changed") + + Constructor @@ -908,19 +914,24 @@ To be added - a To be added - + Constructor - + + + + System.ParamArray + + + Creates a file chooser dialog. @@ -928,12 +939,11 @@ a parent for the dialog, or . an action, for example save or open. a list of button text/response pairs for buttons to be added to the dialog, if desired. - a - + Constructor @@ -941,7 +951,13 @@ - + + + + System.ParamArray + + + Creates a file chooser dialog with a specific file chooser backend @@ -950,7 +966,6 @@ a parent for the dialog, or . an action, for example save or open. a list of button text/response pairs for buttons to be added to the dialog, if desired. - a This is especially useful if you use to allow non-local files and you use a more expressive vfs, such as gnome-vfs, to load files. @@ -958,7 +973,7 @@ - + Property System.Boolean @@ -966,9 +981,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gtk/FileChooserEmbed.xml b/doc/en/Gtk/FileChooserEmbed.xml index fe86d9b61..58f102d1d 100644 --- a/doc/en/Gtk/FileChooserEmbed.xml +++ b/doc/en/Gtk/FileChooserEmbed.xml @@ -1,27 +1,24 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. An interface allowing file choosers to be embedded in other widgets. - + + - GLib.IWrapper - - + Event System.EventHandler @@ -29,7 +26,8 @@ Event fired when the default size of the file chooser object changes. - + + diff --git a/doc/en/Gtk/FileChooserError.xml b/doc/en/Gtk/FileChooserError.xml index 861dd0d7b..63f6a5a9d 100644 --- a/doc/en/Gtk/FileChooserError.xml +++ b/doc/en/Gtk/FileChooserError.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.FileChooserErrorGType)) + + @@ -70,4 +61,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/FileChooserWidget.xml b/doc/en/Gtk/FileChooserWidget.xml index 363d2b33a..0ac32c606 100644 --- a/doc/en/Gtk/FileChooserWidget.xml +++ b/doc/en/Gtk/FileChooserWidget.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,20 +18,10 @@ Gtk.FileChooser - - GLib.IWrapper - Gtk.FileChooserEmbed - - Atk.Implementor - - - System.IDisposable - - @@ -49,7 +37,7 @@ - + Method System.Boolean @@ -70,7 +58,7 @@ - + Method System.Void @@ -82,7 +70,7 @@ - + Method System.Boolean @@ -114,7 +102,7 @@ - + Method System.Boolean @@ -134,7 +122,7 @@ - + Method System.Boolean @@ -158,7 +146,7 @@ - + Method System.Void @@ -171,7 +159,7 @@ - + Method System.Boolean @@ -194,7 +182,7 @@ - + Method System.Void @@ -210,7 +198,7 @@ - + Method System.Boolean @@ -230,7 +218,7 @@ - + Method System.Boolean @@ -250,7 +238,7 @@ - + Method System.Void @@ -270,7 +258,7 @@ - + Method System.Void @@ -291,7 +279,7 @@ - + Method System.Boolean @@ -307,7 +295,7 @@ - + Method System.Void @@ -327,7 +315,7 @@ - + Method System.Boolean @@ -348,7 +336,7 @@ - + Method System.Boolean @@ -439,11 +427,14 @@ Protected constructor. a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -454,7 +445,6 @@ Constructor for internal use. a , pointer to underlying C object - a @@ -469,7 +459,6 @@ Public constructor. a , the action this chooser will perform - a @@ -486,7 +475,6 @@ Public constructor. a , the action this widget should perform a , the filesystem back-end to use. - a @@ -500,13 +488,13 @@ The for this object. - a + a - + Property System.String @@ -514,13 +502,13 @@ The file chooser's current folder, if set from a URI. - a + a - + Property Gtk.Widget @@ -528,13 +516,13 @@ An application-supplied widget to provide extra options to the user. - a + a - + Property System.String @@ -544,7 +532,7 @@ Property to represent the current name in the file selector, as if entered by the user. - a + a Note that the name passed in here is a UTF-8 string rather than a filename. This function is meant for @@ -553,7 +541,7 @@ - + Property Gtk.FileFilter @@ -561,13 +549,13 @@ The currently-applied file filter. - a + a - + Property System.Boolean @@ -578,7 +566,7 @@ Sets whether only local files can be selected in the file selector. - a + a If true (the default), then the selected file are files are guaranteed to be @@ -593,7 +581,7 @@ - + Property System.Boolean @@ -604,14 +592,14 @@ Sets whether the preview widget set by should be shown for the current filename. - a + a When this property is set to false, the file chooser may display an internally generated preview of the current file or it may display no preview at all. - + Property System.String @@ -619,12 +607,12 @@ Internal function; gets the filename that should be previewed in a custom preview. - a + a Not for general programmer use. - + Property System.String @@ -633,7 +621,7 @@ The URI for the currently selected file in the file selector. - a + a If multiple files are selected, one of the filenames will be returned at random. @@ -643,7 +631,7 @@ - + Property System.Boolean @@ -654,7 +642,7 @@ Sets whether the file chooser should display a stock label with the name of the file that is being previewed; the default is true. - a + a Applications that want to draw the whole preview area themselves should set this @@ -663,7 +651,7 @@ - + Property System.String @@ -671,13 +659,13 @@ The current filename selected by the file chooser. - a + a - + Property System.String @@ -685,13 +673,13 @@ The URI that should be previewed in a custom preview widget. - a + a - + Property System.Boolean @@ -701,7 +689,7 @@ Sets whether multiple files can be selected in the file selector. - a + a This is only relevant if the action is set to be or @@ -711,7 +699,7 @@ - + Property Gtk.Widget @@ -722,7 +710,7 @@ An application-supplied widget to use to display a custom preview of the currently selected file. - a + a To implement a preview, after setting the @@ -747,7 +735,7 @@ - + Property Gtk.FileChooserAction @@ -758,7 +746,7 @@ Sets the type of operation that that the chooser is performing; the user interface is adapted to suit the selected action. - a + a For example, an option to create a new folder might be shown if the action is @@ -768,7 +756,7 @@ - + Property System.String @@ -776,13 +764,13 @@ The current folder for the file chooser, when the chooser has selected a local filename. - a + a - + Property System.String[] @@ -790,13 +778,13 @@ The filenames selected by this widget. - a + a - + Property System.String[] @@ -804,13 +792,13 @@ The URIs selected by this widget. - a + a - + Property Gtk.FileFilter[] @@ -818,13 +806,13 @@ The filters currently in use by this widget for patterns of files to display. - a + a - + Property System.String[] @@ -832,13 +820,13 @@ The shortcut folders currently in use for this widget. - a + a - + Property System.String[] @@ -846,13 +834,13 @@ The shortcut URIs currently allowed for this widget. - a + a - + Event System.EventHandler @@ -863,9 +851,13 @@ - + + + GLib.Signal(CName="selection-changed") + + - + Event System.EventHandler @@ -884,9 +876,13 @@ by the file chooser code to know when to activate the default button in the dialog. - + + + GLib.Signal(CName="file-activated") + + - + Event System.EventHandler @@ -916,9 +912,13 @@ - + + + GLib.Signal(CName="update-preview") + + - + Event System.EventHandler @@ -929,9 +929,13 @@ - + + + GLib.Signal(CName="current-folder-changed") + + - + Event System.EventHandler @@ -942,9 +946,13 @@ - + + + GLib.Signal(CName="default-size-changed") + + - + Property System.Boolean @@ -952,9 +960,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gtk/FileFilter.xml b/doc/en/Gtk/FileFilter.xml index 236160ed8..d8f6ba3a1 100644 --- a/doc/en/Gtk/FileFilter.xml +++ b/doc/en/Gtk/FileFilter.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gtk.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -101,10 +92,13 @@ Protected constructor. a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -115,7 +109,6 @@ Constructor for internal use only. a - a @@ -126,7 +119,6 @@ Creates a new file filter with no rules attached to it. - a A newly-created filter doesn't accept any files, so is not particularly useful until you add rules with @@ -145,7 +137,7 @@ The of this object. - a + a @@ -158,7 +150,7 @@ The human-readable name of the filter. - a + a This is the string that will be displayed in the file selector user interface if there is a selectable list of filters. @@ -177,7 +169,7 @@ Gets the fields that need to be filled in for the structure passed to . - a , flags that list the needed fields when calling . + a , flags that list the needed fields when calling . This function will not typically be used by applications; it is intended principally for use in the implementation of @@ -220,4 +212,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/FileFilterFlags.xml b/doc/en/Gtk/FileFilterFlags.xml index 39a9bd160..a4892c77d 100644 --- a/doc/en/Gtk/FileFilterFlags.xml +++ b/doc/en/Gtk/FileFilterFlags.xml @@ -4,31 +4,21 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - This object represents a bitfield of flags that list the needed fields when calling . - + This object represents a bitfield of flags that list the needed fields when calling . + System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + GLib.GType(WrapperType=typeof(Gtk.FileFilterFlagsGType)) + + + System.Flags @@ -42,7 +32,7 @@ The filename. - + @@ -55,7 +45,7 @@ A URI. - + @@ -68,7 +58,7 @@ The filename to display. - + @@ -81,7 +71,7 @@ The MIME type of the file. - + diff --git a/doc/en/Gtk/FileFilterFunc.xml b/doc/en/Gtk/FileFilterFunc.xml index b69bcbd6c..c6ecea041 100644 --- a/doc/en/Gtk/FileFilterFunc.xml +++ b/doc/en/Gtk/FileFilterFunc.xml @@ -1,29 +1,20 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - Delegate class for ; see that method's documentation for more details. - + To be added. + Delegate class for ; see that method's documentation for more details. + + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Boolean diff --git a/doc/en/Gtk/FileFilterInfo.xml b/doc/en/Gtk/FileFilterInfo.xml index 774e99402..0808eda9a 100644 --- a/doc/en/Gtk/FileFilterInfo.xml +++ b/doc/en/Gtk/FileFilterInfo.xml @@ -1,22 +1,20 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - Used to pass information about files to . Mostly for internal use. - + Used to pass information about files to . + + System.ValueType - @@ -28,7 +26,8 @@ An empty FileFilterInfo - + + @@ -41,7 +40,8 @@ Flags indicating which of the fields are filled. - + + @@ -54,7 +54,8 @@ The filename of the file being tested - + + @@ -67,7 +68,8 @@ The URI for the file being tested - + + @@ -80,7 +82,8 @@ The string that will be used to display the file in the file chooser - + + @@ -93,7 +96,8 @@ The mime type of the file - + + diff --git a/doc/en/Gtk/FSButton.xml b/doc/en/Gtk/FileSelection+FSButton.xml similarity index 60% rename from doc/en/Gtk/FSButton.xml rename to doc/en/Gtk/FileSelection+FSButton.xml index 1ba9d206c..bbed97784 100644 --- a/doc/en/Gtk/FSButton.xml +++ b/doc/en/Gtk/FileSelection+FSButton.xml @@ -1,44 +1,13 @@ - - + + gtk-sharp - - - 0.0.0.0 - neutral - + 2.0.0.0 - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - - Helper class for s embedded inside a - - - This class is used as a wrapper around buttons embedded inside - a . This class exposes an - additional property, , which - can be used to get back to the parent dialog. - - - Gtk.Button - - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - - + @@ -48,7 +17,7 @@ Returns the parent - The parent + The parent This class is only used by @@ -61,4 +30,16 @@ - \ No newline at end of file + + + Helper class for s embedded inside a + + + This class is used as a wrapper around buttons embedded inside + a . This class exposes an + additional property, , which + can be used to get back to the parent dialog. + + + + diff --git a/doc/en/Gtk/FileSelection.xml b/doc/en/Gtk/FileSelection.xml index 05caf1432..4d04695fe 100644 --- a/doc/en/Gtk/FileSelection.xml +++ b/doc/en/Gtk/FileSelection.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -85,20 +83,7 @@ class FileSelectionSample Gtk.Dialog - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -163,7 +148,6 @@ class FileSelectionSample Internal constructor Pointer to the C object. - An instance of FileSelection, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -179,7 +163,6 @@ class FileSelectionSample The main way to construct a new file selector. A title that will appear in the window's title bar. - A new FileSelection @@ -191,7 +174,7 @@ class FileSelectionSample The widget enclosing the items that can be acted upon. - an object of type + an object of type (FIXME: how is this different from ButtonArea? Gtk+ docs are thin about this.) @@ -203,7 +186,7 @@ class FileSelectionSample A widget to contain all the button objects in this dialog. - an object of type + an object of type @@ -215,7 +198,7 @@ class FileSelectionSample The 'rename file' button of this file selector. - + This button may or may not be visible, see and . @@ -229,7 +212,7 @@ class FileSelectionSample The 'delete' button of this file selector. - + This button may or may not be visible, see and . @@ -243,7 +226,7 @@ class FileSelectionSample The 'create directory' button of this file selector. - + This button may or may not be visible, see and . @@ -257,7 +240,7 @@ class FileSelectionSample The filename selected by this . - an object of type + an object of type @@ -269,7 +252,7 @@ class FileSelectionSample The main widget of this . - + @@ -281,7 +264,7 @@ class FileSelectionSample The dialog box for confirming actions, if necessary. - an object of type + an object of type @@ -293,7 +276,7 @@ class FileSelectionSample The that is displayed by the . - A menu containing the file system paths higher than the selected directory, and the user's directory history. + A menu containing the file system paths higher than the selected directory, and the user's directory history. Note that this does not just contain history, it contains a list of directories above the current directory in the filesystem as well as user directory history. @@ -307,7 +290,7 @@ class FileSelectionSample The drop down menu containing directories in the filesystem above the selected directory, and the user's directory history. - The at the top of the file selector. + The at the top of the file selector. This widget displays the menu returned by . @@ -321,7 +304,7 @@ class FileSelectionSample A help button, not displayed by default. - + @@ -333,7 +316,7 @@ class FileSelectionSample The 'cancel' button of this file selector. - + @@ -345,7 +328,7 @@ class FileSelectionSample The 'OK' button of this file selector. - + @@ -357,7 +340,7 @@ class FileSelectionSample The text to display about the file to be selected. - an object of type + an object of type @@ -369,7 +352,7 @@ class FileSelectionSample The text-entry widget for entering a filename into. - an object of type + an object of type @@ -381,7 +364,7 @@ class FileSelectionSample The widget that displays files in this file selector. - + @@ -393,7 +376,7 @@ class FileSelectionSample The widget that displays directories in this file selector. - + @@ -406,20 +389,20 @@ class FileSelectionSample The main in the file selector. - a + a - + Property - System.String [] + System.String[] Get the files that are selected - An array of file paths + An array of file paths @@ -434,13 +417,17 @@ class FileSelectionSample Manage whether buttons are displayed for doing file operations. Set to to display the file buttons. - - for buttons to be shown, otherwise. + + for buttons to be shown, otherwise. This manipulates whether the buttons for creating a directory, deleting files and renaming files, are displayed. - + + + GLib.Property(Name="show_fileops") + + Property @@ -452,12 +439,16 @@ class FileSelectionSample Manage the selected filename. Sets a default path for the file requestor. - The selected filename in the on-disk encoding. + The selected filename in the on-disk encoding. If includes a directory path, then the requestor will open with that path as its current working directory. The encoding of filename is the on-disk encoding, which may not be UTF-8. - + + + GLib.Property(Name="filename") + + Property @@ -469,11 +460,15 @@ class FileSelectionSample Manage whether more than one file can be selected. Set to to allow more than one file to be selected in the file list, to only allow selection of a single file. - - if multiple selections are allowed, otherwise. + + if multiple selections are allowed, otherwise. - + + + GLib.Property(Name="select_multiple") + + Property @@ -483,7 +478,7 @@ class FileSelectionSample GType Property. - a + a Returns the native value for . @@ -497,9 +492,12 @@ class FileSelectionSample Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/FilesAddedArgs.xml b/doc/en/Gtk/FilesAddedArgs.xml deleted file mode 100644 index be55ea52b..000000000 --- a/doc/en/Gtk/FilesAddedArgs.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - gtk-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Arguments for the event fired by - -descended - classes when files are added to a folder: - . - - - - GLib.SignalArgs - - - - - - - Constructor - - - - Public constructor. - a - - - - - - Property - - GLib.SList - - - - The paths of the files that were added to the folder. - a - - - - - diff --git a/doc/en/Gtk/FilesAddedHandler.xml b/doc/en/Gtk/FilesAddedHandler.xml deleted file mode 100644 index 3c348b083..000000000 --- a/doc/en/Gtk/FilesAddedHandler.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - gtk-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Event handler for . - - - - System.Delegate - - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - - - - System.Void - - - - - - diff --git a/doc/en/Gtk/FilesChangedArgs.xml b/doc/en/Gtk/FilesChangedArgs.xml deleted file mode 100644 index 13560db2f..000000000 --- a/doc/en/Gtk/FilesChangedArgs.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - gtk-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Arguments for the event fired by - -descended - classes when files in a folder are changed: - . - - - - GLib.SignalArgs - - - - - - - Constructor - - - - Public constructor. - a - - - - - - Property - - GLib.SList - - - - A list of the paths of the changed files. - a - - - - - diff --git a/doc/en/Gtk/FilesChangedHandler.xml b/doc/en/Gtk/FilesChangedHandler.xml deleted file mode 100644 index 598caf4f9..000000000 --- a/doc/en/Gtk/FilesChangedHandler.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - gtk-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Event handler for . - - - - System.Delegate - - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - - - - System.Void - - - - - - diff --git a/doc/en/Gtk/FilesRemovedArgs.xml b/doc/en/Gtk/FilesRemovedArgs.xml deleted file mode 100644 index a024cdbd3..000000000 --- a/doc/en/Gtk/FilesRemovedArgs.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - gtk-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Arguments for the event fired by - -descended - classes when files are removed from a folder: - . - - - - GLib.SignalArgs - - - - - - - Constructor - - - - Public constructor. - a - - - - - - Property - - GLib.SList - - - - The paths of the removed files. - a - - - - - diff --git a/doc/en/Gtk/FilesRemovedHandler.xml b/doc/en/Gtk/FilesRemovedHandler.xml deleted file mode 100644 index 028fbee68..000000000 --- a/doc/en/Gtk/FilesRemovedHandler.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - gtk-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Event handler for . - - - - System.Delegate - - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - - - - System.Void - - - - - - diff --git a/doc/en/Gtk/Fixed+FixedChild.xml b/doc/en/Gtk/Fixed+FixedChild.xml new file mode 100644 index 000000000..d2e42a754 --- /dev/null +++ b/doc/en/Gtk/Fixed+FixedChild.xml @@ -0,0 +1,54 @@ + + + + gtk-sharp + 2.0.0.0 + + + Gtk.Container+ContainerChild + + + + + + Property + + + Gtk.ChildProperty(Name="x") + + + + System.Int32 + + + The child's X coordinate + The child's X coordinate + + + + + + + Property + + + Gtk.ChildProperty(Name="y") + + + + System.Int32 + + + The child's Y coordinate + The child's Y coordinate + + + + + + + A child of a , used to interact with its container child properties. + + + + diff --git a/doc/en/Gtk/Fixed.xml b/doc/en/Gtk/Fixed.xml index 18171056b..e99225da7 100644 --- a/doc/en/Gtk/Fixed.xml +++ b/doc/en/Gtk/Fixed.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -34,20 +32,12 @@ Gtk.Container - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - + + + System.Reflection.DefaultMember(MemberName="Item") + + @@ -109,7 +99,6 @@ Internal constructor Pointer to the C object. - An instance of Fixed, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -122,7 +111,6 @@ Creates a new object. - an object of type Creates a new object. @@ -137,7 +125,7 @@ Determines if has a seperate an object of type - an object of type + an object of type Gets whether the has its own . Sets whether a widget is created with a separate or not. (By default, it will be created without a seperate ). This function must be called while the is not realized, for instance, immediately after the window is created. @@ -153,7 +141,7 @@ GType Property. - a + a Returns the native value for . @@ -167,10 +155,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -188,4 +179,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/FixedChild.xml b/doc/en/Gtk/FixedChild.xml deleted file mode 100644 index a8b7f962f..000000000 --- a/doc/en/Gtk/FixedChild.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - gtk-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - A child of a , used to interact with its container child properties. - - - - - Gtk.Container+ContainerChild - - - - - - - Property - - System.Int32 - - - - The child's X coordinate - The child's X coordinate - - - - - - - Property - - System.Int32 - - - - The child's Y coordinate - The child's Y coordinate - - - - - - - Constructor - - - - - - - Constructor - a - a - a - - - - - \ No newline at end of file diff --git a/doc/en/Gtk/FocusChildSetArgs.xml b/doc/en/Gtk/FocusChildSetArgs.xml index 1e517084a..2345eb34f 100644 --- a/doc/en/Gtk/FocusChildSetArgs.xml +++ b/doc/en/Gtk/FocusChildSetArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The widget being focused on. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/FocusChildSetHandler.xml b/doc/en/Gtk/FocusChildSetHandler.xml index 76821e5b6..d26af109f 100644 --- a/doc/en/Gtk/FocusChildSetHandler.xml +++ b/doc/en/Gtk/FocusChildSetHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/FocusInEventArgs.xml b/doc/en/Gtk/FocusInEventArgs.xml index 826c5f590..95dab19e7 100644 --- a/doc/en/Gtk/FocusInEventArgs.xml +++ b/doc/en/Gtk/FocusInEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The focus event. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/FocusInEventHandler.xml b/doc/en/Gtk/FocusInEventHandler.xml index d951d062f..0275bb40e 100644 --- a/doc/en/Gtk/FocusInEventHandler.xml +++ b/doc/en/Gtk/FocusInEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/FocusOutEventArgs.xml b/doc/en/Gtk/FocusOutEventArgs.xml index 7d1f3f0bf..65b469f1d 100644 --- a/doc/en/Gtk/FocusOutEventArgs.xml +++ b/doc/en/Gtk/FocusOutEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The change in keyboard focus. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/FocusOutEventHandler.xml b/doc/en/Gtk/FocusOutEventHandler.xml index dfe65b5ea..5c451fe8f 100644 --- a/doc/en/Gtk/FocusOutEventHandler.xml +++ b/doc/en/Gtk/FocusOutEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/FocusTabArgs.xml b/doc/en/Gtk/FocusTabArgs.xml index 2013de940..07327c0f1 100644 --- a/doc/en/Gtk/FocusTabArgs.xml +++ b/doc/en/Gtk/FocusTabArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The type of tab to focus on. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/FocusTabHandler.xml b/doc/en/Gtk/FocusTabHandler.xml index b0ff6044a..b52c8825c 100644 --- a/doc/en/Gtk/FocusTabHandler.xml +++ b/doc/en/Gtk/FocusTabHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/FocusedArgs.xml b/doc/en/Gtk/FocusedArgs.xml index fef01c759..8f62c20ae 100644 --- a/doc/en/Gtk/FocusedArgs.xml +++ b/doc/en/Gtk/FocusedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,11 +36,11 @@ How the focus on this widget behaves. - + - + - \ No newline at end of file + diff --git a/doc/en/Gtk/FocusedHandler.xml b/doc/en/Gtk/FocusedHandler.xml index b2beaac76..fb496a989 100644 --- a/doc/en/Gtk/FocusedHandler.xml +++ b/doc/en/Gtk/FocusedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/FontButton.xml b/doc/en/Gtk/FontButton.xml index 2e8468f4e..cb636b1ef 100644 --- a/doc/en/Gtk/FontButton.xml +++ b/doc/en/Gtk/FontButton.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,17 +15,7 @@ Gtk.Button - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -64,10 +52,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -78,7 +69,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -89,7 +79,6 @@ Public constructor. - a @@ -104,7 +93,6 @@ Public constructor with a font name. a , name of font to display in font selection dialog. - a @@ -118,7 +106,7 @@ GType Property. - a + a Returns the native value for . @@ -131,11 +119,15 @@ If this property is , the font size will be displayed along with the name of the selected font. - a + a - + + + GLib.Property(Name="show_size") + + Property @@ -147,10 +139,14 @@ If this property is set to , the selected font size will be shown in the label. - a + a For a more WYSIWYG way to show the selected size, see the property. - + + + GLib.Property(Name="use_size") + + Property @@ -160,11 +156,15 @@ Retrieves the name of the currently selected font. - a + a - + + + GLib.Property(Name="font_name") + + Property @@ -174,11 +174,15 @@ Whether the label is drawn in the selected font. - a + a - + + + GLib.Property(Name="use_font") + + Property @@ -188,11 +192,15 @@ The title of the font dialog. - a + a - + + + GLib.Property(Name="title") + + Property @@ -202,11 +210,15 @@ Returns whether the name of the font style will be shown in the label. - a + a - + + + GLib.Property(Name="show_style") + + Event @@ -219,7 +231,11 @@ - + + + GLib.Signal(CName="font_set") + + Method @@ -239,4 +255,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/FontSelection.xml b/doc/en/Gtk/FontSelection.xml index 90cdfd7cf..c5cc20bc4 100644 --- a/doc/en/Gtk/FontSelection.xml +++ b/doc/en/Gtk/FontSelection.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -25,20 +23,7 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -62,7 +47,6 @@ Internal constructor Pointer to the C object. - An instance of FontSelection, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -75,7 +59,6 @@ The main way to construct a new FontSelection - Creates a new FontSelection widget that allows the user to select from the available fonts. @@ -92,12 +75,16 @@ Manage the name of the font that is selected in this widget. The name of a system font to select. - The name of the currently selected font. + The name of the currently selected font. If this property is used to alter the widget's font name to a font that could not be found, the widget will retain its original font selection. See also , which returns a value indicating whether or not the new font name was found. - + + + GLib.Property(Name="font_name") + + Property @@ -109,12 +96,16 @@ The text used to display a preview of the selected font. Text that should be displayed using the selected font. - The text currently displaying the selected font. + The text currently displaying the selected font. This property determines the exact string that is displayed in the 'preview area' of the FontSelection. - + + + GLib.Property(Name="preview_text") + + Property @@ -123,10 +114,14 @@ Get the that is currently selected. - A Gdk font object representing the selected font, or null if no font is selected. + A Gdk font object representing the selected font, or null if no font is selected. - + + + GLib.Property(Name="font") + + Property @@ -136,7 +131,7 @@ GType Property. - a + a Returns the native value for . @@ -150,10 +145,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -172,4 +170,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/FontSelectionDialog.xml b/doc/en/Gtk/FontSelectionDialog.xml index db4846fea..6814e988c 100644 --- a/doc/en/Gtk/FontSelectionDialog.xml +++ b/doc/en/Gtk/FontSelectionDialog.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,20 +17,7 @@ Gtk.Dialog - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -75,7 +60,6 @@ Internal constructor Pointer to the C object. - An instance of FontSelectionDialog, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -91,7 +75,6 @@ Create a new FontSelectionDialog A title that will appear in the window's title bar. - A new FontSelectionDialog @@ -103,7 +86,7 @@ The name of the font that is selected in this widget - The name of the currently selected font. + The name of the currently selected font. @@ -118,7 +101,7 @@ The text used to display a preview of the selected font. Text that should be displayed using the selected font. - The text currently displaying the selected font. + The text currently displaying the selected font. This property determines the exact string that is displayed in the 'preview area' of the FontSelectionDialog. @@ -133,7 +116,7 @@ GType Property. - a + a Returns the native value for . @@ -147,10 +130,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -160,21 +146,25 @@ The font that was selected using the dialog. - a + a - + + + System.Obsolete(Message=null, IsError=False) + + Property - Gtk.Widget + Gtk.Button The dialog's "Apply" button. - a + a @@ -183,12 +173,12 @@ Property - Gtk.Widget + Gtk.Button The dialog's "Cancel" button. - a + a @@ -197,15 +187,15 @@ Property - Gtk.Widget + Gtk.Button The dialog's "OK" button. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/FormatValueArgs.xml b/doc/en/Gtk/FormatValueArgs.xml index 068343dcf..de2e3bab6 100644 --- a/doc/en/Gtk/FormatValueArgs.xml +++ b/doc/en/Gtk/FormatValueArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The value to be formatted. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/FormatValueHandler.xml b/doc/en/Gtk/FormatValueHandler.xml index 49324094c..df9fef62e 100644 --- a/doc/en/Gtk/FormatValueHandler.xml +++ b/doc/en/Gtk/FormatValueHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Frame.xml b/doc/en/Gtk/Frame.xml index 7681ed579..7de872771 100644 --- a/doc/en/Gtk/Frame.xml +++ b/doc/en/Gtk/Frame.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,20 +18,7 @@ Gtk.Bin - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -57,7 +42,6 @@ Internal constructor Pointer to the C object. - An instance of Frame, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -73,7 +57,6 @@ Create a new frame with a label in the top left corner. The text to appear as this frame's label - A new Frame. This creates a new frame with a widget in the top left corner, displaying the text passed in as . @@ -86,7 +69,6 @@ Create a new frame with no label - A new Frame with a null . @@ -101,12 +83,16 @@ Manage the widget that acts as a frame's . A widget to replace the existing label. - The current in use as this Frame's label. + The current in use as this Frame's label. Despite its name, this property does not have to set a widget as its label. Because of the way that Gtk containers work, you may add an arbitrary widget as the label for this frame. However, a genuine is recommended for consistency with other applications. - + + + GLib.Property(Name="label_widget") + + Property @@ -118,10 +104,14 @@ Set the vertical alignment of the . A new vertical alignment between 0 and 1.0 - The existing vertical alignment of this Frame's label + The existing vertical alignment of this Frame's label - + + + GLib.Property(Name="label_yalign") + + Property @@ -133,10 +123,14 @@ Set the horizontal alignment of the . A new horizontal alignment between 0 and 1.0 - The existing horizontal alignment of this Frame's label + The existing horizontal alignment of this Frame's label - + + + GLib.Property(Name="label_xalign") + + Property @@ -148,10 +142,14 @@ Manage the appearance of this frame's border. A new shadow type. - The current shadow style that this Frame is rendered with. + The current shadow style that this Frame is rendered with. - + + + GLib.Property(Name="shadow_type") + + Property @@ -163,10 +161,14 @@ The string that is visible as the Frame's label Sets the text of the label, if this Frame has one. - The text of a label if is a , null otherwise. + The text of a label if is a , null otherwise. - + + + GLib.Property(Name="label") + + Property @@ -178,10 +180,14 @@ Manage the appearance of this frame's border. A new shadow type. - The current shadow style that this Frame is rendered with. + The current shadow style that this Frame is rendered with. - + + + GLib.Property(Name="shadow") + + Property @@ -191,7 +197,7 @@ GType Property. - a + a Returns the native value for . @@ -205,9 +211,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/FrameEventArgs.xml b/doc/en/Gtk/FrameEventArgs.xml index 5976c998c..d6b65226a 100644 --- a/doc/en/Gtk/FrameEventArgs.xml +++ b/doc/en/Gtk/FrameEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The Gdk event related to this FrameEvent. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/FrameEventHandler.xml b/doc/en/Gtk/FrameEventHandler.xml index bb80bb046..13e684335 100644 --- a/doc/en/Gtk/FrameEventHandler.xml +++ b/doc/en/Gtk/FrameEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Function.xml b/doc/en/Gtk/Function.xml index 7b864a3ea..12b3163ea 100644 --- a/doc/en/Gtk/Function.xml +++ b/doc/en/Gtk/Function.xml @@ -1,31 +1,22 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. A delegate for representing a function with a boolean return value. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Boolean - \ No newline at end of file + diff --git a/doc/en/Gtk/GammaCurve.xml b/doc/en/Gtk/GammaCurve.xml index 612e452ea..54c2f10ce 100644 --- a/doc/en/Gtk/GammaCurve.xml +++ b/doc/en/Gtk/GammaCurve.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,20 +22,7 @@ Gtk.VBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -61,7 +46,6 @@ Internal constructor Pointer to the C object. - An instance of GammaCurve, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -74,7 +58,6 @@ Constructor. - An instance of . @@ -87,7 +70,7 @@ GType Property. - a + a Returns the native value for . @@ -101,9 +84,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/Gc.xml b/doc/en/Gtk/Gc.xml index c31887463..0083f3dfd 100644 --- a/doc/en/Gtk/Gc.xml +++ b/doc/en/Gtk/Gc.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -63,9 +60,8 @@ Basic constructor. - a - \ No newline at end of file + diff --git a/doc/en/Gtk/Global.xml b/doc/en/Gtk/Global.xml index 54efdb396..8007d55e6 100644 --- a/doc/en/Gtk/Global.xml +++ b/doc/en/Gtk/Global.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -127,7 +124,6 @@ Do not use. - a There are no instance members for this class. This constructor will be marked Obsolete and possibly removed in future versions. @@ -139,7 +135,7 @@ The current default language for this application. - a + a This value can change during the life of a program, and is based on the current locale. It contains information such as the text direction of the current language. @@ -151,7 +147,7 @@ Obtains a copy of the event currently being processed by Gtk#. - a + a For example, if you get a event from , the current event will be the that triggered the signal. If there is no current event, the function returns . @@ -163,7 +159,7 @@ Returns a representing the unix time of the current event. - Returns the unix time for the current event. + Returns the unix time for the current event. None. @@ -218,7 +214,7 @@ Checks if any events are pending. - a + a This can be used to update the GUI and invoke timeouts etc. while doing some time intensive computation. @@ -301,4 +297,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Grab.xml b/doc/en/Gtk/Grab.xml index 45f3ba3fb..69ba27e50 100644 --- a/doc/en/Gtk/Grab.xml +++ b/doc/en/Gtk/Grab.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -56,7 +53,6 @@ Basic constructor. - a @@ -68,9 +64,9 @@ Gets the current Widget for this Grab object. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/GrabNotifyArgs.xml b/doc/en/Gtk/GrabNotifyArgs.xml index ff0443118..155e7d8c3 100644 --- a/doc/en/Gtk/GrabNotifyArgs.xml +++ b/doc/en/Gtk/GrabNotifyArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ Returns whether or not the Grab object was actually grabbed. - A object. + A object. - \ No newline at end of file + diff --git a/doc/en/Gtk/GrabNotifyHandler.xml b/doc/en/Gtk/GrabNotifyHandler.xml index 836bfa088..a6c4dced0 100644 --- a/doc/en/Gtk/GrabNotifyHandler.xml +++ b/doc/en/Gtk/GrabNotifyHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/HBox.xml b/doc/en/Gtk/HBox.xml index a719d5c9c..a1ebfc002 100644 --- a/doc/en/Gtk/HBox.xml +++ b/doc/en/Gtk/HBox.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -22,20 +20,7 @@ Gtk.Box - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -59,7 +44,6 @@ Internal constructor Pointer to the C object. - An instance of HBox, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -77,9 +61,6 @@ The main way to create a new HBox. If , all widgets in the box are forced to be equally sized. The number of pixels to place between each widget in the box. - - A new HBox - @@ -92,7 +73,7 @@ GType Property. - a + a Returns the native value for . @@ -106,10 +87,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -117,9 +101,8 @@ Default constructor. - a - \ No newline at end of file + diff --git a/doc/en/Gtk/HButtonBox.xml b/doc/en/Gtk/HButtonBox.xml index 70b683a0b..f120dad43 100644 --- a/doc/en/Gtk/HButtonBox.xml +++ b/doc/en/Gtk/HButtonBox.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,20 +18,7 @@ Gtk.ButtonBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -57,7 +42,6 @@ Internal constructor Pointer to the C object. - An instance of HButtonBox, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -70,7 +54,6 @@ The normal way to construct a horizontal button box - A new HBox @@ -83,7 +66,7 @@ GType Property. - a + a Returns the native value for . @@ -97,10 +80,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -110,10 +96,15 @@ The default layout style for horizontal button boxes. - a - + a + + - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -123,9 +114,14 @@ The default spacing (in pixels) for horizontal button boxes. - a - + a + + - + + + System.Obsolete(Message=null, IsError=False) + + diff --git a/doc/en/Gtk/HPaned.xml b/doc/en/Gtk/HPaned.xml index ff740ff1a..0fe24560b 100644 --- a/doc/en/Gtk/HPaned.xml +++ b/doc/en/Gtk/HPaned.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,20 +18,7 @@ Gtk.Paned - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -57,7 +42,6 @@ Internal constructor Pointer to the C object. - An instance of HPaned, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -70,7 +54,6 @@ Creates a new container, split horizontally. - A new HPaned. @@ -83,7 +66,7 @@ GType Property. - a + a Returns the native value for . @@ -97,9 +80,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/HRuler.xml b/doc/en/Gtk/HRuler.xml index bdf00990c..b2d4df089 100644 --- a/doc/en/Gtk/HRuler.xml +++ b/doc/en/Gtk/HRuler.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,20 +19,7 @@ Gtk.Ruler - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -58,7 +43,6 @@ Internal constructor Pointer to the C object. - An instance of HRuler, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -71,7 +55,6 @@ Creates a new horizontal ruler. - A new HRuler. @@ -84,7 +67,7 @@ GType Property. - a + a Returns the native value for . @@ -98,9 +81,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/HSV.xml b/doc/en/Gtk/HSV.xml index 61e56b1ed..1e82d66e5 100644 --- a/doc/en/Gtk/HSV.xml +++ b/doc/en/Gtk/HSV.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.Widget - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -90,7 +75,6 @@ Internal constructor Pointer to the C object. - An instance of HSV, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -103,7 +87,6 @@ Default constructor. - A @@ -118,7 +101,11 @@ Fired when the color of this widget changes. - + + + GLib.Signal(CName="changed") + + Event @@ -130,7 +117,11 @@ Fired when this widget is moved. - + + + GLib.Signal(CName="move") + + Method @@ -206,7 +197,7 @@ is adjusting the value with the mouse. This property tells whether the HSV color selector is being adjusted or not. - a + a Returns true if clients can ignore changes to the color value, since they may be transitory, or false if they should consider the color @@ -223,7 +214,7 @@ GType Property. - a + a Returns the native value for . @@ -264,9 +255,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/HScale.xml b/doc/en/Gtk/HScale.xml index 99a51479c..36ec206eb 100644 --- a/doc/en/Gtk/HScale.xml +++ b/doc/en/Gtk/HScale.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,20 +18,7 @@ Gtk.Scale - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -57,7 +42,6 @@ Internal constructor Pointer to the C object. - An instance of HScale, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -73,7 +57,6 @@ Creates a new horizontal slider based on the data in . The model to use for this HScale - A new HScale To create a horizontal slider without explicit use of a , use the alternative constructor. @@ -93,7 +76,6 @@ The minimum value that is accepted by this HScale. The maximum value that is accepted by this HScale. The value to adjust the HScale by when 'sliding'. - A new HScale. Creates a new horizontal slider that lets the user input a number between (and including) and . Each adjustment of the slider changes the value by , which must be non-zero. @@ -108,7 +90,7 @@ GType Property. - a + a Returns the native value for . @@ -122,9 +104,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/HScrollbar.xml b/doc/en/Gtk/HScrollbar.xml index 496eef9ed..c1e26f2a4 100644 --- a/doc/en/Gtk/HScrollbar.xml +++ b/doc/en/Gtk/HScrollbar.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,20 +18,7 @@ Gtk.Scrollbar - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -57,7 +42,6 @@ Internal constructor Pointer to the C object. - An instance of HScrollbar, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -73,7 +57,6 @@ Creates a new horizontal scrollbar. The to use, or to create a new adjustment. - The new @@ -86,7 +69,7 @@ GType Property. - a + a Returns the native value for . @@ -100,9 +83,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/HSeparator.xml b/doc/en/Gtk/HSeparator.xml index 29657cde9..6bdab5a02 100644 --- a/doc/en/Gtk/HSeparator.xml +++ b/doc/en/Gtk/HSeparator.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,20 +19,7 @@ Gtk.Separator - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -58,7 +43,6 @@ Internal constructor Pointer to the C object. - An instance of HSeparator, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -71,7 +55,6 @@ Constructor - A horizontal separator. @@ -84,7 +67,7 @@ GType Property. - a + a Returns the native value for . @@ -98,9 +81,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/HTML.xml b/doc/en/Gtk/HTML.xml index fafb57dc2..ea15592d2 100644 --- a/doc/en/Gtk/HTML.xml +++ b/doc/en/Gtk/HTML.xml @@ -1,12 +1,10 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -147,20 +145,7 @@ namespace HtmlTest Gtk.Layout - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -962,7 +947,6 @@ class X { Internal constructor Pointer to the C object. - An instance of HTML, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -975,7 +959,6 @@ class X { Creates an empty widget. - The new constructed widget. It creates an empty widget. The @@ -995,15 +978,19 @@ class X { Whether the contents can be edited. Editing state. - + if the contents are editable, - otherwise. + otherwise. Whether this instance can be used as an HTML editor. Note: must be called before this can be set = . - + + + GLib.Property(Name="editable") + + Property @@ -1012,7 +999,7 @@ class X { The indentation level of a paragraph. - an object of type + an object of type @@ -1027,7 +1014,7 @@ class X { The base URL of this document. an object of type - an object of type + an object of type @@ -1042,10 +1029,14 @@ class X { The title of this HTML document. an object of type - an object of type + an object of type - + + + GLib.Property(Name="title") + + Property @@ -1057,7 +1048,7 @@ class X { The default content type. an object of type - an object of type + an object of type @@ -1072,7 +1063,7 @@ class X { The style of a paragraph. an object of type - an object of type + an object of type @@ -1087,7 +1078,7 @@ class X { To be added an object of type - an object of type + an object of type @@ -1102,7 +1093,7 @@ class X { The current widget magnification level. an object of type - an object of type + an object of type @@ -1117,7 +1108,7 @@ class X { The alignment of text (right, left, center) an object of type - an object of type + an object of type @@ -1132,7 +1123,7 @@ class X { Whether to allow framesets in this widget. an object of type - an object of type + an object of type @@ -1147,7 +1138,11 @@ class X { Fired when the font style under the cursor is changed. - + + + GLib.Signal(CName="insertion_font_style_changed") + + Event @@ -1163,7 +1158,11 @@ class X { the property. - + + + GLib.Signal(CName="title_changed") + + Event @@ -1175,7 +1174,11 @@ class X { Fired when the base URL of the document is changed. - + + + GLib.Signal(CName="set_base") + + Event @@ -1187,7 +1190,11 @@ class X { Fired when the size of text is changed. - + + + GLib.Signal(CName="size_changed") + + Event @@ -1199,7 +1206,11 @@ class X { Fired when the text style of this paragraph is changed. - + + + GLib.Signal(CName="current_paragraph_style_changed") + + Event @@ -1211,7 +1222,11 @@ class X { Fired after a webpage is finished loading. - + + + GLib.Signal(CName="load_done") + + Event @@ -1226,7 +1241,11 @@ class X { the cursor has moved. - + + + GLib.Signal(CName="cursor_move") + + Event @@ -1238,7 +1257,11 @@ class X { Fired when a command is issued to the widget. - + + + GLib.Signal(CName="command") + + Event @@ -1315,7 +1338,11 @@ class X { - + + + GLib.Signal(CName="url_requested") + + Event @@ -1327,7 +1354,11 @@ class X { Fired after an IFRAME is created. - + + + GLib.Signal(CName="iframe_created") + + Event @@ -1339,7 +1370,11 @@ class X { Fired when the widget is scrolled. - + + + GLib.Signal(CName="scroll") + + Event @@ -1351,7 +1386,11 @@ class X { Fired when the indent level of the current paragraph is changed. - + + + GLib.Signal(CName="current_paragraph_indentation_changed") + + Event @@ -1363,7 +1402,11 @@ class X { Fired when the alignment of the current paragraph is changed. - + + + GLib.Signal(CName="current_paragraph_alignment_changed") + + Event @@ -1375,7 +1418,11 @@ class X { Fired when the text color to insert is changed. - + + + GLib.Signal(CName="insertion_color_changed") + + Event @@ -1427,7 +1474,11 @@ class X { - + + + GLib.Signal(CName="link_clicked") + + Event @@ -1439,7 +1490,11 @@ class X { Fired when a form submit button is clicked. - + + + GLib.Signal(CName="submit") + + Event @@ -1451,7 +1506,11 @@ class X { Fired when an HTTP redirect is received. - + + + GLib.Signal(CName="redirect") + + Event @@ -1505,7 +1564,11 @@ class X { - + + + GLib.Signal(CName="on_url") + + Event @@ -1517,7 +1580,11 @@ class X { Fired when the base URL target is changed. - + + + GLib.Signal(CName="set_base_target") + + Method @@ -1543,7 +1610,6 @@ class X { A constructor. an object of type (FIXME: check this) - an object of type @@ -1558,10 +1624,14 @@ class X { The base URL of the document. A containing the URL - A containing the URL. + A containing the URL. - + + + GLib.Property(Name="document_base") + + Property @@ -1573,10 +1643,14 @@ class X { To be added an object of type - an object of type + an object of type - + + + GLib.Property(Name="target_base") + + Property @@ -1588,7 +1662,7 @@ class X { Whether magic links (auto-recognizing URLs and making them clickable) is activated. a - a + a @@ -1603,7 +1677,7 @@ class X { Whether magic smileys (automatically recognizing smileys and turning them into small graphics) is activated. a - a + a @@ -1618,7 +1692,7 @@ class X { To be added a - a + a @@ -1633,7 +1707,7 @@ class X { Whether or not to check spelling inline by indicating misspelled words. a - a + a @@ -1721,7 +1795,11 @@ class X { To be added - + + + GLib.Signal(CName="object_requested") + + Property @@ -1731,7 +1809,7 @@ class X { Whether the widget has an Undo option or not. - a + a @@ -1744,7 +1822,7 @@ class X { GType Property. - a + a Returns the native value for . @@ -2051,10 +2129,13 @@ class X { Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -2063,7 +2144,7 @@ class X { Sets the indentation level for the widget. - a + a @@ -2104,4 +2185,4 @@ class X { - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLBeginFlags.xml b/doc/en/Gtk/HTMLBeginFlags.xml index 706e8c51b..89d48d435 100644 --- a/doc/en/Gtk/HTMLBeginFlags.xml +++ b/doc/en/Gtk/HTMLBeginFlags.xml @@ -1,12 +1,10 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + System.Flags + + @@ -69,4 +60,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLClassProperties.xml b/doc/en/Gtk/HTMLClassProperties.xml index 8a0e222ff..6b6d18fa0 100644 --- a/doc/en/Gtk/HTMLClassProperties.xml +++ b/doc/en/Gtk/HTMLClassProperties.xml @@ -1,12 +1,10 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,11 +27,10 @@ Internal constructor Pointer to the C object. - An instance of HTMLClassProperties, wrapping the C object. This is an internal constructor, and should not be used by user code. - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLCommandType.xml b/doc/en/Gtk/HTMLCommandType.xml index ac33090bf..b1250b0fb 100644 --- a/doc/en/Gtk/HTMLCommandType.xml +++ b/doc/en/Gtk/HTMLCommandType.xml @@ -1,12 +1,10 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -2006,4 +1992,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLCursorSkipType.xml b/doc/en/Gtk/HTMLCursorSkipType.xml index 2d62173ac..c4e271091 100644 --- a/doc/en/Gtk/HTMLCursorSkipType.xml +++ b/doc/en/Gtk/HTMLCursorSkipType.xml @@ -1,12 +1,10 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -95,4 +81,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLEditorAPI.xml b/doc/en/Gtk/HTMLEditorAPI.xml index fb863c298..201459140 100644 --- a/doc/en/Gtk/HTMLEditorAPI.xml +++ b/doc/en/Gtk/HTMLEditorAPI.xml @@ -1,12 +1,10 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -48,4 +45,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLEditorEventType.xml b/doc/en/Gtk/HTMLEditorEventType.xml index ac34cdb75..8461770d1 100644 --- a/doc/en/Gtk/HTMLEditorEventType.xml +++ b/doc/en/Gtk/HTMLEditorEventType.xml @@ -1,12 +1,10 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -95,4 +81,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLEmbedded.xml b/doc/en/Gtk/HTMLEmbedded.xml index 907979e7e..241d1303d 100644 --- a/doc/en/Gtk/HTMLEmbedded.xml +++ b/doc/en/Gtk/HTMLEmbedded.xml @@ -1,12 +1,10 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ Gtk.Bin - - GLib.IWrapper - - @@ -33,7 +27,6 @@ Internal constructor Pointer to the C object. - An instance of HTMLEmbedded, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -48,7 +41,7 @@ GType Property. - a + a Returns the native value for . @@ -60,7 +53,7 @@ To be added - a + a @@ -75,7 +68,11 @@ To be added - + + + GLib.Signal(CName="draw_print") + + Event @@ -87,7 +84,11 @@ Fired when the HTML is changed. - + + + GLib.Signal(CName="changed") + + Event @@ -99,19 +100,12 @@ To be added - - - - Method - - System.Void - - - - To be added - - - + + + GLib.Signal(CName="draw_gdk") + + + Method @@ -203,10 +197,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -227,9 +224,8 @@ a a a - a - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLEtchStyle.xml b/doc/en/Gtk/HTMLEtchStyle.xml index aef2f12fd..f6f298410 100644 --- a/doc/en/Gtk/HTMLEtchStyle.xml +++ b/doc/en/Gtk/HTMLEtchStyle.xml @@ -1,12 +1,10 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -82,4 +68,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLFontStyle.xml b/doc/en/Gtk/HTMLFontStyle.xml index 9dfd3ac7f..7530c157c 100644 --- a/doc/en/Gtk/HTMLFontStyle.xml +++ b/doc/en/Gtk/HTMLFontStyle.xml @@ -1,12 +1,10 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + System.Flags + + @@ -251,4 +242,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLFontStyleShift.xml b/doc/en/Gtk/HTMLFontStyleShift.xml index f1aa6910f..0f780f731 100644 --- a/doc/en/Gtk/HTMLFontStyleShift.xml +++ b/doc/en/Gtk/HTMLFontStyleShift.xml @@ -1,12 +1,10 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -134,4 +120,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLParagraphAlignment.xml b/doc/en/Gtk/HTMLParagraphAlignment.xml index 391e9f3ee..fc85b493e 100644 --- a/doc/en/Gtk/HTMLParagraphAlignment.xml +++ b/doc/en/Gtk/HTMLParagraphAlignment.xml @@ -1,12 +1,10 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -82,4 +68,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLParagraphStyle.xml b/doc/en/Gtk/HTMLParagraphStyle.xml index 3666edbdc..afe91382c 100644 --- a/doc/en/Gtk/HTMLParagraphStyle.xml +++ b/doc/en/Gtk/HTMLParagraphStyle.xml @@ -1,12 +1,10 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -212,4 +198,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLPrintCallback.xml b/doc/en/Gtk/HTMLPrintCallback.xml index 573f39efa..56cefa836 100644 --- a/doc/en/Gtk/HTMLPrintCallback.xml +++ b/doc/en/Gtk/HTMLPrintCallback.xml @@ -1,31 +1,33 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. Delegate for printing page framing elements. Used to print headers and footers in . System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - + + + + + + System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLSaveReceiverFn.xml b/doc/en/Gtk/HTMLSaveReceiverFn.xml index 48ce16b6a..4098b3c4c 100644 --- a/doc/en/Gtk/HTMLSaveReceiverFn.xml +++ b/doc/en/Gtk/HTMLSaveReceiverFn.xml @@ -1,27 +1,20 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. A delegate to receive HTML content from . In most cases, a delegate of this form probably saves HTML to a file, prints it, or similar. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -30,4 +23,4 @@ System.Boolean - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLStream.xml b/doc/en/Gtk/HTMLStream.xml index ec325eb62..3a0fb0a8f 100644 --- a/doc/en/Gtk/HTMLStream.xml +++ b/doc/en/Gtk/HTMLStream.xml @@ -1,12 +1,10 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ GLib.Opaque - @@ -98,7 +95,7 @@ - + Method System.Void @@ -122,7 +119,7 @@ To be added - A + A @@ -136,7 +133,6 @@ Constructor for internal use only. Do not use. a , the underlying C objject. - a @@ -156,12 +152,11 @@ a a a - a - + Method System.Void @@ -178,4 +173,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLStreamCloseFunc.xml b/doc/en/Gtk/HTMLStreamCloseFunc.xml index c0f25c74a..56510b3ea 100644 --- a/doc/en/Gtk/HTMLStreamCloseFunc.xml +++ b/doc/en/Gtk/HTMLStreamCloseFunc.xml @@ -1,27 +1,19 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. A delegate for use with . Meant to be used for closing the stream. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -30,4 +22,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLStreamStatus.xml b/doc/en/Gtk/HTMLStreamStatus.xml index b6c695b2c..2a16bdd75 100644 --- a/doc/en/Gtk/HTMLStreamStatus.xml +++ b/doc/en/Gtk/HTMLStreamStatus.xml @@ -1,12 +1,10 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -70,4 +56,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLStreamTypesFunc.xml b/doc/en/Gtk/HTMLStreamTypesFunc.xml index 938ce3d5a..f3d02fdda 100644 --- a/doc/en/Gtk/HTMLStreamTypesFunc.xml +++ b/doc/en/Gtk/HTMLStreamTypesFunc.xml @@ -1,27 +1,19 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. A delegate for use with . + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -29,4 +21,4 @@ System.String - \ No newline at end of file + diff --git a/doc/en/Gtk/HTMLStreamWriteFunc.xml b/doc/en/Gtk/HTMLStreamWriteFunc.xml index f533c3551..d4da912d7 100644 --- a/doc/en/Gtk/HTMLStreamWriteFunc.xml +++ b/doc/en/Gtk/HTMLStreamWriteFunc.xml @@ -1,34 +1,27 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. A delegate for use with . Meant to be used for writing the stream. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - - + System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/HandleBox.xml b/doc/en/Gtk/HandleBox.xml index 48f604b9c..084f212ac 100644 --- a/doc/en/Gtk/HandleBox.xml +++ b/doc/en/Gtk/HandleBox.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -22,20 +20,7 @@ Gtk.Bin - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -59,7 +44,6 @@ Internal constructor Pointer to the C object. - An instance of HandleBox, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -72,7 +56,6 @@ The main way to create a HandleBox. - A new HandleBox. Creates a new HandleBox, with the set to the . @@ -89,12 +72,16 @@ Manage which edge a detached HandleBox must reattach to. The new edge - The current edge that snapping works with. + The current edge that snapping works with. To ensure good usability, this edge should be set to a side of the HandleBox whose position or size will not be altered when the child is detached. - + + + GLib.Property(Name="snap_edge") + + Property @@ -106,7 +93,7 @@ Manage the appearance of the surrounding the child widget. The new style of shadow to use for this HandleBox. - The current style of shadow in use. + The current style of shadow in use. @@ -121,13 +108,17 @@ Manage where the handle of this container is placed. A new position for the handle. - The current position of the handle. + The current position of the handle. Note: In western cultures, anything other than a handle for horizontal HandleBoxes, or a handle for vertical HandleBoxes, may seem strange to users. The reverse is likely to be true for cultures with languages that are written from right to left. - + + + GLib.Property(Name="handle_position") + + Property @@ -139,10 +130,14 @@ Manage the appearance of the surrounding the child widget. The new style of shadow to use for this HandleBox. - The current style of shadow in use. + The current style of shadow in use. - + + + GLib.Property(Name="shadow") + + Event @@ -154,7 +149,11 @@ This event is fired when the contents of the HandleBox are reattached to the main window. - + + + GLib.Signal(CName="child_attached") + + Event @@ -166,7 +165,11 @@ This event is fired when the contents of the handlebox are detached from the main window. - + + + GLib.Signal(CName="child_detached") + + Property @@ -178,10 +181,14 @@ Whether to use the value from the snap_edge property or a value derived from handle_position. a , true to use the snap_edge property - a + a - + + + GLib.Property(Name="snap_edge_set") + + Property @@ -191,7 +198,7 @@ GType Property. - a + a Returns the native value for . @@ -235,9 +242,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/HelpShownArgs.xml b/doc/en/Gtk/HelpShownArgs.xml index e688c4764..7c5f0d574 100644 --- a/doc/en/Gtk/HelpShownArgs.xml +++ b/doc/en/Gtk/HelpShownArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The type of help to be shown. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/HelpShownHandler.xml b/doc/en/Gtk/HelpShownHandler.xml index fa25868d2..8470253f4 100644 --- a/doc/en/Gtk/HelpShownHandler.xml +++ b/doc/en/Gtk/HelpShownHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/HierarchyChangedArgs.xml b/doc/en/Gtk/HierarchyChangedArgs.xml index ff6f0a8ad..04271e767 100644 --- a/doc/en/Gtk/HierarchyChangedArgs.xml +++ b/doc/en/Gtk/HierarchyChangedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The top-level widget which was previously the parent of the widget that fired the event. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/HierarchyChangedHandler.xml b/doc/en/Gtk/HierarchyChangedHandler.xml index 36c695932..1f24899c2 100644 --- a/doc/en/Gtk/HierarchyChangedHandler.xml +++ b/doc/en/Gtk/HierarchyChangedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/IMContext.xml b/doc/en/Gtk/IMContext.xml index 8a9c75576..d048c47b2 100644 --- a/doc/en/Gtk/IMContext.xml +++ b/doc/en/Gtk/IMContext.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -150,7 +141,6 @@ Internal constructor Pointer to the C object. - An instance of IMContext, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -170,7 +160,7 @@ in which the input appears. a - a + a The client window is used in order to correctly position status windows. It may @@ -192,7 +182,7 @@ position has been made. a - a + a The location is relative to the client window. @@ -212,7 +202,7 @@ to display feedback. a - a + a If is (default is ), then the IM context may use some other method to display @@ -231,7 +221,11 @@ Event fired when the preedit string is changed. - + + + GLib.Signal(CName="preedit_changed") + + Event @@ -243,7 +237,11 @@ Event fired when pre-editing is started. - + + + GLib.Signal(CName="preedit_start") + + Event @@ -255,7 +253,11 @@ Event fired when the input method needs to delete the context text. - + + + GLib.Signal(CName="delete_surrounding") + + Event @@ -267,7 +269,11 @@ Commit text event. The event is emitted when the input method has processed all the keystrokes for an individual text element, including pre-edit keystrokes. The resulting text is located in - + + + GLib.Signal(CName="commit") + + Event @@ -281,7 +287,11 @@ - + + + GLib.Signal(CName="retrieve_surrounding") + + Event @@ -293,7 +303,11 @@ Event fired when pre-editing is completed. - + + + GLib.Signal(CName="preedit_end") + + Method @@ -360,7 +374,7 @@ GType Property. - a + a Returns the native value for . @@ -456,10 +470,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -472,13 +489,13 @@ + a , a location to store , the retrieved string. + a , location to store the retrieved attribute list. + To be added. Retrieve the current preedit string for the input context and a list of attributes to apply to the string. - a , a location to store , the retrieved string. - a , location to store the retrieved attribute list. - a , the position of the cursor (in bytes) within the preedit string. This string should be displayed inserted at the insertion point. @@ -492,9 +509,8 @@ Protected Constructor. - a - \ No newline at end of file + diff --git a/doc/en/Gtk/IMContextSimple.xml b/doc/en/Gtk/IMContextSimple.xml index 790425c08..9255c491e 100644 --- a/doc/en/Gtk/IMContextSimple.xml +++ b/doc/en/Gtk/IMContextSimple.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,14 +17,7 @@ Gtk.IMContext - - GLib.IWrapper - - - System.IDisposable - - @@ -50,7 +41,6 @@ Internal constructor Pointer to the C object. - An instance of IMContextSimple, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -63,7 +53,6 @@ Public constructor. - an object of type @@ -76,7 +65,7 @@ GType Property. - a + a Returns the native value for . @@ -90,10 +79,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -120,4 +112,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/IMMulticontext.xml b/doc/en/Gtk/IMMulticontext.xml index 1477bafad..13cd968eb 100644 --- a/doc/en/Gtk/IMMulticontext.xml +++ b/doc/en/Gtk/IMMulticontext.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,14 +17,7 @@ Gtk.IMContext - - GLib.IWrapper - - - System.IDisposable - - @@ -67,7 +58,6 @@ Internal constructor Pointer to the C object. - An instance of IMMulticontext, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -80,7 +70,6 @@ Basic constructor. - a @@ -93,7 +82,7 @@ GType Property. - a + a Returns the native value for . @@ -107,9 +96,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + diff --git a/doc/en/Gtk/ITreeNode.xml b/doc/en/Gtk/ITreeNode.xml index 0545c4a40..9c4b7abfd 100644 --- a/doc/en/Gtk/ITreeNode.xml +++ b/doc/en/Gtk/ITreeNode.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,16 +14,15 @@ Types which implement this interface can be used to instantiate a for a - - System.Reflection.DefaultMemberAttribute + System.Reflection.DefaultMember(MemberName="Item") - + Method System.Int32 @@ -45,7 +42,7 @@ - + Property System.Int32 @@ -53,7 +50,7 @@ ID property - a + a Read-only. Represents a unique identifier for the object as a positive integer. This value is used by the as a hash value and @@ -62,7 +59,7 @@ - + Property System.Int32 @@ -70,12 +67,12 @@ ChildCount property - a + a Read-only. Indicates the number of children of this - + Property Gtk.ITreeNode @@ -86,14 +83,14 @@ Child indexer a - a + a Returns the child at position in the list of children of this - + Event System.EventHandler @@ -105,7 +102,7 @@ - + Event Gtk.TreeNodeAddedHandler @@ -117,7 +114,7 @@ - + Event Gtk.TreeNodeRemovedHandler @@ -129,7 +126,7 @@ - + Property Gtk.ITreeNode @@ -137,9 +134,9 @@ Parent property - a + a Read-only, The parent for this or if the node is a root . - \ No newline at end of file + diff --git a/doc/en/Gtk/Icon.xml b/doc/en/Gtk/Icon.xml index ad81645cc..6852fcfd3 100644 --- a/doc/en/Gtk/Icon.xml +++ b/doc/en/Gtk/Icon.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -107,7 +104,6 @@ A constructor. - A new instance of . @@ -164,4 +160,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/IconFactory.xml b/doc/en/Gtk/IconFactory.xml index 1512d890f..0fc88ee5e 100644 --- a/doc/en/Gtk/IconFactory.xml +++ b/doc/en/Gtk/IconFactory.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -172,7 +163,6 @@ Internal constructor Pointer to the C object. - An instance of IconFactory, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -185,7 +175,6 @@ Creates a new . - A new . Creates a new . An icon factory manages a collection of s; a manages a set of @@ -232,7 +221,7 @@ GType Property. - a + a Returns the native value for . @@ -246,9 +235,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/IconInfo.xml b/doc/en/Gtk/IconInfo.xml index 24162aa3f..9b92a9cd8 100644 --- a/doc/en/Gtk/IconInfo.xml +++ b/doc/en/Gtk/IconInfo.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,11 +14,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -104,7 +98,6 @@ Internal constructor a - a @@ -117,7 +110,7 @@ GType Property. - a + a Returns the native value for . @@ -130,7 +123,7 @@ Gets the filename for the icon. - a , the filename for the icon, or + a , the filename for the icon, or If the flag was passed to , there may be no filename if a builtin icon is returned; in this case, you should use . @@ -143,7 +136,7 @@ Gets the display name for an icon. - a , the display name for the icon or , if the icon does not have a specified display name. + a , the display name for the icon or , if the icon does not have a specified display name. A display name is a string to be used in place of the icon name in a user visible context like a list of icons. @@ -156,7 +149,7 @@ Gets the built-in image for this icon, if any. - a , the built-in image pixbuf, or . + a , the built-in image pixbuf, or . To allow Gtk to use built in icon images, you must pass the to . @@ -169,7 +162,7 @@ Gets the base size for the icon. - a , the base size, or 0, if no base size is known for the icon. + a , the base size, or 0, if no base size is known for the icon. The base size is a size for the icon that was specified by the icon theme creator. This may be different than the actual size of image; an example of this is small emblem icons that can be attached to a larger icon. These icons will be given the same base size as the larger icons to which they are attached. @@ -181,7 +174,7 @@ Sets whether the coordinates returned by and should be returned in their original form as specified in the icon theme, instead of scaled appropriately for the pixbuf returned by . - a + a Raw coordinates are somewhat strange; they are specified to be with respect to the unscaled pixmap for PNG and XPM icons, but for SVG icons, they are in a 1000x1000 coordinate space that is scaled to the final size of the icon. You can determine if the icon is an SVG icon by using , and seeing if it is non- and ends in '.svg'. @@ -193,4 +186,4 @@ This function is provided primarily to allow compatibility wrappers for older AP - \ No newline at end of file + diff --git a/doc/en/Gtk/IconLookupFlags.xml b/doc/en/Gtk/IconLookupFlags.xml index 02fc7db02..262992e89 100644 --- a/doc/en/Gtk/IconLookupFlags.xml +++ b/doc/en/Gtk/IconLookupFlags.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,20 +13,12 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + GLib.GType(WrapperType=typeof(Gtk.IconLookupFlagsGType)) + + + System.Flags @@ -42,7 +32,8 @@ Never return SVG icons, even if gdk-pixbuf supports them. Cannot be used together with . - + + @@ -55,7 +46,8 @@ Return SVG icons, even if gdk-pixbuf does not support them. Cannot be used together with . - + + @@ -68,7 +60,8 @@ When passed to includes builtin icons as well as files. For a builtin icon, returns and you need to call . - + + diff --git a/doc/en/Gtk/IconSet.xml b/doc/en/Gtk/IconSet.xml index 0f7e91e7f..bf07813ef 100644 --- a/doc/en/Gtk/IconSet.xml +++ b/doc/en/Gtk/IconSet.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -23,11 +21,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -171,7 +165,6 @@ Internal constructor Pointer to the C object. - An instance of IconSet, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -189,7 +182,6 @@ for a given size and state on request, and automatically caches some of the rendered objects. - a new IconSet @@ -206,19 +198,18 @@ a - an . - + Property Gtk.IconSize[] The available icon sizes on this system. - a + a @@ -231,9 +222,9 @@ GType Property. - a + a Returns the native value for . - \ No newline at end of file + diff --git a/doc/en/Gtk/IconSize.xml b/doc/en/Gtk/IconSize.xml index 2a94f4add..c144e1be9 100644 --- a/doc/en/Gtk/IconSize.xml +++ b/doc/en/Gtk/IconSize.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,18 +19,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.IconSizeGType)) + + @@ -132,4 +123,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/IconSource.xml b/doc/en/Gtk/IconSource.xml index cb971e356..fe240f4b3 100644 --- a/doc/en/Gtk/IconSource.xml +++ b/doc/en/Gtk/IconSource.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -63,11 +61,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -109,7 +103,6 @@ Internal constructor Pointer to the C object. - An instance of IconSource, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -122,7 +115,6 @@ Creates a new . - a new . @@ -139,9 +131,9 @@ If the widget state is wildcarded, this source can be used as the base image for an icon in any . - + Whether or not the widget is wildcarded. - + If the widget state is wildcarded, this source can be used @@ -186,7 +178,7 @@ if the size is wildcarded, otherwise. - Whether the size is wildcarded or not + Whether the size is wildcarded or not If the icon size is wildcarded, this source can be used as @@ -221,7 +213,7 @@ The base image used when creating icon variants of a An object of type - the source pixbuf, or if none is set. + the source pixbuf, or if none is set. If an icon source has both a filename and a pixbuf set, the @@ -243,11 +235,11 @@ The text direction this icon source applies to. The text direction this source applies to - + Obtains the text direction this icon source applies to. The return value is only useful/meaningful if the text direction is not wildcarded. - + Setting the text direction on an icon source makes no difference if the text direction is wildcarded. Therefore, @@ -269,11 +261,11 @@ The icon size this icon source is intended to be used with. The icon size this source applies to - + Obtains the icon size this source applies to. The return value is only useful/meaningful if the icon size is not wildcarded. - + Setting the icon size on an icon source makes no difference if the size is wildcarded. Therefore, you should usually set @@ -295,11 +287,11 @@ The widget state this icon source applies to. The widget state this icon source applies to. - + Obtains the widget state this icon source applies to. The return value is only useful/meaningful if the widget state is not wildcarded. - + Setting the widget state on an icon source makes no difference if the state is wildcarded. Therefore, you should @@ -325,7 +317,7 @@ if the text direction is wildcarded, otherwise. - Whether the text direction is wildcarded or not + Whether the text direction is wildcarded or not If the text direction is wildcarded, this source can be @@ -359,12 +351,12 @@ creating icon variants for . The filename must be absolute. - + Retrieves the source filename, or if none is set. The filename is not a copy, and should not be modified or expected to persist beyond the lifetime of the icon source. - + @@ -377,7 +369,7 @@ GType Property. - a + a Returns the native value for . @@ -393,8 +385,9 @@ The name of an icon to look up in the current icon theme to use as a base image when creating icon variants for #GtkIconSet - a - + a + + diff --git a/doc/en/Gtk/IconTheme.xml b/doc/en/Gtk/IconTheme.xml index db41cccce..9db19c00a 100644 --- a/doc/en/Gtk/IconTheme.xml +++ b/doc/en/Gtk/IconTheme.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -37,14 +35,7 @@ A good rule of thumb is that if there is a stock image for what you want to use, GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -187,7 +178,7 @@ In general, if you use you shoul - + Property System.String[] @@ -195,7 +186,7 @@ In general, if you use you shoul The current search path - a , array of directories that are searched for icon themes + a , array of directories that are searched for icon themes When looking for an icon theme, Gtk will search for a @@ -219,7 +210,7 @@ In general, if you use you shoul - + Method System.Void @@ -274,7 +265,7 @@ In general, if you use you shoul - + Method System.String[] @@ -299,10 +290,13 @@ In general, if you use you shoul Internal constructor. a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -313,7 +307,6 @@ In general, if you use you shoul Internal constructor. a - a @@ -324,7 +317,6 @@ In general, if you use you shoul Default constructor - a Icon theme objects are used to lookup up an icon by name in a particular icon theme. Usually, you will want to use or rather than creating a new icon theme object for scratch. @@ -337,7 +329,7 @@ In general, if you use you shoul Gets the icon theme for the default screen. - a . A unique associated with the given screen. This icon theme is associated with the screen and can be used as long as the screen is open. + a . A unique associated with the given screen. This icon theme is associated with the screen and can be used as long as the screen is open. See . @@ -350,7 +342,7 @@ In general, if you use you shoul GType Property. - a + a Returns the native value for . @@ -362,7 +354,7 @@ In general, if you use you shoul Sets the screen for an icon theme - a + a The screen is used to track the user's currently configured icon theme, which might be different for different screens. @@ -374,7 +366,7 @@ In general, if you use you shoul Sets the name of the icon theme that the object uses overriding system configuration. - a , name of icon theme to use instead of configured theme + a , name of icon theme to use instead of configured theme This cannot be used on the icon theme objects returned from . @@ -387,7 +379,7 @@ In general, if you use you shoul The name of an icon that is representative of the current theme (for instance, to use when presenting a list of themes to the user.) - a , the name of an example icon or . + a , the name of an example icon or . @@ -402,9 +394,13 @@ In general, if you use you shoul Emitted when the current icon theme is switched or Gtk detects that a change has occurred in the contents of the current icon theme. - + + + GLib.Signal(CName="changed") + + - + Method System.Int32[] diff --git a/doc/en/Gtk/IconThemeError.xml b/doc/en/Gtk/IconThemeError.xml index c75532459..d5aec9d9b 100644 --- a/doc/en/Gtk/IconThemeError.xml +++ b/doc/en/Gtk/IconThemeError.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.IconThemeErrorGType)) + + @@ -38,7 +29,8 @@ The icon specified does not exist in the theme - + + @@ -51,7 +43,8 @@ An unspecified error occurred. - + + diff --git a/doc/en/Gtk/IconView.xml b/doc/en/Gtk/IconView.xml index 35cc251e6..5c62f1074 100644 --- a/doc/en/Gtk/IconView.xml +++ b/doc/en/Gtk/IconView.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.Container - - System.Collections.IEnumerable - - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -279,10 +264,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -293,7 +281,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -304,7 +291,6 @@ Default constructor - a @@ -318,7 +304,6 @@ Create a new IconView with a model. a - a @@ -331,7 +316,7 @@ GType Property. - a + a Returns the native value for . @@ -344,10 +329,14 @@ Specifies the selection mode of icon view. - a + a If the mode is , rubberband selection is enabled, for the other modes, only keyboard selection is possible. - + + + GLib.Property(Name="selection_mode") + + Property @@ -357,10 +346,14 @@ The columns property contains the number of the columns in which the items should be displayed. - a + a If it is -1, the number of columns will be chosen automatically to fill the available area. - + + + GLib.Property(Name="columns") + + Property @@ -370,10 +363,14 @@ Space which is inserted at the edges of the icon view. - a + a Default value is 6. - + + + GLib.Property(Name="margin") + + Property @@ -385,10 +382,14 @@ How the text and icon of each item are positioned relative to each other. - a + a Default value is - + + + GLib.Property(Name="orientation") + + Property @@ -398,10 +399,14 @@ The width used for each item. - a + a - + + + GLib.Property(Name="item_width") + + Property @@ -411,10 +416,14 @@ Contains the number of the model column containing the texts which are displayed. - a + a The text column must be of type . If this property and the MarkupColumn property are both set to -1, no text is displayed. - + + + GLib.Property(Name="text_column") + + Property @@ -424,10 +433,14 @@ Space which is inserted between cells of an item. - a + a To be added - + + + GLib.Property(Name="spacing") + + Property @@ -437,10 +450,14 @@ Contains the number of the model column containing the pixbufs which are displayed - a + a The pixbuf column must be of type . Setting this property to -1 turns off the display of pixbufs. - + + + GLib.Property(Name="pixbuf_column") + + Property @@ -450,10 +467,14 @@ Space which is inserted between grid rows. - a + a Default value is 6. - + + + GLib.Property(Name="row_spacing") + + Property @@ -463,10 +484,14 @@ Space which is inserted between grid column. - a + a Default value is 6. - + + + GLib.Property(Name="column_spacing") + + Property @@ -476,10 +501,14 @@ Contains the number of the model column containing markup information to be displayed. - a + a The markup column must be of type . If this property and the TextColumn property are both set to column numbers, it overrides the text column. If both are set to -1, no texts are displayed. - + + + GLib.Property(Name="markup_column") + + Property @@ -489,10 +518,14 @@ The model for the icon view. - a + a - + + + GLib.Property(Name="model") + + Property @@ -502,7 +535,7 @@ Creates a list of paths of all selected items. - a + a @@ -517,7 +550,11 @@ Emitted when the current selection changes. To be added - + + + GLib.Signal(CName="selection_changed") + + Event @@ -529,7 +566,11 @@ Emitted when UnselectAll () is called. - + + + GLib.Signal(CName="unselect_all") + + Event @@ -541,7 +582,11 @@ Emitted when an item is activated. - + + + GLib.Signal(CName="item_activated") + + Event @@ -553,7 +598,11 @@ Emitted when SelectAll () is called. - + + + GLib.Signal(CName="select_all") + + Event @@ -565,7 +614,11 @@ To be added - + + + GLib.Signal(CName="toggle_cursor_item") + + Event @@ -577,7 +630,11 @@ To be added - + + + GLib.Signal(CName="move_cursor") + + Event @@ -589,7 +646,11 @@ To be added To be added - + + + GLib.Signal(CName="activate_cursor_item") + + Event @@ -601,6 +662,10 @@ To be added - + + + GLib.Signal(CName="select_cursor_item") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/IconViewForeachFunc.xml b/doc/en/Gtk/IconViewForeachFunc.xml index a64baeaaf..d57d41aa4 100644 --- a/doc/en/Gtk/IconViewForeachFunc.xml +++ b/doc/en/Gtk/IconViewForeachFunc.xml @@ -1,29 +1,20 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -32,4 +23,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/IframeCreatedArgs.xml b/doc/en/Gtk/IframeCreatedArgs.xml index e4b1e15d0..b75c56e2c 100644 --- a/doc/en/Gtk/IframeCreatedArgs.xml +++ b/doc/en/Gtk/IframeCreatedArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The IFRAME element that was created. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/IframeCreatedHandler.xml b/doc/en/Gtk/IframeCreatedHandler.xml index c3ad9cbc3..670b510d8 100644 --- a/doc/en/Gtk/IframeCreatedHandler.xml +++ b/doc/en/Gtk/IframeCreatedHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Image.xml b/doc/en/Gtk/Image.xml index 27c9c052c..30dd70edc 100644 --- a/doc/en/Gtk/Image.xml +++ b/doc/en/Gtk/Image.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -23,20 +21,7 @@ Gtk.Misc - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -146,7 +131,6 @@ Internal constructor Pointer to the C object. - An instance of Image, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -159,7 +143,6 @@ Default parameterless constructor. - An instance of type @@ -176,7 +159,6 @@ to be displayed by the Image. - An instance of type . @@ -194,7 +176,6 @@ representing the path to the image file. - An instance of type . @@ -215,7 +196,6 @@ to be used by the Image. - An instance of type . @@ -236,7 +216,6 @@ by the Image. mask to be used. - An instance of type . @@ -254,7 +233,6 @@ to be displayed by the Image. - An instance of type . @@ -276,7 +254,6 @@ masked by the given . mask used by the Image. - An instance of type . @@ -298,7 +275,6 @@ masked by the given . for the . used by the Image. - An instance of type . @@ -313,7 +289,7 @@ masked by the given . Creates a displaying . an object of type - an object of type + an object of type Creates a displaying . @@ -325,7 +301,7 @@ masked by the given . Get the animation for this image. - an object of type + an object of type @@ -340,7 +316,7 @@ masked by the given . Causes the Image object to display the given animation (or display nothing, if you set the animation to ). an object of type - an object of type + an object of type @@ -369,7 +345,7 @@ masked by the given . displaying the file.

an object of type - an object of type + an object of type @@ -384,10 +360,14 @@ masked by the given . A stock item name, if this is a stock image. an object of type - an object of type + an object of type - + + + GLib.Property(Name="stock") + + Property @@ -402,11 +382,15 @@ masked by the given . that will be set to the Image. - - that the Image contains. + + that the Image contains. - + + + GLib.Property(Name="pixbuf") + + Property @@ -418,10 +402,14 @@ masked by the given . The size (dimension on a side) for a square icon. an object of type - an object of type + an object of type - + + + GLib.Property(Name="icon_size") + + Property @@ -433,10 +421,14 @@ masked by the given . The file this image was loaded from. an object of type - an object of type + an object of type - + + + GLib.Property(Name="file") + + Property @@ -449,10 +441,14 @@ masked by the given . to store image data. If the Image has no image data, the return value will be . - an object of type + an object of type - + + + GLib.Property(Name="storage_type") + + Property @@ -467,11 +463,15 @@ masked by the given . that will be set to the Image. - - that the Image contains. + + that the Image contains. - + + + GLib.Property(Name="icon_set") + + Property @@ -486,11 +486,15 @@ masked by the given . that will be set to the Image. - - that the Image contains. + + that the Image contains. - + + + GLib.Property(Name="pixbuf_animation") + + Property @@ -502,10 +506,14 @@ masked by the given . Mask bitmap to use with or an object of type - an object of type + an object of type - + + + GLib.Property(Name="mask") + + Property @@ -520,11 +528,15 @@ masked by the given . that will be set to the Image. - - that the Image contains. + + that the Image contains. - + + + GLib.Property(Name="pixmap") + + Property @@ -537,11 +549,15 @@ masked by the given . Gets or sets the associated with the Image. that will be set to the Image. - - that the Image contains. + + that the Image contains. - + + + GLib.Property(Name="image") + + Property @@ -551,7 +567,7 @@ masked by the given . GType Property. - a + a Returns the native value for . @@ -565,10 +581,13 @@ masked by the given . Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -715,7 +734,6 @@ masked by the given . Loads an image from a . a - a This is equivalent to calling or and then creating @@ -737,7 +755,6 @@ masked by the given . If the value is , the image will be looked up on the calling assembly. The name given as the resource in the assembly - a This is equivalent to calling or @@ -755,10 +772,14 @@ If the value is , the image will be looked up on the call To be added - a + a To be added - + + + GLib.Property(Name="icon_name") + + Property @@ -768,10 +789,14 @@ If the value is , the image will be looked up on the call To be added - a + a To be added - + + + GLib.Property(Name="pixel_size") + + Method @@ -808,4 +833,4 @@ If the value is , the image will be looked up on the call - \ No newline at end of file + diff --git a/doc/en/Gtk/ImageIconNameData.xml b/doc/en/Gtk/ImageIconNameData.xml index de5bc43fb..7522c93d7 100644 --- a/doc/en/Gtk/ImageIconNameData.xml +++ b/doc/en/Gtk/ImageIconNameData.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.ValueType - @@ -82,9 +79,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gtk/ImageMenuItem.xml b/doc/en/Gtk/ImageMenuItem.xml index 49268fde6..44290b744 100644 --- a/doc/en/Gtk/ImageMenuItem.xml +++ b/doc/en/Gtk/ImageMenuItem.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -46,20 +44,7 @@ Gtk.MenuItem - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -83,7 +68,6 @@ Internal constructor Pointer to the C object. - An instance of ImageMenuItem, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -96,7 +80,6 @@ Creates a new . - an object of type @@ -113,7 +96,6 @@ Creates a new containing the image and text from a stock item. an object of type an object of type - an object of type @@ -127,7 +109,6 @@ Creates a new containing a label. an object of type - an object of type @@ -142,10 +123,14 @@ Child widget to appear next to the menu text. an object of type - an object of type + an object of type - + + + GLib.Property(Name="image") + + Property @@ -155,7 +140,7 @@ GType Property. - a + a Returns the native value for . @@ -169,9 +154,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/ImageType.xml b/doc/en/Gtk/ImageType.xml index b04e4fa0d..b18e33494 100644 --- a/doc/en/Gtk/ImageType.xml +++ b/doc/en/Gtk/ImageType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,18 +19,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.ImageTypeGType)) + + @@ -145,4 +136,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Init.xml b/doc/en/Gtk/Init.xml index 2fd51bb9d..c3421f1b5 100644 --- a/doc/en/Gtk/Init.xml +++ b/doc/en/Gtk/Init.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -41,12 +38,11 @@ Default constructor - a - + Method System.Boolean @@ -55,8 +51,8 @@ - Initializes Gtk# for operation, probes window system. a + Initializes Gtk# for operation, probes window system. The command line arguments passed in. Changed if any arguments were handled. True if the toolkit initialized correctly, false otherwise. Aside from the arguments, this function behaves in the same way as . By returning whether or not the toolkit initialized correctly, it allows the application to fall back to a non-GUI interface, should the developer be so inclined to write one. @@ -64,4 +60,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Input.xml b/doc/en/Gtk/Input.xml index b6a01752d..42ff6e00d 100644 --- a/doc/en/Gtk/Input.xml +++ b/doc/en/Gtk/Input.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -67,7 +64,6 @@ Basic constructor. - a diff --git a/doc/en/Gtk/InputArgs.xml b/doc/en/Gtk/InputArgs.xml index a02040831..ce6a157cb 100644 --- a/doc/en/Gtk/InputArgs.xml +++ b/doc/en/Gtk/InputArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The new value - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/InputDialog.xml b/doc/en/Gtk/InputDialog.xml index 2f39d99ab..65692f987 100644 --- a/doc/en/Gtk/InputDialog.xml +++ b/doc/en/Gtk/InputDialog.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -32,20 +30,7 @@ Gtk.Dialog - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -69,7 +54,6 @@ Internal constructor Pointer to the C object. - An instance of InputDialog, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -82,7 +66,6 @@ Creates an instance of - an object of type Creates an instance of @@ -99,7 +82,11 @@ This signal is emitted when the user changes the mode of a device from a GDK_MODE_SCREEN or GDK_MODE_WINDOW to GDK_MODE_ENABLED. - + + + GLib.Signal(CName="disable_device") + + Event @@ -113,7 +100,11 @@ This signal is emitted when the user changes the mode of a device from GDK_MODE_DISABLED to a GDK_MODE_SCREEN or GDK_MODE_WINDOW.
- + + + GLib.Signal(CName="enable_device") + + Property @@ -123,7 +114,7 @@ GType Property. - a + a Returns the native value for . @@ -167,10 +158,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -180,7 +174,7 @@ The save button in this dialog. - a + a @@ -193,9 +187,9 @@ The "close window" button in this dialog. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/InputHandler.xml b/doc/en/Gtk/InputHandler.xml index bc6f78d94..f634c4756 100644 --- a/doc/en/Gtk/InputHandler.xml +++ b/doc/en/Gtk/InputHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/InsertAtCursorArgs.xml b/doc/en/Gtk/InsertAtCursorArgs.xml index f3b0fb3b0..005c2f16d 100644 --- a/doc/en/Gtk/InsertAtCursorArgs.xml +++ b/doc/en/Gtk/InsertAtCursorArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -33,7 +31,6 @@ GLib.SignalArgs - @@ -42,7 +39,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -54,9 +50,9 @@ The text that was inserted. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/InsertAtCursorHandler.xml b/doc/en/Gtk/InsertAtCursorHandler.xml index 96bf10e7c..35c2a98a6 100644 --- a/doc/en/Gtk/InsertAtCursorHandler.xml +++ b/doc/en/Gtk/InsertAtCursorHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -31,15 +32,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -48,4 +40,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/InsertTextArgs.xml b/doc/en/Gtk/InsertTextArgs.xml index d6a31a886..7045190cc 100644 --- a/doc/en/Gtk/InsertTextArgs.xml +++ b/doc/en/Gtk/InsertTextArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The length of the inserted text. - A + A @@ -52,7 +48,7 @@ The text that was inserted. - A + A @@ -64,9 +60,9 @@ The location where the text was inserted. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/InsertTextHandler.xml b/doc/en/Gtk/InsertTextHandler.xml index 0829d27b8..146713bfd 100644 --- a/doc/en/Gtk/InsertTextHandler.xml +++ b/doc/en/Gtk/InsertTextHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/InsertionColorChangedArgs.xml b/doc/en/Gtk/InsertionColorChangedArgs.xml index 0aa7baa5c..5fd63690e 100644 --- a/doc/en/Gtk/InsertionColorChangedArgs.xml +++ b/doc/en/Gtk/InsertionColorChangedArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The color under the insertion point after the change. - The new color, a + The new color, a - \ No newline at end of file + diff --git a/doc/en/Gtk/InsertionColorChangedHandler.xml b/doc/en/Gtk/InsertionColorChangedHandler.xml index 042bf116f..3cd4c9959 100644 --- a/doc/en/Gtk/InsertionColorChangedHandler.xml +++ b/doc/en/Gtk/InsertionColorChangedHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/InsertionFontStyleChangedArgs.xml b/doc/en/Gtk/InsertionFontStyleChangedArgs.xml index 2221a15e4..65521b3b7 100644 --- a/doc/en/Gtk/InsertionFontStyleChangedArgs.xml +++ b/doc/en/Gtk/InsertionFontStyleChangedArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The style that was set during the change. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/InsertionFontStyleChangedHandler.xml b/doc/en/Gtk/InsertionFontStyleChangedHandler.xml index 1a14c6789..699b9340f 100644 --- a/doc/en/Gtk/InsertionFontStyleChangedHandler.xml +++ b/doc/en/Gtk/InsertionFontStyleChangedHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Invisible.xml b/doc/en/Gtk/Invisible.xml index 1fb93fb11..2325d0635 100644 --- a/doc/en/Gtk/Invisible.xml +++ b/doc/en/Gtk/Invisible.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,20 +19,7 @@ Gtk.Widget - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -58,7 +43,6 @@ Internal constructor Pointer to the C object. - An instance of Invisible, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -71,7 +55,6 @@ Constructor. - An instance of . @@ -86,10 +69,14 @@ The screen this widget is attached to. a - a + a - + + + GLib.Property(Name="screen") + + Property @@ -99,7 +86,7 @@ GType Property. - a + a Returns the native value for . @@ -113,10 +100,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -127,9 +117,8 @@ Public Constructor a - a Used to create a new for a specific . - \ No newline at end of file + diff --git a/doc/en/Gtk/Item.xml b/doc/en/Gtk/Item.xml index da38d581d..99cc10220 100644 --- a/doc/en/Gtk/Item.xml +++ b/doc/en/Gtk/Item.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.Bin - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -90,7 +75,6 @@ Internal constructor Pointer to the C object. - An instance of Item, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -107,7 +91,11 @@ Emitted when the is deselected. Emitted when the is deselected. - + + + GLib.Signal(CName="deselect") + + Event @@ -119,7 +107,11 @@ Emitted when the is selected. Emitted when the is selected. - + + + GLib.Signal(CName="select") + + Event @@ -131,7 +123,11 @@ Emitted when the is toggled. Emitted when the is toggled. - + + + GLib.Signal(CName="toggle") + + Property @@ -141,7 +137,7 @@ GType Property. - a + a Returns the native value for . @@ -191,10 +187,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -202,7 +201,6 @@ Constructor - a @@ -225,4 +223,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ItemActivatedArgs.xml b/doc/en/Gtk/ItemActivatedArgs.xml index 85a7ec218..b525b7617 100644 --- a/doc/en/Gtk/ItemActivatedArgs.xml +++ b/doc/en/Gtk/ItemActivatedArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gtk/ItemActivatedHandler.xml b/doc/en/Gtk/ItemActivatedHandler.xml index 3a371df9c..8b4bca54d 100644 --- a/doc/en/Gtk/ItemActivatedHandler.xml +++ b/doc/en/Gtk/ItemActivatedHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ItemFactory.xml b/doc/en/Gtk/ItemFactory.xml index 50faa7306..8fcfa8989 100644 --- a/doc/en/Gtk/ItemFactory.xml +++ b/doc/en/Gtk/ItemFactory.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,14 +19,12 @@ Gtk.Object - - GLib.IWrapper - - - System.IDisposable - - + + + System.Obsolete(Message=null, IsError=False) + + @@ -317,7 +313,7 @@ The method to be used for translating the path elements before they are displayed. - a + a @@ -343,7 +339,6 @@ Internal constructor Pointer to the C object. - An instance of ItemFactory, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -427,7 +422,7 @@ GType Property. - a + a Returns the native value for . @@ -460,10 +455,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -478,7 +476,6 @@ The kind of menu to create; can be , , or the factory path of the new item factory, a string of the form "<name>" a to which the accelerators for the menu items will be added, or null to create a new one - a @@ -489,7 +486,6 @@ Protected constructor. - a @@ -554,4 +550,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ItemFactoryCallback.xml b/doc/en/Gtk/ItemFactoryCallback.xml index e8ca0b1d1..5a7818598 100644 --- a/doc/en/Gtk/ItemFactoryCallback.xml +++ b/doc/en/Gtk/ItemFactoryCallback.xml @@ -1,9 +1,8 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -13,19 +12,10 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ItemFactoryCallback1.xml b/doc/en/Gtk/ItemFactoryCallback1.xml index 53a1682be..8c236bfe9 100644 --- a/doc/en/Gtk/ItemFactoryCallback1.xml +++ b/doc/en/Gtk/ItemFactoryCallback1.xml @@ -1,27 +1,20 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. Delegate function to be invoked by . System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -31,4 +24,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ItemFactoryEntry.xml b/doc/en/Gtk/ItemFactoryEntry.xml index eadb8e939..dc5f06058 100644 --- a/doc/en/Gtk/ItemFactoryEntry.xml +++ b/doc/en/Gtk/ItemFactoryEntry.xml @@ -1,23 +1,20 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - Class intended for use with . + Class intended for use with . FIXME: see bugzilla.ximian.com #70887, which directly concerns this API. System.ValueType - diff --git a/doc/en/Gtk/Justification.xml b/doc/en/Gtk/Justification.xml index 1f5f57938..56ae8c591 100644 --- a/doc/en/Gtk/Justification.xml +++ b/doc/en/Gtk/Justification.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.JustificationGType)) + + @@ -91,4 +82,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Key.xml b/doc/en/Gtk/Key.xml index 898bd4df9..ea1d42004 100644 --- a/doc/en/Gtk/Key.xml +++ b/doc/en/Gtk/Key.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -57,9 +54,8 @@ Default constructor. - a - \ No newline at end of file + diff --git a/doc/en/Gtk/KeyPressEventArgs.xml b/doc/en/Gtk/KeyPressEventArgs.xml index 307ac7644..8aa7f884f 100644 --- a/doc/en/Gtk/KeyPressEventArgs.xml +++ b/doc/en/Gtk/KeyPressEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The keypress event that happened. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/KeyPressEventHandler.xml b/doc/en/Gtk/KeyPressEventHandler.xml index db2bb4897..6fce8f489 100644 --- a/doc/en/Gtk/KeyPressEventHandler.xml +++ b/doc/en/Gtk/KeyPressEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/KeyReleaseEventArgs.xml b/doc/en/Gtk/KeyReleaseEventArgs.xml index d38db5710..c7fcc3be1 100644 --- a/doc/en/Gtk/KeyReleaseEventArgs.xml +++ b/doc/en/Gtk/KeyReleaseEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The key-release event that happened. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/KeyReleaseEventHandler.xml b/doc/en/Gtk/KeyReleaseEventHandler.xml index 12fcc11ae..a5f863c6b 100644 --- a/doc/en/Gtk/KeyReleaseEventHandler.xml +++ b/doc/en/Gtk/KeyReleaseEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/KeySnoopFunc.xml b/doc/en/Gtk/KeySnoopFunc.xml index 5e03399c6..8569ed731 100644 --- a/doc/en/Gtk/KeySnoopFunc.xml +++ b/doc/en/Gtk/KeySnoopFunc.xml @@ -1,27 +1,20 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. A function to be invoked by a global hot-key (a , regardless of keyboard focus. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -30,4 +23,4 @@ System.Int32 - \ No newline at end of file + diff --git a/doc/en/Gtk/Label.xml b/doc/en/Gtk/Label.xml index 3c6680613..ab7204922 100644 --- a/doc/en/Gtk/Label.xml +++ b/doc/en/Gtk/Label.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -29,20 +27,7 @@ Gtk.Misc - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -147,7 +132,6 @@ Internal constructor Pointer to the C object. - An instance of Label, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -167,7 +151,6 @@ widget. The text of the label - the new label widget Creates a new label with the given text inside it. You can @@ -198,6 +181,7 @@ explicitly using . + To be added. @@ -211,7 +195,7 @@ Parses str which is marked up with the Pango text markup language a markup string (see Pango markup format) - a GtkLabel + a GtkLabel Parses which is marked up with the @@ -235,8 +219,8 @@ makes it break lines if text exceeds the size of the widget. lets the text get cut off by the edge of the widget if it exceeds the widget size. - - if the lines of the label are automatically wrapped. + + if the lines of the label are automatically wrapped. @@ -251,7 +235,7 @@ The text within the widget. The text you want to set. - a + a When setting the text within the widget, it overwrites any text that was there before. @@ -267,7 +251,7 @@ Gets the used to display the label. - the for this label + the for this label Gets the used to display the label. The layout @@ -293,7 +277,7 @@ attribute list based on the parse results. a markup string (see Pango markup format) - a new label widget + a new label widget Parses which is marked up with the @@ -324,13 +308,17 @@ to allow selecting text in the label, and to disallow. - + if the label is selectable, and if not. - + - + + + GLib.Property(Name="selectable") + + Property @@ -342,7 +330,7 @@ The alignment of the lines in the text of the label relative to each other a - The justification of the label + The justification of the label Sets the alignment of the lines in the text of the label @@ -353,7 +341,11 @@ - + + + GLib.Property(Name="justify") + + Property @@ -362,11 +354,15 @@ The current position of the insertion cursor in characters. - The current position of the insertion cursor in characters + The current position of the insertion cursor in characters - + + + GLib.Property(Name="cursor_position") + + Property @@ -375,11 +371,15 @@ The position of the opposite end of the selection from the cursor in characters. - The position of the opposite end of the selection from the cursor in characters. + The position of the opposite end of the selection from the cursor in characters. - + + + GLib.Property(Name="selection_bound") + + Property @@ -391,11 +391,15 @@ The widget to be activated when the label's mnemonic key is pressed. The widget to be activated when the label's mnemonic key is pressed. - The widget to be activated when the label's mnemonic key is pressed. + The widget to be activated when the label's mnemonic key is pressed. - + + + GLib.Property(Name="mnemonic_widget") + + Property @@ -407,11 +411,15 @@ The text from a label widget including any embedded underlines indicating mnemonics and Pango markup. The text of the label widget - The text of the label widget. + The text of the label widget. - + + + GLib.Property(Name="label") + + Property @@ -425,8 +433,13 @@ A string with _ characters in positions correspond to characters in the text to underline. + To be added. - + + + GLib.Property(Name="pattern") + + Property @@ -435,11 +448,15 @@ The mnemonic accelerator key for this label. - The mnemonic accelerator key for this label. + The mnemonic accelerator key for this label. - + + + GLib.Property(Name="mnemonic_keyval") + + Property @@ -452,11 +469,15 @@ Whether lines should be wrapped if the text becomes too wide. to wrap lines - whether lines should be wrapped + whether lines should be wrapped - + + + GLib.Property(Name="wrap") + + Property @@ -472,14 +493,18 @@ to use underline - + Whether an underline in the text indicates the next character should be used for the mnemonic accelerator key. - + - + + + GLib.Property(Name="use_underline") + + Property @@ -493,10 +518,14 @@ to parse the text as Pango markup, as plain-text - + - + + + GLib.Property(Name="use_markup") + + Property @@ -508,7 +537,7 @@ The attribute list set on the label. a - the attribute list set on the label + the attribute list set on the label This function does not reflect attributes that come from @@ -521,7 +550,11 @@ - + + + GLib.Property(Name="attributes") + + Event @@ -534,7 +567,11 @@ - + + + GLib.Signal(CName="move_cursor") + + Event @@ -547,7 +584,11 @@ - + + + GLib.Signal(CName="populate_popup") + + Event @@ -560,7 +601,11 @@ - + + + GLib.Signal(CName="copy_clipboard") + + Property @@ -570,7 +615,7 @@ GType Property. - a + a Returns the native value for . @@ -630,10 +675,13 @@ Internal constructor a - a This is not typically used by C# code. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -657,7 +705,6 @@ Creates a new without text. - a @@ -710,10 +757,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="angle") + + Property @@ -723,10 +774,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="single-line-mode") + + Property @@ -736,10 +791,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="ellipsize") + + Property @@ -749,10 +808,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="width_chars") + + Property @@ -762,9 +825,48 @@ To be added - a + a To be added + + + GLib.Property(Name="max_width_chars") + + + + + Method + + System.Void + + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + - \ No newline at end of file + diff --git a/doc/en/Gtk/Layout+LayoutChild.xml b/doc/en/Gtk/Layout+LayoutChild.xml new file mode 100644 index 000000000..87c6ed7cf --- /dev/null +++ b/doc/en/Gtk/Layout+LayoutChild.xml @@ -0,0 +1,54 @@ + + + + gtk-sharp + 2.0.0.0 + + + Gtk.Container+ContainerChild + + + + + + Property + + + Gtk.ChildProperty(Name="x") + + + + System.Int32 + + + X coordinate of the child + the child's X coordinate + + + + + + + Property + + + Gtk.ChildProperty(Name="y") + + + + System.Int32 + + + Y coordinate of the child + the child's Y coordinate + + + + + + + A child of a , used to interact with its container child properties. + + + + diff --git a/doc/en/Gtk/Layout.xml b/doc/en/Gtk/Layout.xml index cc9b7e884..331f5cd58 100644 --- a/doc/en/Gtk/Layout.xml +++ b/doc/en/Gtk/Layout.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,20 +17,12 @@ Gtk.Container - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - + + + System.Reflection.DefaultMember(MemberName="Item") + + @@ -132,7 +122,6 @@ Internal constructor Pointer to the C object. - An instance of Layout, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -150,7 +139,6 @@ Creates a new object. an object of type an object of type - an object of type @@ -166,11 +154,15 @@ The width of the layout. an object of type - an object of type + an object of type - + + + GLib.Property(Name="width") + + Property @@ -182,11 +174,15 @@ The for the horizontal position. an object of type - an object of type + an object of type - + + + GLib.Property(Name="hadjustment") + + Property @@ -198,11 +194,15 @@ The for the vertical position. an object of type - an object of type + an object of type - + + + GLib.Property(Name="vadjustment") + + Property @@ -214,11 +214,15 @@ The height of the layout. an object of type - an object of type + an object of type - + + + GLib.Property(Name="height") + + Event @@ -230,7 +234,11 @@ Fired whenever the scroll adjustment units are set for this widget. - + + + GLib.Signal(CName="set_scroll_adjustments") + + Property @@ -239,7 +247,7 @@ The window object for this layout widget. - a + a @@ -252,7 +260,7 @@ GType Property. - a + a Returns the native value for . @@ -283,10 +291,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -296,7 +307,8 @@ Deprecated. Do not use. - + + @@ -308,7 +320,8 @@ Deprecated. Do not use. - + + diff --git a/doc/en/Gtk/LayoutChild.xml b/doc/en/Gtk/LayoutChild.xml deleted file mode 100644 index 69d890fc6..000000000 --- a/doc/en/Gtk/LayoutChild.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - gtk-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - A child of a , used to interact with its container child properties. - - - - - Gtk.Container+ContainerChild - - - - - - - Property - - System.Int32 - - - - X coordinate of the child - the child's X coordinate - - - - - - - Property - - System.Int32 - - - - Y coordinate of the child - the child's Y coordinate - - - - - - - Constructor - - - - - - - Constructor - a - a - a - - - - - \ No newline at end of file diff --git a/doc/en/Gtk/LeaveNotifyEventArgs.xml b/doc/en/Gtk/LeaveNotifyEventArgs.xml index 0c955fb3e..6a3d8043c 100644 --- a/doc/en/Gtk/LeaveNotifyEventArgs.xml +++ b/doc/en/Gtk/LeaveNotifyEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The underlying Gdk event that triggered the LeaveNotifyEvent. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/LeaveNotifyEventHandler.xml b/doc/en/Gtk/LeaveNotifyEventHandler.xml index 6bb7713bc..0f4736f0a 100644 --- a/doc/en/Gtk/LeaveNotifyEventHandler.xml +++ b/doc/en/Gtk/LeaveNotifyEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/LinkClickedArgs.xml b/doc/en/Gtk/LinkClickedArgs.xml index d4b3638f7..d30f11c52 100644 --- a/doc/en/Gtk/LinkClickedArgs.xml +++ b/doc/en/Gtk/LinkClickedArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The URL the user clicked on. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/LinkClickedHandler.xml b/doc/en/Gtk/LinkClickedHandler.xml index 8f0d7bd30..7daba5960 100644 --- a/doc/en/Gtk/LinkClickedHandler.xml +++ b/doc/en/Gtk/LinkClickedHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ListStore.xml b/doc/en/Gtk/ListStore.xml index aebcb76a8..51ec68b1e 100644 --- a/doc/en/Gtk/ListStore.xml +++ b/doc/en/Gtk/ListStore.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -33,31 +31,24 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - Gtk.TreeModel - - - GLib.IWrapper + Gtk.TreeDragDest Gtk.TreeDragSource - Gtk.TreeDragDest + Gtk.TreeModel Gtk.TreeSortable - GLib.IWrapper - - - System.IDisposable + System.Collections.IEnumerable - - + Method System.Int32 @@ -73,7 +64,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Boolean @@ -101,7 +92,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Void @@ -113,7 +104,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Void @@ -130,7 +121,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Void @@ -151,7 +142,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Void @@ -170,19 +161,19 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Property Gtk.TreeIterCompareFunc The function that will be used by default to sort columns. - a + a - + Method System.Boolean @@ -201,7 +192,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Boolean @@ -219,7 +210,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Boolean @@ -239,7 +230,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Boolean @@ -255,7 +246,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Boolean @@ -271,7 +262,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Void @@ -288,7 +279,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Void @@ -303,7 +294,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Boolean @@ -319,7 +310,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Void @@ -338,7 +329,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method Gtk.TreePath @@ -354,7 +345,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Boolean @@ -370,7 +361,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Void @@ -388,7 +379,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Int32 @@ -404,7 +395,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Void @@ -421,7 +412,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Void @@ -436,7 +427,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Void @@ -453,7 +444,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Void @@ -544,39 +535,38 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the Internal constructor Pointer to the C object. - An instance of ListStore, wrapping the C object. This is an internal constructor, and should not be used by user code. - + Property System.Int32 The number of columns in this ListStore. - A + A - + Property Gtk.TreeModelFlags The flags for this ListStore. - A + A Flags are about the shape of this object's data; see the class documentation for more details. - + Event System.EventHandler @@ -586,9 +576,13 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the Fired when the sorting column has changed. - + + + GLib.Signal(CName="sort_column_changed") + + - + Event Gtk.RowHasChildToggledHandler @@ -598,9 +592,13 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the Fired when the display of a given row's children is toggled. - + + + GLib.Signal(CName="row_has_child_toggled") + + - + Event Gtk.RowInsertedHandler @@ -610,9 +608,13 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the Fired when a row of data is inserted. - + + + GLib.Signal(CName="row_inserted") + + - + Event Gtk.RowDeletedHandler @@ -622,9 +624,13 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the Fired when a row is deleted. - + + + GLib.Signal(CName="row_deleted") + + - + Event Gtk.RowChangedHandler @@ -634,9 +640,13 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the Fired when a row has changed. - + + + GLib.Signal(CName="row_changed") + + - + Event Gtk.RowsReorderedHandler @@ -646,9 +656,13 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the Fired when the order of rows has changed. - + + + GLib.Signal(CName="rows_reordered") + + - + Method System.Boolean @@ -667,7 +681,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Boolean @@ -678,16 +692,17 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the + a + To be added. + a Sets to be the child of , using the given index. The first index is 0. If is too big, or has no children, is set to an invalid iterator and false is returned. will remain a valid node after this function has been called. As a special case, if is , then the th root node is set. - a - a a , true if has an th child. This invocation form is closer to the underlying C API, but it's probably less useful for most C# purposes. - + Method System.Boolean @@ -705,7 +720,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Boolean @@ -725,7 +740,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Boolean @@ -743,7 +758,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.Boolean @@ -761,13 +776,19 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method Gtk.TreeIter - + + + + System.ParamArray + + + Appends a new row to the ListStore and puts the objects in in it. @@ -793,7 +814,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Method System.String @@ -887,16 +908,21 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - + Constructor - + + + + System.ParamArray + + + Creates a new store. The columns' type specified by the argument. a - a @@ -908,7 +934,7 @@ The above example creates a new three columns list store. The types of the colum - + Method System.Boolean @@ -926,7 +952,7 @@ The above example creates a new three columns list store. The types of the colum - + Method System.Void @@ -945,7 +971,7 @@ The above example creates a new three columns list store. The types of the colum - + Method System.Void @@ -964,7 +990,7 @@ The above example creates a new three columns list store. The types of the colum - + Method System.Void @@ -983,7 +1009,7 @@ The above example creates a new three columns list store. The types of the colum - + Method System.Void @@ -1002,7 +1028,7 @@ The above example creates a new three columns list store. The types of the colum - + Method System.Void @@ -1021,7 +1047,7 @@ The above example creates a new three columns list store. The types of the colum - + Method System.Void @@ -1040,7 +1066,7 @@ The above example creates a new three columns list store. The types of the colum - + Method System.Void @@ -1059,7 +1085,7 @@ The above example creates a new three columns list store. The types of the colum - + Method System.Object @@ -1078,7 +1104,7 @@ The above example creates a new three columns list store. The types of the colum - + Property System.Boolean @@ -1086,8 +1112,8 @@ The above example creates a new three columns list store. The types of the colum Find out whether this ListStore has a default sort function. - a , true if there is a default - sort function. + a , true if there is a default + sort function. To set a default sort function, use the property. @@ -1100,19 +1126,19 @@ The above example creates a new three columns list store. The types of the colum GType Property. - a + a Returns the native value for . - + Property GLib.GType[] The types in each column of a ListStore. - a + a This property is meant primarily for classes that inherit from , and should @@ -1137,7 +1163,7 @@ The above example creates a new three columns list store. The types of the colum - + Method GLib.GType @@ -1259,21 +1285,29 @@ The above example creates a new three columns list store. The types of the colum Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor - + + + + System.ParamArray + + + Default constructor. a - a @@ -1390,7 +1424,7 @@ The above example creates a new three columns list store. The types of the colum - + Method System.Int32 @@ -1424,7 +1458,7 @@ The above example creates a new three columns list store. The types of the colum - + Method System.Void @@ -1445,7 +1479,7 @@ The above example creates a new three columns list store. The types of the colum - + Method System.Boolean @@ -1467,13 +1501,12 @@ The above example creates a new three columns list store. The types of the colum Protected constructor. - a - + Method System.Void @@ -1512,7 +1545,7 @@ The above example creates a new three columns list store. The types of the colum - + Method System.Collections.IEnumerator @@ -1529,4 +1562,4 @@ The above example creates a new three columns list store. The types of the colum - \ No newline at end of file + diff --git a/doc/en/Gtk/Main.xml b/doc/en/Gtk/Main.xml index db6299576..b508aea8b 100644 --- a/doc/en/Gtk/Main.xml +++ b/doc/en/Gtk/Main.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,7 +22,6 @@ When your callbacks are invoked, you would typically take some action - for exam System.Object - @@ -104,8 +101,8 @@ When your callbacks are invoked, you would typically take some action - for exam Public constructor. - a - + + diff --git a/doc/en/Gtk/MapChangedArgs.xml b/doc/en/Gtk/MapChangedArgs.xml index 0ccde50b6..557896a0b 100644 --- a/doc/en/Gtk/MapChangedArgs.xml +++ b/doc/en/Gtk/MapChangedArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,8 +36,9 @@ The path of the accelerator that changed - a - + a + + @@ -53,8 +50,9 @@ The key value for the new accelerator - a - + a + + @@ -66,9 +64,10 @@ The modifier mask for the new accelerator - a - + a + + - \ No newline at end of file + diff --git a/doc/en/Gtk/MapChangedHandler.xml b/doc/en/Gtk/MapChangedHandler.xml index b3e3bfce7..5866cefc4 100644 --- a/doc/en/Gtk/MapChangedHandler.xml +++ b/doc/en/Gtk/MapChangedHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/MapEventArgs.xml b/doc/en/Gtk/MapEventArgs.xml index 42e66d37d..b3379574e 100644 --- a/doc/en/Gtk/MapEventArgs.xml +++ b/doc/en/Gtk/MapEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ The Gdk event that triggered the map event. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/MapEventHandler.xml b/doc/en/Gtk/MapEventHandler.xml index b65d18b11..8c960f054 100644 --- a/doc/en/Gtk/MapEventHandler.xml +++ b/doc/en/Gtk/MapEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/MarkDeletedArgs.xml b/doc/en/Gtk/MarkDeletedArgs.xml index d03d7d4dc..9036d051c 100644 --- a/doc/en/Gtk/MarkDeletedArgs.xml +++ b/doc/en/Gtk/MarkDeletedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The mark that was deleted. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/MarkDeletedHandler.xml b/doc/en/Gtk/MarkDeletedHandler.xml index 6ff94f529..029251315 100644 --- a/doc/en/Gtk/MarkDeletedHandler.xml +++ b/doc/en/Gtk/MarkDeletedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/MarkSetArgs.xml b/doc/en/Gtk/MarkSetArgs.xml index 424521703..21b421ded 100644 --- a/doc/en/Gtk/MarkSetArgs.xml +++ b/doc/en/Gtk/MarkSetArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The mark that was deleted. - A + A @@ -52,9 +48,9 @@ The position within the text where the marker was set. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/MarkSetHandler.xml b/doc/en/Gtk/MarkSetHandler.xml index 0bf04c53a..2a93bfd70 100644 --- a/doc/en/Gtk/MarkSetHandler.xml +++ b/doc/en/Gtk/MarkSetHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/MatchSelectedArgs.xml b/doc/en/Gtk/MatchSelectedArgs.xml index 35b069457..041f72d91 100644 --- a/doc/en/Gtk/MatchSelectedArgs.xml +++ b/doc/en/Gtk/MatchSelectedArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The tree model that contains the selected match. - a + a @@ -54,10 +50,10 @@ An iterator to point at the selected match within the model. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/MatchSelectedHandler.xml b/doc/en/Gtk/MatchSelectedHandler.xml index f1513e20f..cf2e7a80e 100644 --- a/doc/en/Gtk/MatchSelectedHandler.xml +++ b/doc/en/Gtk/MatchSelectedHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/MatchType.xml b/doc/en/Gtk/MatchType.xml index e708230cd..62027d54d 100644 --- a/doc/en/Gtk/MatchType.xml +++ b/doc/en/Gtk/MatchType.xml @@ -4,29 +4,21 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Deprecated. Do not use. - + + System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.MatchTypeGType)) + + @@ -51,7 +43,8 @@ Deprecated. Do not use. - + + @@ -64,7 +57,8 @@ Deprecated. Do not use. - + + @@ -77,7 +71,8 @@ Deprecated. Do not use. - + + @@ -90,7 +85,8 @@ Deprecated. Do not use. - + + @@ -103,7 +99,8 @@ Deprecated. Do not use. - + + @@ -116,7 +113,8 @@ Deprecated. Do not use. - + + diff --git a/doc/en/Gtk/MenuChild.xml b/doc/en/Gtk/Menu+MenuChild.xml similarity index 56% rename from doc/en/Gtk/MenuChild.xml rename to doc/en/Gtk/Menu+MenuChild.xml index 847d7592a..cade2a03c 100644 --- a/doc/en/Gtk/MenuChild.xml +++ b/doc/en/Gtk/Menu+MenuChild.xml @@ -1,91 +1,86 @@ - - + + gtk-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] 2.0.0.0 - neutral - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - A child of a , used to interact with its container child properties. - - - Gtk.Container+ContainerChild - Property + + + Gtk.ChildProperty(Name="bottom_attach") + + System.Int32 - The row that the bottom of the menu item is attached to. - the row + the row See for more details Property + + + Gtk.ChildProperty(Name="top_attach") + + System.Int32 - The row that the top of the menu item is attached to. - the row + the row See for more details Property + + + Gtk.ChildProperty(Name="left_attach") + + System.Int32 - The column that the left side of the menu item is attached to. - the column + the column See for more details Property + + + Gtk.ChildProperty(Name="right_attach") + + System.Int32 - The column that the right side of the menu item is attached to. - the column + the column See for more details - - - Constructor - - - - - - - Constructor - a - a - a - - - - \ No newline at end of file + + A child of a , used to interact with its container child properties. + + + + diff --git a/doc/en/Gtk/Menu.xml b/doc/en/Gtk/Menu.xml index a18768a20..094d25537 100644 --- a/doc/en/Gtk/Menu.xml +++ b/doc/en/Gtk/Menu.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -71,20 +69,12 @@ public class MenuApp Gtk.MenuShell - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - + + + System.Reflection.DefaultMember(MemberName="Item") + + @@ -292,7 +282,6 @@ class PopupSample Internal constructor Pointer to the C object. - An instance of Menu, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -305,7 +294,6 @@ class PopupSample A constructor. - An instance of . @@ -317,7 +305,7 @@ class PopupSample Returns the selected menu item from the menu. - The that was last selected in the menu. If a selection has not yet been made, the first menu item is selected. + The that was last selected in the menu. If a selection has not yet been made, the first menu item is selected. This is used by the . @@ -336,7 +324,7 @@ class PopupSample Sets an accelerator path for this menu from which accelerator paths for its immediate children, its menu items, can be constructed. A valid accelerator path. - void + void The main purpose of this function is to spare the programmer the inconvenience of having to call on each menu item that should support runtime user changable accelerators. Instead, by just calling on their parent, each menu item of this menu, that contains a label describing its purpose, automatically gets an accel path assigned. @@ -352,7 +340,7 @@ class PopupSample Returns the that the menu is attached to. - The that the menu is attached to. + The that the menu is attached to. @@ -367,14 +355,18 @@ class PopupSample Sets or obtains the tearoff state of the menu. If , menu is displayed as a tearoff menu. - Returns if the menu is currently torn off. + Returns if the menu is currently torn off. A menu is normally displayed as drop down menu which persists as long as the menu is active. It can also be displayed as a tearoff menu which persists until it is closed or reattached. - + + + GLib.Property(Name="tearoff-state") + + Property @@ -386,7 +378,7 @@ class PopupSample Sets or obtains the which holds global accelerators for the menu. The to be associated with the menu. - The associated with the menu. + The associated with the menu. This accelerator group needs to also be added to all windows that this menu is being used in with , in order for those windows to support all the accelerators contained in this group. @@ -405,7 +397,7 @@ class PopupSample Sets or obtains the title for the menu. A string containing the title for the menu. - The title of the menu, or if the menu has no title set on it. This string is owned by the widget and should not be modified or freed. + The title of the menu, or if the menu has no title set on it. This string is owned by the widget and should not be modified or freed. The title is displayed when the menu is shown as a tearoff menu. @@ -424,10 +416,14 @@ class PopupSample The title of this menu when it is torn off an object of type - an object of type + an object of type - + + + GLib.Property(Name="tearoff-title") + + Property @@ -437,7 +433,7 @@ class PopupSample The physical screen this menu is placed on. - a + a @@ -469,7 +465,7 @@ class PopupSample GType Property. - a + a Returns the native value for . @@ -483,10 +479,13 @@ class PopupSample Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -495,7 +494,7 @@ class PopupSample The number of the monitor on which the menu should be popped up. - a + a @@ -564,4 +563,4 @@ class PopupSample - \ No newline at end of file + diff --git a/doc/en/Gtk/MenuBar.xml b/doc/en/Gtk/MenuBar.xml index 98f734565..528c90ff6 100644 --- a/doc/en/Gtk/MenuBar.xml +++ b/doc/en/Gtk/MenuBar.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -59,20 +57,7 @@ Gtk.MenuShell - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -96,7 +81,6 @@ Internal constructor Pointer to the C object. - An instance of MenuBar, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -109,7 +93,6 @@ A constructor. - An instance of . @@ -122,7 +105,7 @@ GType Property. - a + a Returns the native value for . @@ -136,9 +119,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/MenuCallback.xml b/doc/en/Gtk/MenuCallback.xml index edc0ebf8a..2770b1ffa 100644 --- a/doc/en/Gtk/MenuCallback.xml +++ b/doc/en/Gtk/MenuCallback.xml @@ -1,29 +1,19 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. Do not use. Do not use. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void diff --git a/doc/en/Gtk/MenuDetachFunc.xml b/doc/en/Gtk/MenuDetachFunc.xml index aec60a2ec..cf8b7205d 100644 --- a/doc/en/Gtk/MenuDetachFunc.xml +++ b/doc/en/Gtk/MenuDetachFunc.xml @@ -1,27 +1,19 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. A delegate for a function that will be called when the user invokes . (TODO: examples.) System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -30,4 +22,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/MenuDirectionType.xml b/doc/en/Gtk/MenuDirectionType.xml index bc139c342..371500e87 100644 --- a/doc/en/Gtk/MenuDirectionType.xml +++ b/doc/en/Gtk/MenuDirectionType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,18 +18,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.MenuDirectionTypeGType)) + + @@ -95,4 +86,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/MenuEntry.xml b/doc/en/Gtk/MenuEntry.xml index 30135a55d..5da4fcfe6 100644 --- a/doc/en/Gtk/MenuEntry.xml +++ b/doc/en/Gtk/MenuEntry.xml @@ -1,17 +1,15 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - Class for use with in generating menus. + Class for use with in generating menus. - See for more details. + See for more details. FIXME: see bugzilla.ximian.com #70887, which directly concerns this API. @@ -19,7 +17,6 @@ System.ValueType - @@ -31,7 +28,8 @@ An empty menu entry. - + + @@ -57,7 +55,8 @@ An accelerator key sequence - + + @@ -73,7 +72,8 @@ For internal use only. Do not use. a , pointer to the underlying C object. a - + + @@ -85,8 +85,9 @@ The widget related to this menu entry. - a - + a + + diff --git a/doc/en/Gtk/MenuItem.xml b/doc/en/Gtk/MenuItem.xml index 21e92eb8f..fa5b0f15f 100644 --- a/doc/en/Gtk/MenuItem.xml +++ b/doc/en/Gtk/MenuItem.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -30,20 +28,7 @@ Gtk.Item - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -130,7 +115,6 @@ Internal constructor Pointer to the C object. - An instance of MenuItem, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -143,7 +127,6 @@ A constructor. - An instance of . @@ -157,7 +140,6 @@ Creates a new MenuItem containing a label. The label text on the menu item, with an underscore in front of the mnemonic character. - A @@ -172,7 +154,7 @@ Sets or obtains the widget submenu. The submenu. - A submenu for this menu item, or if none. + A submenu for this menu item, or if none. @@ -187,7 +169,7 @@ Sets the accelerator path. An accelerator path, corresponding to this menu item's functionality, or to unset the current path. - The accelerator path of the menu item. + The accelerator path of the menu item. Sets the accelerator path, through which runtime changes of the menu item's accelerator caused by the user can be identified and saved to persistant storage. @@ -206,7 +188,7 @@ Sets or obtains whether the menu item appears justified at the right side of a menu bar. If the menu item will appear at the far right if added to a menu bar. - Returns if the menu item will appear at the far right if added to a menu bar. + Returns if the menu item will appear at the far right if added to a menu bar. @@ -221,7 +203,11 @@ Emitted when the item is activated. - + + + GLib.Signal(CName="activate") + + Event @@ -233,7 +219,11 @@ Emitted when the item is activated, but also if the menu item has a submenu. For normal applications, the relevant event is . - + + + GLib.Signal(CName="activate_item") + + Event @@ -245,7 +235,11 @@ Emitted when size is allocated. - + + + GLib.Signal(CName="toggle_size_allocate") + + Event @@ -257,7 +251,11 @@ Emitted when size is requested. - + + + GLib.Signal(CName="toggle_size_request") + + Property @@ -267,7 +265,7 @@ GType Property. - a + a Returns the native value for . @@ -335,10 +333,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -353,4 +354,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/MenuPositionFunc.xml b/doc/en/Gtk/MenuPositionFunc.xml index 663ae0ff8..bc813daf1 100644 --- a/doc/en/Gtk/MenuPositionFunc.xml +++ b/doc/en/Gtk/MenuPositionFunc.xml @@ -1,35 +1,29 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. A delegate function for positioning a popup menu. Gets invoked by . System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - - - - + + + System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/MenuShell.xml b/doc/en/Gtk/MenuShell.xml index b67aa28dd..cd57801d9 100644 --- a/doc/en/Gtk/MenuShell.xml +++ b/doc/en/Gtk/MenuShell.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,20 +19,7 @@ Gtk.Container - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -188,7 +173,6 @@ Internal constructor Pointer to the C object. - An instance of MenuShell, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -205,7 +189,11 @@ An action signal that activates the current menu item within the menu shell. - + + + GLib.Signal(CName="activate_current") + + Event @@ -217,7 +205,11 @@ An action signal which moves the current menu item in the direction specified by . - + + + GLib.Signal(CName="move_current") + + Event @@ -229,7 +221,11 @@ This signal is emitted when a selection has been completed within a menu shell. - + + + GLib.Signal(CName="selection-done") + + Event @@ -241,7 +237,11 @@ This signal is emitted when a menu shell is deactivated. - + + + GLib.Signal(CName="deactivate") + + Method @@ -272,7 +272,7 @@ GType Property. - a + a Returns the native value for . @@ -340,10 +340,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -351,7 +354,6 @@ Protected constructor. - a @@ -366,7 +368,11 @@ An action signal which cancels the selection within the menu shell.Causes the signal to be emitted. - + + + GLib.Signal(CName="cancel") + + Method diff --git a/doc/en/Gtk/MenuToolButton.xml b/doc/en/Gtk/MenuToolButton.xml index e6431d7ee..93fea8388 100644 --- a/doc/en/Gtk/MenuToolButton.xml +++ b/doc/en/Gtk/MenuToolButton.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,20 +14,7 @@ Gtk.ToolButton - - System.Collections.IEnumerable - - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -85,10 +70,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -99,7 +87,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -115,7 +102,6 @@ To be added a a - a To be added @@ -129,7 +115,6 @@ To be added a - a To be added @@ -142,7 +127,7 @@ GType Property. - a + a Returns the native value for . @@ -155,10 +140,14 @@ To be added - a + a To be added - + + + GLib.Property(Name="menu") + + Event @@ -170,6 +159,10 @@ To be added To be added - + + + GLib.Signal(CName="show-menu") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/MessageDialog.xml b/doc/en/Gtk/MessageDialog.xml index 5185c62c7..4a0dc1711 100644 --- a/doc/en/Gtk/MessageDialog.xml +++ b/doc/en/Gtk/MessageDialog.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -70,20 +68,7 @@ md.Modal = false; Gtk.Dialog - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -107,14 +92,13 @@ md.Modal = false; Internal constructor Pointer to the C object. - An instance of , wrapping the C object. This is an internal constructor, and should not be used by user code. - + Constructor @@ -123,7 +107,13 @@ md.Modal = false; - + + + + System.ParamArray + + + Creates an instance of @@ -133,7 +123,6 @@ md.Modal = false; the buttons to display the message format string optional arguments for - a Creates an instance of @@ -147,7 +136,7 @@ MessageDialog md = new MessageDialog - + Constructor @@ -157,7 +146,13 @@ MessageDialog md = new MessageDialog - + + + + System.ParamArray + + + Creates an instance of @@ -168,7 +163,6 @@ MessageDialog md = new MessageDialog whether or not uses Pango markup the message format string optional arguments for - a Like the other constructor, but allows you to pass a non-marked-up string. @@ -180,10 +174,14 @@ MessageDialog md = new MessageDialog The of the - an object of type + an object of type The of the - + + + GLib.Property(Name="message_type") + + Property @@ -193,7 +191,7 @@ MessageDialog md = new MessageDialog GType Property. - a + a Returns the native value for . @@ -207,10 +205,13 @@ MessageDialog md = new MessageDialog Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -219,7 +220,7 @@ MessageDialog md = new MessageDialog Markup for the message to display in the dialog. - a + a Markup should be in Pango markup format. (TODO: check this.) @@ -230,9 +231,8 @@ MessageDialog md = new MessageDialog To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Gtk/MessageType.xml b/doc/en/Gtk/MessageType.xml index 2cc5b23b3..d3db62995 100644 --- a/doc/en/Gtk/MessageType.xml +++ b/doc/en/Gtk/MessageType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,18 +16,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.MessageTypeGType)) + + @@ -93,4 +84,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/MetricType.xml b/doc/en/Gtk/MetricType.xml index 29f956ea9..527e82523 100644 --- a/doc/en/Gtk/MetricType.xml +++ b/doc/en/Gtk/MetricType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.MetricTypeGType)) + + @@ -82,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Misc.xml b/doc/en/Gtk/Misc.xml index 202eb3982..e2ba6835b 100644 --- a/doc/en/Gtk/Misc.xml +++ b/doc/en/Gtk/Misc.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -27,20 +25,7 @@ Gtk.Widget - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -56,6 +41,7 @@ Sets the alignment of the widget. The horizontal alignment, from 0 (left) to 1 (right). The vertical alignment, from 0 (top) to 1 (bottom). + To be added. @@ -72,6 +58,7 @@ Sets the amount of space to add around the widget. The amount of space to add on the left and right of the widget, in pixels. The amount of space to add on the top and bottom of the widget, in pixels. + To be added. @@ -96,7 +83,6 @@ Internal constructor Pointer to the C object. - An instance of Misc, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -124,10 +110,14 @@ The vertical alignment The vertical alignment, from 0 (top) to 1 (bottom). - The vertical alignment + The vertical alignment - + + + GLib.Property(Name="yalign") + + Property @@ -139,10 +129,14 @@ The horizontal alignment The horizontal alignment, from 0 (left) to 1 (right). - The horizontal alignment + The horizontal alignment - + + + GLib.Property(Name="xalign") + + Property @@ -154,10 +148,14 @@ The amount of space to add on the left and right of the widget, in pixels. The amount of space to add on the left and right of the widget, in pixels. - The amount of space to add on the left and right of the widget, in pixels. + The amount of space to add on the left and right of the widget, in pixels. - + + + GLib.Property(Name="ypad") + + Property @@ -169,10 +167,14 @@ The amount of space to add on the top and bottom of the widget, in pixels. The amount of space to add on the top and bottom of the widget, in pixels. - The amount of space to add on the top and bottom of the widget, in pixels. + The amount of space to add on the top and bottom of the widget, in pixels. - + + + GLib.Property(Name="xpad") + + Method @@ -218,7 +220,7 @@ GType Property. - a + a Returns the native value for . @@ -232,10 +234,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -243,9 +248,8 @@ Protected constructor. - a Protected constructor. - \ No newline at end of file + diff --git a/doc/en/Gtk/MnemonicActivatedArgs.xml b/doc/en/Gtk/MnemonicActivatedArgs.xml index cd7a5af56..70a51ce57 100644 --- a/doc/en/Gtk/MnemonicActivatedArgs.xml +++ b/doc/en/Gtk/MnemonicActivatedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ Whether or not the mnemonic group acts as a loop. - A boolean, true if the group cycles. + A boolean, true if the group cycles. - \ No newline at end of file + diff --git a/doc/en/Gtk/MnemonicActivatedHandler.xml b/doc/en/Gtk/MnemonicActivatedHandler.xml index 674e85b6c..db216dda6 100644 --- a/doc/en/Gtk/MnemonicActivatedHandler.xml +++ b/doc/en/Gtk/MnemonicActivatedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/MnemonicHash.xml b/doc/en/Gtk/MnemonicHash.xml index 47f8da33b..502b369c0 100644 --- a/doc/en/Gtk/MnemonicHash.xml +++ b/doc/en/Gtk/MnemonicHash.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,11 +14,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -32,9 +26,8 @@ To be added a - a To be added - \ No newline at end of file + diff --git a/doc/en/Gtk/MnemonicHashForeach.xml b/doc/en/Gtk/MnemonicHashForeach.xml index a85920680..dfdd64895 100644 --- a/doc/en/Gtk/MnemonicHashForeach.xml +++ b/doc/en/Gtk/MnemonicHashForeach.xml @@ -1,29 +1,20 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -32,4 +23,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/MotionNotifyEventArgs.xml b/doc/en/Gtk/MotionNotifyEventArgs.xml index c6295062f..ad88dbbbd 100644 --- a/doc/en/Gtk/MotionNotifyEventArgs.xml +++ b/doc/en/Gtk/MotionNotifyEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The underlying Gdk event that triggered this MotionNotifyEvent. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/MotionNotifyEventHandler.xml b/doc/en/Gtk/MotionNotifyEventHandler.xml index df94fb928..a9001d5e1 100644 --- a/doc/en/Gtk/MotionNotifyEventHandler.xml +++ b/doc/en/Gtk/MotionNotifyEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/MoveArgs.xml b/doc/en/Gtk/MoveArgs.xml index bb3314075..255fdd4bf 100644 --- a/doc/en/Gtk/MoveArgs.xml +++ b/doc/en/Gtk/MoveArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The direction to move the HSV controller's control. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/MoveCurrentArgs.xml b/doc/en/Gtk/MoveCurrentArgs.xml index 3f9eb7e9a..c90712f69 100644 --- a/doc/en/Gtk/MoveCurrentArgs.xml +++ b/doc/en/Gtk/MoveCurrentArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The direction the menu cursor moved for this event. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/MoveCurrentHandler.xml b/doc/en/Gtk/MoveCurrentHandler.xml index 68b5358ef..6d2e03666 100644 --- a/doc/en/Gtk/MoveCurrentHandler.xml +++ b/doc/en/Gtk/MoveCurrentHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/MoveCursorArgs.xml b/doc/en/Gtk/MoveCursorArgs.xml index 5ac0b64c5..17efdd419 100644 --- a/doc/en/Gtk/MoveCursorArgs.xml +++ b/doc/en/Gtk/MoveCursorArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -43,7 +41,6 @@ GLib.SignalArgs - @@ -52,7 +49,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -64,7 +60,7 @@ How many steps the cursor moved. - A + A @@ -76,9 +72,9 @@ The kind of movement being counted in this event. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/MoveCursorHandler.xml b/doc/en/Gtk/MoveCursorHandler.xml index 1c1d7b302..9516552f7 100644 --- a/doc/en/Gtk/MoveCursorHandler.xml +++ b/doc/en/Gtk/MoveCursorHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -41,15 +42,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -58,4 +50,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/MoveFocusArgs.xml b/doc/en/Gtk/MoveFocusArgs.xml index efe85a8da..46c052f7d 100644 --- a/doc/en/Gtk/MoveFocusArgs.xml +++ b/doc/en/Gtk/MoveFocusArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -33,7 +31,6 @@ GLib.SignalArgs - @@ -42,7 +39,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -54,9 +50,9 @@ The direction to move the focus. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/MoveFocusHandler.xml b/doc/en/Gtk/MoveFocusHandler.xml index 2a2a5ae5a..6afed70d0 100644 --- a/doc/en/Gtk/MoveFocusHandler.xml +++ b/doc/en/Gtk/MoveFocusHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -31,15 +32,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -48,4 +40,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/MoveFocusOutArgs.xml b/doc/en/Gtk/MoveFocusOutArgs.xml index 46ef20b5c..7b9b4a557 100644 --- a/doc/en/Gtk/MoveFocusOutArgs.xml +++ b/doc/en/Gtk/MoveFocusOutArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -33,7 +31,6 @@ GLib.SignalArgs - @@ -42,7 +39,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -54,9 +50,9 @@ The direction the focus is moving on its way out. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/MoveFocusOutHandler.xml b/doc/en/Gtk/MoveFocusOutHandler.xml index 9573ebabb..97c880842 100644 --- a/doc/en/Gtk/MoveFocusOutHandler.xml +++ b/doc/en/Gtk/MoveFocusOutHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -31,15 +32,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -48,4 +40,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/MoveHandleArgs.xml b/doc/en/Gtk/MoveHandleArgs.xml index 48fcf271f..ffe551030 100644 --- a/doc/en/Gtk/MoveHandleArgs.xml +++ b/doc/en/Gtk/MoveHandleArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The direction and units to scroll by. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/MoveHandleHandler.xml b/doc/en/Gtk/MoveHandleHandler.xml index 5f293d8e8..29fa70ec2 100644 --- a/doc/en/Gtk/MoveHandleHandler.xml +++ b/doc/en/Gtk/MoveHandleHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/MoveHandler.xml b/doc/en/Gtk/MoveHandler.xml index 2edd167f5..8864fa4ce 100644 --- a/doc/en/Gtk/MoveHandler.xml +++ b/doc/en/Gtk/MoveHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/MoveSliderArgs.xml b/doc/en/Gtk/MoveSliderArgs.xml index 096164e61..18c3604ec 100644 --- a/doc/en/Gtk/MoveSliderArgs.xml +++ b/doc/en/Gtk/MoveSliderArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The kind of scrolling that was done in the triggering event. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/MoveSliderHandler.xml b/doc/en/Gtk/MoveSliderHandler.xml index c079d11a1..084333adb 100644 --- a/doc/en/Gtk/MoveSliderHandler.xml +++ b/doc/en/Gtk/MoveSliderHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/MovementStep.xml b/doc/en/Gtk/MovementStep.xml index 6b9d51a88..cdc0f7dd4 100644 --- a/doc/en/Gtk/MovementStep.xml +++ b/doc/en/Gtk/MovementStep.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.MovementStepGType)) + + @@ -169,7 +160,8 @@ The cursor will move horizontally by pages. - + + diff --git a/doc/en/Gtk/NoExposeEventArgs.xml b/doc/en/Gtk/NoExposeEventArgs.xml index 64f666d01..eec069155 100644 --- a/doc/en/Gtk/NoExposeEventArgs.xml +++ b/doc/en/Gtk/NoExposeEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,10 +37,10 @@ The which triggered the . - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/NoExposeEventHandler.xml b/doc/en/Gtk/NoExposeEventHandler.xml index 8ad2678a2..f254d2840 100644 --- a/doc/en/Gtk/NoExposeEventHandler.xml +++ b/doc/en/Gtk/NoExposeEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/NodeCellDataFunc.xml b/doc/en/Gtk/NodeCellDataFunc.xml index 313ab4d9b..bc609fd5e 100644 --- a/doc/en/Gtk/NodeCellDataFunc.xml +++ b/doc/en/Gtk/NodeCellDataFunc.xml @@ -1,29 +1,21 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. Callback type to initialize a cell renderers attributes. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void diff --git a/doc/en/Gtk/NodeSelection.xml b/doc/en/Gtk/NodeSelection.xml index eb09d398f..ced9ac6ff 100644 --- a/doc/en/Gtk/NodeSelection.xml +++ b/doc/en/Gtk/NodeSelection.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -194,7 +191,7 @@ Selection mode currently is use. - a + a @@ -207,12 +204,12 @@ The view associated with this selection object. - a + a - + Property Gtk.ITreeNode[] @@ -220,7 +217,7 @@ The currently selected nodes. - a + a diff --git a/doc/en/Gtk/NodeStore.xml b/doc/en/Gtk/NodeStore.xml index 1fe98b0d9..418be53da 100644 --- a/doc/en/Gtk/NodeStore.xml +++ b/doc/en/Gtk/NodeStore.xml @@ -1,12 +1,10 @@ - + gtk-sharp 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -71,13 +69,9 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - GLib.IWrapper - - - System.IDisposable + System.Collections.IEnumerable - @@ -132,6 +126,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the and returns it, or null if the node cannot be found.
+ To be added. @@ -161,7 +156,6 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the NodeStore constructor a - a Creates a for nodes of the specified . The type provided in must implement . @@ -177,13 +171,13 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the Native type value. - a + a - + Method System.Collections.IEnumerator @@ -196,4 +190,4 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the - \ No newline at end of file + diff --git a/doc/en/Gtk/NodeView.xml b/doc/en/Gtk/NodeView.xml index 32194c04d..f4f0807fe 100644 --- a/doc/en/Gtk/NodeView.xml +++ b/doc/en/Gtk/NodeView.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,17 +14,7 @@ Gtk.TreeView - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -38,7 +26,6 @@ Constructs a new view for a given . a - a @@ -51,7 +38,7 @@ The store containing the view's data. - a + a @@ -64,7 +51,7 @@ Used to obtain and manipulate the currently selected node(s). - a + a @@ -89,4 +76,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/NotebookChild.xml b/doc/en/Gtk/Notebook+NotebookChild.xml similarity index 60% rename from doc/en/Gtk/NotebookChild.xml rename to doc/en/Gtk/Notebook+NotebookChild.xml index 31bf15439..37a3ff851 100644 --- a/doc/en/Gtk/NotebookChild.xml +++ b/doc/en/Gtk/Notebook+NotebookChild.xml @@ -1,49 +1,47 @@ - - + + gtk-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] 2.0.0.0 - neutral - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - A child of a , used to interact with its container child properties. - - - Gtk.Container+ContainerChild - Property + + + Gtk.ChildProperty(Name="tab_expand") + + System.Boolean - The "expand" property of a tab's label - + if the page's label is set to "expand" - + See for more details. Property + + + Gtk.ChildProperty(Name="position") + + System.Int32 - The page's position within the notebook. - the position + the position @@ -51,13 +49,17 @@ Property + + + Gtk.ChildProperty(Name="menu_label") + + System.String - The page's menu label - the label of the page in the notebook's pop-up menu + the label of the page in the notebook's pop-up menu @@ -65,60 +67,61 @@ Property + + + Gtk.ChildProperty(Name="tab_fill") + + System.Boolean - The "fill" property of a tab's label - + if the page's label is set to "fill" - + See for more details. Property + + + Gtk.ChildProperty(Name="tab_pack") + + Gtk.PackType - The pack type of a page's tab label - the label's + the label's See for more details. Property + + + Gtk.ChildProperty(Name="tab_label") + + System.String - The page's tab label - the label + the label - - - Constructor - - - - - - - Constructor - a - a - a - - - - \ No newline at end of file + + A child of a , used to interact with its container child properties. + + + + diff --git a/doc/en/Gtk/Notebook.xml b/doc/en/Gtk/Notebook.xml index ef0119a12..6be7498db 100644 --- a/doc/en/Gtk/Notebook.xml +++ b/doc/en/Gtk/Notebook.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -78,20 +76,12 @@ class NotebookSample Gtk.Container - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - + + + System.Reflection.DefaultMember(MemberName="Item") + + @@ -415,7 +405,6 @@ the label of a menu doesn't have to be a . it can be a Internal constructor Pointer to the C object. - An instance of Notebook, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -428,7 +417,6 @@ the label of a menu doesn't have to be a . it can be a Creates a new object. - an object of type This is the default constructor for . @@ -444,7 +432,7 @@ the label of a menu doesn't have to be a . it can be a Sets or obtains the index of the curent page. the index of the page to switch to. - Returns the index of the current page . + Returns the index of the current page . The index (starting from 0) of the current page in the notebook. If the notebook has no pages, then -1 will be returned. @@ -459,10 +447,14 @@ the label of a menu doesn't have to be a . it can be a Indicates if scroll arrows are added if there are too many tabs. a Boolean value to select if scroll arrows are added or not. - Returns true if arrows are added and false if not. + Returns true if arrows are added and false if not. Default is false. - + + + GLib.Property(Name="scrollable") + + Property @@ -474,10 +466,14 @@ the label of a menu doesn't have to be a . it can be a Indicates if the tabs are shown. a Boolean value to select if the tabs are shown or not. - Returns true if the tabs are shown and false if not. + Returns true if the tabs are shown and false if not. Default value is true. - + + + GLib.Property(Name="show_tabs") + + Property @@ -489,10 +485,14 @@ the label of a menu doesn't have to be a . it can be a Indicates if the border is shown. a Boolean value to select if the border should be shown or not. - Returns true if the border is shown and false if not. + Returns true if the border is shown and false if not. Default value is true. - + + + GLib.Property(Name="show_border") + + Property @@ -504,10 +504,14 @@ the label of a menu doesn't have to be a . it can be a Sets or obtains yhe width of the horizontal border arround the tabs. a uint value to select the horizontal width of the border. - Returns the horizontal width of the border. + Returns the horizontal width of the border. Default value is 2. - + + + GLib.Property(Name="tab_hborder") + + Property @@ -519,10 +523,14 @@ the label of a menu doesn't have to be a . it can be a Indicates if all the tabs have the same size. Selects if the tabs have the same size or not. - Returns a boolean to indicate if the tabs have the same size or not. + Returns a boolean to indicate if the tabs have the same size or not. True if the tabs have the same size and false if not. Default is false. - + + + GLib.Property(Name="homogeneous") + + Property @@ -534,10 +542,14 @@ the label of a menu doesn't have to be a . it can be a Sets or obtains the width of the vertical border arround the tabs. a uint value to select the vertical width of the border. - Returns the vertical width of the border. + Returns the vertical width of the border. Default value is 2. - + + + GLib.Property(Name="tab_vborder") + + Property @@ -549,10 +561,14 @@ the label of a menu doesn't have to be a . it can be a Sets the width of the border arround the tabs.. a uint value to select the width of the border. - + Default value is 2. This is a easy the change and at the same time. Use those properties to read the width. - + + + GLib.Property(Name="tab_border") + + Property @@ -564,10 +580,14 @@ the label of a menu doesn't have to be a . it can be a Sets or obtains the index of the curent page. The index of the page to switch to. - Returns the index of the curent page. + Returns the index of the curent page. use instead. - + + + GLib.Property(Name="page") + + Property @@ -579,10 +599,14 @@ the label of a menu doesn't have to be a . it can be a Sets or obtains The position of the tabs. The new . - the of this notebook. + the of this notebook. default is top. - + + + GLib.Property(Name="tab_pos") + + Property @@ -594,10 +618,14 @@ the label of a menu doesn't have to be a . it can be a Indicates if the popup menu in enabled. Use true to enable and false to disable. - Returns true if the popup menu is enabled and false if not. + Returns true if the popup menu is enabled and false if not. if true and the user clicks with the right mouse button on the tabs, a menu with all the pages will be popped up. - + + + GLib.Property(Name="enable_popup") + + Event @@ -609,7 +637,11 @@ the label of a menu doesn't have to be a . it can be a Fired when a page of the notebook is selected. - + + + GLib.Signal(CName="select_page") + + Event @@ -626,7 +658,11 @@ the label of a menu doesn't have to be a . it can be a
- + + + GLib.Signal(CName="switch_page") + + Event @@ -643,7 +679,11 @@ the label of a menu doesn't have to be a . it can be a
- + + + GLib.Signal(CName="move_focus_out") + + Event @@ -661,7 +701,11 @@ the label of a menu doesn't have to be a . it can be a
- + + + GLib.Signal(CName="change_current_page") + + Event @@ -677,7 +721,11 @@ the label of a menu doesn't have to be a . it can be a
- + + + GLib.Signal(CName="focus_tab") + + Method @@ -703,7 +751,7 @@ the label of a menu doesn't have to be a . it can be a returns the amount of pages in this notebook. - the amount of pages in the notebook. + the amount of pages in the notebook. @@ -715,7 +763,7 @@ the label of a menu doesn't have to be a . it can be a Obtains the widget that represents the current page. - The object in the current page. + The object in the current page. This property uses and together to @@ -754,7 +802,7 @@ the label of a menu doesn't have to be a . it can be a GType Property. - a + a Returns the native value for . @@ -847,10 +895,13 @@ the label of a menu doesn't have to be a . it can be a Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -876,10 +927,15 @@ the label of a menu doesn't have to be a . it can be a Whether tabs should have homogeneous sizes. - a - + a + + - + + + System.Obsolete(Message=null, IsError=False) + + Method diff --git a/doc/en/Gtk/NotebookPage.xml b/doc/en/Gtk/NotebookPage.xml index 819d09b3c..04f7f5ccf 100644 --- a/doc/en/Gtk/NotebookPage.xml +++ b/doc/en/Gtk/NotebookPage.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,11 +17,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -35,11 +29,10 @@ Internal constructor Pointer to the C object. - An instance of NotebookPage, wrapping the C object. This is an internal constructor, and should not be used by user code. - \ No newline at end of file + diff --git a/doc/en/Gtk/NotebookTab.xml b/doc/en/Gtk/NotebookTab.xml index 4c85d9937..4ff39ca89 100644 --- a/doc/en/Gtk/NotebookTab.xml +++ b/doc/en/Gtk/NotebookTab.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.NotebookTabGType)) + + @@ -69,4 +60,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Object.xml b/doc/en/Gtk/Object.xml index bdc8100dc..eb15bab9f 100644 --- a/doc/en/Gtk/Object.xml +++ b/doc/en/Gtk/Object.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,14 +18,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -83,7 +74,6 @@ The object is only destroyed if all the references to the object are released, t Internal constructor Pointer to the C object. - An instance of Object, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -100,10 +90,14 @@ The object is only destroyed if all the references to the object are released, t Helper property to associate information with an object. The value to store/retrieve - + This is not very useful with the Gtk# binding as it is with the C binding. - + + + GLib.Property(Name="user_data") + + Event @@ -115,7 +109,11 @@ The object is only destroyed if all the references to the object are released, t Raised to signal that all references to this object should be removed. This event is triggered if someone has invoked the 's method. It is used to inform that all references to the object must be discarded at this point. - + + + GLib.Signal(CName="destroy") + + Property @@ -128,7 +126,7 @@ The object is only destroyed if all the references to the object are released, t Diagnostic method to print the raw object and its reference count as debug information. - a , the internal C data underlying this object. + a , the internal C data underlying this object. @@ -155,10 +153,13 @@ The object is only destroyed if all the references to the object are released, t Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -168,7 +169,7 @@ The object is only destroyed if all the references to the object are released, t GType Property. - a + a Returns the native value for . @@ -179,7 +180,6 @@ The object is only destroyed if all the references to the object are released, t Internal. - a Internal constructor. @@ -192,7 +192,7 @@ The object is only destroyed if all the references to the object are released, t Determines if the object reference is floating. - a + a An object is floating until it is added to a container which claims ownership of the floating reference. diff --git a/doc/en/Gtk/ObjectRequestedArgs.xml b/doc/en/Gtk/ObjectRequestedArgs.xml index 8659a7417..87b075892 100644 --- a/doc/en/Gtk/ObjectRequestedArgs.xml +++ b/doc/en/Gtk/ObjectRequestedArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,8 +37,9 @@ To be added - a - + a + + diff --git a/doc/en/Gtk/ObjectRequestedHandler.xml b/doc/en/Gtk/ObjectRequestedHandler.xml index 499febcee..ea97b226c 100644 --- a/doc/en/Gtk/ObjectRequestedHandler.xml +++ b/doc/en/Gtk/ObjectRequestedHandler.xml @@ -1,15 +1,15 @@ - + gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/OnCommandArgs.xml b/doc/en/Gtk/OnCommandArgs.xml index e5dd54ec0..60cc7c7e5 100644 --- a/doc/en/Gtk/OnCommandArgs.xml +++ b/doc/en/Gtk/OnCommandArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The kind of command that was issued to the HTML widget. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/OnCommandHandler.xml b/doc/en/Gtk/OnCommandHandler.xml index fdead7055..272aeddb3 100644 --- a/doc/en/Gtk/OnCommandHandler.xml +++ b/doc/en/Gtk/OnCommandHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/OnUrlArgs.xml b/doc/en/Gtk/OnUrlArgs.xml index 2ef7e4998..12d43e431 100644 --- a/doc/en/Gtk/OnUrlArgs.xml +++ b/doc/en/Gtk/OnUrlArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The URL to act on. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/OnUrlHandler.xml b/doc/en/Gtk/OnUrlHandler.xml index d7ef78910..b917368ff 100644 --- a/doc/en/Gtk/OnUrlHandler.xml +++ b/doc/en/Gtk/OnUrlHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/OptionMenu.xml b/doc/en/Gtk/OptionMenu.xml index 8d7fce49c..76620b562 100644 --- a/doc/en/Gtk/OptionMenu.xml +++ b/doc/en/Gtk/OptionMenu.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -85,20 +83,12 @@ class OptionMenuSample Gtk.Button - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - + + + System.Obsolete(Message=null, IsError=False) + + @@ -134,7 +124,6 @@ class OptionMenuSample Internal constructor Pointer to the C object. - An instance of , wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -147,7 +136,6 @@ class OptionMenuSample Creates a new - an object of type This is the default constructor for @@ -159,7 +147,7 @@ class OptionMenuSample Retrieves the index of the currently selected . - an object of type + an object of type The s are numbered from top to bottom, starting with 0. @@ -174,10 +162,14 @@ class OptionMenuSample The menu of options. an object of type - an object of type + an object of type - + + + GLib.Property(Name="menu") + + Event @@ -189,7 +181,11 @@ class OptionMenuSample Emitted when the selection is changed. - + + + GLib.Signal(CName="changed") + + Method @@ -214,7 +210,7 @@ class OptionMenuSample GType Property. - a + a Returns the native value for . @@ -240,9 +236,12 @@ class OptionMenuSample Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/Orientation.xml b/doc/en/Gtk/Orientation.xml index dddfef7f1..ebdb0b8b4 100644 --- a/doc/en/Gtk/Orientation.xml +++ b/doc/en/Gtk/Orientation.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,18 +15,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.OrientationGType)) + + @@ -70,4 +61,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/OrientationChangedArgs.xml b/doc/en/Gtk/OrientationChangedArgs.xml index e871a5a81..213db6d66 100644 --- a/doc/en/Gtk/OrientationChangedArgs.xml +++ b/doc/en/Gtk/OrientationChangedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The new orientation of the toolbar. - A . + A . - \ No newline at end of file + diff --git a/doc/en/Gtk/OrientationChangedHandler.xml b/doc/en/Gtk/OrientationChangedHandler.xml index a00b453f4..061c9301c 100644 --- a/doc/en/Gtk/OrientationChangedHandler.xml +++ b/doc/en/Gtk/OrientationChangedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/OutputArgs.xml b/doc/en/Gtk/OutputArgs.xml index 13cedc740..0430cc3bb 100644 --- a/doc/en/Gtk/OutputArgs.xml +++ b/doc/en/Gtk/OutputArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,9 +25,8 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. - \ No newline at end of file + diff --git a/doc/en/Gtk/OutputHandler.xml b/doc/en/Gtk/OutputHandler.xml index fa31bd7e7..8056f27be 100644 --- a/doc/en/Gtk/OutputHandler.xml +++ b/doc/en/Gtk/OutputHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/OwnerChangeArgs.xml b/doc/en/Gtk/OwnerChangeArgs.xml index 026f9f891..b97153235 100644 --- a/doc/en/Gtk/OwnerChangeArgs.xml +++ b/doc/en/Gtk/OwnerChangeArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gtk/OwnerChangeHandler.xml b/doc/en/Gtk/OwnerChangeHandler.xml index 9a05e01dc..5ac4ef0c4 100644 --- a/doc/en/Gtk/OwnerChangeHandler.xml +++ b/doc/en/Gtk/OwnerChangeHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/PackType.xml b/doc/en/Gtk/PackType.xml index 4dc7a4c0c..8573ba844 100644 --- a/doc/en/Gtk/PackType.xml +++ b/doc/en/Gtk/PackType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.PackTypeGType)) + + @@ -67,4 +58,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/PageHorizontallyArgs.xml b/doc/en/Gtk/PageHorizontallyArgs.xml index 5dec480fc..ea3df0dba 100644 --- a/doc/en/Gtk/PageHorizontallyArgs.xml +++ b/doc/en/Gtk/PageHorizontallyArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ Whether a selection is currently in progress that should be extended by the horizontal-page action. - A , true if a selection is in progress. + A , true if a selection is in progress. @@ -52,9 +48,9 @@ How many pages to move horizontally. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/PageHorizontallyHandler.xml b/doc/en/Gtk/PageHorizontallyHandler.xml index 980499ea6..21ecf878d 100644 --- a/doc/en/Gtk/PageHorizontallyHandler.xml +++ b/doc/en/Gtk/PageHorizontallyHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Paned+PanedChild.xml b/doc/en/Gtk/Paned+PanedChild.xml new file mode 100644 index 000000000..adc9b95d5 --- /dev/null +++ b/doc/en/Gtk/Paned+PanedChild.xml @@ -0,0 +1,56 @@ + + + + gtk-sharp + 2.0.0.0 + + + Gtk.Container+ContainerChild + + + + + + Property + + + Gtk.ChildProperty(Name="shrink") + + + + System.Boolean + + + Whether or not the child can be shrunk to less than its + + if the pane can be adjusted to make the child smaller than its + + + + + + + Property + + + Gtk.ChildProperty(Name="resize") + + + + System.Boolean + + + Whether or not the child resizes with the parent + + if the child should be resized as the parent is resized + + + + + + + A child of a , used to interact with its container child properties. + + + + diff --git a/doc/en/Gtk/Paned.xml b/doc/en/Gtk/Paned.xml index 638a3c8a5..ce524843b 100644 --- a/doc/en/Gtk/Paned.xml +++ b/doc/en/Gtk/Paned.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -40,20 +38,12 @@ public Widget GetExampleFrame() Gtk.Container - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - + + + System.Reflection.DefaultMember(MemberName="Item") + + @@ -170,7 +160,6 @@ public Widget GetExampleFrame() Internal constructor Pointer to the C object. - An instance of Paned, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -184,7 +173,7 @@ public Widget GetExampleFrame() An accessor to the second child widget of this container - The child widget added with or . + The child widget added with or . @@ -196,7 +185,7 @@ public Widget GetExampleFrame() An accessor to the first child widget of this container - The child widget added with or . + The child widget added with or . @@ -211,10 +200,14 @@ public Widget GetExampleFrame() Manage the position of the splitter bar that separates the 2 child widgets. The number of pixels the splitter should appear from the left/top edge. - The current position ofh + The current position ofh - + + + GLib.Property(Name="position") + + Property @@ -227,10 +220,14 @@ public Widget GetExampleFrame() Whether the position property (related to and ) should be used. an object of type - an object of type + an object of type - + + + GLib.Property(Name="position_set") + + Event @@ -251,7 +248,11 @@ public Widget GetExampleFrame() set reversed to . - + + + GLib.Signal(CName="cycle_handle_focus") + + Event @@ -265,7 +266,11 @@ public Widget GetExampleFrame() - + + + GLib.Signal(CName="move_handle") + + Event @@ -279,7 +284,11 @@ public Widget GetExampleFrame() - + + + GLib.Signal(CName="cancel_position") + + Event @@ -295,7 +304,11 @@ public Widget GetExampleFrame() cause the child widget with the focus to be activated. - + + + GLib.Signal(CName="accept_position") + + Event @@ -309,7 +322,11 @@ public Widget GetExampleFrame() - + + + GLib.Signal(CName="toggle_handle_focus") + + Event @@ -321,7 +338,11 @@ public Widget GetExampleFrame() Emitted when F6 or Shift-F6 is pressed while paned has the focus. - + + + GLib.Signal(CName="cycle_child_focus") + + Property @@ -331,7 +352,7 @@ public Widget GetExampleFrame() GType Property. - a + a Returns the native value for . @@ -432,10 +453,13 @@ public Widget GetExampleFrame() Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -443,7 +467,6 @@ public Widget GetExampleFrame() Default constructor. - a @@ -458,11 +481,15 @@ public Widget GetExampleFrame() The largest possible value for the position property. This property is derived from the size and shrinkability of the widget's children. - a + a - + + + GLib.Property(Name="max_position") + + Property @@ -474,11 +501,15 @@ public Widget GetExampleFrame() The smallest possible value for the position property. This property is derived from the size and shrinkability of the widget's children. - a + a - + + + GLib.Property(Name="min_position") + + Property @@ -496,4 +527,4 @@ public Widget GetExampleFrame() - \ No newline at end of file + diff --git a/doc/en/Gtk/PanedChild.xml b/doc/en/Gtk/PanedChild.xml deleted file mode 100644 index a380a66a8..000000000 --- a/doc/en/Gtk/PanedChild.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - gtk-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - A child of a , used to interact with its container child properties. - - - - - Gtk.Container+ContainerChild - - - - - - - Property - - System.Boolean - - - - Whether or not the child can be shrunk to less than its - - if the pane can be adjusted to make the child smaller than its - - - - - - - Property - - System.Boolean - - - - Whether or not the child resizes with the parent - - if the child should be resized as the parent is resized - - - - - - - Constructor - - - - - - - Constructor - a - a - a - - - - - \ No newline at end of file diff --git a/doc/en/Gtk/ParentSetArgs.xml b/doc/en/Gtk/ParentSetArgs.xml index 546d890f8..4d6c345ef 100644 --- a/doc/en/Gtk/ParentSetArgs.xml +++ b/doc/en/Gtk/ParentSetArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ Returns the widget that was the parent of this widget previously. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/ParentSetHandler.xml b/doc/en/Gtk/ParentSetHandler.xml index 70b4941dc..a31c13643 100644 --- a/doc/en/Gtk/ParentSetHandler.xml +++ b/doc/en/Gtk/ParentSetHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/PathClickedArgs.xml b/doc/en/Gtk/PathClickedArgs.xml deleted file mode 100644 index e37672724..000000000 --- a/doc/en/Gtk/PathClickedArgs.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - gtk-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Event data. - - The event invokes delegates which pass event data via this class. - - - - GLib.SignalArgs - - - - - - - Constructor - - - - Public Constructor. - A new . - Create a new instance with this constructor if you need to invoke a delegate. - - - - - Property - - Gtk.FilePath - - - - To be added - a - - - - - - Property - - System.Boolean - - - - To be added - a - - - - - \ No newline at end of file diff --git a/doc/en/Gtk/PathClickedHandler.xml b/doc/en/Gtk/PathClickedHandler.xml deleted file mode 100644 index 53bd5730e..000000000 --- a/doc/en/Gtk/PathClickedHandler.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - gtk-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Event handler. - - The event utilizes this delegate: - Event data is passed via the parameter. - To attach a to an event, add the PathClickedHandler instance to the event. The methods referenced by the PathClickedHandler instance are invoked whenever the event is raised, until the PathClickedHandler is removed from the event. - - - - System.Delegate - - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - - - - System.Void - - - - - - \ No newline at end of file diff --git a/doc/en/Gtk/PixbufInsertedArgs.xml b/doc/en/Gtk/PixbufInsertedArgs.xml index 032ead29e..dda09e6d4 100644 --- a/doc/en/Gtk/PixbufInsertedArgs.xml +++ b/doc/en/Gtk/PixbufInsertedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,8 +36,9 @@ The pixbuf object which was inserted. - an object of type - + an object of type + + @@ -52,8 +49,9 @@ The position at which the pixbuf was inserted. - an object of type - + an object of type + + diff --git a/doc/en/Gtk/PixbufInsertedHandler.xml b/doc/en/Gtk/PixbufInsertedHandler.xml index cd2cd4e96..6a55911a5 100644 --- a/doc/en/Gtk/PixbufInsertedHandler.xml +++ b/doc/en/Gtk/PixbufInsertedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Plug.xml b/doc/en/Gtk/Plug.xml index 3ef6b8b13..4d3a6ad9d 100644 --- a/doc/en/Gtk/Plug.xml +++ b/doc/en/Gtk/Plug.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,20 +22,7 @@ Gtk.Window - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -77,7 +62,6 @@ Internal constructor Pointer to the C object. - An instance of Plug, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -93,7 +77,6 @@ Creates a new widget inside the identified by socket_id. an object of type - an object of type Creates a new widget inside the identified by socket_id. If socket_id is 0, the is left "unplugged" and can later be plugged into a by . @@ -108,7 +91,7 @@ Gets the window ID of a widget. - an object of type + an object of type Gets the window ID of a widget, which can then be used to embed this window inside another window, for instance with . @@ -125,7 +108,11 @@ - + + + GLib.Signal(CName="embedded") + + Method @@ -157,7 +144,6 @@ Public constructor. a a , the ID of the socket to connect to on . - a @@ -171,7 +157,7 @@ GType Property. - a + a Returns the native value for . @@ -197,10 +183,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -208,10 +197,9 @@ Protected constructor. - a - \ No newline at end of file + diff --git a/doc/en/Gtk/PlugRemovedArgs.xml b/doc/en/Gtk/PlugRemovedArgs.xml index fc02f0d22..16a5f99b1 100644 --- a/doc/en/Gtk/PlugRemovedArgs.xml +++ b/doc/en/Gtk/PlugRemovedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,9 +25,8 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. - \ No newline at end of file + diff --git a/doc/en/Gtk/PlugRemovedHandler.xml b/doc/en/Gtk/PlugRemovedHandler.xml index 366b94d89..f9c1e61b8 100644 --- a/doc/en/Gtk/PlugRemovedHandler.xml +++ b/doc/en/Gtk/PlugRemovedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/PolicyType.xml b/doc/en/Gtk/PolicyType.xml index a96318b92..ec2d06364 100644 --- a/doc/en/Gtk/PolicyType.xml +++ b/doc/en/Gtk/PolicyType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.PolicyTypeGType)) + + @@ -79,4 +70,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/PopulatePopupArgs.xml b/doc/en/Gtk/PopulatePopupArgs.xml index 354803c09..bfdd4227d 100644 --- a/doc/en/Gtk/PopulatePopupArgs.xml +++ b/doc/en/Gtk/PopulatePopupArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -38,7 +36,6 @@ GLib.SignalArgs - @@ -47,7 +44,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -59,9 +55,9 @@ Data for populating the popup menu. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/PopulatePopupHandler.xml b/doc/en/Gtk/PopulatePopupHandler.xml index ae8c566e3..43b6a0edd 100644 --- a/doc/en/Gtk/PopulatePopupHandler.xml +++ b/doc/en/Gtk/PopulatePopupHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -36,15 +37,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -53,4 +45,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/PopupContextMenuArgs.xml b/doc/en/Gtk/PopupContextMenuArgs.xml index f985e4798..9027dfd90 100644 --- a/doc/en/Gtk/PopupContextMenuArgs.xml +++ b/doc/en/Gtk/PopupContextMenuArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The X location at which the context menu was popped up. - a + a @@ -54,7 +50,7 @@ The Y location at which the context menu was popped up. - a + a @@ -68,10 +64,10 @@ The mouse button number which was used to pop up the context menu. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/PopupContextMenuHandler.xml b/doc/en/Gtk/PopupContextMenuHandler.xml index 0e65553cd..21b6c92cd 100644 --- a/doc/en/Gtk/PopupContextMenuHandler.xml +++ b/doc/en/Gtk/PopupContextMenuHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/PopupMenuArgs.xml b/doc/en/Gtk/PopupMenuArgs.xml index d9389185c..62696a8a4 100644 --- a/doc/en/Gtk/PopupMenuArgs.xml +++ b/doc/en/Gtk/PopupMenuArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,9 +25,8 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. - \ No newline at end of file + diff --git a/doc/en/Gtk/PopupMenuHandler.xml b/doc/en/Gtk/PopupMenuHandler.xml index 246616d8a..b6679cb82 100644 --- a/doc/en/Gtk/PopupMenuHandler.xml +++ b/doc/en/Gtk/PopupMenuHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/PositionType.xml b/doc/en/Gtk/PositionType.xml index 7dbbfd939..492b889d9 100644 --- a/doc/en/Gtk/PositionType.xml +++ b/doc/en/Gtk/PositionType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,18 +16,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.PositionTypeGType)) + + @@ -93,4 +84,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/PostActivateArgs.xml b/doc/en/Gtk/PostActivateArgs.xml index 00b72a775..28463af67 100644 --- a/doc/en/Gtk/PostActivateArgs.xml +++ b/doc/en/Gtk/PostActivateArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,10 +36,10 @@ The action that was activated. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/PostActivateHandler.xml b/doc/en/Gtk/PostActivateHandler.xml index 2319e0688..5336316e8 100644 --- a/doc/en/Gtk/PostActivateHandler.xml +++ b/doc/en/Gtk/PostActivateHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/PreActivateArgs.xml b/doc/en/Gtk/PreActivateArgs.xml index 96c7a52be..304c6ad96 100644 --- a/doc/en/Gtk/PreActivateArgs.xml +++ b/doc/en/Gtk/PreActivateArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,8 +36,9 @@ The action that's about to be activated. - a - + a + + diff --git a/doc/en/Gtk/PreActivateHandler.xml b/doc/en/Gtk/PreActivateHandler.xml index 6bbf66982..0f18806fd 100644 --- a/doc/en/Gtk/PreActivateHandler.xml +++ b/doc/en/Gtk/PreActivateHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/PrefixInsertedArgs.xml b/doc/en/Gtk/PrefixInsertedArgs.xml index 512f40665..279d9eb03 100644 --- a/doc/en/Gtk/PrefixInsertedArgs.xml +++ b/doc/en/Gtk/PrefixInsertedArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gtk/PrefixInsertedHandler.xml b/doc/en/Gtk/PrefixInsertedHandler.xml index 9458bb50a..094bb474b 100644 --- a/doc/en/Gtk/PrefixInsertedHandler.xml +++ b/doc/en/Gtk/PrefixInsertedHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/PreviewType.xml b/doc/en/Gtk/PreviewType.xml index ac4966bcc..d2dee82bf 100644 --- a/doc/en/Gtk/PreviewType.xml +++ b/doc/en/Gtk/PreviewType.xml @@ -4,29 +4,21 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Internal Enum for printing. Do not use. - + + System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.PreviewTypeGType)) + + @@ -51,7 +43,8 @@ Internal. Do not use. - + + @@ -64,7 +57,8 @@ Internal. Do not use. - + + diff --git a/doc/en/Gtk/PrintFunc.xml b/doc/en/Gtk/PrintFunc.xml index ac4519f75..cf0624869 100644 --- a/doc/en/Gtk/PrintFunc.xml +++ b/doc/en/Gtk/PrintFunc.xml @@ -1,27 +1,20 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Delegate for printing. - + + System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - diff --git a/doc/en/Gtk/ProgressBar.xml b/doc/en/Gtk/ProgressBar.xml index acc117405..e9383f244 100644 --- a/doc/en/Gtk/ProgressBar.xml +++ b/doc/en/Gtk/ProgressBar.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -28,20 +26,7 @@ Gtk.Widget - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -79,7 +64,6 @@ Internal constructor Pointer to the C object. - An instance of ProgressBar, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -92,7 +76,6 @@ Creates a new . - an object of type Creates a new . @@ -107,10 +90,14 @@ Details about the increments used in updating the ProgressBar. an object of type - an object of type + an object of type - + + + GLib.Property(Name="adjustment") + + Property @@ -122,10 +109,14 @@ The number of blocks that the is divided into. an object of type - an object of type + an object of type The number of blocks that the is divided into when the style is discrete. - + + + GLib.Property(Name="discrete_blocks") + + Property @@ -137,11 +128,15 @@ The text displayed superimposed on the . an object of type - an object of type + an object of type The text displayed superimposed on the , if any, otherwise . The return value is a reference to the text, not a copy of it, so will become invalid if you change the text in the . - + + + GLib.Property(Name="text") + + Property @@ -153,10 +148,14 @@ The current orientation. an object of type - an object of type + an object of type The current orientation. - + + + GLib.Property(Name="orientation") + + Property @@ -168,11 +167,15 @@ The step value used when the is in activity mode. an object of type - an object of type + an object of type The step value used when the is in activity mode. The step is the amount by which the progress is incremented each iteration. - + + + GLib.Property(Name="activity_step") + + Property @@ -184,10 +187,14 @@ The current fraction of the task that has been completed. an object of type - an object of type + an object of type The current fraction of the task that has been completed. - + + + GLib.Property(Name="fraction") + + Property @@ -199,11 +206,15 @@ The number of blocks used when the is in activity mode. an object of type - an object of type + an object of type The number of blocks used when the is in activity mode. Larger numbers make the visible block smaller. - + + + GLib.Property(Name="activity_blocks") + + Property @@ -215,12 +226,16 @@ The style for drawing the . an object of type - an object of type + an object of type The style for drawing the . Continuous - The grows in a smooth, continuous manner. Discrete - The grows in discrete, visible blocks. - + + + GLib.Property(Name="bar_style") + + Property @@ -232,10 +247,14 @@ The fraction of total length to move the bouncing block for each call to . an object of type - an object of type + an object of type The fraction of total length to move the bouncing block for each call to . - + + + GLib.Property(Name="pulse_step") + + Property @@ -245,7 +264,7 @@ GType Property. - a + a Returns the native value for . @@ -259,10 +278,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -289,7 +311,6 @@ Public constructor. a - a @@ -303,9 +324,13 @@ To be added - a + a To be added - + + + GLib.Property(Name="ellipsize") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/ProgressBarOrientation.xml b/doc/en/Gtk/ProgressBarOrientation.xml index 39225b816..f45888180 100644 --- a/doc/en/Gtk/ProgressBarOrientation.xml +++ b/doc/en/Gtk/ProgressBarOrientation.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.ProgressBarOrientationGType)) + + @@ -91,4 +82,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ProgressBarStyle.xml b/doc/en/Gtk/ProgressBarStyle.xml index f26ca0681..50818aef3 100644 --- a/doc/en/Gtk/ProgressBarStyle.xml +++ b/doc/en/Gtk/ProgressBarStyle.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.ProgressBarStyleGType)) + + @@ -67,4 +58,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/PropertyNotifyEventArgs.xml b/doc/en/Gtk/PropertyNotifyEventArgs.xml index 4332efc36..b37764b61 100644 --- a/doc/en/Gtk/PropertyNotifyEventArgs.xml +++ b/doc/en/Gtk/PropertyNotifyEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,8 +36,9 @@ The property that was changed. - an object of type - + an object of type + + diff --git a/doc/en/Gtk/PropertyNotifyEventHandler.xml b/doc/en/Gtk/PropertyNotifyEventHandler.xml index f0be7b0b2..cb4e0d1f5 100644 --- a/doc/en/Gtk/PropertyNotifyEventHandler.xml +++ b/doc/en/Gtk/PropertyNotifyEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ProximityInEventArgs.xml b/doc/en/Gtk/ProximityInEventArgs.xml index dab58bbfc..0acd48096 100644 --- a/doc/en/Gtk/ProximityInEventArgs.xml +++ b/doc/en/Gtk/ProximityInEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The proximity event that triggered this signal. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/ProximityInEventHandler.xml b/doc/en/Gtk/ProximityInEventHandler.xml index f1b78443a..b3c432cb0 100644 --- a/doc/en/Gtk/ProximityInEventHandler.xml +++ b/doc/en/Gtk/ProximityInEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ProximityOutEventArgs.xml b/doc/en/Gtk/ProximityOutEventArgs.xml index 6d9ae5f92..3b456ff57 100644 --- a/doc/en/Gtk/ProximityOutEventArgs.xml +++ b/doc/en/Gtk/ProximityOutEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The proximity event that triggered this signal. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/ProximityOutEventHandler.xml b/doc/en/Gtk/ProximityOutEventHandler.xml index 0b1ed8350..ca54682eb 100644 --- a/doc/en/Gtk/ProximityOutEventHandler.xml +++ b/doc/en/Gtk/ProximityOutEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Quit.xml b/doc/en/Gtk/Quit.xml index 95af7cf99..905306771 100644 --- a/doc/en/Gtk/Quit.xml +++ b/doc/en/Gtk/Quit.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ System.Object - @@ -123,10 +120,9 @@ Default Constructor - a - \ No newline at end of file + diff --git a/doc/en/Gtk/RadioAction.xml b/doc/en/Gtk/RadioAction.xml index 68aff581f..09583f92d 100644 --- a/doc/en/Gtk/RadioAction.xml +++ b/doc/en/Gtk/RadioAction.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gtk.ToggleAction - - GLib.IWrapper - - - System.IDisposable - - @@ -64,11 +55,14 @@ Protected constructor. a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -79,7 +73,6 @@ Constructor for internal use. a , pointer to internal C data. - a @@ -102,7 +95,6 @@ a , a tooltip for this action a , the stock icon to use. a , the value that should return if this action is activated. - a @@ -116,7 +108,7 @@ The of this object. - a + a @@ -130,11 +122,15 @@ The group this radio action belongs to. - a + a - + + + GLib.Property(Name="group") + + Property @@ -144,11 +140,15 @@ The value returned if this action is activated. - a + a - + + + GLib.Property(Name="value") + + Property @@ -158,7 +158,7 @@ This action's current value. - a + a Should be equivalent to if this action is selected. @@ -175,6 +175,10 @@ - + + + GLib.Signal(CName="changed") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/RadioActionEntry.xml b/doc/en/Gtk/RadioActionEntry.xml index 4624ee68a..cb5c5ff09 100644 --- a/doc/en/Gtk/RadioActionEntry.xml +++ b/doc/en/Gtk/RadioActionEntry.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ System.ValueType - @@ -111,8 +108,8 @@ Basic constructor. a a - a - + + @@ -140,7 +137,7 @@ for this action The accelerator given should be in the format understood , or "" for no accelerator, or - to use the stock accelerator + to use the stock accelerator @@ -168,11 +165,11 @@ a , a tooltip for this action a , the value that - should return if this + should return if this action is activated. The accelerator given should be in the format understood , or "" for no accelerator, or - to use the stock accelerator + to use the stock accelerator diff --git a/doc/en/Gtk/RadioButton.xml b/doc/en/Gtk/RadioButton.xml index dd69de3da..7678fa10b 100644 --- a/doc/en/Gtk/RadioButton.xml +++ b/doc/en/Gtk/RadioButton.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 @@ -21,17 +19,7 @@ Gtk.CheckButton - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -55,10 +43,13 @@ Internal constructor a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -69,7 +60,6 @@ Internal constructor a , pointer to the underlying C object. - a Not for general developer use. @@ -83,7 +73,6 @@ Creates a new instance. a - a @@ -97,7 +86,6 @@ Creates a new instance. a - a Creates a new in its own group. @@ -113,7 +101,6 @@ Creates a new instance. a a - a Creates a RadioButton with the specified label and adds the newly created RadioButton to the same group as the RadioButton specified as the group parameter. @@ -141,7 +128,7 @@ GType Property. - a + a Returns the native value for . @@ -154,7 +141,7 @@ sets and obtains a linked list with all the radio buttons in the same group. - a with all the radio buttons in the same group as this radio button. + a with all the radio buttons in the same group as this radio button. @@ -174,7 +161,11 @@ more buttons to a different one, but not when the composition of the group that a button belongs to changes. - + + + GLib.Signal(CName="group-changed") + + Method @@ -188,4 +179,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/RadioMenuItem.xml b/doc/en/Gtk/RadioMenuItem.xml index 3ddeb4f3d..fc55ef423 100644 --- a/doc/en/Gtk/RadioMenuItem.xml +++ b/doc/en/Gtk/RadioMenuItem.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.CheckMenuItem - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -54,7 +39,6 @@ Internal constructor Pointer to the C object. - An instance of RadioMenuItem, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -72,7 +56,6 @@ Constructor A , the group this item belongs to A , this item's label. - A @@ -87,7 +70,7 @@ The group the menu item is inside. A - A + A @@ -100,7 +83,7 @@ GType Property. - a + a Returns the native value for . @@ -114,10 +97,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -128,7 +114,6 @@ Basic constructor. a - a @@ -148,7 +133,11 @@ more menu items to a different one, but not when the composition of the group that a button belongs to changes. - + + + GLib.Signal(CName="group-changed") + + Method @@ -171,7 +160,6 @@ Basic constructor. a , group the menu item is inside (XXX: this type looks wrong) - a @@ -190,10 +178,9 @@ menu item is inside (XXX: this type looks wrong) a the text of the button, with an underscore in front of the mnemonic character - a - \ No newline at end of file + diff --git a/doc/en/Gtk/RadioToolButton.xml b/doc/en/Gtk/RadioToolButton.xml index cebd6beaf..8161b88bb 100644 --- a/doc/en/Gtk/RadioToolButton.xml +++ b/doc/en/Gtk/RadioToolButton.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,17 +15,7 @@ Gtk.ToggleToolButton - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -52,11 +40,14 @@ Protected constructor. a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -67,7 +58,6 @@ Constructor for internal use only. a , pointer to underlying C object - a @@ -84,7 +74,6 @@ a , an existing radio button group, or if you are creating a new group - a @@ -104,7 +93,6 @@ a new group a , the ID for a stock item to use for an icon and label. - a @@ -119,7 +107,6 @@ Create a new button in the same group as another. a , a button in the same group as the one to be created.. - a @@ -136,7 +123,6 @@ Create a new button in the same group as another from a stock item. a , a button in the same group as the one to be created. a , the ID of the stock item to use for an icon and label. - a @@ -150,7 +136,7 @@ The of this object. - a + a @@ -164,10 +150,14 @@ The radio button group this button belongs to. - a + a - + + + GLib.Property(Name="group") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/Range.xml b/doc/en/Gtk/Range.xml index 45f8e8889..a6d6281f1 100644 --- a/doc/en/Gtk/Range.xml +++ b/doc/en/Gtk/Range.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,20 +17,7 @@ Gtk.Widget - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -92,7 +77,6 @@ Internal constructor Pointer to the C object. - An instance of Range, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -109,7 +93,7 @@ Manage the value of this range. The new value for this range. - The current value of this range. + The current value of this range. @@ -124,12 +108,16 @@ Manage whether the control of this range is manipulated in the opposite direction. Set to to invert the controls. - Whether visual control of the range is currently inverted. + Whether visual control of the range is currently inverted. Setting this to causes a widget to move from right to left, instead of left to right. - + + + GLib.Property(Name="inverted") + + Property @@ -141,10 +129,14 @@ Manage how often the value label is updated. A new update policy. - The current update policy. + The current update policy. - + + + GLib.Property(Name="update_policy") + + Property @@ -156,10 +148,14 @@ Manipulate the underlying model of this range. Sets a new object to model this range. - The current underlying this range. + The current underlying this range. - + + + GLib.Property(Name="adjustment") + + Event @@ -171,7 +167,11 @@ Fired when the user moves a slider. - + + + GLib.Signal(CName="move_slider") + + Event @@ -185,7 +185,11 @@ Connect to this event with a standard to find out when the value changes. - + + + GLib.Signal(CName="value_changed") + + Event @@ -197,7 +201,11 @@ Fired when the bounds of the range are adjusted. - + + + GLib.Signal(CName="adjust_bounds") + + Property @@ -207,7 +215,7 @@ GType Property. - a + a Returns the native value for . @@ -263,10 +271,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -274,7 +285,6 @@ Protected constructor. - a @@ -289,7 +299,11 @@ To be added To be added - + + + GLib.Signal(CName="change_value") + + Method @@ -309,4 +323,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Rc.xml b/doc/en/Gtk/Rc.xml index be9a85d1c..5aa89db08 100644 --- a/doc/en/Gtk/Rc.xml +++ b/doc/en/Gtk/Rc.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -134,7 +131,6 @@ Public constructor; generates a new RC parser. - a @@ -146,7 +142,7 @@ Returns the name a directory in which GTK# looks for theme engines. - a + a Unlike the underlying GTK+ function, the return value of this method is a string, not a directory handle that must be freed later. (FIXME: the GTK+ docs point at the "GTK_PATH" section of "Running GTK applications", which is very detailed and may or may not need included here.) @@ -158,7 +154,7 @@ Returns the standard directory in which themes should be installed. (GTK+ does not actually use this directory itself.) - a + a Unlike the underlying GTK+ function, the return value of this method is a string, not a directory handle that must be freed later. @@ -170,7 +166,7 @@ The path to the IM module file specified by the RC file. This may be overridden by the GTK_IM_MODULE_FILE environment variable. - a + a (FIXME: does this apply for Gtk# too?) In standard Gtk+ applications, the GTK_IM_MODULE_FILE environment variable overrides the im_module_file specified in the RC files, which in turn overrides the default value sysconfdir/gtk-2.0/gtk.immodules (sysconfdir is the sysconfdir specified when GTK+ was configured, usually /usr/local/etc.) @@ -183,7 +179,7 @@ Obtains the path in which to look for IM modules. - a + a (FIXME: "See the documentation of the GTK_PATH environment variable for more details about looking up modules.") This function is useful solely for utilities supplied with GTK+ and should not be used by applications under normal circumstances. @@ -198,7 +194,7 @@ The current list of RC files that will be parsed at the end of . a - a , a list of filenames. + a , a list of filenames. Unlike the underlying GTK+ function, this function's return string does not use memory owned by the application. @@ -240,7 +236,7 @@ Adds a that will be looked up by a match against the widget's class pathname. - a , the style to use for widgets matching + a , the style to use for widgets matching a , the pattern to match This is equivalent to a "widget_class PATTERN style STYLE" statement in a RC file. @@ -261,7 +257,7 @@ Adds a that will be looked up by a match against the widget's pathname. - a , the style to use for widgets matching + a , the style to use for widgets matching a , the pattern to match This is equivalent to a "widget PATTERN style STYLE" statement in a RC file. @@ -282,7 +278,8 @@ Deprecated. Do not use. a a - + + @@ -312,8 +309,7 @@ appearance. As an example, it is used when the default font size set by the operating system changes. Note that this function doesn't affect widgets that have a style set - explicitly on them with . + explicitly on them with . diff --git a/doc/en/Gtk/RcProperty.xml b/doc/en/Gtk/RcProperty.xml index fe8328405..9335212a2 100644 --- a/doc/en/Gtk/RcProperty.xml +++ b/doc/en/Gtk/RcProperty.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GTK+ allows style properties to be attached to styles. Because style properties System.ValueType - @@ -119,7 +116,8 @@ GTK+ allows style properties to be attached to styles. Because style properties a a a - + + @@ -139,7 +137,8 @@ GTK+ allows style properties to be attached to styles. Because style properties a a a - + + @@ -159,7 +158,8 @@ GTK+ allows style properties to be attached to styles. Because style properties a a a - + + @@ -179,7 +179,8 @@ GTK+ allows style properties to be attached to styles. Because style properties a a a - + + @@ -199,7 +200,8 @@ GTK+ allows style properties to be attached to styles. Because style properties a a a - + + diff --git a/doc/en/Gtk/RcPropertyParser.xml b/doc/en/Gtk/RcPropertyParser.xml index adf05542d..9c657a6f3 100644 --- a/doc/en/Gtk/RcPropertyParser.xml +++ b/doc/en/Gtk/RcPropertyParser.xml @@ -1,31 +1,28 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. Delegate class for parsing property values in RC files. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - + + + System.Boolean - \ No newline at end of file + diff --git a/doc/en/Gtk/RcStyle.xml b/doc/en/Gtk/RcStyle.xml index 12c4f25f1..e86245b71 100644 --- a/doc/en/Gtk/RcStyle.xml +++ b/doc/en/Gtk/RcStyle.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -61,7 +52,6 @@ Internal constructor Pointer to the C object. - An instance of RcStyle, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -74,7 +64,6 @@ Public constructor - A new object of type The object returned has no fields set and a refcount of 1. @@ -87,7 +76,7 @@ GType Property. - a + a Returns the native value for . @@ -101,10 +90,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -114,8 +106,9 @@ The name of the RC style. - a - + a + + @@ -127,7 +120,7 @@ The "xthickness" value of the RC style. - a + a This value is used for various horizontal padding values in Gtk. @@ -140,7 +133,7 @@ The "ythickness" value of the RC style. - a + a This value is used for various vertical padding values in Gtk. @@ -153,9 +146,10 @@ The value parsed from the RC style's "font_name" property. - a - + a + + - \ No newline at end of file + diff --git a/doc/en/Gtk/RcTokenType.xml b/doc/en/Gtk/RcTokenType.xml index 49dbea1af..d60d356ee 100644 --- a/doc/en/Gtk/RcTokenType.xml +++ b/doc/en/Gtk/RcTokenType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.RcTokenTypeGType)) + + @@ -537,4 +528,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ReadyEvent.xml b/doc/en/Gtk/ReadyEvent.xml index 61b50c579..4c663e365 100644 --- a/doc/en/Gtk/ReadyEvent.xml +++ b/doc/en/Gtk/ReadyEvent.xml @@ -1,11 +1,9 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,19 +13,10 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/RedirectArgs.xml b/doc/en/Gtk/RedirectArgs.xml index d974b94c1..427a2daf2 100644 --- a/doc/en/Gtk/RedirectArgs.xml +++ b/doc/en/Gtk/RedirectArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ Number of seconds to wait before the redirect. - A + A @@ -52,9 +48,9 @@ The URL being redirected to. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/RedirectHandler.xml b/doc/en/Gtk/RedirectHandler.xml index 3fcdbbad4..fa988753b 100644 --- a/doc/en/Gtk/RedirectHandler.xml +++ b/doc/en/Gtk/RedirectHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ReliefStyle.xml b/doc/en/Gtk/ReliefStyle.xml index b6c546c91..4d145deeb 100644 --- a/doc/en/Gtk/ReliefStyle.xml +++ b/doc/en/Gtk/ReliefStyle.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,18 +15,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.ReliefStyleGType)) + + @@ -80,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/RemovedArgs.xml b/doc/en/Gtk/RemovedArgs.xml index 02a5311ed..3f4f2545e 100644 --- a/doc/en/Gtk/RemovedArgs.xml +++ b/doc/en/Gtk/RemovedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The widget that was removed from this container. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/RemovedHandler.xml b/doc/en/Gtk/RemovedHandler.xml index 223dd1b32..10be792b2 100644 --- a/doc/en/Gtk/RemovedHandler.xml +++ b/doc/en/Gtk/RemovedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Requisition.xml b/doc/en/Gtk/Requisition.xml index 896b0687b..16197f25f 100644 --- a/doc/en/Gtk/Requisition.xml +++ b/doc/en/Gtk/Requisition.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -22,7 +20,6 @@ The size requisition phase of the widget layout process operates top-down. It st System.ValueType - @@ -86,7 +83,7 @@ The size requisition phase of the widget layout process operates top-down. It st GType Property. - a + a Returns the native value for . @@ -116,5 +113,37 @@ The size requisition phase of the widget layout process operates top-down. It st + + + Method + + GLib.Value + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Gtk.Requisition + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gtk/ResizeMode.xml b/doc/en/Gtk/ResizeMode.xml index 61cc6b903..b73b2d5e4 100644 --- a/doc/en/Gtk/ResizeMode.xml +++ b/doc/en/Gtk/ResizeMode.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,18 +18,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.ResizeModeGType)) + + @@ -95,4 +86,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ResponseArgs.xml b/doc/en/Gtk/ResponseArgs.xml index 9de544d63..7c12b5182 100644 --- a/doc/en/Gtk/ResponseArgs.xml +++ b/doc/en/Gtk/ResponseArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ The response type the user gave for this dialog. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/ResponseHandler.xml b/doc/en/Gtk/ResponseHandler.xml index 9c32c5a78..bb901d24f 100644 --- a/doc/en/Gtk/ResponseHandler.xml +++ b/doc/en/Gtk/ResponseHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ResponseType.xml b/doc/en/Gtk/ResponseType.xml index 366c321e1..955c83414 100644 --- a/doc/en/Gtk/ResponseType.xml +++ b/doc/en/Gtk/ResponseType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,18 +22,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.ResponseTypeGType)) + + @@ -204,4 +195,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/RetrieveSurroundingArgs.xml b/doc/en/Gtk/RetrieveSurroundingArgs.xml index 70aa10d40..fa1b564d1 100644 --- a/doc/en/Gtk/RetrieveSurroundingArgs.xml +++ b/doc/en/Gtk/RetrieveSurroundingArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. diff --git a/doc/en/Gtk/RetrieveSurroundingHandler.xml b/doc/en/Gtk/RetrieveSurroundingHandler.xml index 5afffe23f..2a353ddaa 100644 --- a/doc/en/Gtk/RetrieveSurroundingHandler.xml +++ b/doc/en/Gtk/RetrieveSurroundingHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +21,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -37,4 +29,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/RowActivatedArgs.xml b/doc/en/Gtk/RowActivatedArgs.xml index 07199cda9..ba767a70e 100644 --- a/doc/en/Gtk/RowActivatedArgs.xml +++ b/doc/en/Gtk/RowActivatedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The column that was clicked on as part of the row activation event. - A + A @@ -52,9 +48,9 @@ The path of the row that was activated. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/RowActivatedHandler.xml b/doc/en/Gtk/RowActivatedHandler.xml index d47ce691d..4898234d0 100644 --- a/doc/en/Gtk/RowActivatedHandler.xml +++ b/doc/en/Gtk/RowActivatedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/RowChangedArgs.xml b/doc/en/Gtk/RowChangedArgs.xml index d381c0ad3..f35c1820b 100644 --- a/doc/en/Gtk/RowChangedArgs.xml +++ b/doc/en/Gtk/RowChangedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -38,7 +36,6 @@ GLib.SignalArgs - @@ -47,7 +44,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -59,7 +55,7 @@ The row that was inserted. - A that points to the inserted row. + A that points to the inserted row. @@ -71,9 +67,9 @@ The path of the row that was inserted. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/RowChangedHandler.xml b/doc/en/Gtk/RowChangedHandler.xml index a982951cf..98b1d7c9b 100644 --- a/doc/en/Gtk/RowChangedHandler.xml +++ b/doc/en/Gtk/RowChangedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -36,15 +37,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -53,4 +45,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/RowCollapsedArgs.xml b/doc/en/Gtk/RowCollapsedArgs.xml index f7a1bbaeb..ed7e0c166 100644 --- a/doc/en/Gtk/RowCollapsedArgs.xml +++ b/doc/en/Gtk/RowCollapsedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The path of the row that was expanded. - A + A @@ -52,9 +48,9 @@ The row that was collapsed. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/RowCollapsedHandler.xml b/doc/en/Gtk/RowCollapsedHandler.xml index e9e32cc1d..109575f41 100644 --- a/doc/en/Gtk/RowCollapsedHandler.xml +++ b/doc/en/Gtk/RowCollapsedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/RowDeletedArgs.xml b/doc/en/Gtk/RowDeletedArgs.xml index 34096c176..3671d38a0 100644 --- a/doc/en/Gtk/RowDeletedArgs.xml +++ b/doc/en/Gtk/RowDeletedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -38,7 +36,6 @@ GLib.SignalArgs - @@ -47,7 +44,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -59,9 +55,9 @@ The path of the row that was inserted. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/RowDeletedHandler.xml b/doc/en/Gtk/RowDeletedHandler.xml index eeeb45b97..f9328ad5f 100644 --- a/doc/en/Gtk/RowDeletedHandler.xml +++ b/doc/en/Gtk/RowDeletedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -36,15 +37,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -53,4 +45,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/RowExpandedArgs.xml b/doc/en/Gtk/RowExpandedArgs.xml index ba0b94bb8..71e456cc0 100644 --- a/doc/en/Gtk/RowExpandedArgs.xml +++ b/doc/en/Gtk/RowExpandedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The path of the row that was expanded. - A + A @@ -52,9 +48,9 @@ The row that was expanded. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/RowExpandedHandler.xml b/doc/en/Gtk/RowExpandedHandler.xml index b4dd3b0ce..7f3953e93 100644 --- a/doc/en/Gtk/RowExpandedHandler.xml +++ b/doc/en/Gtk/RowExpandedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/RowHasChildToggledArgs.xml b/doc/en/Gtk/RowHasChildToggledArgs.xml index 4b70d33fa..d3f92ccb2 100644 --- a/doc/en/Gtk/RowHasChildToggledArgs.xml +++ b/doc/en/Gtk/RowHasChildToggledArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -38,7 +36,6 @@ GLib.SignalArgs - @@ -47,7 +44,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -59,7 +55,7 @@ The row whose child display was toggled. - a + a @@ -71,9 +67,9 @@ The path of the row whose child was toggled. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/RowHasChildToggledHandler.xml b/doc/en/Gtk/RowHasChildToggledHandler.xml index 269db5d18..6cd1010f4 100644 --- a/doc/en/Gtk/RowHasChildToggledHandler.xml +++ b/doc/en/Gtk/RowHasChildToggledHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -36,15 +37,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -53,4 +45,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/RowInsertedArgs.xml b/doc/en/Gtk/RowInsertedArgs.xml index 42e1dd374..474bbc632 100644 --- a/doc/en/Gtk/RowInsertedArgs.xml +++ b/doc/en/Gtk/RowInsertedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -38,7 +36,6 @@ GLib.SignalArgs - @@ -47,7 +44,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -59,7 +55,7 @@ The row that was inserted. - A that points to the inserted row. + A that points to the inserted row. @@ -71,9 +67,9 @@ The path of the row that was inserted. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/RowInsertedHandler.xml b/doc/en/Gtk/RowInsertedHandler.xml index 0cc96e1f2..8c1b7c4e5 100644 --- a/doc/en/Gtk/RowInsertedHandler.xml +++ b/doc/en/Gtk/RowInsertedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -36,15 +37,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -53,4 +45,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/RowsReorderedArgs.xml b/doc/en/Gtk/RowsReorderedArgs.xml index 1b8bcd4cf..69e57c859 100644 --- a/doc/en/Gtk/RowsReorderedArgs.xml +++ b/doc/en/Gtk/RowsReorderedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -38,7 +36,6 @@ GLib.SignalArgs - @@ -47,7 +44,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -59,7 +55,7 @@ The new order of the rows. - A + A FIXME: shouldn't this be an array? @@ -71,7 +67,7 @@ Gets a pointer to the whose rows have been reordered. - A + A @@ -83,9 +79,9 @@ A path for the whose rows have been reordered. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/RowsReorderedHandler.xml b/doc/en/Gtk/RowsReorderedHandler.xml index e26db45ab..5c396f6c6 100644 --- a/doc/en/Gtk/RowsReorderedHandler.xml +++ b/doc/en/Gtk/RowsReorderedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -36,15 +37,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -53,4 +45,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Ruler.xml b/doc/en/Gtk/Ruler.xml index 0563e37d8..d28bfcf38 100644 --- a/doc/en/Gtk/Ruler.xml +++ b/doc/en/Gtk/Ruler.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,20 +19,7 @@ Gtk.Widget - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -124,7 +109,6 @@ Internal constructor Pointer to the C object. - An instance of Ruler, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -141,7 +125,7 @@ Manage the measurement unit that is displayed. A new unit type for the ruler. - The current units in use. + The current units in use. If this property is not explicitly set, the default for a ruler is . @@ -158,10 +142,14 @@ The upper value to display on the ruler. A - A + A - + + + GLib.Property(Name="upper") + + Property @@ -173,10 +161,14 @@ The position of the mouse mark on the ruler. A - A + A - + + + GLib.Property(Name="position") + + Property @@ -188,10 +180,14 @@ The maximum size of the ruler. A - A + A - + + + GLib.Property(Name="max_size") + + Property @@ -203,10 +199,14 @@ The lower limit of the ruler. A - A + A - + + + GLib.Property(Name="lower") + + Property @@ -216,7 +216,7 @@ GType Property. - a + a Returns the native value for . @@ -230,10 +230,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -241,9 +244,8 @@ Protected constructor. - a - \ No newline at end of file + diff --git a/doc/en/Gtk/RulerMetric.xml b/doc/en/Gtk/RulerMetric.xml index 27dc9b137..b374c09b7 100644 --- a/doc/en/Gtk/RulerMetric.xml +++ b/doc/en/Gtk/RulerMetric.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -87,7 +84,7 @@ - + Field System.Double[] @@ -100,7 +97,7 @@ - + Field System.Int32[] @@ -113,4 +110,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Scale.xml b/doc/en/Gtk/Scale.xml index ae3ef85ce..679b0c85a 100644 --- a/doc/en/Gtk/Scale.xml +++ b/doc/en/Gtk/Scale.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,20 +17,7 @@ Gtk.Range - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -56,7 +41,6 @@ Internal constructor Pointer to the C object. - An instance of Scale, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -73,12 +57,16 @@ Manage the position of the value, relative to the slider. The position to place the value - Where the value is currently being drawn. + Where the value is currently being drawn. Note: This property is only meaningful is a value is being drawn. To ensure a value is drawn, use the property. - + + + GLib.Property(Name="value_pos") + + Property @@ -91,12 +79,16 @@ Manage whether a label is displayed to show the current value. to display the value, otherwise. - Whether the value is currently being displayed. + Whether the value is currently being displayed. Use the property to alter the position of displayed value. - + + + GLib.Property(Name="draw_value") + + Property @@ -108,10 +100,14 @@ Manage the number of decimal places for this slider. The number of decimal places to display. - The number of decimal places currently being displayed. + The number of decimal places currently being displayed. - + + + GLib.Property(Name="digits") + + Event @@ -125,7 +121,11 @@ Note: The signature of this event handler is currently incorrect. - + + + GLib.Signal(CName="format_value") + + Property @@ -135,7 +135,7 @@ GType Property. - a + a Returns the native value for . @@ -165,10 +165,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -176,7 +179,6 @@ Protected constructor. - a @@ -189,7 +191,7 @@ Gets the used to display the scale. - a + a @@ -220,4 +222,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ScreenChangedArgs.xml b/doc/en/Gtk/ScreenChangedArgs.xml index 8a906065a..aba55dfab 100644 --- a/doc/en/Gtk/ScreenChangedArgs.xml +++ b/doc/en/Gtk/ScreenChangedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,8 +36,9 @@ The screen where the widget was formerly located. - a - + a + + diff --git a/doc/en/Gtk/ScreenChangedHandler.xml b/doc/en/Gtk/ScreenChangedHandler.xml index 79938e894..e7c600c46 100644 --- a/doc/en/Gtk/ScreenChangedHandler.xml +++ b/doc/en/Gtk/ScreenChangedHandler.xml @@ -1,14 +1,14 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -36,4 +27,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ScrollAdjustmentsSetArgs.xml b/doc/en/Gtk/ScrollAdjustmentsSetArgs.xml index 82148a014..6e698ec74 100644 --- a/doc/en/Gtk/ScrollAdjustmentsSetArgs.xml +++ b/doc/en/Gtk/ScrollAdjustmentsSetArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -43,7 +41,6 @@ GLib.SignalArgs - @@ -52,7 +49,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -64,7 +60,7 @@ The vertical adjustment for the scrolling event. - a + a @@ -76,9 +72,9 @@ The horizontal adjustment for the scrolling event. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/ScrollAdjustmentsSetHandler.xml b/doc/en/Gtk/ScrollAdjustmentsSetHandler.xml index b6601c277..4278a1017 100644 --- a/doc/en/Gtk/ScrollAdjustmentsSetHandler.xml +++ b/doc/en/Gtk/ScrollAdjustmentsSetHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -41,15 +42,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -58,4 +50,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ScrollArgs.xml b/doc/en/Gtk/ScrollArgs.xml index ded21c5e5..2fc29d82e 100644 --- a/doc/en/Gtk/ScrollArgs.xml +++ b/doc/en/Gtk/ScrollArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The position of the scroller. - a + a @@ -52,7 +48,7 @@ What kind of scrolling happened in this event. - A + A @@ -64,9 +60,9 @@ The orientation of the scroller in question, horizontal or vertical. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/ScrollChildArgs.xml b/doc/en/Gtk/ScrollChildArgs.xml index bf3d6f08a..e683ec9a0 100644 --- a/doc/en/Gtk/ScrollChildArgs.xml +++ b/doc/en/Gtk/ScrollChildArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ Whether the scrolling is horizontal or not (i.e., vertical). - A + A @@ -52,9 +48,9 @@ The desired behavior for the scrolling action. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/ScrollChildHandler.xml b/doc/en/Gtk/ScrollChildHandler.xml index 39768f09e..7bc001cc2 100644 --- a/doc/en/Gtk/ScrollChildHandler.xml +++ b/doc/en/Gtk/ScrollChildHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ScrollEventArgs.xml b/doc/en/Gtk/ScrollEventArgs.xml index 5fda97094..bb312af32 100644 --- a/doc/en/Gtk/ScrollEventArgs.xml +++ b/doc/en/Gtk/ScrollEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The scrolling event that happened. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/ScrollEventHandler.xml b/doc/en/Gtk/ScrollEventHandler.xml index 9e478c69a..7bfe1deb4 100644 --- a/doc/en/Gtk/ScrollEventHandler.xml +++ b/doc/en/Gtk/ScrollEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ScrollHandler.xml b/doc/en/Gtk/ScrollHandler.xml index 141b8de06..718c7f82d 100644 --- a/doc/en/Gtk/ScrollHandler.xml +++ b/doc/en/Gtk/ScrollHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ScrollStep.xml b/doc/en/Gtk/ScrollStep.xml index c8a21b3f0..bd04734d7 100644 --- a/doc/en/Gtk/ScrollStep.xml +++ b/doc/en/Gtk/ScrollStep.xml @@ -4,29 +4,21 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. ScrollStep enum - + + System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.ScrollStepGType)) + + @@ -38,7 +30,8 @@ Steps - + + @@ -51,7 +44,8 @@ Pages - + + @@ -64,7 +58,8 @@ Ends - + + @@ -77,7 +72,8 @@ Horizontal Steps - + + @@ -90,7 +86,8 @@ Horizontal Pages - + + @@ -103,7 +100,8 @@ Horizontal Ends - + + diff --git a/doc/en/Gtk/ScrollType.xml b/doc/en/Gtk/ScrollType.xml index 9ca4b84a5..4e041f522 100644 --- a/doc/en/Gtk/ScrollType.xml +++ b/doc/en/Gtk/ScrollType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,18 +18,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.ScrollTypeGType)) + + @@ -291,4 +282,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Scrollbar.xml b/doc/en/Gtk/Scrollbar.xml index 4022496e3..d398c7a1d 100644 --- a/doc/en/Gtk/Scrollbar.xml +++ b/doc/en/Gtk/Scrollbar.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.Range - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -54,7 +39,6 @@ Internal constructor Pointer to the C object. - An instance of Scrollbar, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -69,7 +53,7 @@ GType Property. - a + a Returns the native value for . @@ -83,10 +67,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -94,9 +81,8 @@ Default constructor. - a - \ No newline at end of file + diff --git a/doc/en/Gtk/ScrolledWindow.xml b/doc/en/Gtk/ScrolledWindow.xml index 9d511d1ae..9ec5a1e18 100644 --- a/doc/en/Gtk/ScrolledWindow.xml +++ b/doc/en/Gtk/ScrolledWindow.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -27,20 +25,7 @@ Gtk.Bin - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -131,7 +116,6 @@ Internal constructor Pointer to the C object. - An instance of ScrolledWindow, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -149,7 +133,6 @@ Creates a new scrolled window. Horizontal adjustment. Vertical adjustment. - A Creates a new scrolled window. The two arguments are the scrolled window's adjustments; these will be shared with the scrollbars and the child widget to keep the bars in sync with the child. Usually you want to pass for the adjustments, which will cause the scrolled window to create them for you. @@ -164,7 +147,6 @@ Basic constructor. - A @@ -179,7 +161,7 @@ Determines the location of the child widget with respect to the scrollbars. Position of the child window. - + Determines the location of the child widget with respect to the scrollbars. The default is , meaning the child is in the top left, with the scrollbars underneath and to the right. Other values in are , , and . @@ -198,10 +180,14 @@ When the horizontal scrollbar is displayed. A - A + A - + + + GLib.Property(Name="hscrollbar_policy") + + Property @@ -213,10 +199,14 @@ Sets the for the horizontal scrollbar. Horizontal scroll adjustment. - The horizontal GtkAdjustment. + The horizontal GtkAdjustment. - + + + GLib.Property(Name="hadjustment") + + Property @@ -228,10 +218,14 @@ When the vertical scrollbar is displayed. A - A + A - + + + GLib.Property(Name="vscrollbar_policy") + + Property @@ -243,10 +237,14 @@ Sets or Gets the for the vertical scrollbar. Vertical scroll adjustment. - The vertical GtkAdjustment. + The vertical GtkAdjustment. - + + + GLib.Property(Name="vadjustment") + + Property @@ -258,10 +256,14 @@ Gets the shadow type of the scrolled window. A , the kind of shadow to draw around scrolled window contents. - The current shadow type. + The current shadow type. - + + + GLib.Property(Name="shadow_type") + + Property @@ -273,20 +275,30 @@ Where the contents are located with respect to the scrollbars. A - A + A - + + + GLib.Property(Name="window_placement") + + Event - + + Gtk.ScrollChildHandler + Fired when the child widget is scrolled. - + + + GLib.Signal(CName="scroll_child") + + Event @@ -298,7 +310,11 @@ Fired when the focus moves out of the scrolled window. - + + + GLib.Signal(CName="move_focus_out") + + Property @@ -308,7 +324,7 @@ GType Property. - a + a Returns the native value for . @@ -354,9 +370,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectAllArgs.xml b/doc/en/Gtk/SelectAllArgs.xml index 29010c7a0..c9086d1cc 100644 --- a/doc/en/Gtk/SelectAllArgs.xml +++ b/doc/en/Gtk/SelectAllArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,9 +25,8 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectAllHandler.xml b/doc/en/Gtk/SelectAllHandler.xml index b5d446be1..f4bade63b 100644 --- a/doc/en/Gtk/SelectAllHandler.xml +++ b/doc/en/Gtk/SelectAllHandler.xml @@ -1,14 +1,14 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -36,4 +27,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectCursorParentArgs.xml b/doc/en/Gtk/SelectCursorParentArgs.xml index a518e1ee8..124cbe6e4 100644 --- a/doc/en/Gtk/SelectCursorParentArgs.xml +++ b/doc/en/Gtk/SelectCursorParentArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,9 +25,8 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectCursorParentHandler.xml b/doc/en/Gtk/SelectCursorParentHandler.xml index cb686fc42..de9ca0b37 100644 --- a/doc/en/Gtk/SelectCursorParentHandler.xml +++ b/doc/en/Gtk/SelectCursorParentHandler.xml @@ -1,14 +1,14 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -36,4 +27,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectCursorRowArgs.xml b/doc/en/Gtk/SelectCursorRowArgs.xml index 9067bf900..e760235f5 100644 --- a/doc/en/Gtk/SelectCursorRowArgs.xml +++ b/doc/en/Gtk/SelectCursorRowArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ Whether or not to start editing the specified row. - A , true if editing should start. + A , true if editing should start. - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectCursorRowHandler.xml b/doc/en/Gtk/SelectCursorRowHandler.xml index f07a66d2b..ac828eb9b 100644 --- a/doc/en/Gtk/SelectCursorRowHandler.xml +++ b/doc/en/Gtk/SelectCursorRowHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectPageArgs.xml b/doc/en/Gtk/SelectPageArgs.xml index 309196df2..5d15be8f0 100644 --- a/doc/en/Gtk/SelectPageArgs.xml +++ b/doc/en/Gtk/SelectPageArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ Whether or not to move the focus to the selected page. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectPageHandler.xml b/doc/en/Gtk/SelectPageHandler.xml index 2d727f60c..524d97c05 100644 --- a/doc/en/Gtk/SelectPageHandler.xml +++ b/doc/en/Gtk/SelectPageHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Selection.xml b/doc/en/Gtk/Selection.xml index 2b0d2237c..08d62bfd9 100644 --- a/doc/en/Gtk/Selection.xml +++ b/doc/en/Gtk/Selection.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -186,9 +183,8 @@ Public constructor. - a - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectionClearEventArgs.xml b/doc/en/Gtk/SelectionClearEventArgs.xml index 3790558a6..c802bd9db 100644 --- a/doc/en/Gtk/SelectionClearEventArgs.xml +++ b/doc/en/Gtk/SelectionClearEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The event that triggered the clearing of the selection. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectionClearEventHandler.xml b/doc/en/Gtk/SelectionClearEventHandler.xml index 866ea9d8b..bbedf513d 100644 --- a/doc/en/Gtk/SelectionClearEventHandler.xml +++ b/doc/en/Gtk/SelectionClearEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectionData.xml b/doc/en/Gtk/SelectionData.xml index 01a4b663f..d0b0ef5b2 100644 --- a/doc/en/Gtk/SelectionData.xml +++ b/doc/en/Gtk/SelectionData.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ GLib.Opaque - @@ -71,7 +68,7 @@ The text stored in the selection. A - A . + A . @@ -84,7 +81,7 @@ GType Property. - a + a Returns the native value for . @@ -97,7 +94,7 @@ The unit length of the data in bits. - a + a On most systems, this is 8 for a string and 32 for an integer. @@ -111,7 +108,7 @@ The length of the selected data. - a + a @@ -125,12 +122,11 @@ Constructor. a , pointer to the underlying C data. - a - + Property System.Byte[] @@ -138,12 +134,12 @@ The data as a sequence of bytes. - a + a - + Method System.Void @@ -166,7 +162,7 @@ - + Method System.Void @@ -195,7 +191,7 @@ The selected data. - a + a @@ -209,12 +205,12 @@ The type of target being used. - a + a XXX: Add a list of useful strings for target types. - + Property Gdk.Atom[] @@ -222,7 +218,7 @@ Gets the selection data as an array of targets. - a + a @@ -236,7 +232,7 @@ The type of selection data - a + a XXX: elaborate on the possible values here. @@ -249,7 +245,7 @@ To be added - a + a To be added @@ -262,7 +258,7 @@ To be added - a + a To be added @@ -315,4 +311,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectionGetArgs.xml b/doc/en/Gtk/SelectionGetArgs.xml index 6eceea45a..0653a027a 100644 --- a/doc/en/Gtk/SelectionGetArgs.xml +++ b/doc/en/Gtk/SelectionGetArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The time this selection was gotten from the source widget. - A + A @@ -52,7 +48,7 @@ An enumerator to identify the specific target for this selection. - A + A @@ -64,9 +60,9 @@ The data from the selection. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectionGetHandler.xml b/doc/en/Gtk/SelectionGetHandler.xml index 9505e7b7e..4f2846845 100644 --- a/doc/en/Gtk/SelectionGetHandler.xml +++ b/doc/en/Gtk/SelectionGetHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectionMode.xml b/doc/en/Gtk/SelectionMode.xml index 521def643..628903be9 100644 --- a/doc/en/Gtk/SelectionMode.xml +++ b/doc/en/Gtk/SelectionMode.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,18 +18,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.SelectionModeGType)) + + @@ -127,4 +118,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectionNotifyEventArgs.xml b/doc/en/Gtk/SelectionNotifyEventArgs.xml index 1a2d2d150..276167f10 100644 --- a/doc/en/Gtk/SelectionNotifyEventArgs.xml +++ b/doc/en/Gtk/SelectionNotifyEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,10 +36,10 @@ The event which triggered this callback. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectionNotifyEventHandler.xml b/doc/en/Gtk/SelectionNotifyEventHandler.xml index d8a8a44ae..de95b9bcf 100644 --- a/doc/en/Gtk/SelectionNotifyEventHandler.xml +++ b/doc/en/Gtk/SelectionNotifyEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectionReceivedArgs.xml b/doc/en/Gtk/SelectionReceivedArgs.xml index 82bd371c7..b0ab0ecdd 100644 --- a/doc/en/Gtk/SelectionReceivedArgs.xml +++ b/doc/en/Gtk/SelectionReceivedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The time this selection was received from the source widget. - A + A @@ -52,9 +48,9 @@ The data from the selection. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectionReceivedHandler.xml b/doc/en/Gtk/SelectionReceivedHandler.xml index 282f7ec03..5af428d52 100644 --- a/doc/en/Gtk/SelectionReceivedHandler.xml +++ b/doc/en/Gtk/SelectionReceivedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectionRequestEventArgs.xml b/doc/en/Gtk/SelectionRequestEventArgs.xml index 608337786..2bc428ded 100644 --- a/doc/en/Gtk/SelectionRequestEventArgs.xml +++ b/doc/en/Gtk/SelectionRequestEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,10 +36,10 @@ The event which triggered this callback. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/SelectionRequestEventHandler.xml b/doc/en/Gtk/SelectionRequestEventHandler.xml index 66ba83972..c13b70abb 100644 --- a/doc/en/Gtk/SelectionRequestEventHandler.xml +++ b/doc/en/Gtk/SelectionRequestEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Separator.xml b/doc/en/Gtk/Separator.xml index 14efd6eb0..70798f812 100644 --- a/doc/en/Gtk/Separator.xml +++ b/doc/en/Gtk/Separator.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,7 @@ Gtk.Widget - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -54,7 +39,6 @@ Internal constructor Pointer to the C object. - An instance of Separator, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -69,7 +53,7 @@ GType Property. - a + a Returns the native value for . @@ -83,10 +67,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -94,9 +81,8 @@ Protected constructor. - a - \ No newline at end of file + diff --git a/doc/en/Gtk/SeparatorMenuItem.xml b/doc/en/Gtk/SeparatorMenuItem.xml index 4a6754cb0..20b5d8cca 100644 --- a/doc/en/Gtk/SeparatorMenuItem.xml +++ b/doc/en/Gtk/SeparatorMenuItem.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,20 +19,7 @@ Gtk.MenuItem - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -58,7 +43,6 @@ Internal constructor Pointer to the C object. - An instance of , wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -71,7 +55,6 @@ Creates a new . - an object of type Creates a new . @@ -90,7 +73,7 @@ Gtk.SeparatorMenuItem smi = new Gtk.SeparatorMenuItem (); GType Property. - a + a Returns the native value for . @@ -104,9 +87,12 @@ Gtk.SeparatorMenuItem smi = new Gtk.SeparatorMenuItem (); Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/SeparatorToolItem.xml b/doc/en/Gtk/SeparatorToolItem.xml index 79bb73d6a..01c5c0f8c 100644 --- a/doc/en/Gtk/SeparatorToolItem.xml +++ b/doc/en/Gtk/SeparatorToolItem.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,17 +15,7 @@ Gtk.ToolItem - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -52,11 +40,14 @@ Protected constructor. a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -67,7 +58,6 @@ Constructor for internal use only. a , pointer to underlying C object. - a @@ -79,7 +69,6 @@ Public constructor. - a @@ -93,7 +82,7 @@ The of this object. - a + a @@ -108,10 +97,14 @@ Returns whether this object is drawn as a line (true), or just blank (false). - a + a - + + + GLib.Property(Name="draw") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/SetBaseArgs.xml b/doc/en/Gtk/SetBaseArgs.xml index 3485eeb3e..bdcfede42 100644 --- a/doc/en/Gtk/SetBaseArgs.xml +++ b/doc/en/Gtk/SetBaseArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The base URL for this HTML widget. - A . + A . - \ No newline at end of file + diff --git a/doc/en/Gtk/SetBaseHandler.xml b/doc/en/Gtk/SetBaseHandler.xml index 790ab447c..9c48782ef 100644 --- a/doc/en/Gtk/SetBaseHandler.xml +++ b/doc/en/Gtk/SetBaseHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/SetBaseTargetArgs.xml b/doc/en/Gtk/SetBaseTargetArgs.xml index 2c6e73da4..cad87be0c 100644 --- a/doc/en/Gtk/SetBaseTargetArgs.xml +++ b/doc/en/Gtk/SetBaseTargetArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The base target URL being set. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/SetBaseTargetHandler.xml b/doc/en/Gtk/SetBaseTargetHandler.xml index 59cf2d456..11803a226 100644 --- a/doc/en/Gtk/SetBaseTargetHandler.xml +++ b/doc/en/Gtk/SetBaseTargetHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/SetFocusArgs.xml b/doc/en/Gtk/SetFocusArgs.xml index 978a07aa5..279f9b8d5 100644 --- a/doc/en/Gtk/SetFocusArgs.xml +++ b/doc/en/Gtk/SetFocusArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The widget where the focus is being set. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/SetFocusHandler.xml b/doc/en/Gtk/SetFocusHandler.xml index d8ca3f28e..da4f20105 100644 --- a/doc/en/Gtk/SetFocusHandler.xml +++ b/doc/en/Gtk/SetFocusHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Settings.xml b/doc/en/Gtk/Settings.xml index 6d095e383..ddc3cb941 100644 --- a/doc/en/Gtk/Settings.xml +++ b/doc/en/Gtk/Settings.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -154,7 +145,6 @@ Internal constructor Pointer to the C object. - An instance of Settings, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -168,7 +158,7 @@ Returns a default settings object. - A + A @@ -197,7 +187,7 @@ GType Property. - a + a Returns the native value for . @@ -211,10 +201,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -224,7 +217,7 @@ True if the cursor should blink, false if it should not blink. - a + a @@ -237,7 +230,7 @@ Blink interval in milliseconds for the cursor. - a + a @@ -250,7 +243,7 @@ Number of pixels the cursor can move before dragging. - a + a @@ -263,7 +256,7 @@ Maximum interval between clicks for a mouse action to be considered a double-click. Measured in milliseconds. - a + a @@ -276,7 +269,7 @@ A font name. - a + a @@ -289,7 +282,7 @@ A string representing possible sizes for icons for different UI components. - a + a This may look something like "(gtk-menu=16,16;gtk-button=20,20 [...])". @@ -302,7 +295,7 @@ The name of the key theme RC file to load. - a + a @@ -315,7 +308,7 @@ Keybinding to activate the menu bar. - a + a Defaults to F10. @@ -328,7 +321,7 @@ Whether two cursors should be displayed for mixed left-to-right and right-to-left text. - a + a @@ -341,7 +334,7 @@ Name of the theme RC file to load. - a + a @@ -352,9 +345,8 @@ Default constructor. - a - \ No newline at end of file + diff --git a/doc/en/Gtk/SettingsPropertyValue.xml b/doc/en/Gtk/SettingsPropertyValue.xml index 85339cc6a..34afb4194 100644 --- a/doc/en/Gtk/SettingsPropertyValue.xml +++ b/doc/en/Gtk/SettingsPropertyValue.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,9 +27,8 @@ Constructor. a , a pointer to the underlying C object. - a This is not for general developer use; it's mostly internal. - \ No newline at end of file + diff --git a/doc/en/Gtk/SettingsValue.xml b/doc/en/Gtk/SettingsValue.xml index f504e3ba8..5a7e75f1d 100644 --- a/doc/en/Gtk/SettingsValue.xml +++ b/doc/en/Gtk/SettingsValue.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -74,4 +71,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ShadowType.xml b/doc/en/Gtk/ShadowType.xml index 028ae3713..96a14c70a 100644 --- a/doc/en/Gtk/ShadowType.xml +++ b/doc/en/Gtk/ShadowType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.ShadowTypeGType)) + + @@ -104,4 +95,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/SideType.xml b/doc/en/Gtk/SideType.xml index bc4ddb8b4..bb5453c71 100644 --- a/doc/en/Gtk/SideType.xml +++ b/doc/en/Gtk/SideType.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.SideTypeGType)) + + diff --git a/doc/en/Gtk/SignalFunc.xml b/doc/en/Gtk/SignalFunc.xml index 423519148..af5ca42d0 100644 --- a/doc/en/Gtk/SignalFunc.xml +++ b/doc/en/Gtk/SignalFunc.xml @@ -1,27 +1,18 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Deprecated. Do not use. - + + System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - diff --git a/doc/en/Gtk/SizeAllocatedArgs.xml b/doc/en/Gtk/SizeAllocatedArgs.xml index 307087f11..b5a2d89f3 100644 --- a/doc/en/Gtk/SizeAllocatedArgs.xml +++ b/doc/en/Gtk/SizeAllocatedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The actual rectangle that was allocated for the widget. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/SizeAllocatedHandler.xml b/doc/en/Gtk/SizeAllocatedHandler.xml index 840e3c7fe..9524193b1 100644 --- a/doc/en/Gtk/SizeAllocatedHandler.xml +++ b/doc/en/Gtk/SizeAllocatedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/SizeGroup.xml b/doc/en/Gtk/SizeGroup.xml index 0c564ca93..f4c4bd9ee 100644 --- a/doc/en/Gtk/SizeGroup.xml +++ b/doc/en/Gtk/SizeGroup.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -33,14 +31,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -94,7 +85,6 @@ Internal constructor Pointer to the C object. - An instance of SizeGroup, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -110,7 +100,6 @@ Create a new SizeGroup. The mode to indicate direction(s) that should have their sizes tied together. - A new SizeGroup The direction that size is tied can be altered later using the property. @@ -127,14 +116,18 @@ Sets a mode to determine which direction this SizeGroup controls. A new direction 'mode' for this SizeGroup to tie together. - The current 'mode' that indicates the direction this SizeGroup ties together. + The current 'mode' that indicates the direction this SizeGroup ties together. The mode of the size group determines whether the widgets in the SizeGroup should all have the same or requisition, or should all have the same requisition in directions. - + + + GLib.Property(Name="mode") + + Property @@ -144,7 +137,7 @@ GType Property. - a + a Returns the native value for . @@ -158,9 +151,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/SizeGroupMode.xml b/doc/en/Gtk/SizeGroupMode.xml index d1cd095b0..e1dc9695c 100644 --- a/doc/en/Gtk/SizeGroupMode.xml +++ b/doc/en/Gtk/SizeGroupMode.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,18 +16,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.SizeGroupModeGType)) + + @@ -93,4 +84,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/SizeRequestedArgs.xml b/doc/en/Gtk/SizeRequestedArgs.xml index 5ca4c7b20..9d6302b74 100644 --- a/doc/en/Gtk/SizeRequestedArgs.xml +++ b/doc/en/Gtk/SizeRequestedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,7 +37,7 @@ The width and height this widget would like to have. - A + A Requisition req = args.Requisition; @@ -55,4 +51,4 @@ args.Requisition = req; - \ No newline at end of file + diff --git a/doc/en/Gtk/SizeRequestedHandler.xml b/doc/en/Gtk/SizeRequestedHandler.xml index e839961a2..f05c7e9e3 100644 --- a/doc/en/Gtk/SizeRequestedHandler.xml +++ b/doc/en/Gtk/SizeRequestedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Socket.xml b/doc/en/Gtk/Socket.xml index 80d9c50f0..f8843aa97 100644 --- a/doc/en/Gtk/Socket.xml +++ b/doc/en/Gtk/Socket.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -32,20 +30,7 @@ Console.WriteLine ("The ID of the sockets window is {0}", socket.Id); Gtk.Container - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -88,7 +73,6 @@ Console.WriteLine ("The ID of the sockets window is {0}", socket.Id); Internal constructor Pointer to the C object. - An instance of Socket, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -101,7 +85,6 @@ Console.WriteLine ("The ID of the sockets window is {0}", socket.Id); Default constructor - an object of type @@ -114,7 +97,7 @@ Console.WriteLine ("The ID of the sockets window is {0}", socket.Id); The window ID of a widget. - an object of type + an object of type This can be used to create a client embedded inside the socket, for instance with . The must have already be added into a toplevel window before you can make this call. @@ -130,7 +113,11 @@ Console.WriteLine ("The ID of the sockets window is {0}", socket.Id); - + + + GLib.Signal(CName="plug_added") + + Event @@ -142,7 +129,11 @@ Console.WriteLine ("The ID of the sockets window is {0}", socket.Id); This event is emitted when a client is removed from the socket. The default action is to destroy the widget, so if you want to reuse it you must add a signal handler that returns . - + + + GLib.Signal(CName="plug_removed") + + Property @@ -152,7 +143,7 @@ Console.WriteLine ("The ID of the sockets window is {0}", socket.Id); GType Property. - a + a Returns the native value for . @@ -191,10 +182,13 @@ Console.WriteLine ("The ID of the sockets window is {0}", socket.Id); Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method diff --git a/doc/en/Gtk/SortType.xml b/doc/en/Gtk/SortType.xml index b66a5167d..468720ba4 100644 --- a/doc/en/Gtk/SortType.xml +++ b/doc/en/Gtk/SortType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.SortTypeGType)) + + @@ -67,4 +58,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/SpinButton.xml b/doc/en/Gtk/SpinButton.xml index 11c797c20..d414b0727 100644 --- a/doc/en/Gtk/SpinButton.xml +++ b/doc/en/Gtk/SpinButton.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -46,29 +44,7 @@ private void OutputValue(object source, System.EventArgs args) Gtk.Entry - - Gtk.Editable - - - GLib.IWrapper - - - Gtk.CellEditable - - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -212,7 +188,6 @@ private void OutputValue(object source, System.EventArgs args) Internal constructor Pointer to the C object. - An instance of SpinButton, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -232,7 +207,6 @@ private void OutputValue(object source, System.EventArgs args) A A A - A @@ -250,7 +224,6 @@ private void OutputValue(object source, System.EventArgs args) Minimum allowable value. Maximum allowable value. The value to alter the SpinButton by when a is carried out on it. - A new SpinButton. The default value of the new SpinButton is initially set to . The default page increment is set to 10 * . @@ -266,7 +239,7 @@ private void OutputValue(object source, System.EventArgs args) Retrieve the current value as an integer. - The value of the SpinButton with integer precision. + The value of the SpinButton with integer precision. @@ -282,10 +255,14 @@ private void OutputValue(object source, System.EventArgs args) Manage whether or not the SpinButton accepts non-numeric input. if non-numeric text can be entered into the text entry of the SpinButton, otherwise. - Whether the SpinButton currently accepts only numeric input. + Whether the SpinButton currently accepts only numeric input. - + + + GLib.Property(Name="numeric") + + Property @@ -297,10 +274,14 @@ private void OutputValue(object source, System.EventArgs args) The acceleration rate when user holds down a button. A - A + A - + + + GLib.Property(Name="climb_rate") + + Property @@ -312,13 +293,17 @@ private void OutputValue(object source, System.EventArgs args) Manage whether a SpinButton's value wraps around to the opposite limit when the upper or lower limit of the range is exceeded. Set to to cause values to wrap from maximum to minimum, to force the value at the limits to remain unchanged. - Whether this SpinButton wraps its maximum/minimum values when spinning. + Whether this SpinButton wraps its maximum/minimum values when spinning. If this property is set to , then when the user tries to change the value in a SpinButton, (usually by clicking one of the arrows), the next value after the maximum will wrap to the minimum. Alternatively, if this property is set to , then trying to increase the value of the SpinButton when it is at the maximum value, will have no effect. Likewise when trying to decrement the value at its minimum. - + + + GLib.Property(Name="wrap") + + Property @@ -330,12 +315,16 @@ private void OutputValue(object source, System.EventArgs args) The current value of the SpinButton. Sets a new value in this SpinButton - The current value of the SpinButton. + The current value of the SpinButton. The value of the SpinButton is limited by the precision set with the property. - + + + GLib.Property(Name="value") + + Property @@ -347,12 +336,16 @@ private void OutputValue(object source, System.EventArgs args) Manage the precision that this SpinButton's value is displayed with. The number of digits to be displayed for the spin button's value. - The maximum number of digits that the SpinButton will currently display. + The maximum number of digits that the SpinButton will currently display. Up to 20 digit precision is allowed. - + + + GLib.Property(Name="digits") + + Property @@ -365,11 +358,15 @@ private void OutputValue(object source, System.EventArgs args) Manage whether values are corrected to the nearest step increment when a SpinButton is activated with an invalid value. if invalid values should be corrected, otherwise. - - if values are snapped to the nearest step, otherwise. + + if values are snapped to the nearest step, otherwise. - + + + GLib.Property(Name="snap_to_ticks") + + Property @@ -381,10 +378,14 @@ private void OutputValue(object source, System.EventArgs args) The policy for how to update this SpinButton when its value changes. A - A + A - + + + GLib.Property(Name="update_policy") + + Property @@ -396,10 +397,14 @@ private void OutputValue(object source, System.EventArgs args) The lower/upper/step range of this widget's values. A - A + A - + + + GLib.Property(Name="adjustment") + + Event @@ -411,7 +416,11 @@ private void OutputValue(object source, System.EventArgs args) Fired when this widget outputs its value. - + + + GLib.Signal(CName="output") + + Event @@ -423,7 +432,11 @@ private void OutputValue(object source, System.EventArgs args) This event is fired after the SpinButton's value changes. - + + + GLib.Signal(CName="value_changed") + + Event @@ -435,7 +448,11 @@ private void OutputValue(object source, System.EventArgs args) Fired when the user inputs a new value. - + + + GLib.Signal(CName="input") + + Event @@ -447,7 +464,11 @@ private void OutputValue(object source, System.EventArgs args) Fired in order to change the button's value. - + + + GLib.Signal(CName="change_value") + + Property @@ -457,7 +478,7 @@ private void OutputValue(object source, System.EventArgs args) GType Property. - a + a Returns the native value for . @@ -527,9 +548,12 @@ private void OutputValue(object source, System.EventArgs args) Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/SpinButtonUpdatePolicy.xml b/doc/en/Gtk/SpinButtonUpdatePolicy.xml index 9437cbf34..e1cf20682 100644 --- a/doc/en/Gtk/SpinButtonUpdatePolicy.xml +++ b/doc/en/Gtk/SpinButtonUpdatePolicy.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.SpinButtonUpdatePolicyGType)) + + @@ -67,4 +58,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/SpinType.xml b/doc/en/Gtk/SpinType.xml index 580d37338..6baed43f1 100644 --- a/doc/en/Gtk/SpinType.xml +++ b/doc/en/Gtk/SpinType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,18 +16,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.SpinTypeGType)) + + @@ -129,4 +120,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/StartInteractiveSearchArgs.xml b/doc/en/Gtk/StartInteractiveSearchArgs.xml index cb5a98076..9578d0684 100644 --- a/doc/en/Gtk/StartInteractiveSearchArgs.xml +++ b/doc/en/Gtk/StartInteractiveSearchArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,9 +25,8 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. - \ No newline at end of file + diff --git a/doc/en/Gtk/StartInteractiveSearchHandler.xml b/doc/en/Gtk/StartInteractiveSearchHandler.xml index 5b4f18823..10b2e3e95 100644 --- a/doc/en/Gtk/StartInteractiveSearchHandler.xml +++ b/doc/en/Gtk/StartInteractiveSearchHandler.xml @@ -1,14 +1,14 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -36,4 +27,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/StateChangedArgs.xml b/doc/en/Gtk/StateChangedArgs.xml index aa20061aa..7f9cdb7de 100644 --- a/doc/en/Gtk/StateChangedArgs.xml +++ b/doc/en/Gtk/StateChangedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The prior state of the widget before it was changed. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/StateChangedHandler.xml b/doc/en/Gtk/StateChangedHandler.xml index e0411f81c..c051d8fe2 100644 --- a/doc/en/Gtk/StateChangedHandler.xml +++ b/doc/en/Gtk/StateChangedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/StateType.xml b/doc/en/Gtk/StateType.xml index e8899b096..cf929025e 100644 --- a/doc/en/Gtk/StateType.xml +++ b/doc/en/Gtk/StateType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -23,18 +21,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.StateTypeGType)) + + @@ -130,4 +121,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Statusbar.xml b/doc/en/Gtk/Statusbar.xml index a663c0287..b17e752a9 100644 --- a/doc/en/Gtk/Statusbar.xml +++ b/doc/en/Gtk/Statusbar.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -79,20 +77,7 @@ class StatusbarSample Gtk.HBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -186,7 +171,6 @@ class StatusbarSample Internal constructor Pointer to the C object. - An instance of Statusbar, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -199,7 +183,6 @@ class StatusbarSample The main way to create a new status bar. - A new Statusbar Creates a new Statusbar with an empty message stack. @@ -216,10 +199,14 @@ class StatusbarSample Manage whether this Statusbar has a resizable grip over its bottom right corner. Set to to render a resize grip over the Statusbar, otherwise. - Whether or not there is currently a resize grip on the Statusbar. + Whether or not there is currently a resize grip on the Statusbar. - + + + GLib.Property(Name="has_resize_grip") + + Event @@ -233,7 +220,11 @@ class StatusbarSample Connect to this event with a . - + + + GLib.Signal(CName="text_pushed") + + Event @@ -247,7 +238,11 @@ class StatusbarSample Connect to this event with a . - + + + GLib.Signal(CName="text_popped") + + Property @@ -257,7 +252,7 @@ class StatusbarSample GType Property. - a + a Returns the native value for . @@ -305,9 +300,12 @@ class StatusbarSample Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/Stock.xml b/doc/en/Gtk/Stock.xml index 53f580d48..299d48c69 100644 --- a/doc/en/Gtk/Stock.xml +++ b/doc/en/Gtk/Stock.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,7 +18,6 @@ System.Object - @@ -29,7 +26,6 @@ Default constructor. - an object of type @@ -42,7 +38,7 @@ The "Zoom Out" item. - an object of type + an object of type @@ -55,7 +51,7 @@ The "Zoom In" item. - an object of type + an object of type @@ -68,7 +64,7 @@ The "Zoom to Fit" item. - an object of type + an object of type @@ -81,7 +77,7 @@ The "Zoom 100%" item. - an object of type + an object of type @@ -94,7 +90,7 @@ The "Yes" item. - an object of type + an object of type @@ -107,7 +103,7 @@ The "Undo" item. - an object of type + an object of type @@ -120,7 +116,7 @@ The "Underline" item. - an object of type + an object of type @@ -133,7 +129,7 @@ The "Undelete" item. - an object of type + an object of type @@ -146,7 +142,7 @@ The "Strikethrough" item. - an object of type + an object of type @@ -159,7 +155,7 @@ The "Stop" item. - an object of type + an object of type @@ -172,7 +168,7 @@ The "Spell Check" item. - an object of type + an object of type @@ -185,7 +181,7 @@ The "Descending" item. - an object of type + an object of type @@ -198,7 +194,7 @@ The "Ascending" item. - an object of type + an object of type @@ -211,7 +207,7 @@ The "Font" item. - an object of type + an object of type @@ -224,7 +220,7 @@ The "Color" item. - an object of type + an object of type @@ -237,7 +233,7 @@ The "Save As" item. - an object of type + an object of type @@ -250,7 +246,7 @@ The "Save" item. - Tan object of type + Tan object of type @@ -263,7 +259,7 @@ The "Revert" item. - an object of type + an object of type @@ -276,7 +272,7 @@ The "Remove" item. - an object of type + an object of type @@ -289,7 +285,7 @@ The "Refresh" item. - an object of type + an object of type @@ -302,7 +298,7 @@ The "Redo" item. - an object of type + an object of type @@ -315,7 +311,7 @@ The "Quit" item. - an object of type + an object of type @@ -328,7 +324,7 @@ The "Properties" item. - an object of type + an object of type @@ -341,7 +337,7 @@ The "Print Preview" item. - an object of type + an object of type @@ -354,7 +350,7 @@ The "Print" item. - an object of type + an object of type @@ -367,7 +363,7 @@ The "Preferences" item. - an object of type + an object of type @@ -380,7 +376,7 @@ The "Paste" item. - an object of type + an object of type @@ -393,7 +389,7 @@ The "Open" item. - an object of type + an object of type @@ -406,7 +402,7 @@ The "OK" item. - an object of type + an object of type @@ -419,7 +415,7 @@ The "No" item. - an object of type + an object of type @@ -432,7 +428,7 @@ The "New" item. - an object of type + an object of type @@ -445,7 +441,7 @@ The "Missing Image" item. - an object of type + an object of type @@ -458,7 +454,7 @@ The "Right" item. - an object of type + an object of type @@ -471,7 +467,7 @@ The "Left" item. - an object of type + an object of type @@ -484,7 +480,7 @@ The "Fill" item. - an object of type + an object of type @@ -497,7 +493,7 @@ The "Center" item. - an object of type + an object of type @@ -510,7 +506,7 @@ The "Jump to" item. - an object of type + an object of type @@ -523,7 +519,7 @@ The "Italic" item. - an object of type + an object of type @@ -536,7 +532,7 @@ The "Index" item. - an object of type + an object of type @@ -549,7 +545,7 @@ The "Home" item. - an object of type + an object of type @@ -562,7 +558,7 @@ The "Help" item. - an object of type + an object of type @@ -575,7 +571,7 @@ The "Up" item. - an object of type + an object of type @@ -588,7 +584,7 @@ The "Forward" item. - an object of type + an object of type @@ -601,7 +597,7 @@ The "Down" item. - an object of type + an object of type @@ -614,7 +610,7 @@ The "Back" item. - an object of type + an object of type @@ -627,7 +623,7 @@ The "Top" item. - an object of type + an object of type @@ -640,7 +636,7 @@ The "Last" item. - an object of type + an object of type @@ -653,7 +649,7 @@ The "First" item. - an object of type + an object of type @@ -666,7 +662,7 @@ The "Bottom" item. - an object of type + an object of type @@ -679,7 +675,7 @@ The "Floppy" item. - an object of type + an object of type @@ -692,7 +688,7 @@ The "Find and Replace" item. - an object of type + an object of type @@ -705,7 +701,7 @@ The "Find" item. - an object of type + an object of type @@ -718,7 +714,7 @@ The "Execute" item. - an object of type + an object of type @@ -731,7 +727,7 @@ The "Drag-And-Drop multiple" icon. - an object of type + an object of type @@ -744,7 +740,7 @@ The "Drag-And-Drop" icon. - an object of type + an object of type @@ -757,7 +753,7 @@ The "Warning" item. - an object of type + an object of type @@ -770,7 +766,7 @@ The "Question" item. - an object of type + an object of type @@ -783,7 +779,7 @@ The "Info" item. - an object of type + an object of type @@ -796,7 +792,7 @@ The "Error" item. - an object of type + an object of type @@ -809,7 +805,7 @@ The "Delete" item. - an object of type + an object of type @@ -822,7 +818,7 @@ The "Cut" item. - an object of type + an object of type @@ -835,7 +831,7 @@ The "Copy" item. - an object of type + an object of type @@ -848,7 +844,7 @@ The "Convert" item. - an object of type + an object of type @@ -861,7 +857,7 @@ The "Close" item. - an object of type + an object of type @@ -874,7 +870,7 @@ The "Clear" item. - an object of type + an object of type @@ -887,7 +883,7 @@ The "CD-Rom" item. - an object of type + an object of type @@ -900,7 +896,7 @@ The "Cancel" item. - an object of type + an object of type @@ -913,7 +909,7 @@ The "Bold" item. - an object of type + an object of type @@ -926,7 +922,7 @@ The "Apply" item. - an object of type + an object of type @@ -939,7 +935,7 @@ The "Add" item. - an object of type + an object of type @@ -952,13 +948,13 @@ The "Color Picker" item. - a + a - + Method System.String[] @@ -979,7 +975,7 @@ The "Harddisk" item. - a + a @@ -993,7 +989,7 @@ The "Indent" item. - a + a @@ -1007,7 +1003,7 @@ The "Network" item. - a + a @@ -1021,7 +1017,7 @@ The "Unindent" item. - a + a @@ -1051,7 +1047,7 @@ To be added - a + a To be added @@ -1064,7 +1060,7 @@ To be added - a + a To be added @@ -1077,7 +1073,7 @@ To be added - a + a To be added @@ -1090,7 +1086,7 @@ To be added - a + a To be added @@ -1103,7 +1099,7 @@ To be added - a + a To be added @@ -1116,7 +1112,7 @@ To be added - a + a To be added @@ -1129,7 +1125,7 @@ To be added - a + a To be added @@ -1142,7 +1138,7 @@ To be added - a + a To be added @@ -1155,7 +1151,7 @@ To be added - a + a To be added @@ -1168,7 +1164,7 @@ To be added - a + a To be added @@ -1181,7 +1177,7 @@ To be added - a + a To be added @@ -1194,7 +1190,7 @@ To be added - a + a To be added @@ -1207,7 +1203,7 @@ To be added - a + a To be added @@ -1220,9 +1216,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Gtk/StockItem.xml b/doc/en/Gtk/StockItem.xml index fba06e559..7afab3e60 100644 --- a/doc/en/Gtk/StockItem.xml +++ b/doc/en/Gtk/StockItem.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -158,7 +155,6 @@ a a a - a diff --git a/doc/en/Gtk/StockManager.xml b/doc/en/Gtk/StockManager.xml index 5cb66f80b..e91b69ef9 100644 --- a/doc/en/Gtk/StockManager.xml +++ b/doc/en/Gtk/StockManager.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -48,7 +45,6 @@ Do not use. - a Do not use diff --git a/doc/en/Gtk/Style.xml b/doc/en/Gtk/Style.xml index a1d330db5..feaccbb2b 100644 --- a/doc/en/Gtk/Style.xml +++ b/doc/en/Gtk/Style.xml @@ -1,7 +1,11 @@ - - : - gtk-sharp0.0.0.0neutral + + + gtk-sharp + + + 2.0.0.0 + Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Methods for drawing widget parts. @@ -12,14 +16,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -239,7 +236,6 @@ color or pixmap specified by this style for . Internal constructor Pointer to the C object. - An instance of Style, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -252,7 +248,6 @@ color or pixmap specified by this style for . Public constructor - A new @@ -264,7 +259,7 @@ color or pixmap specified by this style for . The font description used for a widget. - a + a @@ -279,7 +274,7 @@ color or pixmap specified by this style for . The Y thickness, which is used for vertical padding. A - A + A @@ -294,31 +289,31 @@ color or pixmap specified by this style for . The X thickness, which is used for horizontal padding. An integer to set the xthickness to. - An integer. + An integer. (FIXME: xthickness and ythickness could be better documented.) - + Property - Gdk.Color [] + Gdk.Color[] The foreground colors - A + A - + Property - Gdk.Color [] + Gdk.Color[] The background colors. - A + A @@ -330,7 +325,7 @@ color or pixmap specified by this style for . Black. - A + A @@ -342,31 +337,31 @@ color or pixmap specified by this style for . White. - A + A - + Property - Gdk.GC [] + Gdk.GC[] Gets the graphics context objects for the background. - A + A - + Property - Gdk.GC [] + Gdk.GC[] Gets the graphics context objects for the foreground. - A + A @@ -378,7 +373,7 @@ color or pixmap specified by this style for . Gets a white graphics context. - A + A @@ -390,7 +385,7 @@ color or pixmap specified by this style for . Gets a black graphics context. - A + A @@ -1145,7 +1140,7 @@ color or pixmap specified by this style for . GType Property. - a + a Returns the native value for . @@ -1159,12 +1154,15 @@ color or pixmap specified by this style for . Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - + Property Gdk.Color[] @@ -1172,12 +1170,12 @@ color or pixmap specified by this style for . The colors to use for text. - a + a - + Property Gdk.Color[] @@ -1185,7 +1183,7 @@ color or pixmap specified by this style for . The base color set. - a + a @@ -1426,7 +1424,7 @@ color or pixmap specified by this style for . Deprecated. - a + a The to use for a given style. This is deprecated and should not be used in new code. New code @@ -1434,7 +1432,11 @@ color or pixmap specified by this style for . instead. - + + + System.Obsolete(Message=null, IsError=False) + + Event @@ -1454,7 +1456,11 @@ color or pixmap specified by this style for . convenient place to free such cached objects. - + + + GLib.Signal(CName="unrealize") + + Event @@ -1473,7 +1479,11 @@ color or pixmap specified by this style for . deal with styles that have been already realized. - + + + GLib.Signal(CName="realize") + + Method @@ -1534,7 +1544,7 @@ color or pixmap specified by this style for . The "xthickness" value of the style. - a + a This value is used for various horizontal padding values in Gtk. @@ -1547,7 +1557,7 @@ color or pixmap specified by this style for . The "ythickness" value of the style. - a + a This value is used for various vertical padding values in Gtk. @@ -1560,12 +1570,13 @@ color or pixmap specified by this style for . The value for the style. - a - + a + + - + Property Gdk.Color[] @@ -1573,12 +1584,12 @@ color or pixmap specified by this style for . Light colors indexed by state. - a + a - + Property Gdk.Color[] @@ -1586,12 +1597,12 @@ color or pixmap specified by this style for . Mid colors indexed by state. - a + a - + Property Gdk.Color[] @@ -1599,7 +1610,7 @@ color or pixmap specified by this style for . Dark colors indexed by state. - a + a @@ -1652,7 +1663,7 @@ color or pixmap specified by this style for . - + Property Gdk.Pixmap[] @@ -1660,7 +1671,7 @@ color or pixmap specified by this style for . Gets an array of background pixmaps. - a + a @@ -1698,4 +1709,4 @@ color or pixmap specified by this style for . - \ No newline at end of file + diff --git a/doc/en/Gtk/StyleChangedArgs.xml b/doc/en/Gtk/StyleChangedArgs.xml index 69033da01..d852062c5 100644 --- a/doc/en/Gtk/StyleChangedArgs.xml +++ b/doc/en/Gtk/StyleChangedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The style that the toolbar was changed to use. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/StyleChangedHandler.xml b/doc/en/Gtk/StyleChangedHandler.xml index a0b5c9c1e..25271febd 100644 --- a/doc/en/Gtk/StyleChangedHandler.xml +++ b/doc/en/Gtk/StyleChangedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/StyleSetArgs.xml b/doc/en/Gtk/StyleSetArgs.xml index 1c35c7eeb..7e7887570 100644 --- a/doc/en/Gtk/StyleSetArgs.xml +++ b/doc/en/Gtk/StyleSetArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The style that was in use before this style. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/StyleSetHandler.xml b/doc/en/Gtk/StyleSetHandler.xml index 6bd24f1ba..33ed6a63e 100644 --- a/doc/en/Gtk/StyleSetHandler.xml +++ b/doc/en/Gtk/StyleSetHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Submenu.xml b/doc/en/Gtk/Submenu.xml deleted file mode 100644 index 66e2f9f47..000000000 --- a/doc/en/Gtk/Submenu.xml +++ /dev/null @@ -1,60 +0,0 @@ - - - - gtk-sharp - - - 0.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - A menu that pops out from another menu; see . - TODO: show an example. - - - System.Object - - - - - - - Constructor - - - - Default constructor. - a - - - - - - Method - - GLib.GType - - - - The placement of this submenu. - a - - - - - - Method - - GLib.GType - - - - The direction this menu pops out. - a - - - - - \ No newline at end of file diff --git a/doc/en/Gtk/SubmenuDirection.xml b/doc/en/Gtk/SubmenuDirection.xml index 9b7424337..5a5abd957 100644 --- a/doc/en/Gtk/SubmenuDirection.xml +++ b/doc/en/Gtk/SubmenuDirection.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.SubmenuDirectionGType)) + + diff --git a/doc/en/Gtk/SubmenuPlacement.xml b/doc/en/Gtk/SubmenuPlacement.xml index 58be122cf..3996b9037 100644 --- a/doc/en/Gtk/SubmenuPlacement.xml +++ b/doc/en/Gtk/SubmenuPlacement.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.SubmenuPlacementGType)) + + diff --git a/doc/en/Gtk/SubmitArgs.xml b/doc/en/Gtk/SubmitArgs.xml index c33c4abf1..b517f1b40 100644 --- a/doc/en/Gtk/SubmitArgs.xml +++ b/doc/en/Gtk/SubmitArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The text encoding to use for submitting the form. - A + A @@ -52,7 +48,7 @@ The URL to submit the form data to. - A + A @@ -64,9 +60,9 @@ The HTTP method to use for submitting. - A + A Usually GET, POST, or PUT. - \ No newline at end of file + diff --git a/doc/en/Gtk/SubmitHandler.xml b/doc/en/Gtk/SubmitHandler.xml index 421947644..f394a8282 100644 --- a/doc/en/Gtk/SubmitHandler.xml +++ b/doc/en/Gtk/SubmitHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/SurroundingDeletedArgs.xml b/doc/en/Gtk/SurroundingDeletedArgs.xml index e6ced3e44..7968526d5 100644 --- a/doc/en/Gtk/SurroundingDeletedArgs.xml +++ b/doc/en/Gtk/SurroundingDeletedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The number of characters that were deleted. - A . + A . @@ -52,9 +48,9 @@ The offset the characters were deleted near. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/SurroundingDeletedHandler.xml b/doc/en/Gtk/SurroundingDeletedHandler.xml index e1ae4b0b7..d9493b9bf 100644 --- a/doc/en/Gtk/SurroundingDeletedHandler.xml +++ b/doc/en/Gtk/SurroundingDeletedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/SwitchPageArgs.xml b/doc/en/Gtk/SwitchPageArgs.xml index e1d0d0b08..acebea98e 100644 --- a/doc/en/Gtk/SwitchPageArgs.xml +++ b/doc/en/Gtk/SwitchPageArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The page number being switched to. - A + A @@ -52,9 +48,9 @@ The notebook page being switched to. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/SwitchPageHandler.xml b/doc/en/Gtk/SwitchPageHandler.xml index 45a1bf8c6..4b199b86a 100644 --- a/doc/en/Gtk/SwitchPageHandler.xml +++ b/doc/en/Gtk/SwitchPageHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TableChild.xml b/doc/en/Gtk/Table+TableChild.xml similarity index 64% rename from doc/en/Gtk/TableChild.xml rename to doc/en/Gtk/Table+TableChild.xml index 57f5a4f8d..8243389b3 100644 --- a/doc/en/Gtk/TableChild.xml +++ b/doc/en/Gtk/Table+TableChild.xml @@ -1,34 +1,28 @@ - - + + gtk-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] 2.0.0.0 - neutral - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - A child of a , used to interact with its container child properties. - - - Gtk.Container+ContainerChild - Property + + + Gtk.ChildProperty(Name="bottom_attach") + + System.UInt32 - The table row that the bottom of this child is attached to - the row + the row @@ -36,13 +30,17 @@ Property + + + Gtk.ChildProperty(Name="top_attach") + + System.UInt32 - The table row that the top of this child is attached to - the row + the row @@ -50,13 +48,17 @@ Property + + + Gtk.ChildProperty(Name="left_attach") + + System.UInt32 - The table column that the left side of this child is attached to - the column + the column @@ -64,13 +66,17 @@ Property + + + Gtk.ChildProperty(Name="right_attach") + + System.UInt32 - The table column that the right side of this child is attached to - the column + the column @@ -78,13 +84,17 @@ Property + + + Gtk.ChildProperty(Name="y_padding") + + System.UInt32 - The vertical padding for this child - the padding + the padding @@ -92,13 +102,17 @@ Property + + + Gtk.ChildProperty(Name="y_options") + + Gtk.AttachOptions - The child's vertical attachment options - the + the @@ -106,13 +120,17 @@ Property + + + Gtk.ChildProperty(Name="x_padding") + + System.UInt32 - The horizontal padding for this child - the padding + the padding @@ -120,32 +138,25 @@ Property + + + Gtk.ChildProperty(Name="x_options") + + Gtk.AttachOptions - The child's vertical attachment options - the + the - - - Constructor - - - - - - - Constructor - a - a - a - - - - \ No newline at end of file + + A child of a , used to interact with its container child properties. + + + + diff --git a/doc/en/Gtk/Table.xml b/doc/en/Gtk/Table.xml index 538e12b71..4c351b43b 100644 --- a/doc/en/Gtk/Table.xml +++ b/doc/en/Gtk/Table.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -41,20 +39,12 @@ public Widget MakeTableTester() Gtk.Container - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - + + + System.Reflection.DefaultMember(MemberName="Item") + + @@ -191,12 +181,13 @@ public Widget MakeTableTester() - Packs a widget into the table with default packing options. - The to add. + To be added. The column number to attach the left side of to. The column number to attach the right side of to. The row number to attach the top of to. The row number to attach the bottom of to. + Packs a widget into the table with default packing options. + The to add. To pack widgets into the table with more control over size and padding, use the alternative method. @@ -224,7 +215,6 @@ public Widget MakeTableTester() Internal constructor Pointer to the C object. - An instance of Table, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -244,7 +234,6 @@ public Widget MakeTableTester() The number of rows in this table. The number of columns in this table. If homogeneous is TRUE, the table boxes (cells) are resized to the size of the largest widget in the table. If homogeneous is FALSE, the size of a table boxes is dictated by the tallest widget in its same row, and the widest widget in its column (i.e. all cells are the same). - A new Table. The size of the table can be altered after its creation using the method. @@ -258,7 +247,7 @@ public Widget MakeTableTester() Retrieve the spacing that gets placed between newly added rows by default. - Spacing between rows that will be added, in pixels. + Spacing between rows that will be added, in pixels. @@ -270,7 +259,7 @@ public Widget MakeTableTester() The default number of pixels between columns. - A . + A . @@ -286,10 +275,14 @@ public Widget MakeTableTester() The number of pixels between columns if it isn't the default value. . - A . + A . - + + + GLib.Property(Name="column_spacing") + + Property @@ -301,10 +294,14 @@ public Widget MakeTableTester() Manage the number of columns in this Table. The number of columns that this table should have. - The number of columns this table currently has. + The number of columns this table currently has. - + + + GLib.Property(Name="n_columns") + + Property @@ -317,11 +314,15 @@ public Widget MakeTableTester() Manage whether all cells must be of equal size. to set all cells to an equal size, otherwise. - - if all cells are currently equally sized, otherwise. + + if all cells are currently equally sized, otherwise. - + + + GLib.Property(Name="homogeneous") + + Property @@ -333,11 +334,15 @@ public Widget MakeTableTester() The space between table rows. A . - - . + + . - + + + GLib.Property(Name="row_spacing") + + Property @@ -349,10 +354,14 @@ public Widget MakeTableTester() Manage the number of rows in this Table. The number of rows that this table should have. - The number of rows this table currently has. + The number of rows this table currently has. - + + + GLib.Property(Name="n_rows") + + Property @@ -362,7 +371,7 @@ public Widget MakeTableTester() GType Property. - a + a Returns the native value for . @@ -376,10 +385,13 @@ public Widget MakeTableTester() Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -397,4 +409,4 @@ public Widget MakeTableTester() - \ No newline at end of file + diff --git a/doc/en/Gtk/TagAddedArgs.xml b/doc/en/Gtk/TagAddedArgs.xml index 6d75b6c5f..43ec4fdec 100644 --- a/doc/en/Gtk/TagAddedArgs.xml +++ b/doc/en/Gtk/TagAddedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The tag that changed. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/TagAddedHandler.xml b/doc/en/Gtk/TagAddedHandler.xml index 30ae465ab..ef8f39951 100644 --- a/doc/en/Gtk/TagAddedHandler.xml +++ b/doc/en/Gtk/TagAddedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TagAppliedArgs.xml b/doc/en/Gtk/TagAppliedArgs.xml index ea0878d3f..5b843b49e 100644 --- a/doc/en/Gtk/TagAppliedArgs.xml +++ b/doc/en/Gtk/TagAppliedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ Gets the last character in the range this tag was applied to. - A + A @@ -52,7 +48,7 @@ Gets the first character in the range this tag was applied to. - A + A @@ -64,11 +60,11 @@ Gets the tag that was applied to the text. - + - + - \ No newline at end of file + diff --git a/doc/en/Gtk/TagAppliedHandler.xml b/doc/en/Gtk/TagAppliedHandler.xml index 27cb6b3e1..8ec99987a 100644 --- a/doc/en/Gtk/TagAppliedHandler.xml +++ b/doc/en/Gtk/TagAppliedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TagChangedArgs.xml b/doc/en/Gtk/TagChangedArgs.xml index 1c01a9b6f..a64c27751 100644 --- a/doc/en/Gtk/TagChangedArgs.xml +++ b/doc/en/Gtk/TagChangedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ Whether or not the size of the tag changed with this event. - A , true if the size of the tag changed. + A , true if the size of the tag changed. @@ -52,9 +48,9 @@ The tag that changed. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/TagChangedHandler.xml b/doc/en/Gtk/TagChangedHandler.xml index 73dcec054..b62a3eca3 100644 --- a/doc/en/Gtk/TagChangedHandler.xml +++ b/doc/en/Gtk/TagChangedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TagRemovedArgs.xml b/doc/en/Gtk/TagRemovedArgs.xml index 1984f0a0c..0746282e2 100644 --- a/doc/en/Gtk/TagRemovedArgs.xml +++ b/doc/en/Gtk/TagRemovedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -33,7 +31,6 @@ GLib.SignalArgs - @@ -42,7 +39,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -54,9 +50,9 @@ The tag that changed. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/TagRemovedHandler.xml b/doc/en/Gtk/TagRemovedHandler.xml index aa2f9bc1a..0df52ae0f 100644 --- a/doc/en/Gtk/TagRemovedHandler.xml +++ b/doc/en/Gtk/TagRemovedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -31,15 +32,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -48,4 +40,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TargetEntry.xml b/doc/en/Gtk/TargetEntry.xml index 54187f54d..5a1ed3c7a 100644 --- a/doc/en/Gtk/TargetEntry.xml +++ b/doc/en/Gtk/TargetEntry.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -61,7 +58,6 @@ a a a - a diff --git a/doc/en/Gtk/TargetFlags.xml b/doc/en/Gtk/TargetFlags.xml index 4d770cf68..3603d0f2a 100644 --- a/doc/en/Gtk/TargetFlags.xml +++ b/doc/en/Gtk/TargetFlags.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,18 +15,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.TargetFlagsGType)) + + + System.Flags + + @@ -70,4 +64,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TargetList.xml b/doc/en/Gtk/TargetList.xml index 135a47e16..8f4cc0bac 100644 --- a/doc/en/Gtk/TargetList.xml +++ b/doc/en/Gtk/TargetList.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ GLib.Opaque - @@ -26,7 +23,6 @@ Basic constructor - an empty @@ -40,7 +36,6 @@ Constructor an array of - a initialized from @@ -54,7 +49,6 @@ Internal constructor a - a wrapping This is an internal constructor, and should not be used by user code. @@ -241,4 +235,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TargetPair.xml b/doc/en/Gtk/TargetPair.xml index baaa8987e..f09111793 100644 --- a/doc/en/Gtk/TargetPair.xml +++ b/doc/en/Gtk/TargetPair.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -58,7 +55,7 @@ Do not use. a - a + a diff --git a/doc/en/Gtk/TearoffMenuItem.xml b/doc/en/Gtk/TearoffMenuItem.xml index c8412a970..355076a8c 100644 --- a/doc/en/Gtk/TearoffMenuItem.xml +++ b/doc/en/Gtk/TearoffMenuItem.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -34,20 +32,7 @@ Gtk.MenuItem - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -71,7 +56,6 @@ Internal constructor Pointer to the C object. - An instance of TearoffMenuItem, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -84,7 +68,6 @@ Creates a new - a new . @@ -97,7 +80,7 @@ GType Property. - a + a Returns the native value for . @@ -111,9 +94,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/TestCollapseRowArgs.xml b/doc/en/Gtk/TestCollapseRowArgs.xml index fe85c119d..31f1ad35e 100644 --- a/doc/en/Gtk/TestCollapseRowArgs.xml +++ b/doc/en/Gtk/TestCollapseRowArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The path of the row being tested for collapsability. - A + A @@ -52,9 +48,9 @@ The row being tested for collapsability. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/TestCollapseRowHandler.xml b/doc/en/Gtk/TestCollapseRowHandler.xml index 7e666c8aa..a1230da19 100644 --- a/doc/en/Gtk/TestCollapseRowHandler.xml +++ b/doc/en/Gtk/TestCollapseRowHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TestExpandRowArgs.xml b/doc/en/Gtk/TestExpandRowArgs.xml index e9476b9b5..6997f54af 100644 --- a/doc/en/Gtk/TestExpandRowArgs.xml +++ b/doc/en/Gtk/TestExpandRowArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The path of the row being tested for expandability. - A + A @@ -52,9 +48,9 @@ The row being tested for expandability. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/TestExpandRowHandler.xml b/doc/en/Gtk/TestExpandRowHandler.xml index bbfb75a03..855b95bd0 100644 --- a/doc/en/Gtk/TestExpandRowHandler.xml +++ b/doc/en/Gtk/TestExpandRowHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TextAppearance.xml b/doc/en/Gtk/TextAppearance.xml index 6a7bce1d0..2917efd1c 100644 --- a/doc/en/Gtk/TextAppearance.xml +++ b/doc/en/Gtk/TextAppearance.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -58,7 +55,7 @@ A stipple (dotted) pattern for the foreground color. a 1-bit-deep - a + a @@ -73,7 +70,7 @@ A stipple (dotted) pattern for the background color. a 1-bit-deep - a + a @@ -127,6 +124,7 @@ Style of underlining for this text. + To be added. @@ -138,9 +136,9 @@ Whether or not the text should be struck-through. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/TextAttributes.xml b/doc/en/Gtk/TextAttributes.xml index 44411b864..771d8f4ab 100644 --- a/doc/en/Gtk/TextAttributes.xml +++ b/doc/en/Gtk/TextAttributes.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -123,7 +120,7 @@ The language of this text. a - a + a @@ -138,7 +135,7 @@ The tab stops for this text. a - a + a @@ -153,7 +150,7 @@ The font for this text. a - a + a @@ -166,7 +163,7 @@ GType Property. - a + a Returns the native value for . @@ -322,7 +319,7 @@ Whether or not the text should be hidden. - a + a @@ -335,7 +332,7 @@ Whether background is fit to full line height - a + a @@ -348,7 +345,7 @@ Whether or not the text is editable. - a + a @@ -361,9 +358,41 @@ Whether or not the attribute is fully-realized. - a + a + + + Method + + GLib.Value + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Gtk.TextAttributes + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gtk/TextBuffer.xml b/doc/en/Gtk/TextBuffer.xml index 4a3d81725..a28bd009a 100644 --- a/doc/en/Gtk/TextBuffer.xml +++ b/doc/en/Gtk/TextBuffer.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,14 +17,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -877,7 +868,6 @@ Internal constructor Pointer to the C object. - An instance of TextBuffer, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -893,7 +883,6 @@ Creates a new text buffer. a tag table, or to create a new one - a newly created TextBuffer @@ -908,7 +897,7 @@ The complete contents of the buffer a string to be the contents of the buffer - The contents of the current buffer + The contents of the current buffer @@ -920,7 +909,7 @@ Obtains the number of lines in the buffer. - The number of lines in the buffer + The number of lines in the buffer The results of this method is cached, so this is very fast. @@ -936,7 +925,7 @@ The end of the buffer - The location of the end of the buffer + The location of the end of the buffer @@ -954,10 +943,10 @@ if the buffer has been modified, otherwise. - + if the buffer has been modified, otherwise. - + Whenever the buffer is saved to disk, set this property to @@ -978,10 +967,14 @@ The tag table of the current buffer - The current of the buffer + The current of the buffer - + + + GLib.Property(Name="tag_table") + + Property @@ -990,7 +983,7 @@ Returns the mark that represents the selection bound. - a + a Returns the mark that represents the selection @@ -1017,7 +1010,7 @@ Returns the mark that represents the cursor (insertion point). - The mark of the insert point. + The mark of the insert point. This is equivelant to calling for the @@ -1034,7 +1027,7 @@ The number of characters in the buffer - The number of characters in the buffer + The number of characters in the buffer The result of this method is cached, so it is very fast. @@ -1048,7 +1041,7 @@ The location of the beginning of the buffer - The location of the beginning of the buffer + The location of the beginning of the buffer This is the equivelant to calling to get the iter at character offset 0. @@ -1067,7 +1060,11 @@ Emitted when a UserAction ends on the buffer. - + + + GLib.Signal(CName="end_user_action") + + Event @@ -1079,7 +1076,11 @@ Emitted when a tag is removed from the buffer. - + + + GLib.Signal(CName="remove_tag") + + Event @@ -1091,7 +1092,11 @@ Emitted when a UserAction is begun on the buffer. - + + + GLib.Signal(CName="begin_user_action") + + Event @@ -1103,7 +1108,11 @@ Emitted when a mark is set in the buffer. - + + + GLib.Signal(CName="mark_set") + + Event @@ -1115,7 +1124,11 @@ Emitted when a tag is applied to the buffer. - + + + GLib.Signal(CName="apply_tag") + + Event @@ -1127,7 +1140,11 @@ Emitted when a ChildAnchor has been inserted in the buffer. - + + + GLib.Signal(CName="insert_child_anchor") + + Event @@ -1139,7 +1156,11 @@ Emitted when a mark has been deleted from the buffer. - + + + GLib.Signal(CName="mark_deleted") + + Event @@ -1151,7 +1172,11 @@ Emitted when a range of text has been deleted from the buffer. - + + + GLib.Signal(CName="delete_range") + + Event @@ -1163,7 +1188,11 @@ Emitted when a Pixbuf is inserted into the buffer. - + + + GLib.Signal(CName="insert_pixbuf") + + Event @@ -1175,7 +1204,11 @@ Emitted when the text in the buffer has been changed. - + + + GLib.Signal(CName="changed") + + Event @@ -1187,7 +1220,11 @@ Emitted when text is inserted into the buffer. - + + + GLib.Signal(CName="insert_text") + + Event @@ -1199,7 +1236,11 @@ Emitted when the Modified status of the buffer is changed. - + + + GLib.Signal(CName="modified_changed") + + Method @@ -1356,7 +1397,7 @@ GType Property. - a + a Returns the native value for . @@ -1556,10 +1597,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -1660,7 +1704,13 @@ - + + + + System.ParamArray + + + Inserts into buffer at , applying the list of to the newly-inserted text. @@ -1671,7 +1721,7 @@ - + Method System.Void @@ -1679,7 +1729,13 @@ - + + + + System.ParamArray + + + Inserts into buffer at , applying the list of tags with names to the newly-inserted text. @@ -1736,4 +1792,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TextCharPredicate.xml b/doc/en/Gtk/TextCharPredicate.xml index 779e04ce6..d6545c296 100644 --- a/doc/en/Gtk/TextCharPredicate.xml +++ b/doc/en/Gtk/TextCharPredicate.xml @@ -1,32 +1,24 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. A delegate to be run over each character of a text buffer. Used by and . Generally, it's a search function of some sort. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - - + System.Boolean - \ No newline at end of file + diff --git a/doc/en/Gtk/TextChildAnchor.xml b/doc/en/Gtk/TextChildAnchor.xml index 26c3000bc..f667ca7ee 100644 --- a/doc/en/Gtk/TextChildAnchor.xml +++ b/doc/en/Gtk/TextChildAnchor.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -48,7 +39,6 @@ Internal constructor Pointer to the C object. - An instance of TextChildAnchor, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -61,7 +51,6 @@ Creates a new TextChildAnchor - a new To create a new , you @@ -79,9 +68,9 @@ Determines whether the child anchor has been deleted from the buffer. - + if the child anchor has been deleted from its buffer - + @@ -94,7 +83,7 @@ GType Property. - a + a Returns the native value for . @@ -108,12 +97,15 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - + Property Gtk.Widget[] @@ -121,9 +113,9 @@ Gets a list of all widgets anchored at this child anchor. - An array of widgets anchored. + An array of widgets anchored. - \ No newline at end of file + diff --git a/doc/en/Gtk/TextDeletedArgs.xml b/doc/en/Gtk/TextDeletedArgs.xml index 1c894eb4b..f68264507 100644 --- a/doc/en/Gtk/TextDeletedArgs.xml +++ b/doc/en/Gtk/TextDeletedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -38,7 +36,6 @@ GLib.SignalArgs - @@ -47,7 +44,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -59,7 +55,7 @@ The end position within the widget for the text that was deleted. - An integer for the end position; this character is not included in the deleted text. + An integer for the end position; this character is not included in the deleted text. @@ -71,9 +67,9 @@ The start position within the widget for the text that was deleted. - An integer for the start position. + An integer for the start position. - \ No newline at end of file + diff --git a/doc/en/Gtk/TextDeletedHandler.xml b/doc/en/Gtk/TextDeletedHandler.xml index 64eb671b8..f6e1a7109 100644 --- a/doc/en/Gtk/TextDeletedHandler.xml +++ b/doc/en/Gtk/TextDeletedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -36,15 +37,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -53,4 +45,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TextDirection.xml b/doc/en/Gtk/TextDirection.xml index 9d50544df..ffe26987a 100644 --- a/doc/en/Gtk/TextDirection.xml +++ b/doc/en/Gtk/TextDirection.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.TextDirectionGType)) + + @@ -82,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TextEventArgs.xml b/doc/en/Gtk/TextEventArgs.xml index afc9ffbbf..abe55756c 100644 --- a/doc/en/Gtk/TextEventArgs.xml +++ b/doc/en/Gtk/TextEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,7 +37,7 @@ The object that triggered this event. - a + a @@ -54,7 +50,7 @@ The Gdk event related to the TextEvent. - a + a @@ -67,9 +63,9 @@ The location in the text where the event happened. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/TextEventHandler.xml b/doc/en/Gtk/TextEventHandler.xml index 3b237db22..3e130a3ee 100644 --- a/doc/en/Gtk/TextEventHandler.xml +++ b/doc/en/Gtk/TextEventHandler.xml @@ -1,15 +1,15 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TextInsertedArgs.xml b/doc/en/Gtk/TextInsertedArgs.xml index b8b081bad..e36c7743a 100644 --- a/doc/en/Gtk/TextInsertedArgs.xml +++ b/doc/en/Gtk/TextInsertedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -38,7 +36,6 @@ GLib.SignalArgs - @@ -47,7 +44,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -59,7 +55,7 @@ The position at which to insert the new text. On return, it should point to the position after the inserted text. - An integer, the insert position. + An integer, the insert position. @@ -71,7 +67,7 @@ The length of the inserted text. - An integer, the length of the inserted text. + An integer, the length of the inserted text. @@ -83,9 +79,9 @@ The text that was inserted. - A string that was inserted. + A string that was inserted. - \ No newline at end of file + diff --git a/doc/en/Gtk/TextInsertedHandler.xml b/doc/en/Gtk/TextInsertedHandler.xml index 81372dc66..0e498a315 100644 --- a/doc/en/Gtk/TextInsertedHandler.xml +++ b/doc/en/Gtk/TextInsertedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The following events utilize this delegate: @@ -36,15 +37,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -53,4 +45,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TextIter.xml b/doc/en/Gtk/TextIter.xml index 433a2d50f..683421810 100644 --- a/doc/en/Gtk/TextIter.xml +++ b/doc/en/Gtk/TextIter.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -854,7 +851,7 @@ The values parameter should be initialized to the default settings you wish to u Returns the number of bytes from the start of the line to the given iter, not counting bytes that are invisible due to tags with the "invisible" flag toggled on. a - byte index of iter with respect to the start of the line + byte index of iter with respect to the start of the line @@ -866,7 +863,7 @@ The values parameter should be initialized to the default settings you wish to u If the location at iter contains a child anchor, the anchor is returned. Otherwise, is returned. - the anchor at iter + the anchor at iter @@ -878,7 +875,7 @@ The values parameter should be initialized to the default settings you wish to u Number of characters in the TextIter's line. - Returns the number of characters in the TextIter's current line, including the paragraph delimiters. + Returns the number of characters in the TextIter's current line, including the paragraph delimiters. None. @@ -893,7 +890,7 @@ The values parameter should be initialized to the default settings you wish to u Line number the iterator is currently on. Moves the iterator to this line number. - The line number the iterator is currently on. + The line number the iterator is currently on. Lines in a are numbered beginning with 0 for the first line in the buffer. @@ -905,7 +902,7 @@ The values parameter should be initialized to the default settings you wish to u Returns the number of bytes in the line containing iter, including the paragraph delimiters. - number of bytes in the line + number of bytes in the line @@ -917,7 +914,7 @@ The values parameter should be initialized to the default settings you wish to u Character the TextIter points to. - a 1 character length string container the character pointed to by the TextIter + a 1 character length string container the character pointed to by the TextIter Even though this property returns a string, it will never hold more than a single character. @@ -932,7 +929,7 @@ The values parameter should be initialized to the default settings you wish to u Manipulates the offset from the start of the buffer. Moves the iter to the offset provided. - Returns the offset of the iter from the start of the buffer. + Returns the offset of the iter from the start of the buffer. None. @@ -944,7 +941,7 @@ The values parameter should be initialized to the default settings you wish to u return the pixbuf at this iter, if it is one. - the pixbuf at iter + the pixbuf at iter If the element at iter is a , the Pixbuf is returned. Otherwise, is returned. @@ -956,7 +953,7 @@ The values parameter should be initialized to the default settings you wish to u A convenience wrapper around , which returns the language in effect at iter. - language in effect at iter + language in effect at iter If no tags affecting language apply to iter, the return value is identical to that of . @@ -971,7 +968,7 @@ The values parameter should be initialized to the default settings you wish to u Returns the byte index of the iterator, counting from the start of a newline-terminated line. a - distance from start of line, in bytes + distance from start of line, in bytes Remember that encodes text in UTF-8, and that characters can require a variable number of bytes to represent. @@ -986,7 +983,7 @@ The values parameter should be initialized to the default settings you wish to u Returns the character offset of the iterator, counting from the start of a newline-terminated line. a - offset from start of line + offset from start of line The first character on the line has offset 0. @@ -1001,7 +998,7 @@ The values parameter should be initialized to the default settings you wish to u Returns the offset in characters from the start of the line to the given iter, not counting characters that are invisible due to tags with the "invisible" flag toggled on. a - offset in visible characters from the start of the line + offset in visible characters from the start of the line @@ -1013,7 +1010,7 @@ The values parameter should be initialized to the default settings you wish to u Obtains the buffer the iter is in - containing buffer + containing buffer @@ -1081,7 +1078,7 @@ If the GTK_TEXT_SEARCH_VISIBLE_ONLY flag is present, the match may have invisibl Returns true if the iterator is at the end of the parent - true if the iterator is equal to Buffer.EndIter + true if the iterator is equal to Buffer.EndIter The most efficient way to check whether an iterator is the end iterator. @@ -1094,7 +1091,7 @@ If the GTK_TEXT_SEARCH_VISIBLE_ONLY flag is present, the match may have invisibl Returns if iter is the first iterator in the buffer, that is if iter has a character offset of 0. - whether iter is the first in the buffer + whether iter is the first in the buffer @@ -1107,7 +1104,7 @@ If the GTK_TEXT_SEARCH_VISIBLE_ONLY flag is present, the match may have invisibl returns true if the iter is at the caret - a + a returns true if this iterator equals the iterator returned by @@ -1120,12 +1117,12 @@ If the GTK_TEXT_SEARCH_VISIBLE_ONLY flag is present, the match may have invisibl GType Property. - a + a Returns the native value for . - + Property Gtk.TextMark[] @@ -1133,12 +1130,12 @@ If the GTK_TEXT_SEARCH_VISIBLE_ONLY flag is present, the match may have invisibl Returns an array of at this location. - a + a Because marks are not iterable (they do not take up any "space" in the buffer, they are just marks in between iterable locations), multiple marks can exist in the same place. The returned list is not in any meaningful order. - + Property Gtk.TextTag[] @@ -1146,7 +1143,7 @@ If the GTK_TEXT_SEARCH_VISIBLE_ONLY flag is present, the match may have invisibl Returns an array of tags that apply to iter, in ascending order of priority (highest-priority tags are last). - a + a @@ -1176,12 +1173,12 @@ If the GTK_TEXT_SEARCH_VISIBLE_ONLY flag is present, the match may have invisibl - Moves up to visible cursor positions. + Moves up to visible cursor positions. a - a , true if the iter was moved and is in a dereferenceable position. + a , true if the iter was moved and is in a dereferenceable position. - See for details. + See for details. @@ -1195,10 +1192,10 @@ If the GTK_TEXT_SEARCH_VISIBLE_ONLY flag is present, the match may have invisibl - Calls up to times. + Calls up to times. a a , true if the iterator moved and is not at the end of the text. - + @@ -1211,7 +1208,7 @@ If the GTK_TEXT_SEARCH_VISIBLE_ONLY flag is present, the match may have invisibl Moves the iterator forward to the next visible cursor position. a - See for details. + See for details. @@ -1224,10 +1221,10 @@ If the GTK_TEXT_SEARCH_VISIBLE_ONLY flag is present, the match may have invisibl - Moves backward up to visible cursor positions. + Moves backward up to visible cursor positions. a a , true if the cursor was moved and is in a dereferenceable position. - See for details. + See for details. @@ -1262,7 +1259,7 @@ If the GTK_TEXT_SEARCH_VISIBLE_ONLY flag is present, the match may have invisibl Moves the iterator back to the previous visible cursor position. a , true if the iter moved and the new position is dereferenceable - See for details. + See for details. @@ -1309,5 +1306,37 @@ If the GTK_TEXT_SEARCH_VISIBLE_ONLY flag is present, the match may have invisibl + + + Method + + GLib.Value + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Gtk.TextIter + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/doc/en/Gtk/TextMark.xml b/doc/en/Gtk/TextMark.xml index 0bd64b405..9de530f43 100644 --- a/doc/en/Gtk/TextMark.xml +++ b/doc/en/Gtk/TextMark.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -41,14 +39,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -72,7 +63,6 @@ Internal constructor Pointer to the C object. - An instance of TextMark, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -86,10 +76,10 @@ The name of the mark - + Returns the name of the mark and if it's an anonymous mark - + @@ -101,7 +91,7 @@ Whether or not the mark has been removed - Returns if the mark has been removed from its buffer. + Returns if the mark has been removed from its buffer. Returns if the mark has been @@ -119,10 +109,10 @@ Whether or not the mark has left gravity - + if the mark has left gravity, otherwise. - + "left" and "right" here refer to logical direction (left is the toward the start of the buffer); in some languages such @@ -142,8 +132,8 @@ The visibility of the mark The visibility of the mark - - if the mark is visible (i.e. a cursor is displayed for it) + + if the mark is visible (i.e. a cursor is displayed for it) The insertion point is normally visible, i.e. you can see @@ -165,7 +155,7 @@ Gets the buffer where this mark is located - The buffer where this mark is applied + The buffer where this mark is applied is returned if the mark has been deleted. @@ -180,7 +170,7 @@ GType Property. - a + a Returns the native value for . @@ -194,10 +184,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -205,9 +198,8 @@ Default constructor - a - \ No newline at end of file + diff --git a/doc/en/Gtk/TextPendingScroll.xml b/doc/en/Gtk/TextPendingScroll.xml index 234cf1908..a9bcc5039 100644 --- a/doc/en/Gtk/TextPendingScroll.xml +++ b/doc/en/Gtk/TextPendingScroll.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,7 +27,6 @@ Internal constructor Pointer to the C object. - An instance of TextPendingScroll, wrapping the C object. This is an internal constructor, and should not be used by user code. diff --git a/doc/en/Gtk/TextPoppedArgs.xml b/doc/en/Gtk/TextPoppedArgs.xml index 00cc3d509..21bc94d49 100644 --- a/doc/en/Gtk/TextPoppedArgs.xml +++ b/doc/en/Gtk/TextPoppedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ GLib.SignalArgs - @@ -26,7 +23,6 @@ Creates a new object that encapsulates the data that has been popped from a message stack. - A new TextPoppedArgs object. @@ -38,7 +34,7 @@ Retrieve the text that was 'popped'. - The string removed from the top of the Statusbar's message stack + The string removed from the top of the Statusbar's message stack @@ -50,9 +46,9 @@ Retrieve the context identifier for the message that was removed. - An integer context ID. + An integer context ID. - \ No newline at end of file + diff --git a/doc/en/Gtk/TextPoppedHandler.xml b/doc/en/Gtk/TextPoppedHandler.xml index a62c59d5b..ac7f48deb 100644 --- a/doc/en/Gtk/TextPoppedHandler.xml +++ b/doc/en/Gtk/TextPoppedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. An event that is fired when messages are popped from the message stack of a . This event passes data to its handlers with the class. @@ -15,15 +16,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -32,4 +24,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TextPushedArgs.xml b/doc/en/Gtk/TextPushedArgs.xml index 212d15c07..33c4b6310 100644 --- a/doc/en/Gtk/TextPushedArgs.xml +++ b/doc/en/Gtk/TextPushedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ GLib.SignalArgs - @@ -26,7 +23,6 @@ Creates a new object that encapsulates the data that has been pushed onto a message stack. - A new TextPushedArgs object. @@ -38,7 +34,7 @@ Retrieve the text that was 'pushed'. - The string added to the top of the Statusbar's message stack + The string added to the top of the Statusbar's message stack @@ -50,9 +46,9 @@ Retrieve the context identifier for the message that was added. - An integer context ID. + An integer context ID. - \ No newline at end of file + diff --git a/doc/en/Gtk/TextPushedHandler.xml b/doc/en/Gtk/TextPushedHandler.xml index a367a4a7f..aeac9add7 100644 --- a/doc/en/Gtk/TextPushedHandler.xml +++ b/doc/en/Gtk/TextPushedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. An event that is fired when messages are pushed onto the message stack of a . This event passes data to its handlers with the class. @@ -15,15 +16,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -32,4 +24,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TextSearchFlags.xml b/doc/en/Gtk/TextSearchFlags.xml index ac66095d1..f9cdd61bc 100644 --- a/doc/en/Gtk/TextSearchFlags.xml +++ b/doc/en/Gtk/TextSearchFlags.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.TextSearchFlagsGType)) + + + System.Flags + + @@ -67,4 +61,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TextTag.xml b/doc/en/Gtk/TextTag.xml index ca6854389..c204885fa 100644 --- a/doc/en/Gtk/TextTag.xml +++ b/doc/en/Gtk/TextTag.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -25,14 +23,7 @@ Tags should be in the for a given @@ -76,7 +67,6 @@ Tags should be in the for a given Pointer to the C object. - An instance of TextTag, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -95,7 +85,6 @@ Tags should be in the for a given if it's an anonymous tag - the newly created TextTag @@ -110,7 +99,7 @@ Tags should be in the for a given the new priority - The priority of the current tag + The priority of the current tag Sets the priority of a . Valid priorities are @@ -145,9 +134,14 @@ Tags should be in the for a given to strike through the text - Whether to strike through the text> - - + Whether to strike through the text + + + + + GLib.Property(Name="strikethrough") + + Property @@ -159,10 +153,14 @@ Tags should be in the for a given Whether this text is hidden. - Whether or not this text is hidden + Whether or not this text is hidden - + + + GLib.Property(Name="invisible") + + Property @@ -174,10 +172,14 @@ Tags should be in the for a given a bitmap - a bitmap + a bitmap - + + + GLib.Property(Name="foreground_stipple") + + Property @@ -189,10 +191,14 @@ Tags should be in the for a given Offset of text above the baseline in pixels - Offset of the text above the baseline + Offset of the text above the baseline Offset of text above the baseline (below the baseline if rise is negative) in pixels. - + + + GLib.Property(Name="rise") + + Property @@ -204,10 +210,14 @@ Tags should be in the for a given Width of the right margin in pixels. - Width of the right margin + Width of the right margin - + + + GLib.Property(Name="right_margin") + + Property @@ -219,14 +229,18 @@ Tags should be in the for a given Name of the font family - The name of the font family + The name of the font family Name of the font family, e.g. Sans, Helvetica, Times, Monospace. - + + + GLib.Property(Name="family") + + Property @@ -238,10 +252,14 @@ Tags should be in the for a given the font description as a string - the font description as a string + the font description as a string Font description as a string, e.g. "Sans Italic 12". - + + + GLib.Property(Name="font") + + Property @@ -253,10 +271,14 @@ Tags should be in the for a given a - font stretch + font stretch - + + + GLib.Property(Name="stretch") + + Property @@ -269,10 +291,14 @@ Tags should be in the for a given if the thext is editable - whether the text can be modified by the user + whether the text can be modified by the user - + + + GLib.Property(Name="editable") + + Property @@ -284,14 +310,18 @@ Tags should be in the for a given a - the justification of the current text + the justification of the current text Left, right, or center justification. - + + + GLib.Property(Name="justification") + + Property @@ -303,10 +333,14 @@ Tags should be in the for a given pixels of blank space - An integer + An integer - + + + GLib.Property(Name="pixels_inside_wrap") + + Property @@ -318,10 +352,14 @@ Tags should be in the for a given pixels of blank space - Pixels of blank space below paragraphs. + Pixels of blank space below paragraphs. - + + + GLib.Property(Name="pixels_below_lines") + + Property @@ -334,10 +372,14 @@ Tags should be in the for a given The bitmap of type - The background bitmap + The background bitmap - + + + GLib.Property(Name="background_stipple") + + Property @@ -349,10 +391,14 @@ Tags should be in the for a given The width of the left margin in pixels - The width of the margin + The width of the margin - + + + GLib.Property(Name="left_margin") + + Property @@ -364,10 +410,14 @@ Tags should be in the for a given Font size in points. - The font size + The font size - + + + GLib.Property(Name="size_points") + + Property @@ -379,10 +429,14 @@ Tags should be in the for a given The direction of the text - The text direction + The text direction - + + + GLib.Property(Name="direction") + + Property @@ -396,10 +450,14 @@ Tags should be in the for a given The number of pixels of blank space above the paragraphs. - The blank space above the paragraphs in pixels + The blank space above the paragraphs in pixels - + + + GLib.Property(Name="pixels_above_lines") + + Property @@ -411,10 +469,14 @@ Tags should be in the for a given The of this tag - a + a - + + + GLib.Property(Name="wrap_mode") + + Property @@ -423,13 +485,17 @@ Tags should be in the for a given if it's an anonymous tag - + - + + + GLib.Property(Name="name") + + Property @@ -441,10 +507,14 @@ Tags should be in the for a given The amount to indent in pixels - The indent of the paragraph + The indent of the paragraph - + + + GLib.Property(Name="indent") + + Property @@ -456,10 +526,14 @@ Tags should be in the for a given the foreground color as a string - the foreground color + the foreground color - + + + GLib.Property(Name="foreground") + + Property @@ -475,10 +549,14 @@ Tags should be in the for a given The background color as a . - The background color + The background color - + + + GLib.Property(Name="background_gdk") + + Property @@ -494,10 +572,14 @@ Tags should be in the for a given The foreground color as a . - The foreground color + The foreground color - + + + GLib.Property(Name="foreground_gdk") + + Property @@ -509,10 +591,14 @@ Tags should be in the for a given a - the custom tabs for this text + the custom tabs for this text - + + + GLib.Property(Name="tabs") + + Property @@ -524,10 +610,14 @@ Tags should be in the for a given the underline style - The underline style for this text + The underline style for this text - + + + GLib.Property(Name="underline") + + Property @@ -541,7 +631,7 @@ Tags should be in the for a given Font size as a scale factor relative to the default font size. - The font size as a scale factor + The font size as a scale factor This properly adapts to theme changes etc. so is @@ -549,7 +639,11 @@ Tags should be in the for a given + + Property @@ -561,10 +655,14 @@ Tags should be in the for a given The ISO code of the language - The ISO code of the language of this text + The ISO code of the language of this text - + + + GLib.Property(Name="language") + + Property @@ -576,10 +674,14 @@ Tags should be in the for a given Font size - The font size in Pango units + The font size in Pango units - + + + GLib.Property(Name="size") + + Property @@ -592,10 +694,14 @@ Tags should be in the for a given The font style in as a - the font style of this text + the font style of this text - + + + GLib.Property(Name="style") + + Property @@ -608,10 +714,14 @@ Tags should be in the for a given The font variant as a - The font variant of this text + The font variant of this text - + + + GLib.Property(Name="variant") + + Property @@ -623,10 +733,14 @@ Tags should be in the for a given The name of the background color - + - + + + GLib.Property(Name="background") + + Property @@ -638,10 +752,14 @@ Tags should be in the for a given a - a + a - + + + GLib.Property(Name="font_desc") + + Property @@ -656,10 +774,14 @@ Tags should be in the for a given if the background color fills the entire line height - Whether the background color fills the entire line height or only the height of the tagged characters. + Whether the background color fills the entire line height or only the height of the tagged characters. - + + + GLib.Property(Name="background_full_height") + + Property @@ -669,7 +791,7 @@ Tags should be in the for a given + a see predefined values in ; for example, . @@ -694,7 +816,11 @@ Default value: 400 Fired whenever this text tag explicitly fires an event; general-purpose event. - + + + GLib.Signal(CName="event") + + Property @@ -704,7 +830,7 @@ Default value: 400 GType Property. - a + a Returns the native value for . @@ -738,9 +864,12 @@ Default value: 400 Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/TextTagTable.xml b/doc/en/Gtk/TextTagTable.xml index c209e4766..2f7207a3a 100644 --- a/doc/en/Gtk/TextTagTable.xml +++ b/doc/en/Gtk/TextTagTable.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,14 +22,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -125,7 +116,6 @@ Internal constructor Pointer to the C object. - An instance of TextTagTable, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -138,7 +128,6 @@ Default constructor - a @@ -150,7 +139,7 @@ The size of the table - The number of the tags in this table + The number of the tags in this table @@ -165,7 +154,11 @@ Emitted when a tag is removed from the table - + + + GLib.Signal(CName="tag_removed") + + Event @@ -177,7 +170,11 @@ Emitted when a tag in the table is changed - + + + GLib.Signal(CName="tag_changed") + + Event @@ -189,7 +186,11 @@ Emitted when a tag is added to the table - + + + GLib.Signal(CName="tag_added") + + Property @@ -199,7 +200,7 @@ GType Property. - a + a Returns the native value for . @@ -260,9 +261,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/TextTagTableForeach.xml b/doc/en/Gtk/TextTagTableForeach.xml index 6247411bd..9ec6e7690 100644 --- a/doc/en/Gtk/TextTagTableForeach.xml +++ b/doc/en/Gtk/TextTagTableForeach.xml @@ -1,27 +1,18 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. A delegate function to be run on every in a . Callable by System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -29,4 +20,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TextView.xml b/doc/en/Gtk/TextView.xml index bb9001065..8760d0b6b 100644 --- a/doc/en/Gtk/TextView.xml +++ b/doc/en/Gtk/TextView.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -64,20 +62,7 @@ class TextViewSample Gtk.Container - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -609,7 +594,6 @@ class TextViewSample Internal constructor Pointer to the C object. - An instance of TextView, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -622,7 +606,6 @@ class TextViewSample Creates a new TextView - the newly-created TextView If you don't set the before using @@ -643,7 +626,6 @@ class TextViewSample Creates a new TextView displaying a specified buffer. the buffer to be displayed - a newly-created TextView Creates a new widget @@ -661,7 +643,7 @@ class TextViewSample The default text attributes - a s + a s Obtains a copy of the default text attributes. These are @@ -690,10 +672,14 @@ class TextViewSample The displayed by the text view the new buffer to be displayed - the current buffer that is displayed + the current buffer that is displayed - + + + GLib.Property(Name="buffer") + + Property @@ -708,10 +694,14 @@ class TextViewSample to display the insertion point - whether the insertion point is visible + whether the insertion point is visible - + + + GLib.Property(Name="cursor_visible") + + Property @@ -723,10 +713,14 @@ class TextViewSample The default left margin the left margin in pixels - the left margin + the left margin - + + + GLib.Property(Name="left_margin") + + Property @@ -738,10 +732,14 @@ class TextViewSample The default right margin the right margin in pixels - the right margin + the right margin - + + + GLib.Property(Name="right_margin") + + Property @@ -753,7 +751,7 @@ class TextViewSample The default number of blank pixels above paragraphs the number of pixels above paragraphs - the number of pixels above paragraphs + the number of pixels above paragraphs Tags in the may @@ -761,7 +759,11 @@ class TextViewSample - + + + GLib.Property(Name="pixels_above_lines") + + Property @@ -773,7 +775,7 @@ class TextViewSample The default justification The for the text - The default justification of paragraphs + The default justification of paragraphs Tags in the may @@ -781,7 +783,11 @@ class TextViewSample - + + + GLib.Property(Name="justification") + + Property @@ -793,14 +799,18 @@ class TextViewSample The default indentation for paragraphs the indentation in pixels - the number of pixels of indentation + the number of pixels of indentation Tags in the may override the default. - + + + GLib.Property(Name="indent") + + Property @@ -814,12 +824,16 @@ class TextViewSample if the text is editable by the user - + whether or not the text can be edited by the user - + - + + + GLib.Property(Name="editable") + + Property @@ -831,10 +845,14 @@ class TextViewSample Whether to wrap lines never, at word boundaries, or at character boundaries. a - the of the text view + the of the text view - + + + GLib.Property(Name="wrap_mode") + + Property @@ -846,10 +864,14 @@ class TextViewSample Custom tabs for this text a - custom tabes for this text + custom tabes for this text - + + + GLib.Property(Name="tabs") + + Property @@ -861,7 +883,7 @@ class TextViewSample The default number of pixels of blank space to put below paragraphs the number of pixels of blank space below paragraphs - the blank space below paragraphs in pixels + the blank space below paragraphs in pixels Tags in the may @@ -869,7 +891,11 @@ class TextViewSample - + + + GLib.Property(Name="pixels_below_lines") + + Property @@ -881,7 +907,7 @@ class TextViewSample The default number of pixels of blank space to leave between display/wrapped lines within a paragraph default number of pixels between wrapped lines - default number of pixels of blank space between wrapped lines + default number of pixels of blank space between wrapped lines Tags in the may @@ -889,7 +915,11 @@ class TextViewSample - + + + GLib.Property(Name="pixels_inside_wrap") + + Event @@ -901,7 +931,11 @@ class TextViewSample Fired whenever the adjustment values for the scrollbars are set. - + + + GLib.Signal(CName="set_scroll_adjustments") + + Event @@ -913,7 +947,11 @@ class TextViewSample Fired whenever an anchor (e.g. ) is set within the TextView. - + + + GLib.Signal(CName="set_anchor") + + Event @@ -925,7 +963,11 @@ class TextViewSample Fired whenever the cursor is moved. - + + + GLib.Signal(CName="move_cursor") + + Event @@ -937,7 +979,11 @@ class TextViewSample Fired when the popup dialog on this object needs to be filled with data. - + + + GLib.Signal(CName="populate_popup") + + Event @@ -949,7 +995,11 @@ class TextViewSample Fired when text is deleted from the cursor (usually by hitting Backspace or Delete). - + + + GLib.Signal(CName="delete_from_cursor") + + Event @@ -961,7 +1011,11 @@ class TextViewSample Fired when text is copied to the clipboard. - + + + GLib.Signal(CName="copy_clipboard") + + Event @@ -973,7 +1027,11 @@ class TextViewSample Fired when the keyboard focus changes. - + + + GLib.Signal(CName="move_focus") + + Event @@ -985,7 +1043,11 @@ class TextViewSample Fired when the user scrolls horizontally in this widget. - + + + GLib.Signal(CName="page_horizontally") + + Event @@ -997,7 +1059,11 @@ class TextViewSample Fired whenever the insert/overwrite flag is toggled. - + + + GLib.Signal(CName="toggle_overwrite") + + Event @@ -1009,7 +1075,11 @@ class TextViewSample Fired whenever a selection is cut to the clipboard. - + + + GLib.Signal(CName="cut_clipboard") + + Event @@ -1021,7 +1091,11 @@ class TextViewSample Fired whenever text is inserted at the cursor. - + + + GLib.Signal(CName="insert_at_cursor") + + Event @@ -1033,7 +1107,11 @@ class TextViewSample Fired whenever text is pasted from the clipboard. - + + + GLib.Signal(CName="paste_clipboard") + + Method @@ -1102,7 +1180,7 @@ class TextViewSample GType Property. - a + a Returns the native value for . @@ -1291,10 +1369,13 @@ class TextViewSample Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -1338,10 +1419,14 @@ class TextViewSample Whether Tab will result in a tab character being entered. - a + a Defaults to true. - + + + GLib.Property(Name="accepts_tab") + + Property @@ -1351,10 +1436,14 @@ class TextViewSample Whether entered text overwrites existing contents. - a + a Defaults to false. - + + + GLib.Property(Name="overwrite") + + Property @@ -1364,7 +1453,7 @@ class TextViewSample Returns the currently-visible region of the buffer, in buffer coordinates. - a + a You can convert to window coordinates with . @@ -1381,7 +1470,11 @@ class TextViewSample To be added To be added - + + + GLib.Signal(CName="backspace") + + Method @@ -1415,4 +1508,4 @@ class TextViewSample - \ No newline at end of file + diff --git a/doc/en/Gtk/TextWindow.xml b/doc/en/Gtk/TextWindow.xml index 0a0290071..653e33da7 100644 --- a/doc/en/Gtk/TextWindow.xml +++ b/doc/en/Gtk/TextWindow.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,11 +27,10 @@ Internal constructor Pointer to the C object. - An instance of TextWindow, wrapping the C object. This is an internal constructor, and should not be used by user code. - \ No newline at end of file + diff --git a/doc/en/Gtk/TextWindowType.xml b/doc/en/Gtk/TextWindowType.xml index a887fb52e..1ea21eec9 100644 --- a/doc/en/Gtk/TextWindowType.xml +++ b/doc/en/Gtk/TextWindowType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.TextWindowTypeGType)) + + @@ -134,4 +125,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/ThemeEngine.xml b/doc/en/Gtk/ThemeEngine.xml index 855961581..e64daed6f 100644 --- a/doc/en/Gtk/ThemeEngine.xml +++ b/doc/en/Gtk/ThemeEngine.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - - System.IDisposable - - @@ -36,11 +27,10 @@ Internal constructor Pointer to the C object. - An instance of ThemeEngine, wrapping the C object. This is an internal constructor, and should not be used by user code. - \ No newline at end of file + diff --git a/doc/en/Gtk/ThreadNotify.xml b/doc/en/Gtk/ThreadNotify.xml index 85a4ef310..62ba74331 100644 --- a/doc/en/Gtk/ThreadNotify.xml +++ b/doc/en/Gtk/ThreadNotify.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -52,8 +50,11 @@ class Demo { System.Object - - + + + System.IDisposable + + @@ -77,7 +78,6 @@ class Demo { ThreadNotify constructor A ReadyEvent delegate. - Constructed object. The method referenced by the delegate will be invoked on the Gtk+ mainloop whenever any thread invokes the method. @@ -93,18 +93,7 @@ class Demo { - - - Method - - System.Void - - - - To be added - - - + Method @@ -121,4 +110,4 @@ class Demo { - \ No newline at end of file + diff --git a/doc/en/Gtk/Timeout.xml b/doc/en/Gtk/Timeout.xml index 9fa5770ab..1d269bed0 100644 --- a/doc/en/Gtk/Timeout.xml +++ b/doc/en/Gtk/Timeout.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,11 @@ System.Object - + + + System.Obsolete(Message="Replaced by GLib.Timeout", IsError=False) + + @@ -90,9 +92,8 @@ Internal Constructor - a This should not be called directly by typical applications. - \ No newline at end of file + diff --git a/doc/en/Gtk/TitleChangedArgs.xml b/doc/en/Gtk/TitleChangedArgs.xml index 63458dbcd..a91ee304a 100644 --- a/doc/en/Gtk/TitleChangedArgs.xml +++ b/doc/en/Gtk/TitleChangedArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ Holds the new title for the window. - the new title. + the new title. - \ No newline at end of file + diff --git a/doc/en/Gtk/TitleChangedHandler.xml b/doc/en/Gtk/TitleChangedHandler.xml index 637427b55..841dcaed6 100644 --- a/doc/en/Gtk/TitleChangedHandler.xml +++ b/doc/en/Gtk/TitleChangedHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ToggleAction.xml b/doc/en/Gtk/ToggleAction.xml index 47a262e77..1d8d15c45 100644 --- a/doc/en/Gtk/ToggleAction.xml +++ b/doc/en/Gtk/ToggleAction.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Gtk.Action - - GLib.IWrapper - - - System.IDisposable - - @@ -74,10 +65,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -87,7 +81,9 @@ Internal constructor -label displayed in menu items and on buttons a a This is not typically used by C# code. + a + This is not typically used by C# code. + @@ -105,7 +101,6 @@ label displayed in menu items and on buttons a a , the label displayed in menu items and on buttons a , a tooltip for the action a , the stock icon to display in widgets representing the action - a @@ -119,7 +114,7 @@ label displayed in menu items and on buttons a GType Property. - a + a Returns the native value for . @@ -134,11 +129,15 @@ label displayed in menu items and on buttons a Whether the action should have proxies like a radio action. - a + a - + + + GLib.Property(Name="draw_as_radio") + + Property @@ -148,7 +147,7 @@ label displayed in menu items and on buttons a Sets the checked state on the toggle action. - a , if checked + a , if checked @@ -165,6 +164,10 @@ label displayed in menu items and on buttons a - + + + GLib.Signal(CName="toggled") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/ToggleActionEntry.xml b/doc/en/Gtk/ToggleActionEntry.xml index c03447bc4..2d76bb404 100644 --- a/doc/en/Gtk/ToggleActionEntry.xml +++ b/doc/en/Gtk/ToggleActionEntry.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ System.ValueType - @@ -124,8 +121,8 @@ Public constructor a , a unique name for the action a , the stock icon to display in widgets representing the action - a - + + @@ -142,8 +139,8 @@ a , a unique name for the action a , the stock icon to display in widgets representing the action a , a method to call when the toggle action is activated - a - + + @@ -161,9 +158,9 @@ a , a unique name for the action a , the stock icon to display in widgets representing the action a , a method to call when the toggle action is activated - a , if the toggle action is currently checked - a - + a , if the toggle action is currently checked + + @@ -187,9 +184,9 @@ a , the accelerator key sequence for the action a , a tooltip for the action a , a method to call when the toggle action is activated - a , if the toggle action is currently checked - a - + a , if the toggle action is currently checked + + diff --git a/doc/en/Gtk/ToggleButton.xml b/doc/en/Gtk/ToggleButton.xml index ea784b052..e79dfde30 100644 --- a/doc/en/Gtk/ToggleButton.xml +++ b/doc/en/Gtk/ToggleButton.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -71,20 +69,7 @@ public class ToggleButtonApp { Gtk.Button - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -136,7 +121,6 @@ public class ToggleButtonApp { Internal constructor Pointer to the C object. - An instance of , wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -149,7 +133,6 @@ public class ToggleButtonApp { Creates a new object - an object of type Creates a new , which is a @@ -178,7 +161,6 @@ btn.Add(label); Creates a new with a text label. a containing the message to be placed in the toggle button. - an object of type Creates a new with a text label. ToggleButton btn = new ToggleButton ("ToggleButton"); @@ -196,7 +178,7 @@ btn.Add(label); The Mode of the an object of type - an object of type + an object of type The Mode of the Sets whether the button is displayed as a separate indicator and label. @@ -219,7 +201,7 @@ btn.Add(label); Determines if the has an intermediate state. an object of type - an object of type + an object of type If the user has selected a range of elements (such as some text or spreadsheet cells) that are affected by a , @@ -229,7 +211,11 @@ btn.Add(label); - + + + GLib.Property(Name="inconsistent") + + Property @@ -241,7 +227,7 @@ btn.Add(label); Get or set the active an object of type - an object of type + an object of type Get or set the active. Get: Queries a and returns its current state. @@ -269,7 +255,11 @@ btn.Active = true; - + + + GLib.Property(Name="active") + + Property @@ -281,12 +271,16 @@ btn.Active = true; Determines the drawing style of a or an object of type - an object of type + an object of type The DrawIndicator property can be set to to make or look like a normal . - + + + GLib.Property(Name="draw_indicator") + + Event @@ -309,7 +303,11 @@ void btn_toggled (object obj, EventArgs args) - + + + GLib.Signal(CName="toggled") + + Property @@ -319,7 +317,7 @@ void btn_toggled (object obj, EventArgs args) GType Property. - a + a Returns the native value for . @@ -345,9 +343,12 @@ void btn_toggled (object obj, EventArgs args) Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/ToggleCursorRowArgs.xml b/doc/en/Gtk/ToggleCursorRowArgs.xml index c429f6155..b64142549 100644 --- a/doc/en/Gtk/ToggleCursorRowArgs.xml +++ b/doc/en/Gtk/ToggleCursorRowArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,9 +25,8 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. - \ No newline at end of file + diff --git a/doc/en/Gtk/ToggleCursorRowHandler.xml b/doc/en/Gtk/ToggleCursorRowHandler.xml index c19fbe51b..928e40b95 100644 --- a/doc/en/Gtk/ToggleCursorRowHandler.xml +++ b/doc/en/Gtk/ToggleCursorRowHandler.xml @@ -1,14 +1,14 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -36,4 +27,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ToggleHandleFocusArgs.xml b/doc/en/Gtk/ToggleHandleFocusArgs.xml index d343c196f..02a06f275 100644 --- a/doc/en/Gtk/ToggleHandleFocusArgs.xml +++ b/doc/en/Gtk/ToggleHandleFocusArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,9 +25,8 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. - \ No newline at end of file + diff --git a/doc/en/Gtk/ToggleHandleFocusHandler.xml b/doc/en/Gtk/ToggleHandleFocusHandler.xml index 9fdc2ad6c..92534d25e 100644 --- a/doc/en/Gtk/ToggleHandleFocusHandler.xml +++ b/doc/en/Gtk/ToggleHandleFocusHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ToggleSizeAllocatedArgs.xml b/doc/en/Gtk/ToggleSizeAllocatedArgs.xml index 49c4fad9a..448fa62af 100644 --- a/doc/en/Gtk/ToggleSizeAllocatedArgs.xml +++ b/doc/en/Gtk/ToggleSizeAllocatedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The size that was allocated. - A + A - \ No newline at end of file + diff --git a/doc/en/Gtk/ToggleSizeAllocatedHandler.xml b/doc/en/Gtk/ToggleSizeAllocatedHandler.xml index 78b219486..4b76312e4 100644 --- a/doc/en/Gtk/ToggleSizeAllocatedHandler.xml +++ b/doc/en/Gtk/ToggleSizeAllocatedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ToggleSizeRequestedArgs.xml b/doc/en/Gtk/ToggleSizeRequestedArgs.xml index 85f7750ca..5a5923965 100644 --- a/doc/en/Gtk/ToggleSizeRequestedArgs.xml +++ b/doc/en/Gtk/ToggleSizeRequestedArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The requested toggle size - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/ToggleSizeRequestedHandler.xml b/doc/en/Gtk/ToggleSizeRequestedHandler.xml index 65e730ea8..6cca08eff 100644 --- a/doc/en/Gtk/ToggleSizeRequestedHandler.xml +++ b/doc/en/Gtk/ToggleSizeRequestedHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ToggleToolButton.xml b/doc/en/Gtk/ToggleToolButton.xml index f52be0941..aefad64f3 100644 --- a/doc/en/Gtk/ToggleToolButton.xml +++ b/doc/en/Gtk/ToggleToolButton.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,17 +15,7 @@ Gtk.ToolButton - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -64,11 +52,14 @@ Protected constructor. a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -79,7 +70,6 @@ Constructor for internal use. a , pointer to underlying C object. - a @@ -91,7 +81,6 @@ Public constructor. - a @@ -106,7 +95,6 @@ Public constructor for use with stock items. a , the id of a stock item whose icon and label you want to use - a @@ -120,7 +108,7 @@ The of this object. - a + a @@ -134,7 +122,7 @@ The current state of the toggle button. - a , true if button is pressed in and false if it is raised. + a , true if button is pressed in and false if it is raised. @@ -151,6 +139,10 @@ - + + + GLib.Signal(CName="toggled") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/ToggledArgs.xml b/doc/en/Gtk/ToggledArgs.xml index 57ba37499..7da6bbf88 100644 --- a/doc/en/Gtk/ToggledArgs.xml +++ b/doc/en/Gtk/ToggledArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The object path of the toggle that was changed. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/ToggledHandler.xml b/doc/en/Gtk/ToggledHandler.xml index 182f311de..eddecd1b3 100644 --- a/doc/en/Gtk/ToggledHandler.xml +++ b/doc/en/Gtk/ToggledHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/ToolButton.xml b/doc/en/Gtk/ToolButton.xml index 540d35917..b358c137b 100644 --- a/doc/en/Gtk/ToolButton.xml +++ b/doc/en/Gtk/ToolButton.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,17 +15,7 @@ Gtk.ToolItem - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -64,11 +52,14 @@ Protected constructor. a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -79,7 +70,6 @@ Constructor for internal use only. a , pointer to underlying C object. - a @@ -96,7 +86,6 @@ Public constructor a , a widget that will be used as icon widget, or a , a label for this button, or - a @@ -111,7 +100,6 @@ Public constructor that uses a stock item. a , the name of the stock item - a @@ -125,7 +113,7 @@ The of this object. - a + a @@ -139,11 +127,15 @@ The label for this button. - a + a - + + + GLib.Property(Name="label") + + Property @@ -153,11 +145,15 @@ If this is a stock item, the ID for the stock item. - a + a - + + + GLib.Property(Name="stock_id") + + Property @@ -167,11 +163,15 @@ The label for this button in widget form. - a + a - + + + GLib.Property(Name="label_widget") + + Property @@ -181,11 +181,15 @@ The icon for this button, in widget form. - a + a - + + + GLib.Property(Name="icon_widget") + + Property @@ -195,7 +199,7 @@ Whether the button label has the form "_Open". - a + a If set, an underline in the label property indicates that the next character @@ -210,7 +214,11 @@ - + + + GLib.Property(Name="use_underline") + + Event @@ -224,6 +232,10 @@ - + + + GLib.Signal(CName="clicked") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/ToolItem.xml b/doc/en/Gtk/ToolItem.xml index 8336797d5..09b7cfe03 100644 --- a/doc/en/Gtk/ToolItem.xml +++ b/doc/en/Gtk/ToolItem.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,17 +14,7 @@ Gtk.Bin - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -186,10 +174,13 @@ Protected constructor. a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -200,7 +191,6 @@ Constructor for internal use. Do not use. a , pointer to the underlying C object. - a @@ -211,7 +201,6 @@ Public constructor. - a @@ -224,7 +213,7 @@ The of this object. - a + a @@ -237,10 +226,14 @@ Whether the toolbar item is visible when the toolbar is in a horizontal orientation. - a + a - + + + GLib.Property(Name="visible_horizontal") + + Property @@ -250,10 +243,14 @@ Whether the toolbar item is visible when the toolbar is in a vertical orientation. - a + a - + + + GLib.Property(Name="visible_vertical") + + Property @@ -263,13 +260,17 @@ Whether the toolbar item is considered important. - a + a When TRUE, toolbar buttons show text when the toolbar is in mode. - + + + GLib.Property(Name="is_important") + + Property @@ -280,7 +281,7 @@ Sets some display styles for this toolbar; see for details. - a + a @@ -293,7 +294,7 @@ The orientation used for this tool item. See . - a + a @@ -306,7 +307,7 @@ The size of icons in this toolbar. See . - a + a @@ -321,7 +322,7 @@ Whether this toolitem has a drag window. - a + a When this is TRUE the toolitem can be used as a drag source through . @@ -341,7 +342,7 @@ Returns the relief style of this toolitem. See . - a + a Custom subclasses of should call this function in the handler @@ -362,7 +363,7 @@ Whether this toolitem is allocated extra space when there is more room on the toolbar then needed for the items. - a + a If true, the effect is that the item gets bigger when the toolbar gets bigger and smaller when the toolbar gets smaller. @@ -382,7 +383,7 @@ Whether this toolitem is to be allocated the same size as other homogeneous items. - a + a If true, the effect is that all homogeneous items will have the same width as the widest of the items. @@ -413,7 +414,11 @@ themselves accordingly. - + + + GLib.Signal(CName="toolbar_reconfigured") + + Event @@ -450,7 +455,11 @@ TODO: figure out why there is no rebuild_menu in gtk# - + + + GLib.Signal(CName="create_menu_proxy") + + Event @@ -464,7 +473,11 @@ - + + + GLib.Signal(CName="set_tooltip") + + Method @@ -478,4 +491,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Toolbar+ToolbarChild.xml b/doc/en/Gtk/Toolbar+ToolbarChild.xml new file mode 100644 index 000000000..ce220336e --- /dev/null +++ b/doc/en/Gtk/Toolbar+ToolbarChild.xml @@ -0,0 +1,53 @@ + + + + gtk-sharp + 2.0.0.0 + + + Gtk.Container+ContainerChild + + + + + + Property + + + Gtk.ChildProperty(Name="homogeneous") + + + + System.Boolean + + + Whether or not the child should be the same size as other (homogeneous) items + a + + + + + + + Property + + + Gtk.ChildProperty(Name="expand") + + + + System.Boolean + + + Whether or not the child should receive extra space as the toolbar grows. + a + + + + + + A child of a , used to interact with its container child properties. + + + + diff --git a/doc/en/Gtk/Toolbar.xml b/doc/en/Gtk/Toolbar.xml index e97db88c4..a0929eb42 100644 --- a/doc/en/Gtk/Toolbar.xml +++ b/doc/en/Gtk/Toolbar.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -33,20 +31,12 @@ Gtk.Container - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - + + + System.Reflection.DefaultMember(MemberName="Item") + + @@ -209,7 +199,6 @@ Internal constructor Pointer to the C object. - An instance of Toolbar, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -222,7 +211,6 @@ Creates a new toolbar. - The newly-created toolbar. @@ -237,7 +225,7 @@ This function sets the size of stock icons in the toolbar. You can call it both before you add the icons and after they have been added. The size you set will override user preferences for the default icon size. The that stock icons in the toolbar shall have. - The icon size for the toolbar. + The icon size for the toolbar. @@ -252,7 +240,7 @@ Sets if the tooltips of a toolbar should be active or not. set to to disable the tooltips, or to enable them. - Whether tooltips are enabled. + Whether tooltips are enabled. @@ -267,10 +255,14 @@ Alters the view of toolbar to display either icons only, text only, or both. The new style for toolbar. - The current style of toolbar. + The current style of toolbar. - + + + GLib.Property(Name="toolbar_style") + + Property @@ -282,10 +274,14 @@ Sets the of the toolbar to either or . The orientation of the toolbar. - The orientation of the toolbar. + The orientation of the toolbar. - + + + GLib.Property(Name="orientation") + + Event @@ -297,7 +293,11 @@ Used if you wish to perform an action when the orientation of a toolbar is changed. - + + + GLib.Signal(CName="style-changed") + + Event @@ -309,7 +309,11 @@ Used if you wish to perform an action when ever the style of a toolbar is adjusted. For example, this would be a useful signal to connect to if you want to display more items on the toolbar when it is in icon-only mode; each item takes less space on the bar. - + + + GLib.Signal(CName="orientation-changed") + + Property @@ -319,7 +323,7 @@ GType Property. - a + a Returns the native value for . @@ -388,6 +392,7 @@ If type == , widget is used as the n a , the icon to use for this widget a , a callback function to use when the new widget is touched. a + To be added. @@ -572,10 +577,13 @@ If type == , widget is used as the n Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -585,10 +593,14 @@ If type == , widget is used as the n Whether to show an arrow if the toolbar doesn't fit. - a + a - + + + GLib.Property(Name="show_arrow") + + Property @@ -598,7 +610,7 @@ If type == , widget is used as the n The relief style of buttons on the toolbar. - a + a @@ -611,7 +623,7 @@ If type == , widget is used as the n The number of items on the toolbar. - a + a @@ -630,7 +642,11 @@ If type == , widget is used as the n to display a context menu on the toolbar. - + + + GLib.Signal(CName="popup_context_menu") + + Method @@ -767,8 +783,9 @@ If type == , widget is used as the n The number of items in the toolbar. - The number of itesm. - + The number of itesm. + + diff --git a/doc/en/Gtk/ToolbarChild.xml b/doc/en/Gtk/ToolbarChild.xml deleted file mode 100644 index a515df761..000000000 --- a/doc/en/Gtk/ToolbarChild.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - gtk-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - A child of a , used to interact with its container child properties. - - - - - Gtk.Container+ContainerChild - - - - - - - Property - - System.Boolean - - - - Whether or not the child should be the same size as other (homogeneous) items - a - - - - - - - Property - - System.Boolean - - - - Whether or not the child should receive extra space as the toolbar grows. - a - - - - - - - Constructor - - - - - - - Constructor - a - a - a - - - - - \ No newline at end of file diff --git a/doc/en/Gtk/ToolbarChildType.xml b/doc/en/Gtk/ToolbarChildType.xml index cdb8e3801..0ed967905 100644 --- a/doc/en/Gtk/ToolbarChildType.xml +++ b/doc/en/Gtk/ToolbarChildType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,18 +15,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.ToolbarChildTypeGType)) + + diff --git a/doc/en/Gtk/ToolbarStyle.xml b/doc/en/Gtk/ToolbarStyle.xml index 1047cd0c3..0373d19a0 100644 --- a/doc/en/Gtk/ToolbarStyle.xml +++ b/doc/en/Gtk/ToolbarStyle.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,18 +18,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.ToolbarStyleGType)) + + @@ -109,4 +100,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TooltipSetArgs.xml b/doc/en/Gtk/TooltipSetArgs.xml index 17bdd87eb..f2f7bb358 100644 --- a/doc/en/Gtk/TooltipSetArgs.xml +++ b/doc/en/Gtk/TooltipSetArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ The tooltips group. - a + a (XXX: should this be the entire tooltips group, or just the tooltip that was set?) @@ -53,7 +49,7 @@ The public tooltip text that was set. - a + a @@ -67,10 +63,10 @@ The private/detail tooltip text that was set. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/TooltipSetHandler.xml b/doc/en/Gtk/TooltipSetHandler.xml index ec79c6c06..cf9610d3f 100644 --- a/doc/en/Gtk/TooltipSetHandler.xml +++ b/doc/en/Gtk/TooltipSetHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Tooltips.xml b/doc/en/Gtk/Tooltips.xml index 5db21927c..95de26e50 100644 --- a/doc/en/Gtk/Tooltips.xml +++ b/doc/en/Gtk/Tooltips.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -70,14 +68,7 @@ class ToolTipsExample Gtk.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -158,7 +149,6 @@ class ToolTipsExample Internal constructor Pointer to the C object. - An instance of Tooltips, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -171,7 +161,6 @@ class ToolTipsExample Creates an empty group of tooltips. - an object of type Creates an empty group of tooltips. This function initializes a structure. Without at least one such structure, you can not add individual tips to your application. @@ -185,7 +174,7 @@ class ToolTipsExample GType Property. - a + a Returns the native value for . @@ -199,10 +188,13 @@ class ToolTipsExample Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -211,7 +203,7 @@ class ToolTipsExample Number of milliseconds of mouse-hover before tooltips pop up. - a + a @@ -240,4 +232,4 @@ class ToolTipsExample - \ No newline at end of file + diff --git a/doc/en/Gtk/TooltipsData.xml b/doc/en/Gtk/TooltipsData.xml index 3bcb12b33..3538a9609 100644 --- a/doc/en/Gtk/TooltipsData.xml +++ b/doc/en/Gtk/TooltipsData.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ System.ValueType - @@ -77,7 +74,7 @@ The that this is associated with. an object of type - an object of type + an object of type @@ -93,7 +90,8 @@ Generates a Tooltips object out of this data. an object of type - an object of type + an object of type + To be added. @@ -127,4 +125,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TranslateFunc.xml b/doc/en/Gtk/TranslateFunc.xml index 45d74d145..589e3750d 100644 --- a/doc/en/Gtk/TranslateFunc.xml +++ b/doc/en/Gtk/TranslateFunc.xml @@ -1,27 +1,19 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. Delegate used by to translate path elements before they are displayed. TODO: Add an example here. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -29,4 +21,4 @@ System.String - \ No newline at end of file + diff --git a/doc/en/Gtk/Tree.xml b/doc/en/Gtk/Tree.xml index a5128a8ff..4a481026a 100644 --- a/doc/en/Gtk/Tree.xml +++ b/doc/en/Gtk/Tree.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,7 +22,6 @@ System.Object - @@ -53,7 +50,6 @@ Deprecated. - a @@ -79,4 +75,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeCellDataFunc.xml b/doc/en/Gtk/TreeCellDataFunc.xml index f38225e2a..2bbcf1b79 100644 --- a/doc/en/Gtk/TreeCellDataFunc.xml +++ b/doc/en/Gtk/TreeCellDataFunc.xml @@ -1,27 +1,21 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. A delegate for methods that handle tree cell data. Methods with this shape are used to specify how to fill in tree data; see for example for one place where this class is used as a parameter. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -32,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeDestroyCountFunc.xml b/doc/en/Gtk/TreeDestroyCountFunc.xml index b41b928b4..cf917af2f 100644 --- a/doc/en/Gtk/TreeDestroyCountFunc.xml +++ b/doc/en/Gtk/TreeDestroyCountFunc.xml @@ -1,27 +1,20 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. Delegate class for use by . Almost never used; see that method's docs to find out why you might want to use it. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -31,4 +24,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeDragDest.xml b/doc/en/Gtk/TreeDragDest.xml index d998124ec..73c8f5564 100644 --- a/doc/en/Gtk/TreeDragDest.xml +++ b/doc/en/Gtk/TreeDragDest.xml @@ -1,28 +1,24 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. An interface to represent the rows of a tree when something is drag-and-dropped onto them. - GLib.IWrapper - - + Method System.Boolean @@ -32,17 +28,18 @@ + To be added. + a , the data to drop Determines whether a drop is possible before the given , at the same depth as . i.e., can we drop the data in at that location. does not have to exist; the return value will almost certainly be FALSE if the parent of doesn't exist, though. a , the potential drop target - a , the data to drop A boolean for whether the drop is possible. - + Method System.Boolean @@ -52,14 +49,15 @@ + To be added. + a , the data to drop Asks the TreeDragDest to insert a row before the given , deriving the contents of the row from the given . a , where to drop the data - a , the data to drop A boolean for whether the row was dropped successfully. If dest_path is outside the tree so that inserting before it is impossible, FALSE will be returned. Also, FALSE may be returned if the new row cannot be created for some model-specific reason. Should robustly handle a destination path no longer found in the model. - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeDragSource.xml b/doc/en/Gtk/TreeDragSource.xml index 6ecb9613f..0353e2076 100644 --- a/doc/en/Gtk/TreeDragSource.xml +++ b/doc/en/Gtk/TreeDragSource.xml @@ -1,28 +1,24 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. An interface to represent the rows of a tree when one of them is dragged to another location. - GLib.IWrapper - - + Method System.Boolean @@ -40,7 +36,7 @@ - + Method System.Boolean @@ -56,7 +52,7 @@ - + Method System.Boolean @@ -74,4 +70,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeIter.xml b/doc/en/Gtk/TreeIter.xml index 6f8770e1e..a52b497cf 100644 --- a/doc/en/Gtk/TreeIter.xml +++ b/doc/en/Gtk/TreeIter.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -124,7 +121,7 @@ GType Property. - a + a Returns the native value for . @@ -141,5 +138,37 @@ + + + Method + + GLib.Value + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Gtk.TreeIter + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeIterCompareFunc.xml b/doc/en/Gtk/TreeIterCompareFunc.xml index 22312dd45..cae311d4f 100644 --- a/doc/en/Gtk/TreeIterCompareFunc.xml +++ b/doc/en/Gtk/TreeIterCompareFunc.xml @@ -1,12 +1,14 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. Delegate function to specify the shape of comparison functions for tree iterators. Functions with this call syntax are usually used for comparison between two tree iterators as part of a sort. @@ -107,19 +109,11 @@ public class SortableTreeView : TreeView {
+ To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -129,4 +123,4 @@ public class SortableTreeView : TreeView { System.Int32 - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeModel.xml b/doc/en/Gtk/TreeModel.xml index edfe24f17..e1f6359dc 100644 --- a/doc/en/Gtk/TreeModel.xml +++ b/doc/en/Gtk/TreeModel.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -38,16 +36,14 @@ - GLib.IWrapper - - + Method System.Int32 @@ -60,7 +56,7 @@ - + Method System.Boolean @@ -69,14 +65,14 @@ - Sets the TreeIter object pointed to by to point to the first child of this tree. + Sets the TreeIter object pointed to by to point to the first child of this tree. an object of type an object of type , true if the iter has been set to the first child. - + Method System.Void @@ -94,7 +90,7 @@ - + Method System.Void @@ -109,7 +105,7 @@ - + Method System.Boolean @@ -125,7 +121,7 @@ - + Method System.Void @@ -142,7 +138,7 @@ - + Method Gtk.TreePath @@ -159,7 +155,7 @@ - + Method System.Boolean @@ -168,7 +164,7 @@ - Returns if has children, otherwise. + Returns if has children, otherwise. an object of type an object of type @@ -176,7 +172,7 @@ - + Method System.Void @@ -195,7 +191,7 @@ - + Method System.Int32 @@ -211,7 +207,7 @@ - + Method System.Void @@ -229,7 +225,7 @@ - + Method System.Void @@ -244,7 +240,7 @@ - + Method System.Void @@ -261,7 +257,7 @@ - + Method System.Void @@ -276,32 +272,32 @@ - + Property System.Int32 Returns the number of columns supported by the . - an object of type + an object of type - + Property Gtk.TreeModelFlags Returns a set of flags supported by this interface. - an object of type + an object of type The flags are a bitwise combination of . The flags supported should not change during the lifecycle of the . - + Event Gtk.RowHasChildToggledHandler @@ -314,7 +310,7 @@ - + Event Gtk.RowInsertedHandler @@ -327,7 +323,7 @@ - + Event Gtk.RowDeletedHandler @@ -340,7 +336,7 @@ - + Event Gtk.RowChangedHandler @@ -353,7 +349,7 @@ - + Event Gtk.RowsReorderedHandler @@ -366,7 +362,7 @@ - + Method System.Boolean @@ -384,7 +380,7 @@ - + Method System.Boolean @@ -404,7 +400,7 @@ - + Method System.Boolean @@ -422,7 +418,7 @@ - + Method System.Boolean @@ -440,7 +436,7 @@ - + Method System.Boolean @@ -459,7 +455,7 @@ - + Method System.Boolean @@ -474,10 +470,10 @@ an object of type an object of type If is at the toplevel, and does not have a parent, then is set to an invalid iterator and is returned. will remain a valid node after this function has been called. -] + - + Method System.String @@ -493,7 +489,7 @@ - + Method System.Void @@ -512,7 +508,7 @@ - + Method System.Void @@ -531,7 +527,7 @@ - + Method System.Void @@ -550,7 +546,7 @@ - + Method System.Void @@ -569,7 +565,7 @@ - + Method System.Void @@ -588,7 +584,7 @@ - + Method System.Void @@ -603,10 +599,11 @@ a a a + To be added. - + Method System.Void @@ -625,7 +622,7 @@ - + Method System.Object @@ -643,7 +640,7 @@ - + Method GLib.GType @@ -659,7 +656,7 @@ - + Method System.Int32 @@ -677,7 +674,7 @@ - + Method System.Void @@ -696,7 +693,7 @@ - + Method System.Boolean diff --git a/doc/en/Gtk/TreeModelFilter.xml b/doc/en/Gtk/TreeModelFilter.xml index 9e34ef42c..530e30603 100644 --- a/doc/en/Gtk/TreeModelFilter.xml +++ b/doc/en/Gtk/TreeModelFilter.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,13 @@ in a for display. GLib.Object - - Gtk.TreeModel - - - GLib.IWrapper - Gtk.TreeDragSource - System.IDisposable + Gtk.TreeModel - @@ -151,7 +142,7 @@ in a for display. - + Method System.Void @@ -166,7 +157,7 @@ in a for display. - + Method GLib.GType @@ -182,7 +173,7 @@ in a for display. - + Method System.Void @@ -199,7 +190,7 @@ in a for display. - + Method System.Boolean @@ -215,7 +206,7 @@ in a for display. - + Method System.String @@ -231,7 +222,7 @@ in a for display. - + Method System.Boolean @@ -249,7 +240,7 @@ in a for display. - + Method System.Void @@ -265,7 +256,7 @@ in a for display. - + Method System.Void @@ -283,7 +274,7 @@ in a for display. - + Method Gtk.TreePath @@ -299,7 +290,7 @@ in a for display. - + Method System.Boolean @@ -317,7 +308,7 @@ in a for display. - + Method System.Boolean @@ -327,14 +318,15 @@ in a for display. - Sets the TreeIter object pointed to by to point to the first child of this tree. an object of type + To be added. + Sets the TreeIter object pointed to by to point to the first child of this tree. an object of type , true if the iter has been set to the first child. - + Method System.Int32 @@ -350,7 +342,7 @@ in a for display. - + Method System.Void @@ -369,7 +361,7 @@ in a for display. - + Method System.Boolean @@ -387,7 +379,7 @@ in a for display. - + Method System.Boolean @@ -403,7 +395,7 @@ in a for display. - + Method System.Int32 @@ -422,7 +414,7 @@ in a for display. - + Method System.Boolean @@ -433,15 +425,16 @@ in a for display. - Sets to be the child of the root node, using the given index. an object of type + To be added. an object of type + Sets to be the child of the root node, using the given index. an object of type In this case, the nth root node is set. - + Method System.Boolean @@ -457,7 +450,7 @@ in a for display. - + Method System.Void @@ -468,15 +461,15 @@ in a for display. - Gets the value stored in column of the row pointed to by . a a - a + To be added. + Gets the value stored in column of the row pointed to by . - + Method System.Void @@ -495,7 +488,7 @@ in a for display. - + Method System.Void @@ -510,7 +503,7 @@ in a for display. - + Method System.Void @@ -614,7 +607,7 @@ in a for display. - + Method System.Boolean @@ -630,7 +623,7 @@ in a for display. - + Method System.Boolean @@ -646,7 +639,7 @@ in a for display. - + Method System.Boolean @@ -664,7 +657,7 @@ in a for display. - + Method System.Boolean @@ -680,7 +673,7 @@ in a for display. - + Method System.Int32 @@ -694,7 +687,7 @@ in a for display. - + Method System.Boolean @@ -712,7 +705,7 @@ in a for display. - + Method System.Void @@ -731,7 +724,7 @@ in a for display. - + Method System.Void @@ -750,7 +743,7 @@ in a for display. - + Method System.Void @@ -769,7 +762,7 @@ in a for display. - + Method System.Void @@ -788,7 +781,7 @@ in a for display. - + Method System.Void @@ -807,7 +800,7 @@ in a for display. - + Method System.Void @@ -826,7 +819,7 @@ in a for display. - + Method System.Void @@ -845,7 +838,7 @@ in a for display. - + Method System.Object @@ -872,10 +865,13 @@ in a for display. Basic constructor. a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -886,7 +882,6 @@ in a for display. Constructor. For internal use. a , pointer to the underlying C object. - a @@ -902,7 +897,6 @@ in a for display. Constructor a , the model this object is to filter a , the node to use as the model's root node. - a @@ -915,7 +909,7 @@ in a for display. The of this object. - a + a @@ -928,10 +922,14 @@ in a for display. The virtual root (relative to the child model) for this object. - a + a - + + + GLib.Property(Name="virtual_root") + + Property @@ -940,7 +938,7 @@ in a for display. The column of the model where this filter should look for visibility information. - a + a @@ -953,12 +951,12 @@ in a for display. Gets the this filter is being applied to. - a + a - + Property Gtk.TreeModelFlags @@ -966,12 +964,12 @@ in a for display. Flag values for this tree model; see for possible values. - a + a - + Property System.Int32 @@ -979,12 +977,12 @@ in a for display. The number of columns in the model. - a + a - + Event Gtk.RowsReorderedHandler @@ -994,9 +992,13 @@ in a for display. Event that happens when rows in the model change order. - + + + GLib.Signal(CName="rows_reordered") + + - + Event Gtk.RowChangedHandler @@ -1006,9 +1008,13 @@ in a for display. Event that happens when a row in the model is changed. - + + + GLib.Signal(CName="row_changed") + + - + Event Gtk.RowDeletedHandler @@ -1018,9 +1024,13 @@ in a for display. Event that happens when a row is deleted. - + + + GLib.Signal(CName="row_deleted") + + - + Event Gtk.RowInsertedHandler @@ -1030,9 +1040,13 @@ in a for display. Event that happens when a row is inserted. - + + + GLib.Signal(CName="row_inserted") + + - + Event Gtk.RowHasChildToggledHandler @@ -1042,7 +1056,11 @@ in a for display. Event that happens when a row's child visibility is turned on or off. - + + + GLib.Signal(CName="row_has_child_toggled") + + Property @@ -1052,10 +1070,14 @@ in a for display. Child tree data model. - a + a - + + + GLib.Property(Name="child_model") + + Property @@ -1064,7 +1086,7 @@ in a for display. The function used to determine whether or not a row should be visible - a + a @@ -1095,4 +1117,4 @@ in a for display. - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeModelFilterModifyFunc.xml b/doc/en/Gtk/TreeModelFilterModifyFunc.xml index 35b4d3ee8..09ae10eae 100644 --- a/doc/en/Gtk/TreeModelFilterModifyFunc.xml +++ b/doc/en/Gtk/TreeModelFilterModifyFunc.xml @@ -1,29 +1,22 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. Delegate class for methods to modify a tree. - Used primarily as a parameter for . See that method's documentation for more details. + Used primarily as a parameter for . See that method's documentation for more details. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void diff --git a/doc/en/Gtk/TreeModelFilterVisibleFunc.xml b/doc/en/Gtk/TreeModelFilterVisibleFunc.xml index de9830ab1..093f87a4b 100644 --- a/doc/en/Gtk/TreeModelFilterVisibleFunc.xml +++ b/doc/en/Gtk/TreeModelFilterVisibleFunc.xml @@ -1,31 +1,23 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Delegate class for methods run when part of a tree is made visible. - Used primarily as a parameter for . Delegates should return TRUE if the given row should be visible and + Used primarily as a parameter for . Delegates should return TRUE if the given row should be visible and FALSE otherwise. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Boolean diff --git a/doc/en/Gtk/TreeModelFlags.xml b/doc/en/Gtk/TreeModelFlags.xml index eacbe8491..1cd6cb13d 100644 --- a/doc/en/Gtk/TreeModelFlags.xml +++ b/doc/en/Gtk/TreeModelFlags.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.TreeModelFlagsGType)) + + + System.Flags + + @@ -69,4 +63,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeModelForeachFunc.xml b/doc/en/Gtk/TreeModelForeachFunc.xml index 6ca010aa0..36a0e586f 100644 --- a/doc/en/Gtk/TreeModelForeachFunc.xml +++ b/doc/en/Gtk/TreeModelForeachFunc.xml @@ -1,28 +1,22 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. A delegate class for functions that can be run on every row of a . This class specifies the standard interface for functions used as parameters to . + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -32,4 +26,4 @@ as parameters to . System.Boolean - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeModelSort.xml b/doc/en/Gtk/TreeModelSort.xml index 771d0e395..025c90fd2 100644 --- a/doc/en/Gtk/TreeModelSort.xml +++ b/doc/en/Gtk/TreeModelSort.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,25 +16,18 @@ - Gtk.TreeModel + Gtk.TreeDragSource - GLib.IWrapper + Gtk.TreeModel Gtk.TreeSortable - - GLib.IWrapper - - - System.IDisposable - - - + Method System.Int32 @@ -49,7 +40,7 @@ - + Method System.Boolean @@ -66,7 +57,7 @@ node is always the parent. - + Method System.Void @@ -78,7 +69,7 @@ node is always the parent. - + Method System.Void @@ -95,7 +86,7 @@ node is always the parent. - + Method System.Void @@ -116,7 +107,7 @@ node is always the parent. - + Method System.Void @@ -135,19 +126,19 @@ node is always the parent. - + Property Gtk.TreeIterCompareFunc The function to sort columns not otherwise specified by . - a + a This property is meant to be used together with . - + Method System.Void @@ -164,7 +155,7 @@ node is always the parent. - + Method System.Void @@ -179,7 +170,7 @@ node is always the parent. - + Method System.Boolean @@ -195,7 +186,7 @@ node is always the parent. - + Method System.Void @@ -212,7 +203,7 @@ node is always the parent. - + Method Gtk.TreePath @@ -229,7 +220,7 @@ node is always the parent. - + Method System.Boolean @@ -246,7 +237,7 @@ node is always the parent. - + Method System.Void @@ -265,7 +256,7 @@ node is always the parent. - + Method System.Int32 @@ -281,7 +272,7 @@ node is always the parent. - + Method System.Void @@ -299,7 +290,7 @@ node is always the parent. - + Method System.Void @@ -314,7 +305,7 @@ node is always the parent. - + Method System.Void @@ -331,7 +322,7 @@ node is always the parent. - + Method System.Void @@ -423,7 +414,6 @@ node is always the parent. Internal constructor Pointer to the C object. - An instance of TreeModelSort, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -439,36 +429,35 @@ node is always the parent. Constructor. A , the child model for the new object. - A new FIXME: needs more explanation. - + Property System.Int32 The number of columns supported by the object. - An integer count of the columns. + An integer count of the columns. - + Property Gtk.TreeModelFlags Returns a set of flags supported by this interface. The flags are a bitwise combination of . - a + a The flags supported should not change during the lifecycle of the tree model. - + Event System.EventHandler @@ -478,9 +467,13 @@ node is always the parent. Fired when the sort column is changed. - + + + GLib.Signal(CName="sort_column_changed") + + - + Event Gtk.RowHasChildToggledHandler @@ -490,9 +483,13 @@ node is always the parent. Fired when the child state of a row is toggled. - + + + GLib.Signal(CName="row_has_child_toggled") + + - + Event Gtk.RowInsertedHandler @@ -502,9 +499,13 @@ node is always the parent. Fired when a new row is inserted into the tree. - + + + GLib.Signal(CName="row_inserted") + + - + Event Gtk.RowDeletedHandler @@ -514,9 +515,13 @@ node is always the parent. Fired when a row is deleted from the tree. - + + + GLib.Signal(CName="row_deleted") + + - + Event Gtk.RowChangedHandler @@ -526,9 +531,13 @@ node is always the parent. Fired when a tree row is changed. - + + + GLib.Signal(CName="row_changed") + + - + Event Gtk.RowsReorderedHandler @@ -538,9 +547,13 @@ node is always the parent. Fired when rows are reordered or moved around. - + + + GLib.Signal(CName="rows_reordered") + + - + Method System.Boolean @@ -558,7 +571,7 @@ node is always the parent. - + Method System.Boolean @@ -578,7 +591,7 @@ node is always the parent. - + Method System.Boolean @@ -596,7 +609,7 @@ node is always the parent. - + Method System.Boolean @@ -615,7 +628,7 @@ node is always the parent. - + Method System.Boolean @@ -634,7 +647,7 @@ node is always the parent. - + Method System.Boolean @@ -652,7 +665,7 @@ node is always the parent. - + Method System.String @@ -684,7 +697,7 @@ node is always the parent. - + Method System.Boolean @@ -702,7 +715,7 @@ node is always the parent. - + Method System.Void @@ -721,7 +734,7 @@ node is always the parent. - + Method System.Void @@ -740,7 +753,7 @@ node is always the parent. - + Method System.Void @@ -759,7 +772,7 @@ node is always the parent. - + Method System.Void @@ -778,7 +791,7 @@ node is always the parent. - + Method System.Void @@ -797,7 +810,7 @@ node is always the parent. - + Method System.Void @@ -812,10 +825,11 @@ node is always the parent. a a a + To be added. - + Method System.Void @@ -834,13 +848,19 @@ node is always the parent. - + Method Gtk.TreeIter - + + + + System.ParamArray + + + Add the list of objects in to the model; there should be enough objects to fill one row of the model. @@ -850,7 +870,7 @@ node is always the parent. - + Method System.Object @@ -868,7 +888,7 @@ node is always the parent. - + Property System.Boolean @@ -876,7 +896,7 @@ node is always the parent. Return whether this TreeModel has a default sort function or not. - a , true if a default sort function exists. + a , true if a default sort function exists. See to set a default sort function. @@ -889,12 +909,12 @@ node is always the parent. GType Property. - a + a Returns the native value for . - + Method GLib.GType @@ -1016,10 +1036,13 @@ node is always the parent. Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -1053,7 +1076,7 @@ node is always the parent. - + Method System.Int32 @@ -1071,7 +1094,7 @@ node is always the parent. - + Method System.Void @@ -1090,7 +1113,7 @@ node is always the parent. - + Method System.Boolean @@ -1106,7 +1129,7 @@ node is always the parent. - + Method System.Boolean @@ -1122,7 +1145,7 @@ node is always the parent. - + Method System.Boolean @@ -1138,7 +1161,7 @@ node is always the parent. - + Method System.Boolean @@ -1164,12 +1187,16 @@ node is always the parent. Tree data model. - a + a - + + + GLib.Property(Name="model") + + - + Method System.Void @@ -1186,4 +1213,4 @@ node is always the parent. - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeNode.xml b/doc/en/Gtk/TreeNode.xml index 8ed549621..e94e54665 100644 --- a/doc/en/Gtk/TreeNode.xml +++ b/doc/en/Gtk/TreeNode.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -62,12 +60,12 @@ public class MyTreeNode : TreeNode { - System.Reflection.DefaultMemberAttribute + System.Reflection.DefaultMember(MemberName="Item") - + Method System.Int32 @@ -104,12 +102,11 @@ public class MyTreeNode : TreeNode { TreeNode constructor - a Default constructor.. - + Property System.Int32 @@ -117,12 +114,12 @@ public class MyTreeNode : TreeNode { ID property - a + a Read-only. Provides a unique identifier for all instances. - + Property System.Int32 @@ -130,12 +127,12 @@ public class MyTreeNode : TreeNode { ChildCount - a + a Read-only. The number of children of this node. - + Property Gtk.ITreeNode @@ -146,7 +143,7 @@ public class MyTreeNode : TreeNode { Child indexer a - a + a Returns the child at position in the list of children for this . @@ -154,7 +151,7 @@ public class MyTreeNode : TreeNode { - + Event System.EventHandler @@ -169,7 +166,7 @@ public class MyTreeNode : TreeNode { - + Event Gtk.TreeNodeAddedHandler @@ -181,7 +178,7 @@ public class MyTreeNode : TreeNode { - + Event Gtk.TreeNodeRemovedHandler @@ -193,7 +190,7 @@ public class MyTreeNode : TreeNode { - + Property Gtk.ITreeNode @@ -201,7 +198,7 @@ public class MyTreeNode : TreeNode { Parent property - a + a Read-only. The parent for this node. @@ -262,4 +259,4 @@ public class MyTreeNode : TreeNode { - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeNodeAddedHandler.xml b/doc/en/Gtk/TreeNodeAddedHandler.xml index 39f923851..619667647 100644 --- a/doc/en/Gtk/TreeNodeAddedHandler.xml +++ b/doc/en/Gtk/TreeNodeAddedHandler.xml @@ -1,30 +1,21 @@ - + gtk-sharp - 0.12.0.0 - neutral - + 2.0.0.0 + To be added. + To be added. TreeNodeAddedHandler delegate Event handler for notification of the addition of a to node . System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -33,4 +24,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeNodeAttribute.xml b/doc/en/Gtk/TreeNodeAttribute.xml index 0c344cd59..460700583 100644 --- a/doc/en/Gtk/TreeNodeAttribute.xml +++ b/doc/en/Gtk/TreeNodeAttribute.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -54,7 +52,7 @@ - System.AttributeUsageAttribute + System.AttributeUsage(AllowMultiple=False, Inherited=True, ValidOn=System.AttributeTargets.Class) @@ -65,7 +63,6 @@ TreeNodeAttribute constructor - a Instantiates a @@ -78,7 +75,7 @@ ColumnCount named value. - a + a Specifies the number of columns the node exposes. A @@ -96,7 +93,7 @@ ListOnly named value. - a + a Specifies if the node can have children. For list views, this tells the NodeStore that it is non-hierarchical and it can expose flags so that the diff --git a/doc/en/Gtk/TreeNodeRemovedHandler.xml b/doc/en/Gtk/TreeNodeRemovedHandler.xml index 6c30e1421..bfcdf1dc1 100644 --- a/doc/en/Gtk/TreeNodeRemovedHandler.xml +++ b/doc/en/Gtk/TreeNodeRemovedHandler.xml @@ -1,15 +1,16 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 + To be added. + To be added. + To be added. TreeNodeRemovedHandler delegate Event handler for notification of the removal of a child node. The node is already @@ -20,21 +21,13 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void + - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeNodeValueAttribute.xml b/doc/en/Gtk/TreeNodeValueAttribute.xml index 6998f18b1..0d0da6cd3 100644 --- a/doc/en/Gtk/TreeNodeValueAttribute.xml +++ b/doc/en/Gtk/TreeNodeValueAttribute.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 >Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -38,7 +36,7 @@ - System.AttributeUsageAttribute + System.AttributeUsage(AllowMultiple=True, Inherited=True, ValidOn=System.AttributeTargets.Property) @@ -49,7 +47,6 @@ TreeNodeValueAttribute constructor - a Instantiates a @@ -62,7 +59,7 @@ Column named value - a + a The column number of the value which is exposed by the property this marks. @@ -70,4 +67,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TreePath.xml b/doc/en/Gtk/TreePath.xml index c050348af..e264951d7 100644 --- a/doc/en/Gtk/TreePath.xml +++ b/doc/en/Gtk/TreePath.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -169,7 +163,6 @@ Internal constructor Pointer to the C object. - An instance of TreePath, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -182,7 +175,6 @@ Constructor; builds an empty TreePath. - an object of type @@ -196,7 +188,6 @@ Creates a new object. an object of type - an object of type The is expressed in the form "3:2:5". The toplevel or root path would thus be "0". @@ -208,7 +199,7 @@ Returns the current depth of the TreePath. - an object of type + an object of type @@ -243,7 +234,7 @@ - + Property System.Int32[] @@ -251,7 +242,7 @@ Returns the current indices of the TreePath. This is an array of integers, each representing a node in a tree. This value should not be freed. - a + a @@ -277,12 +268,12 @@ GType Property. - a + a Returns the native value for . - + Constructor @@ -291,7 +282,6 @@ Creates a path for a set of indices. a - a diff --git a/doc/en/Gtk/TreeRowReference.xml b/doc/en/Gtk/TreeRowReference.xml index 68fcf4f0e..a1eefbd2c 100644 --- a/doc/en/Gtk/TreeRowReference.xml +++ b/doc/en/Gtk/TreeRowReference.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -92,7 +86,6 @@ Internal constructor Pointer to the C object. - An instance of TreeRowReference, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -110,7 +103,6 @@ Do not use. an object of type an object of type - an object of type Do not use. @@ -128,7 +120,6 @@ an object of type an object of type an object of type - an object of type Do not use. @@ -140,7 +131,7 @@ Do not use. - an object of type + an object of type Do not use. @@ -166,7 +157,7 @@ GType Property. - a + a Returns the native value for . diff --git a/doc/en/Gtk/TreeSelection.xml b/doc/en/Gtk/TreeSelection.xml index 4c6a85756..69f174c09 100644 --- a/doc/en/Gtk/TreeSelection.xml +++ b/doc/en/Gtk/TreeSelection.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -69,14 +67,7 @@ class Selection GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -312,7 +303,7 @@ class TreeSelectionSample A hook into selection and unselection - a + a If set, is called before any node is selected or unselected, giving some control over which nodes are selected. The select function should return if the state of the node may be toggled, and if the state of the node should be left unchanged. @@ -357,7 +348,6 @@ class TreeSelectionSample Internal constructor Pointer to the C object. - An instance of TreeSelection, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -374,7 +364,7 @@ class TreeSelectionSample Manages the way rows can be selected. A new mode of selection. - The current mode dictating selection behaviour. + The current mode dictating selection behaviour. Rows may be deselected by changing this property. For example, if rows are selected and the mode is changed to or . @@ -388,7 +378,7 @@ class TreeSelectionSample Get the data associated with the that has been setup for this . - The raw data that was set when was called. + The raw data that was set when was called. @@ -400,7 +390,7 @@ class TreeSelectionSample Get the that this is associated with. - The that this is tied to. + The that this is tied to. A object can only be retrieved from a . That is done with its property. @@ -419,7 +409,11 @@ class TreeSelectionSample This event is mostly a hint. It may only be fired once when a range of rows are selected, and it may occasionally be fired when nothing has happened. - + + + GLib.Signal(CName="changed") + + Method @@ -482,7 +476,7 @@ class TreeSelectionSample GType Property. - a + a Returns the native value for . @@ -508,10 +502,13 @@ class TreeSelectionSample Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -535,7 +532,6 @@ class TreeSelectionSample Protected constructor. - a @@ -553,4 +549,4 @@ class TreeSelectionSample - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeSelectionForeachFunc.xml b/doc/en/Gtk/TreeSelectionForeachFunc.xml index ddbc45997..3cdf323a6 100644 --- a/doc/en/Gtk/TreeSelectionForeachFunc.xml +++ b/doc/en/Gtk/TreeSelectionForeachFunc.xml @@ -1,12 +1,14 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. A delegate class for functions that can be run on every element of a . See for how to @@ -15,15 +17,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -33,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeSelectionFunc.xml b/doc/en/Gtk/TreeSelectionFunc.xml index d17782e7f..6c1379e67 100644 --- a/doc/en/Gtk/TreeSelectionFunc.xml +++ b/doc/en/Gtk/TreeSelectionFunc.xml @@ -1,27 +1,22 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. A delegate for specifying the shape of functions passed as parameters to . This function will get called on select and unselect of widget text. It should return if the state of the tree node may be toggled and if the state of the node should not be changed. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -32,4 +27,4 @@ System.Boolean - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeSortable.xml b/doc/en/Gtk/TreeSortable.xml index 48787b5e0..529b2f182 100644 --- a/doc/en/Gtk/TreeSortable.xml +++ b/doc/en/Gtk/TreeSortable.xml @@ -1,28 +1,24 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. An interface for specifying a tree model that is sortable. See for a working example of a sortable TreeView. - GLib.IWrapper - - + Method System.Void @@ -34,7 +30,7 @@ - + Method System.Void @@ -51,7 +47,7 @@ - + Method System.Void @@ -72,7 +68,7 @@ - + Method System.Void @@ -91,19 +87,19 @@ - + Property Gtk.TreeIterCompareFunc Function to sort columns by default if not otherwise specified by . - a + a This method is meant to be used together with - + Event System.EventHandler @@ -115,7 +111,7 @@ - + Method System.Boolean @@ -133,7 +129,7 @@ - + Property System.Boolean @@ -141,12 +137,12 @@ Return whether this TreeModel has a default sort function or not. - a , true if a default sort function exists. + a , true if a default sort function exists. See to set a default sort function. - + Method System.Void @@ -163,4 +159,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeStore.xml b/doc/en/Gtk/TreeStore.xml index dc05429b2..a429910b0 100644 --- a/doc/en/Gtk/TreeStore.xml +++ b/doc/en/Gtk/TreeStore.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,31 +16,21 @@ - Gtk.TreeModel - - - GLib.IWrapper + Gtk.TreeDragDest Gtk.TreeDragSource - Gtk.TreeDragDest + Gtk.TreeModel Gtk.TreeSortable - - GLib.IWrapper - - - System.IDisposable - - - + Method System.Int32 @@ -55,7 +43,7 @@ - + Method System.Boolean @@ -105,7 +93,7 @@ - + Method System.Void @@ -117,7 +105,7 @@ - + Method System.Void @@ -134,7 +122,7 @@ - + Method System.Void @@ -155,7 +143,7 @@ - + Method System.Void @@ -174,19 +162,19 @@ - + Property Gtk.TreeIterCompareFunc The function that should be used to be sort columns by default if not otherwise specified by . - a + a This property is meant to be used together with . - + Method System.Boolean @@ -204,7 +192,7 @@ - + Method System.Boolean @@ -222,7 +210,7 @@ - + Method System.Boolean @@ -242,7 +230,7 @@ - + Method System.Boolean @@ -258,7 +246,7 @@ - + Method System.Boolean @@ -274,7 +262,7 @@ - + Method System.Void @@ -292,7 +280,7 @@ - + Method System.Void @@ -307,7 +295,7 @@ - + Method System.Boolean @@ -323,7 +311,7 @@ - + Method System.Void @@ -341,7 +329,7 @@ - + Method Gtk.TreePath @@ -358,7 +346,7 @@ - + Method System.Boolean @@ -375,7 +363,7 @@ - + Method System.Void @@ -394,7 +382,7 @@ - + Method System.Int32 @@ -410,7 +398,7 @@ - + Method System.Void @@ -428,7 +416,7 @@ - + Method System.Void @@ -443,7 +431,7 @@ - + Method System.Void @@ -460,7 +448,7 @@ - + Method System.Void @@ -579,39 +567,38 @@ Internal constructor Pointer to the C object. - An instance of TreeStore, wrapping the C object. This is an internal constructor, and should not be used by user code. - + Property System.Int32 Returns the number of columns supported by the . - an object of type + an object of type - + Property Gtk.TreeModelFlags Returns a set of flags supported by this . - an object of type + an object of type The flags are a bitwise combination of . The flags supported should not change during the lifecycle of the . - + Event System.EventHandler @@ -622,9 +609,13 @@ - + + + GLib.Signal(CName="sort_column_changed") + + - + Event Gtk.RowHasChildToggledHandler @@ -635,9 +626,13 @@ - + + + GLib.Signal(CName="row_has_child_toggled") + + - + Event Gtk.RowInsertedHandler @@ -648,9 +643,13 @@ - + + + GLib.Signal(CName="row_inserted") + + - + Event Gtk.RowDeletedHandler @@ -661,9 +660,13 @@ - + + + GLib.Signal(CName="row_deleted") + + - + Event Gtk.RowChangedHandler @@ -674,9 +677,13 @@ - + + + GLib.Signal(CName="row_changed") + + - + Event Gtk.RowsReorderedHandler @@ -687,9 +694,13 @@ - + + + GLib.Signal(CName="rows_reordered") + + - + Method System.Boolean @@ -762,7 +773,7 @@ - + Method System.Boolean @@ -782,7 +793,7 @@ - + Method System.Boolean @@ -800,7 +811,7 @@ - + Method System.Boolean @@ -818,7 +829,7 @@ - + Method System.Boolean @@ -837,7 +848,7 @@ - + Method System.Boolean @@ -855,13 +866,19 @@ - + Method Gtk.TreeIter - + + + + System.ParamArray + + + Appends a new row to the . @@ -887,14 +904,20 @@ - + Method Gtk.TreeIter - + + + + System.ParamArray + + + Appends a new row to the . @@ -923,7 +946,7 @@ - + Method System.String @@ -1017,16 +1040,21 @@ - + Constructor - + + + + System.ParamArray + + + Creates a new instance. a - a @@ -1038,7 +1066,7 @@ store = new TreeStore (typeof (int), typeof (string)); - + Method System.Boolean @@ -1056,7 +1084,7 @@ store = new TreeStore (typeof (int), typeof (string)); - + Method System.Void @@ -1075,7 +1103,7 @@ store = new TreeStore (typeof (int), typeof (string)); - + Method System.Void @@ -1094,7 +1122,7 @@ store = new TreeStore (typeof (int), typeof (string)); - + Method System.Void @@ -1113,7 +1141,7 @@ store = new TreeStore (typeof (int), typeof (string)); - + Method System.Void @@ -1132,7 +1160,7 @@ store = new TreeStore (typeof (int), typeof (string)); - + Method System.Void @@ -1151,7 +1179,7 @@ store = new TreeStore (typeof (int), typeof (string)); - + Method System.Void @@ -1170,7 +1198,7 @@ store = new TreeStore (typeof (int), typeof (string)); - + Method System.Void @@ -1189,7 +1217,7 @@ store = new TreeStore (typeof (int), typeof (string)); - + Method System.Object @@ -1207,7 +1235,7 @@ store = new TreeStore (typeof (int), typeof (string)); - + Property System.Boolean @@ -1215,8 +1243,8 @@ store = new TreeStore (typeof (int), typeof (string)); Find out whether this TreeStore has a default sort function. - a , true if there is a default - sort function. + a , true if there is a default + sort function. To set a default sort function, use . @@ -1229,39 +1257,23 @@ store = new TreeStore (typeof (int), typeof (string)); GType Property. - a + a Returns the native value for . - + Property GLib.GType[] To be added - a + a To be added - - - Property - - GLib.GType[] - - - The types in each column of a TreeStore. - a - - This property is meant primarily for classes that - inherit from , and should - only be used when constructing a new . It will not function after a - row has been added or after a method on the interface has been called. - - - + Method @@ -1278,7 +1290,7 @@ store = new TreeStore (typeof (int), typeof (string)); - + Method GLib.GType @@ -1400,21 +1412,29 @@ store = new TreeStore (typeof (int), typeof (string)); Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor - + + + + System.ParamArray + + + Protected Constructor. - a - a + a Chain to this constructor if you have manually registered a native value for your subclass. @@ -1444,6 +1464,7 @@ store = new TreeStore (typeof (int), typeof (string)); + To be added. Reorders the TreeStore. a . (FIXME: Does this binding work?) @@ -1460,8 +1481,9 @@ store = new TreeStore (typeof (int), typeof (string)); - Inserts a new row at position . + To be added. a + Inserts a new row at position . a pointing to the new row. If is larger than the number of rows on the list, then the new row will be appended to the list. @@ -1480,6 +1502,7 @@ store = new TreeStore (typeof (int), typeof (string)); + To be added. Adds a new row to the beginning of the tree. a pointing to the new row. @@ -1554,7 +1577,7 @@ store = new TreeStore (typeof (int), typeof (string)); - + Method System.Int32 @@ -1572,7 +1595,7 @@ store = new TreeStore (typeof (int), typeof (string)); - + Method System.Void @@ -1593,7 +1616,7 @@ store = new TreeStore (typeof (int), typeof (string)); - + Method System.Boolean @@ -1615,7 +1638,6 @@ store = new TreeStore (typeof (int), typeof (string)); Protected constructor. - a @@ -1781,7 +1803,7 @@ store = new TreeStore (typeof (int), typeof (string)); - + Method System.Void @@ -1797,21 +1819,6 @@ store = new TreeStore (typeof (int), typeof (string)); This method is meant to be used together with - - - Method - - GLib.GType - - - - - - To be added - a - a - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeView.xml b/doc/en/Gtk/TreeView.xml index 50a7d86ff..5ead3dbc7 100644 --- a/doc/en/Gtk/TreeView.xml +++ b/doc/en/Gtk/TreeView.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -229,20 +227,7 @@ For a example how to handle selection events see Gtk.Container - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -288,7 +273,7 @@ For a example how to handle selection events see The function for determining where a column may be dropped when dragged. - a + a This function is called on every column pair in turn at the beginning of a column drag to determine where a drop can take place. If the property is set to be , then reverts to the default behavior of allowing all columns to be dropped everywhere. @@ -485,7 +470,7 @@ For a example how to handle selection events see This property should almost never be used. It is meant for private use by ATK for determining the number of visible children that are removed when the user collapses a row, or a row is deleted. - a + a It is meant for private use by Atk for determining the number of visible children that are removed when the user collapses a row, or a row is deleted. @@ -517,7 +502,7 @@ For a example how to handle selection events see The compare function for the interactive search capabilities. - a + a @@ -530,6 +515,7 @@ For a example how to handle selection events see Disables the TreeView as a drag-and-drop destination. + To be added. @@ -710,7 +696,6 @@ For a example how to handle selection events see Internal constructor Pointer to the C object. - An instance of TreeView, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -723,7 +708,6 @@ For a example how to handle selection events see Creates a new object. - an object of type This is the default constructor for @@ -737,7 +721,6 @@ For a example how to handle selection events see Creates a new object. an object of type - an object of type In this constructor the is set from . @@ -752,11 +735,15 @@ For a example how to handle selection events see The model for the TreeView. an object of type - an object of type + an object of type - + + + GLib.Property(Name="model") + + Property @@ -765,7 +752,7 @@ For a example how to handle selection events see Gets the associated with the TreeView. - an object of type + an object of type @@ -778,7 +765,7 @@ For a example how to handle selection events see The window that this TreeView renders to. - an object of type + an object of type This property is primarily used to confirm that events on the TreeView are executed within the correct window. @@ -793,7 +780,7 @@ For a example how to handle selection events see Whether to display alternating, shaded rows in the . an object of type - an object of type + an object of type Setting to sets a hint to the theme engine to draw rows in alternating colors. @@ -801,7 +788,11 @@ This property tells GTK# that the user interface for your application requires u - + + + GLib.Property(Name="rules_hint") + + Property @@ -813,11 +804,15 @@ This property tells GTK# that the user interface for your application requires u View allows user to search through columns interactively. an object of type - an object of type + an object of type - + + + GLib.Property(Name="enable_search") + + Property @@ -829,11 +824,15 @@ This property tells GTK# that the user interface for your application requires u Show the column header buttons. an object of type - an object of type + an object of type - + + + GLib.Property(Name="headers_visible") + + Property @@ -845,11 +844,15 @@ This property tells GTK# that the user interface for your application requires u Set the column for the expander column. an object of type - an object of type + an object of type - + + + GLib.Property(Name="expander_column") + + Property @@ -861,11 +864,15 @@ This property tells GTK# that the user interface for your application requires u View is reorderable. an object of type - an object of type + an object of type - + + + GLib.Property(Name="reorderable") + + Property @@ -877,11 +884,15 @@ This property tells GTK# that the user interface for your application requires u Horizontal Adjustment for the widget. an object of type - an object of type + an object of type - + + + GLib.Property(Name="hadjustment") + + Property @@ -891,10 +902,14 @@ This property tells GTK# that the user interface for your application requires u Column headers respond to click events. - a + a - + + + GLib.Property(Name="headers_clickable") + + Property @@ -906,11 +921,15 @@ This property tells GTK# that the user interface for your application requires u Vertical Adjustment for the widget. an object of type - an object of type + an object of type - + + + GLib.Property(Name="vadjustment") + + Property @@ -922,11 +941,15 @@ This property tells GTK# that the user interface for your application requires u Model column to search through when searching through code. an object of type - an object of type + an object of type - + + + GLib.Property(Name="search_column") + + Event @@ -938,7 +961,11 @@ This property tells GTK# that the user interface for your application requires u Fired whenever the scrollbar adjustment units are set. - + + + GLib.Signal(CName="set_scroll_adjustments") + + Event @@ -950,7 +977,11 @@ This property tells GTK# that the user interface for your application requires u Fired whenever a row of the TreeView is expanded. - + + + GLib.Signal(CName="row_expanded") + + Event @@ -962,7 +993,11 @@ This property tells GTK# that the user interface for your application requires u Fired whenever the cursor is moved on this TreeView. - + + + GLib.Signal(CName="move_cursor") + + Event @@ -974,7 +1009,11 @@ This property tells GTK# that the user interface for your application requires u Fired when the widget wants to find out whether a row can be expanded or not. - + + + GLib.Signal(CName="test_expand_row") + + Event @@ -986,7 +1025,11 @@ This property tells GTK# that the user interface for your application requires u Fired when the row the cursor is on is selected. - + + + GLib.Signal(CName="select_cursor_row") + + Event @@ -998,7 +1041,11 @@ This property tells GTK# that the user interface for your application requires u Fired whenever a row is collapsed. - + + + GLib.Signal(CName="row_collapsed") + + Event @@ -1010,7 +1057,11 @@ This property tells GTK# that the user interface for your application requires u Fired when the columns of this tree change. - + + + GLib.Signal(CName="columns_changed") + + Event @@ -1022,7 +1073,11 @@ This property tells GTK# that the user interface for your application requires u Fired when the row where the cursor is is expanded or collapsed. - + + + GLib.Signal(CName="expand_collapse_cursor_row") + + Event @@ -1034,7 +1089,11 @@ This property tells GTK# that the user interface for your application requires u Fired when a row is activated; see . - + + + GLib.Signal(CName="row_activated") + + Event @@ -1046,7 +1105,11 @@ This property tells GTK# that the user interface for your application requires u Fired when the system wants to know whether a particular row can be collapsed. - + + + GLib.Signal(CName="test_collapse_row") + + Event @@ -1058,7 +1121,11 @@ This property tells GTK# that the user interface for your application requires u Fired when the cursor changes (rows). - + + + GLib.Signal(CName="cursor_changed") + + Method @@ -1112,7 +1179,11 @@ This property tells GTK# that the user interface for your application requires u Fired when the cursor toggles a row. (FIXME: explain in more detail.) - + + + GLib.Signal(CName="toggle_cursor_row") + + Event @@ -1124,7 +1195,11 @@ This property tells GTK# that the user interface for your application requires u Fired when the user begins a search of the tree. - + + + GLib.Signal(CName="start_interactive_search") + + Event @@ -1136,7 +1211,11 @@ This property tells GTK# that the user interface for your application requires u Fired whenever all rows of the TreeView are selected. - + + + GLib.Signal(CName="select_all") + + Event @@ -1148,7 +1227,11 @@ This property tells GTK# that the user interface for your application requires u Fired when the parent row of the current row is selected. (FIXME: explain in more detail. - + + + GLib.Signal(CName="select_cursor_parent") + + Event @@ -1160,9 +1243,13 @@ This property tells GTK# that the user interface for your application requires u Fired whenever all rows of the TreeView are specifically deselected. - + + + GLib.Signal(CName="unselect_all") + + - + Method Gtk.TreeViewColumn @@ -1170,7 +1257,13 @@ This property tells GTK# that the user interface for your application requires u - + + + + System.ParamArray + + + Adds a with a specific column title and attributes. @@ -1341,12 +1434,15 @@ tree_view.AppendColumn ("title", text, "text", 0); TreeView constructor a - a Creates a with as its . - + + + System.Obsolete(Message="Use NodeView with NodeStores", IsError=False) + + Method @@ -1392,7 +1488,7 @@ tree_view.AppendColumn ("title", text, "text", 0); GType Property. - a + a Returns the native value for . @@ -1666,12 +1762,15 @@ tree_view.AppendColumn ("title", text, "text", 0); Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - + Property Gtk.TreeViewColumn[] @@ -1679,7 +1778,7 @@ tree_view.AppendColumn ("title", text, "text", 0); A list of all the columns currently in this TreeView. - a + a @@ -1787,10 +1886,14 @@ tree_view.AppendColumn ("title", text, "text", 0); Whether or not to assume all rows are the same height. - a + a This is an optimization; set to for fastest performance. - + + + GLib.Property(Name="fixed_height_mode") + + Method @@ -1820,7 +1923,7 @@ tree_view.AppendColumn ("title", text, "text", 0); - + Method System.Int32 @@ -1829,7 +1932,13 @@ tree_view.AppendColumn ("title", text, "text", 0); - + + + + System.ParamArray + + + Convenience function that inserts a new column into the tree view @@ -1872,10 +1981,14 @@ tree_view.AppendColumn ("title", text, "text", 0); To be added - a + a To be added - + + + GLib.Property(Name="hover_expand") + + Property @@ -1885,10 +1998,14 @@ tree_view.AppendColumn ("title", text, "text", 0); To be added - a + a To be added - + + + GLib.Property(Name="hover_selection") + + Property @@ -1898,9 +2015,26 @@ tree_view.AppendColumn ("title", text, "text", 0); Callback function to indicate whether or not a given row of the tree view should be rendered as a separator. - a + a + + + Method + + System.Void + + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeViewColumn.xml b/doc/en/Gtk/TreeViewColumn.xml index cefbde622..eaa0ec56b 100644 --- a/doc/en/Gtk/TreeViewColumn.xml +++ b/doc/en/Gtk/TreeViewColumn.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,13 +17,9 @@ - GLib.IWrapper - - - System.IDisposable + Gtk.CellLayout - @@ -118,7 +112,6 @@ Internal constructor Pointer to the C object. - An instance of TreeViewColumn, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -131,7 +124,6 @@ Creates a new object. - an object of type @@ -147,7 +139,7 @@ The column that the model sorts on when this column is selected for sorting. an object of type - an object of type + an object of type @@ -163,11 +155,15 @@ The number of pixels to place between s packed into the column. an object of type - an object of type + an object of type - + + + GLib.Property(Name="spacing") + + Property @@ -179,11 +175,15 @@ The visibility of the . an object of type - an object of type + an object of type - + + + GLib.Property(Name="visible") + + Property @@ -195,11 +195,15 @@ Whether the column can be reordered by the end user dragging the header. an object of type - an object of type + an object of type - + + + GLib.Property(Name="reorderable") + + Property @@ -211,11 +215,15 @@ Maximum allowed width of the column. an object of type - an object of type + an object of type - + + + GLib.Property(Name="max_width") + + Property @@ -224,11 +232,15 @@ Current width of the column. - an object of type + an object of type - + + + GLib.Property(Name="width") + + Property @@ -240,11 +252,15 @@ Whether to show a sort indicator. an object of type - an object of type + an object of type - + + + GLib.Property(Name="sort_indicator") + + Property @@ -256,11 +272,15 @@ Resize mode of the column. an object of type - an object of type + an object of type - + + + GLib.Property(Name="sizing") + + Property @@ -272,11 +292,15 @@ Sort direction the sort indicator should indicate. an object of type - an object of type + an object of type - + + + GLib.Property(Name="sort_order") + + Property @@ -288,11 +312,15 @@ Minimum allowed width of the column. an object of type - an object of type + an object of type - + + + GLib.Property(Name="min_width") + + Property @@ -304,11 +332,15 @@ X Alignment of the column header text or widget. an object of type - an object of type + an object of type - + + + GLib.Property(Name="alignment") + + Property @@ -320,11 +352,15 @@ Title to appear in column header. an object of type - an object of type + an object of type - + + + GLib.Property(Name="title") + + Property @@ -336,11 +372,15 @@ Widget to put in column header button instead of column title. an object of type - an object of type + an object of type - + + + GLib.Property(Name="widget") + + Property @@ -352,11 +392,15 @@ Whether the header can be clicked. an object of type - an object of type + an object of type - + + + GLib.Property(Name="clickable") + + Property @@ -368,11 +412,15 @@ Current fixed width of the column. an object of type - an object of type + an object of type - + + + GLib.Property(Name="fixed_width") + + Property @@ -384,11 +432,15 @@ Whether column is user-resizable. an object of type - an object of type + an object of type - + + + GLib.Property(Name="resizable") + + Event @@ -401,9 +453,13 @@ - + + + GLib.Signal(CName="clicked") + + - + Method System.Void @@ -449,26 +505,30 @@ a a a - a - + Constructor - + + + + System.ParamArray + + + Creates a new a a a - a @@ -525,7 +585,7 @@ GType Property. - a + a Returns the native value for . @@ -551,12 +611,15 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - + Property Gtk.CellRenderer[] @@ -564,7 +627,7 @@ Returns a list of all the s in the column, in no particular order. - An array of s. + An array of s. @@ -577,13 +640,17 @@ Whether this column gets share of extra width allocated to the widget. - a + a - + + + GLib.Property(Name="expand") + + - + Method System.Void @@ -600,7 +667,7 @@ - + Method System.Void @@ -617,7 +684,7 @@ - + Method System.Void @@ -634,7 +701,7 @@ - + Method System.Void @@ -653,7 +720,7 @@ - + Method System.Void @@ -669,7 +736,7 @@ - + Method System.Void @@ -699,14 +766,20 @@ - + Method System.Void - + + + + System.ParamArray + + + Sets the attribute to model column bindings for a renderer. @@ -733,4 +806,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeViewColumnDropFunc.xml b/doc/en/Gtk/TreeViewColumnDropFunc.xml index 865c214f6..c0afddc9a 100644 --- a/doc/en/Gtk/TreeViewColumnDropFunc.xml +++ b/doc/en/Gtk/TreeViewColumnDropFunc.xml @@ -1,29 +1,24 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. A delegate type to specify a function signature for saying where a dragged column may be dropped. See for more details on how this delegate should be used. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +29,4 @@ System.Boolean - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeViewColumnSizing.xml b/doc/en/Gtk/TreeViewColumnSizing.xml index 99e063bf2..63f603d88 100644 --- a/doc/en/Gtk/TreeViewColumnSizing.xml +++ b/doc/en/Gtk/TreeViewColumnSizing.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.TreeViewColumnSizingGType)) + + @@ -82,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeViewDropPosition.xml b/doc/en/Gtk/TreeViewDropPosition.xml index 1251a3582..f74580b18 100644 --- a/doc/en/Gtk/TreeViewDropPosition.xml +++ b/doc/en/Gtk/TreeViewDropPosition.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.TreeViewDropPositionGType)) + + @@ -95,4 +86,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeViewMappingFunc.xml b/doc/en/Gtk/TreeViewMappingFunc.xml index 5a73f8c57..1628f4a85 100644 --- a/doc/en/Gtk/TreeViewMappingFunc.xml +++ b/doc/en/Gtk/TreeViewMappingFunc.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. A delegate to specify the signature of a function to be called on a set of rows that are expanded. See for when and @@ -15,15 +16,6 @@ a set of rows that are expanded. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -32,4 +24,4 @@ a set of rows that are expanded. System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeViewRowSeparatorFunc.xml b/doc/en/Gtk/TreeViewRowSeparatorFunc.xml index 4a70956ac..c04b30f48 100644 --- a/doc/en/Gtk/TreeViewRowSeparatorFunc.xml +++ b/doc/en/Gtk/TreeViewRowSeparatorFunc.xml @@ -1,29 +1,21 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. To be added To be added + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Boolean @@ -32,4 +24,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/TreeViewSearchEqualFunc.xml b/doc/en/Gtk/TreeViewSearchEqualFunc.xml index c620437a8..7d8cdc414 100644 --- a/doc/en/Gtk/TreeViewSearchEqualFunc.xml +++ b/doc/en/Gtk/TreeViewSearchEqualFunc.xml @@ -1,29 +1,24 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. A delegate to specify a compare function for interactive searching. See for more context about how this delegate is used. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +29,4 @@ System.Boolean - \ No newline at end of file + diff --git a/doc/en/Gtk/UIManager.xml b/doc/en/Gtk/UIManager.xml index 83276769d..4d0166b4b 100644 --- a/doc/en/Gtk/UIManager.xml +++ b/doc/en/Gtk/UIManager.xml @@ -1,11 +1,9 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -50,14 +48,7 @@ The behaviour is chosen based on the "is_important" property of the action to wh GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -175,7 +166,8 @@ The behaviour is chosen based on the "is_important" property of the action to wh emoves an action group from the list of action groups a - + + @@ -298,7 +290,8 @@ The behaviour is chosen based on the "is_important" property of the action to wh Parses a file containing a UI definition and merges it with the current contents. a , the name of the file to parse a . The merge id for the merged UI. The merge id can be used to unmerge the UI with . If an error occurred, the return value is 0. - + + @@ -330,7 +323,8 @@ The behaviour is chosen based on the "is_important" property of the action to wh Adds a UI element to the current contents from an embedded resource. a a - + + @@ -343,10 +337,13 @@ The behaviour is chosen based on the "is_important" property of the action to wh Internal constructor a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -357,7 +354,6 @@ The behaviour is chosen based on the "is_important" property of the action to wh Internal constructor a - a @@ -368,7 +364,6 @@ The behaviour is chosen based on the "is_important" property of the action to wh Default constructor - a @@ -381,7 +376,7 @@ The behaviour is chosen based on the "is_important" property of the action to wh GType Property. - a + a Returns the native value for . @@ -394,10 +389,14 @@ The behaviour is chosen based on the "is_important" property of the action to wh The UI represented in XML. - a + a - + + + GLib.Property(Name="ui") + + Property @@ -407,10 +406,14 @@ The behaviour is chosen based on the "is_important" property of the action to wh Sets the "add_tearoffs" property, which controls whether menus generated by this will have tearoff menu items. - a , whether tearoff menu items are added + a , whether tearoff menu items are added Note that this only affects regular menus. Generated popup menus never have tearoff menu items. - + + + GLib.Property(Name="add_tearoffs") + + Property @@ -420,7 +423,7 @@ The behaviour is chosen based on the "is_important" property of the action to wh The associated with this UIManager - a + a @@ -435,7 +438,11 @@ The behaviour is chosen based on the "is_important" property of the action to wh The "actions-changed" signal is emitted whenever the set of actions changes. - + + + GLib.Signal(CName="actions_changed") + + Event @@ -447,7 +454,11 @@ The behaviour is chosen based on the "is_important" property of the action to wh The PreActivate signal is emitted just before the action is activated. This is intended for applications to get notification just before any action is activated. - + + + GLib.Signal(CName="pre_activate") + + Event @@ -459,7 +470,11 @@ The behaviour is chosen based on the "is_important" property of the action to wh The AddWidget signal is emitted for each generated menubar and toolbar. It is not emitted for generated popup menus, which can be obtained by . - + + + GLib.Signal(CName="add_widget") + + Event @@ -471,7 +486,11 @@ The behaviour is chosen based on the "is_important" property of the action to wh The ConnectProxy signal is emitted after connecting a proxy to an action in the group. This is intended for simple customizations for which a custom action class would be too clumsy, e.g. showing tooltips for menuitems in the statusbar. - + + + GLib.Signal(CName="connect_proxy") + + Event @@ -483,7 +502,11 @@ The behaviour is chosen based on the "is_important" property of the action to wh The DisconnectProxy signal is emitted after disconnecting a proxy from an action in the group. - + + + GLib.Signal(CName="disconnect_proxy") + + Event @@ -495,7 +518,11 @@ The behaviour is chosen based on the "is_important" property of the action to wh The PostActivate signal is emitted just after the action is activated. This is intended for applications to get notification just after any action is activated. - + + + GLib.Signal(CName="post_activate") + + Method @@ -506,14 +533,15 @@ The behaviour is chosen based on the "is_important" property of the action to wh Returns an unused merge id, suitable for use with - . + . a - + + - + Property Gtk.ActionGroup[] @@ -521,7 +549,7 @@ The behaviour is chosen based on the "is_important" property of the action to wh The list of action groups associated with this UIManager. - a + a diff --git a/doc/en/Gtk/UIManagerItemType.xml b/doc/en/Gtk/UIManagerItemType.xml index 25eb18f21..f97b00027 100644 --- a/doc/en/Gtk/UIManagerItemType.xml +++ b/doc/en/Gtk/UIManagerItemType.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,20 +13,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -42,7 +29,8 @@ Pick the type of the UI element according to context. - + + @@ -55,7 +43,8 @@ Create a menubar. - + + @@ -68,7 +57,8 @@ Create a menu. - + + @@ -81,7 +71,8 @@ Create a toolbar. - + + @@ -94,7 +85,8 @@ Insert a placeholder. - + + @@ -107,7 +99,8 @@ Create a popup menu. - + + @@ -120,7 +113,8 @@ Create a menuitem. - + + @@ -133,7 +127,8 @@ Create a toolitem. - + + @@ -146,7 +141,8 @@ Create a separator. - + + @@ -159,7 +155,8 @@ Install an accelerator. - + + diff --git a/doc/en/Gtk/UnmapEventArgs.xml b/doc/en/Gtk/UnmapEventArgs.xml index 4ed638e80..f510cf489 100644 --- a/doc/en/Gtk/UnmapEventArgs.xml +++ b/doc/en/Gtk/UnmapEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ The uses this method to access the details of an event. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/UnmapEventHandler.xml b/doc/en/Gtk/UnmapEventHandler.xml index 2ab4f1c85..c9fd208ee 100644 --- a/doc/en/Gtk/UnmapEventHandler.xml +++ b/doc/en/Gtk/UnmapEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. Called whenever a widget is unmapped--- that is, whenever its window is hidden. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/UnselectAllArgs.xml b/doc/en/Gtk/UnselectAllArgs.xml index f543bbbca..ecbff72c5 100644 --- a/doc/en/Gtk/UnselectAllArgs.xml +++ b/doc/en/Gtk/UnselectAllArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,9 +25,8 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. - \ No newline at end of file + diff --git a/doc/en/Gtk/UnselectAllHandler.xml b/doc/en/Gtk/UnselectAllHandler.xml index 70ffd802a..91c988a59 100644 --- a/doc/en/Gtk/UnselectAllHandler.xml +++ b/doc/en/Gtk/UnselectAllHandler.xml @@ -1,14 +1,14 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -36,4 +27,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/UpdateType.xml b/doc/en/Gtk/UpdateType.xml index 02c2a0c67..dea137d27 100644 --- a/doc/en/Gtk/UpdateType.xml +++ b/doc/en/Gtk/UpdateType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,18 +16,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.UpdateTypeGType)) + + @@ -83,4 +74,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/UrlRequestedArgs.xml b/doc/en/Gtk/UrlRequestedArgs.xml index cfb375287..e1580fb6a 100644 --- a/doc/en/Gtk/UrlRequestedArgs.xml +++ b/doc/en/Gtk/UrlRequestedArgs.xml @@ -4,9 +4,7 @@ gtkhtml-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,7 +36,7 @@ An object for the HTML from the URL as it opens. - a + a @@ -52,9 +48,9 @@ The URL that was requested. - A string containing the URL. + A string containing the URL. - \ No newline at end of file + diff --git a/doc/en/Gtk/UrlRequestedHandler.xml b/doc/en/Gtk/UrlRequestedHandler.xml index 14bd262f6..ae9088e86 100644 --- a/doc/en/Gtk/UrlRequestedHandler.xml +++ b/doc/en/Gtk/UrlRequestedHandler.xml @@ -1,12 +1,13 @@ - + gtkhtml-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/VBox.xml b/doc/en/Gtk/VBox.xml index 941331068..89ea9d502 100644 --- a/doc/en/Gtk/VBox.xml +++ b/doc/en/Gtk/VBox.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -22,20 +20,7 @@ Gtk.Box - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -59,7 +44,6 @@ Internal constructor Pointer to the C object. - An instance of VBox, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -77,9 +61,6 @@ The main way to create a new VBox If , all widgets in the box are forced to be equally sized. The number of pixels to place between each widget in the box. - - A new VBox - @@ -92,7 +73,7 @@ GType property. - a + a Returns the native GObject type for . @@ -106,10 +87,13 @@ Protected constructor. a - a Chain to this constructor from subclasses when you manually register a for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -117,9 +101,8 @@ VBox Constructor. - a Instantiates a object using default values for the spacing and homogeneous attributes. - \ No newline at end of file + diff --git a/doc/en/Gtk/VButtonBox.xml b/doc/en/Gtk/VButtonBox.xml index 5838101a7..a7c6d286e 100644 --- a/doc/en/Gtk/VButtonBox.xml +++ b/doc/en/Gtk/VButtonBox.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,20 +18,7 @@ Gtk.ButtonBox - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -57,7 +42,6 @@ Internal constructor Pointer to the C object. - An instance of VButtonBox, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -70,7 +54,6 @@ The normal way to construct a vertical button box - A new VBox @@ -83,7 +66,7 @@ GType Property. - a + a Returns the native value for . @@ -97,10 +80,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -110,10 +96,15 @@ The default layout style for vertical button boxes. - a - + a + + - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -123,9 +114,14 @@ The default spacing (in pixels) for vertical button boxes. - a - + a + + - + + + System.Obsolete(Message=null, IsError=False) + + diff --git a/doc/en/Gtk/VPaned.xml b/doc/en/Gtk/VPaned.xml index 9ac460b63..d583987fa 100644 --- a/doc/en/Gtk/VPaned.xml +++ b/doc/en/Gtk/VPaned.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,20 +18,7 @@ Gtk.Paned - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -57,7 +42,6 @@ Internal constructor Pointer to the C object. - An instance of VPaned, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -70,7 +54,6 @@ Creates a new container, split vertically. - A new VPaned. @@ -83,7 +66,7 @@ GType property. - a + a Returns the native value for . @@ -97,9 +80,12 @@ Protected Constructor. a - a Chain to this constructor from a subclass if you have manually registered a for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/VRuler.xml b/doc/en/Gtk/VRuler.xml index bf46bb43a..f7039136d 100644 --- a/doc/en/Gtk/VRuler.xml +++ b/doc/en/Gtk/VRuler.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,20 +19,7 @@ Gtk.Ruler - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -58,7 +43,6 @@ Internal constructor Pointer to the C object. - An instance of VRuler, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -71,7 +55,6 @@ Creates a new vertical Ruler. - A new VRuler @@ -84,7 +67,7 @@ GType Property. - a + a Returns the native value for . @@ -98,9 +81,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/VScale.xml b/doc/en/Gtk/VScale.xml index a9ea178c0..1f96571eb 100644 --- a/doc/en/Gtk/VScale.xml +++ b/doc/en/Gtk/VScale.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,20 +18,7 @@ Gtk.Scale - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -57,7 +42,6 @@ Internal constructor Pointer to the C object. - An instance of VScale, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -73,7 +57,6 @@ Creates a new vertical slider based on the data in . The model to use for this VScale - A new VScale To create a vertical slider without explicit use of a , use the alternative constructor. @@ -93,7 +76,6 @@ The minimum value that is accepted by this VScale. The maximum value that is accepted by this VScale. The value to adjust the VScale by when 'sliding'. - A new VScale. Creates a new vertical slider that lets the user input a number between (and including) and . Each adjustment of the slider changes the value by , which must be non-zero. @@ -108,7 +90,7 @@ GType Property. - a + a Returns the native value for . @@ -122,9 +104,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/VScrollbar.xml b/doc/en/Gtk/VScrollbar.xml index 8070a1ff5..97cc12743 100644 --- a/doc/en/Gtk/VScrollbar.xml +++ b/doc/en/Gtk/VScrollbar.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,20 +18,7 @@ Gtk.Scrollbar - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -57,7 +42,6 @@ Internal constructor Pointer to the C object. - An instance of VScrollbar, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -73,7 +57,6 @@ Creates a new vertical scrollbar. The to use, or to create a new adjustment. - The new @@ -87,7 +70,7 @@ GType Property. - a + a Returns the native value for . @@ -101,9 +84,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/VSeparator.xml b/doc/en/Gtk/VSeparator.xml index 0a0c1009e..f6b544ed0 100644 --- a/doc/en/Gtk/VSeparator.xml +++ b/doc/en/Gtk/VSeparator.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,20 +19,7 @@ Gtk.Separator - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -58,7 +43,6 @@ Internal constructor Pointer to the C object. - An instance of VSeparator, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -71,7 +55,6 @@ Constructor. - A vertical separator. @@ -84,7 +67,7 @@ GType Property. - a + a Returns the native value for . @@ -98,9 +81,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/Viewport.xml b/doc/en/Gtk/Viewport.xml index c1d2654d6..f97f79806 100644 --- a/doc/en/Gtk/Viewport.xml +++ b/doc/en/Gtk/Viewport.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -73,20 +71,7 @@ namespace GtkSamples { Gtk.Bin - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -110,7 +95,6 @@ namespace GtkSamples { Internal constructor Pointer to the C object. - An instance of Viewport, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -128,7 +112,6 @@ namespace GtkSamples { Creates a new Viewport with the specified horizontal and vertical Adjustments. An to model horizontal viewing. An to model vertical viewing. - A new Viewport @@ -143,10 +126,14 @@ namespace GtkSamples { Manage the horizontal model. A new for horizontal scrolling. - The current state of the horizontal model + The current state of the horizontal model - + + + GLib.Property(Name="hadjustment") + + Property @@ -158,10 +145,14 @@ namespace GtkSamples { Manage the vertical model. A new for vertical scrolling. - The current state of the vertical model. + The current state of the vertical model. - + + + GLib.Property(Name="vadjustment") + + Property @@ -173,10 +164,14 @@ namespace GtkSamples { Manage the shadow style surrounding the Viewport contents. A new shadow style. - The current shadow style surrounding the child widget. + The current shadow style surrounding the child widget. - + + + GLib.Property(Name="shadow_type") + + Event @@ -188,7 +183,11 @@ namespace GtkSamples { This event is fired when the or properties are set. - + + + GLib.Signal(CName="set_scroll_adjustments") + + Constructor @@ -196,7 +195,6 @@ namespace GtkSamples { The main way to create a Viewport. - A new Viewport. Horizontal and vertical objects are automatically created. @@ -211,7 +209,7 @@ namespace GtkSamples { GType Property. - a + a Returns the native value for . @@ -242,9 +240,12 @@ namespace GtkSamples { Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/Visibility.xml b/doc/en/Gtk/Visibility.xml deleted file mode 100644 index 7b097ff98..000000000 --- a/doc/en/Gtk/Visibility.xml +++ /dev/null @@ -1,85 +0,0 @@ - - - - gtk-sharp - - - 0.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Obsolete enumeration. - Obsolete enumeration used in the Gtk.CList and Gtk.CTree classes (GTK+ 1.x widgets). - - - System.Enum - - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - - - - - Field - - Gtk.Visibility - - - - Obsolete. - - - - - - - Field - - Gtk.Visibility - - - - Obsolete. - - - - - - - Field - - Gtk.Visibility - - - - Obsolete. - - - - - - - Field - - System.Int32 - - - - - Internal field. - Do not use. - - - - \ No newline at end of file diff --git a/doc/en/Gtk/VisibilityNotifyEventArgs.xml b/doc/en/Gtk/VisibilityNotifyEventArgs.xml index e5bdf9ec4..bc57479e5 100644 --- a/doc/en/Gtk/VisibilityNotifyEventArgs.xml +++ b/doc/en/Gtk/VisibilityNotifyEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The uses this method to access the details of an event. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/VisibilityNotifyEventHandler.xml b/doc/en/Gtk/VisibilityNotifyEventHandler.xml index 2a078aa5e..37b20d84d 100644 --- a/doc/en/Gtk/VisibilityNotifyEventHandler.xml +++ b/doc/en/Gtk/VisibilityNotifyEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/Widget.xml b/doc/en/Gtk/Widget.xml index c6d5a14e9..e6ad03aab 100644 --- a/doc/en/Gtk/Widget.xml +++ b/doc/en/Gtk/Widget.xml @@ -1,15 +1,12 @@ - - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details.$ + Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. GtkWidget introduces style properties - these are basically object properties that are stored in the style object associated to the . @@ -20,22 +17,16 @@ Use to obtain the value of a style property. - + + Gtk.Object - + + Atk.Implementor - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - + + Method @@ -104,7 +95,7 @@ - + Method Atk.Object @@ -1078,7 +1069,6 @@ To change the font of a simple Widget: Internal constructor Pointer to the C object. - An instance of Widget, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -1092,7 +1082,7 @@ To change the font of a simple Widget: Obtains the visual of the default colormap. - Returns a visual of the default colormap. + Returns a visual of the default colormap. Not really useful; used to be useful before existed. @@ -1108,7 +1098,7 @@ To change the font of a simple Widget: Obtains the default style used by all initially. - Returns the default style. This object is owned by GTK+ and should not be modified or freed. + Returns the default style. This object is owned by GTK+ and should not be modified or freed. Returns the default style used by all initially. @@ -1127,7 +1117,7 @@ To change the font of a simple Widget: Sets or obtains the default colormap to use when creating . A colormap (see ). - A . + A . is a better method to use if you only want to affect a few widgets, rather than all widgets. @@ -1146,7 +1136,7 @@ To change the font of a simple Widget: Sets or obtains the default reading direction for . A . - A . + A . Where the direction has not been explicitly set by . @@ -1162,7 +1152,7 @@ To change the font of a simple Widget: Obtains the default reading direction for . - A . + A . Obtains the default reading direction for . @@ -1177,7 +1167,7 @@ To change the font of a simple Widget: Sets or obtains the reading direction on a particular . A . - The reading direction for the . + The reading direction for the . This direction controls the primary direction for containing text, and also the direction in which the children of a container are packed. The ability to set the direction is present in order so that correct localization into languages with right-to-left reading directions can be done. Generally, applications will let the default reading direction present, except for containers where the containers are arranged in an order that is explicitely visual rather than logical (such as buttons for text justification). If the direction is set none, then the value set by will be used. @@ -1196,7 +1186,7 @@ To change the font of a simple Widget: Sets or obtains the colormap that will be used to render . A colormap (see ). - A . + A . Widget must not have been previously realized. @@ -1215,7 +1205,7 @@ To change the font of a simple Widget: Sets or obtains whether should be mapped along with its when its parent is mapped and has been shown with . If , should be mapped along with its parent. - Returns if the is mapped with the parent. + Returns if the is mapped with the parent. The child visibility can be set for before it is added to a container with , to avoid mapping children unnecessary before immediately unmapping them. However it will be reset to its default state of when the is removed from a container. @@ -1237,7 +1227,7 @@ To change the font of a simple Widget: Sets or obtains a composite name. The name to set. - The composite name of , or if is not a composite child. The string should not be freed when it is no longer needed. + The composite name of , or if is not a composite child. The string should not be freed when it is no longer needed. The must be a composite child of its parent; see . @@ -1253,7 +1243,7 @@ To change the font of a simple Widget: Obtains the topmost in the container hierarchy is a part of. - The topmost ancestor of , or itself if there's no ancestor. + The topmost ancestor of , or itself if there's no ancestor. Note the difference in behavior against , would return if wasn't inside a toplevel window, and if the window was inside a GtkWindow-derived which was in turn inside the toplevel . While the second case may seem unlikely, it actually happens when a is embedded inside a within the same application. To reliably find the toplevel , use and check if the flag is set on the result. @@ -1273,7 +1263,7 @@ To change the font of a simple Widget: Sets whether a size allocation changes, the entire is queued for drawing. the entire will be redrawn when it is allocated to a new size. only the new portion of the will be redrawn. - Returns because it is on by Default, but returns if you turn it off. + Returns because it is on by Default, but returns if you turn it off. By default, this setting is and the entire is redrawn on every size change. If your leaves the upper left are unchanged when made bigger, turning this setting on will improve performance. @@ -1296,7 +1286,7 @@ To change the font of a simple Widget: Use this property to turn off the double buffering. is on by Default, if you want to turn off double buffering no use call for true because it is default. - Returns because double buffering is on by Default, but returns if you turn it off. + Returns because double buffering is on by Default, but returns if you turn it off. Widgets are double buffered by default, you can use this property to turn off the buffering. "Double buffered" simply means that and are called automatically around events sent to the . diverts all drawing to a 's window to an offscreen buffer, and draws the buffer to the screen. The result is that users see the window update in one smooth step, and don't see individual graphics primitives being rendered. @@ -1315,7 +1305,7 @@ To change the font of a simple Widget: Obtains the settings object holding the settings (global property settings, RC file information, etc) used for this . - The relevant object. + The relevant object. Note that this property can only be called when the is attached to a toplevel, since the settings object is specific to a particular . @@ -1334,7 +1324,7 @@ To change the font of a simple Widget: Sets or obtains 's parent window. The new parent window. - The parent window of . + The parent window of . Sets or obtains 's parent window. @@ -1350,7 +1340,7 @@ To change the font of a simple Widget: Obtains a with the appropriate colormap, font description and base direction for . - + Unlike the context returned by , this context is owned by the (it can be used until the screen for the changes or the is removed from its toplevel), and will be updated to match any changes to the 's attributes. @@ -1369,7 +1359,7 @@ To change the font of a simple Widget: Obtains the visual that will be used to render . - The visual for . + The visual for . Obtains the visual that will be used to render . @@ -1385,7 +1375,7 @@ To change the font of a simple Widget: Obtains the current modifier style for the .(As set by ) - The modifier style for the . This rc style is owned by the . + The modifier style for the . This rc style is owned by the . If no style has previously set, a new will be created with all values unset, and set as the modifier style for the . If you make changes to this rc style, you must call , passing in the returned rc style, to make sure that your changes take effect. @@ -1407,12 +1397,16 @@ To change the font of a simple Widget: Whether the is visible. If the widget is set to be visible. - - if the widget is meant to be visible. + + if the widget is meant to be visible. - + + + GLib.Property(Name="visible") + + Property @@ -1424,10 +1418,14 @@ To change the font of a simple Widget: Override for the width request for the . The width to be set for the . - The width of the . + The width of the . Or -1 if natural request should be used. - + + + GLib.Property(Name="width_request") + + Property @@ -1439,8 +1437,8 @@ To change the font of a simple Widget: Sets the sensitivity of the . A widget is sensitive if the user can interact with it, otherwise, it is grayed. A System.Boolean value. Set to to enable the sensitivity, this is, whether the widget should respond to input or not. - - if the responds to input. + + if the responds to input. Insensitive widgets are "grayed out" and the user can't interact with them. Insensitive widgets are known as @@ -1462,7 +1460,11 @@ property will return false. - + + + GLib.Property(Name="sensitive") + + Property @@ -1474,11 +1476,15 @@ property will return false. Whether to make the receive the default action when it is focused. If the will receive the default action when is focused. - - if the will receive the default action when is focused. + + if the will receive the default action when is focused. - + + + GLib.Property(Name="receives_default") + + Property @@ -1490,11 +1496,15 @@ property will return false. Whether the has the input focus. If the has the input focus. - - if the has the input focus. + + if the has the input focus. - + + + GLib.Property(Name="has_focus") + + Property @@ -1506,10 +1516,14 @@ property will return false. The mask that decides what kind of extension events the gets. A Gdk.ExtensionMode. - A Gdk.ExtensionMode. + A Gdk.ExtensionMode. - + + + GLib.Property(Name="extension_events") + + Property @@ -1522,10 +1536,14 @@ property will return false. when the currently is receiving the default action. If the is the default . - Evaluates to if the currently is receiving the default action. + Evaluates to if the currently is receiving the default action. When the is focused will receive the default action, and HasDefault will be even if there is a different widget set as default. - + + + GLib.Property(Name="has_default") + + Property @@ -1534,11 +1552,15 @@ property will return false. Whether the is part of a composite widget. - - if the is part of a composite widget. + + if the is part of a composite widget. - + + + GLib.Property(Name="composite_child") + + Property @@ -1551,8 +1573,8 @@ property will return false. Evaluates to if the is allowed to receive the default focus. value that get or set the capability of the widget to receive the default focus. - - that indicates if the widget can grab the default focus, using . + + that indicates if the widget can grab the default focus, using . When this property is set to true, the widget itself will reserve space to @@ -1584,7 +1606,11 @@ to false, the property will return false. [FIXME] This is a seealso instead see - + + + GLib.Property(Name="can_default") + + Property @@ -1596,8 +1622,8 @@ to false, the property will return false. Determines whether the is able to receive the focus. Set to to give focus capability to the . - Evaluates to if the is able to -handle focus grabs. + Evaluates to if the is able to +handle focus grabs. If the widget property evaluates @@ -1617,7 +1643,11 @@ handle focus grabs. [FIXME] This two links are seealso instead see: and - + + + GLib.Property(Name="can_focus") + + Property @@ -1629,10 +1659,14 @@ handle focus grabs. Override for the height request for the . The height to be set for the . - The height of the . + The height of the . Or -1 if natural request should be used. - + + + GLib.Property(Name="height_request") + + Property @@ -1644,11 +1678,15 @@ handle focus grabs. Whether the application will paint directly on the . If the application will paint directly on the . - - if the application will paint directly on the . + + if the application will paint directly on the . - + + + GLib.Property(Name="app_paintable") + + Property @@ -1660,10 +1698,14 @@ handle focus grabs. The parent widget of this . The parent widget. - The parent widget. + The parent widget. Must be a Container , - + + + GLib.Property(Name="parent") + + Property @@ -1675,10 +1717,14 @@ handle focus grabs. The name of the . The name to be set for the . - The name of the . + The name of the . - + + + GLib.Property(Name="name") + + Property @@ -1690,10 +1736,14 @@ handle focus grabs. The style of the . A style. - A style. + A style. Which contains information about how it will look (colors etc). - + + + GLib.Property(Name="style") + + Event @@ -1705,7 +1755,11 @@ handle focus grabs. Fired whenever this widget (or its parent, if is true for the parent) is told to hide itself. - + + + GLib.Signal(CName="unmap_event") + + Event @@ -1715,10 +1769,13 @@ handle focus grabs. Fired whenever this widget is focused. - a The widget gets this signal as the user uses keyboard shortcuts or tabs through the widgets in a window. - + + + GLib.Signal(CName="focus") + + Event @@ -1730,7 +1787,11 @@ handle focus grabs. Fired whenever this widget's parent widget is set. - + + + GLib.Signal(CName="parent_set") + + Event @@ -1742,7 +1803,11 @@ handle focus grabs. Fired when a key is released within this widget. - + + + GLib.Signal(CName="key_release_event") + + Event @@ -1752,8 +1817,13 @@ handle focus grabs. Fired whenever this widget is hidden. + To be added. - + + + GLib.Signal(CName="hide") + + Event @@ -1765,7 +1835,11 @@ handle focus grabs. Fired whenever the widget receives a request for a selection. TODO: explain more about the X selection model - + + + GLib.Signal(CName="selection_request_event") + + Event @@ -1777,7 +1851,11 @@ handle focus grabs. Fired when the text direction for this widget is changed. - + + + GLib.Signal(CName="direction_changed") + + Event @@ -1789,7 +1867,11 @@ handle focus grabs. Fired when a drag action leaves this widget. - + + + GLib.Signal(CName="drag_leave") + + Event @@ -1801,7 +1883,11 @@ handle focus grabs. Fired when the widget is scrolled. - + + + GLib.Signal(CName="scroll_event") + + Event @@ -1813,7 +1899,11 @@ handle focus grabs. Fired whenever the visibility state of the widget changes--- partially visible or fully visible, for example. It may be preferable to handle a instead. - + + + GLib.Signal(CName="visibility_notify_event") + + Event @@ -1825,7 +1915,11 @@ handle focus grabs. Emitted when the Window state changes. - + + + GLib.Signal(CName="window_state_event") + + Event @@ -1837,7 +1931,11 @@ handle focus grabs. Fired when this widget is mapped. - + + + GLib.Signal(CName="map") + + Event @@ -1847,8 +1945,13 @@ handle focus grabs. Fired on a source widget when the user begins a drag. + To be added. - + + + GLib.Signal(CName="drag_begin") + + Event @@ -1860,7 +1963,11 @@ handle focus grabs. Fired when the hierarchy (parent or child relationships) of this widget or its parent or children changes. - + + + GLib.Signal(CName="hierarchy_changed") + + Event @@ -1872,7 +1979,11 @@ handle focus grabs. Fired when the configuration of the window has changed (it has been moved or resized). - + + + GLib.Signal(CName="configure_event") + + Event @@ -1884,7 +1995,11 @@ handle focus grabs. Fired when a key is pressed within this widget. - + + + GLib.Signal(CName="key_press_event") + + Event @@ -1896,7 +2011,11 @@ handle focus grabs. Fired just after the widget is mapped. - + + + GLib.Signal(CName="map_event") + + Event @@ -1908,7 +2027,11 @@ handle focus grabs. Fired when this widget grabs the keyboard focus. - + + + GLib.Signal(CName="grab_focus") + + Event @@ -1920,7 +2043,11 @@ handle focus grabs. Fired when the pointer moves within this widget. - + + + GLib.Signal(CName="motion_notify_event") + + Event @@ -1932,7 +2059,11 @@ handle focus grabs. Fired when the state of the widget changes. See for the possible states of a widget. - + + + GLib.Signal(CName="state_changed") + + Event @@ -1944,7 +2075,11 @@ handle focus grabs. Emits NoExposeEvent - + + + GLib.Signal(CName="no_expose_event") + + Event @@ -1956,7 +2091,11 @@ handle focus grabs. Fired when a widget is unrealized. - + + + GLib.Signal(CName="unrealize") + + Event @@ -1968,7 +2107,11 @@ handle focus grabs. Fired when a (mouse) button is released on this widget. - + + + GLib.Signal(CName="button_release_event") + + Event @@ -1980,7 +2123,11 @@ handle focus grabs. Fired when this widget gets a selection from the clipboard. - + + + GLib.Signal(CName="selection_get") + + Event @@ -1992,7 +2139,11 @@ handle focus grabs. Fired when size is allocated for this widget. - + + + GLib.Signal(CName="size_allocate") + + Event @@ -2004,7 +2155,11 @@ handle focus grabs. Fired when this widget's popup menu is activated. - + + + GLib.Signal(CName="popup_menu") + + Event @@ -2016,7 +2171,11 @@ handle focus grabs. Fired when the widget needs to be (fully or partially) redrawn. See , . - + + + GLib.Signal(CName="expose_event") + + Event @@ -2028,7 +2187,11 @@ handle focus grabs. Fired when the widget is shown. - + + + GLib.Signal(CName="show") + + Event @@ -2040,7 +2203,11 @@ handle focus grabs. Emitted when a selection is made. - + + + GLib.Signal(CName="selection_notify_event") + + Event @@ -2052,7 +2219,11 @@ handle focus grabs. Fired when the widget has just gained the focus. - + + + GLib.Signal(CName="focus_in_event") + + Event @@ -2064,7 +2235,11 @@ handle focus grabs. Fired when a button is pressed. - + + + GLib.Signal(CName="button_press_event") + + Event @@ -2076,7 +2251,11 @@ handle focus grabs. Emitted when a property is changed. - + + + GLib.Signal(CName="property_notify_event") + + Event @@ -2088,7 +2267,11 @@ handle focus grabs. Fired when the help text is shown. - + + + GLib.Signal(CName="show_help") + + Event @@ -2100,7 +2283,11 @@ handle focus grabs. Fired when a message is received from another application. - + + + GLib.Signal(CName="client_event") + + Event @@ -2112,7 +2299,11 @@ handle focus grabs. Fired when the user is using a stylus or touch screen and their pointer comes near the widget. See for context. - + + + GLib.Signal(CName="proximity_in_event") + + Event @@ -2124,7 +2315,11 @@ handle focus grabs. Fired when the user is using a stylus or touch screen and their pointer leaves the area near the widget. See for context. - + + + GLib.Signal(CName="proximity_out_event") + + Event @@ -2136,7 +2331,11 @@ handle focus grabs. Fired when this widget is destroyed. - + + + GLib.Signal(CName="destroy_event") + + Event @@ -2148,7 +2347,11 @@ handle focus grabs. Fired when this widget is the destination of a received selection. - + + + GLib.Signal(CName="selection_received") + + Event @@ -2160,7 +2363,11 @@ handle focus grabs. Fired when the drag-and-drop process gets data from a source widget. - + + + GLib.Signal(CName="drag_data_get") + + Event @@ -2172,7 +2379,11 @@ handle focus grabs. The pointer has just entered the widget. If the flag is set, Widget will gain the focus, and the widget might be drawn differently. If the handler returns False, the event might be passed to the parent of widget (if no other handler of widget has returned True). - + + + GLib.Signal(CName="enter_notify_event") + + Event @@ -2184,7 +2395,11 @@ handle focus grabs. Fired on a destination widget when it receives dragged data. - + + + GLib.Signal(CName="drag_data_received") + + Event @@ -2196,7 +2411,11 @@ handle focus grabs. Fired on a source widget when the user is moving a dragged selection. - + + + GLib.Signal(CName="drag_motion") + + Event @@ -2208,7 +2427,11 @@ handle focus grabs. Fired when this widget needs to notify another object of its preferred size. - + + + GLib.Signal(CName="size_request") + + Event @@ -2220,7 +2443,11 @@ handle focus grabs. Emitted when a widget grabs focus. - + + + GLib.Signal(CName="grab_notify") + + Event @@ -2232,7 +2459,11 @@ handle focus grabs. Fired when a is set for this widget.t - + + + GLib.Signal(CName="style_set") + + Event @@ -2244,7 +2475,11 @@ handle focus grabs. Fired when the focus leaves this widget. - + + + GLib.Signal(CName="focus_out_event") + + Event @@ -2256,7 +2491,11 @@ handle focus grabs. Emitted when a child has been notified. - + + + GLib.Signal(CName="child_notify") + + Event @@ -2268,7 +2507,11 @@ handle focus grabs. Fired when the widget is unmapped on the screen. - + + + GLib.Signal(CName="unmap") + + Event @@ -2280,7 +2523,11 @@ handle focus grabs. Fired on a source widget when a drag operation is completed. - + + + GLib.Signal(CName="drag_end") + + Event @@ -2292,7 +2539,11 @@ handle focus grabs. Fired when the current selection is cleared. - + + + GLib.Signal(CName="selection_clear_event") + + Event @@ -2304,7 +2555,11 @@ handle focus grabs. Fired when someone presses a mnemonic key. - + + + GLib.Signal(CName="mnemonic_activate") + + Event @@ -2316,7 +2571,11 @@ handle focus grabs. Fired on a source widget when dragged data is dropped. - + + + GLib.Signal(CName="drag_drop") + + Event @@ -2328,7 +2587,11 @@ handle focus grabs. Fired when the mouse leaves this widget. - + + + GLib.Signal(CName="leave_notify_event") + + Event @@ -2340,7 +2603,11 @@ handle focus grabs. Fired when the user has clicked on the "close" button in the window's frame (the button that is automatically set by the window manager). If the handler returns False, the widget will be destroyed (and the window closed), but if the handler returns True, nothing will be done. This is a good way to prevent the user from closing your application's window if there should be some cleanups first (like saving the document). - + + + GLib.Signal(CName="delete_event") + + Event @@ -2352,7 +2619,11 @@ handle focus grabs. Emitted when a widget is realized. The default handler creates the Gdk window associated with the widget, and its ancestors. - + + + GLib.Signal(CName="realize") + + Event @@ -2364,7 +2635,11 @@ handle focus grabs. Fired on a source widget when dragged data is deleted. - + + + GLib.Signal(CName="drag_data_delete") + + Property @@ -2373,7 +2648,7 @@ handle focus grabs. The root window this Widget is attached to. - a + a @@ -2385,7 +2660,7 @@ handle focus grabs. Obtains the for the toplevel window associated with this . - The for the toplevel for this . + The for the toplevel for this . This method can only be called after the has been added to a widget hierarchy with a at the top. @@ -2404,7 +2679,7 @@ handle focus grabs. Obtains the from the toplevel window associated with this . - The for the toplevel for this . + The for the toplevel for this . This method can only be called after the has been added to a widget hierarchy with a at the top. @@ -2425,15 +2700,19 @@ handle focus grabs. Determines if the is the focus widget within its toplevel. - - if the is the focus widget. + + if the is the focus widget. This does not mean that the flag is necessarily set; will only be set if the toplevel additionally has the global input focus. - + + + GLib.Property(Name="is_focus") + + Event @@ -2445,7 +2724,11 @@ handle focus grabs. Emitted when the screen has changed. - + + + GLib.Signal(CName="screen_changed") + + Method @@ -2594,7 +2877,11 @@ handle focus grabs. Emits the WidgetEvent. - + + + GLib.Signal(CName="event") + + Method @@ -2608,6 +2895,7 @@ handle focus grabs. Obtains the value of a style property of . The name of a style property. + To be added. @@ -2619,7 +2907,7 @@ handle focus grabs. Checks whether there is a is associated with this . - see langword="true" /> if there is a associated with the . + see langword="true" /> if there is a associated with the . All toplevel have an associated screen, and all added into a hierarchy with a toplevel window at the top. @@ -2632,7 +2920,7 @@ handle focus grabs. GType Property. - a + a Returns the native value for . @@ -3150,10 +3438,13 @@ handle focus grabs. Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Property @@ -3164,7 +3455,7 @@ handle focus grabs. Sets or obtains the state of a (insensitive, prelighted, etc.). New state for . - New state for . + New state for . Usually you should set the state using wrapper fuctions such as . This property is for use in widget implementations. This property should not be used to check the state of a Gtk.Checkbutton or Gtk.ToggleButton, use . @@ -3181,7 +3472,11 @@ handle focus grabs. Fired when the closures for this widget's accelerator change. - + + + GLib.Signal(CName="accel_closures_changed") + + Method @@ -3662,7 +3957,7 @@ xs Obtains or sets the event mask for the (a bitfield containing flags from ). - a + a The event mask determines which events a will receive. Keep in mind that different widgets have different default event masks, and by changing the event mask you may disrupt a 's fuctionalit, so be careful. @@ -3678,7 +3973,11 @@ xs - + + + GLib.Property(Name="events") + + Method @@ -3701,7 +4000,7 @@ xs Obtains or sets the underlying Gdk.Window used to display the contents of the . - a + a @@ -3713,7 +4012,7 @@ xs Obtains or sets the flags for this . - a + a This property should only be used when writing custom widgets in C#. The property is a preferred more strongly typed member. This member is obsolete in Gtk# 2.0. @@ -3723,7 +4022,11 @@ xs - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -3752,7 +4055,6 @@ xs Protected constructor. - a @@ -3764,7 +4066,7 @@ xs The width of the focus line in a . - a + a Subclasses of use this style property to correctly layout their children. @@ -3780,14 +4082,14 @@ xs Gets or Sets the widget's allocation. - a representing the size of the widget's allocation. + a representing the size of the widget's allocation. When the top-level widget has determined how much space its child would like to have, the second phase of the size negotiation, size allocation, begins. Depending on its configuration (see ), the top-level widget may be able to expand in order to satisfy the size request or it may have to ignore the size request and keep its fixed size. It then tells its child widget how much space it gets by calling . The child widget divides the space among its children and tells each child how much space it got, and so on. Under normal circumstances, a will always give its child the amount of space the child requested. A child's size allocation is represented by a . This struct contains not only a width and height, but also a position (i.e. X and Y coordinates), so that containers can tell their children not only how much space they have gotten, but also where they are positioned inside the space available to the container. Widgets are required to honor the size allocation they receive; a size request is only a request, and widgets must be able to cope with any size. - + None. @@ -3799,8 +4101,9 @@ Widgets are required to honor the size allocation they receive; a size request i Gets or Sets the widget's requisition - a representing the widget's requisition - + a representing the widget's requisition + + @@ -3811,7 +4114,7 @@ Widgets are required to honor the size allocation they receive; a size request i Check to see if the widget is Mapped - true if the widget is Mapped, false otherwise. + true if the widget is Mapped, false otherwise. None. @@ -3823,7 +4126,7 @@ Widgets are required to honor the size allocation they receive; a size request i Checks to see if the widget is Realized - returns true if the widget is Realized + returns true if the widget is Realized None. @@ -3835,7 +4138,7 @@ Widgets are required to honor the size allocation they receive; a size request i Convenience property to check Flags for WidgetFlags.NoWindow - True if the NoWindow flag is set. + True if the NoWindow flag is set. None. @@ -3847,7 +4150,7 @@ Widgets are required to honor the size allocation they receive; a size request i Convenience property to check Flags for WidgetFlags.Toplevel - True if the Toplevel flag is set. + True if the Toplevel flag is set. None @@ -3859,7 +4162,7 @@ Widgets are required to honor the size allocation they receive; a size request i Convenience property to check Flags for WidgetFlags.HasGrab - True if the HasGrab flag is set. + True if the HasGrab flag is set. None. @@ -3871,7 +4174,7 @@ Widgets are required to honor the size allocation they receive; a size request i Convenience property to check Flags for WidgetFlags.CompositeChild - True if the CompositeChild flag is set + True if the CompositeChild flag is set None @@ -3883,7 +4186,7 @@ Widgets are required to honor the size allocation they receive; a size request i Convenience property to check Flags for WidgetFlags.AppPaintable - True if the AppPaintable flag is set + True if the AppPaintable flag is set None @@ -3895,7 +4198,7 @@ Widgets are required to honor the size allocation they receive; a size request i Convenience property to check Flags for WidetFlags.DoubleBuffered - True if the DoubleBuffered flag is set. + True if the DoubleBuffered flag is set. None @@ -3907,7 +4210,7 @@ Widgets are required to honor the size allocation they receive; a size request i Convenience property to check if the widget is Visible and Realized. - True if the widget is able to be drawn on + True if the widget is able to be drawn on None @@ -3963,7 +4266,7 @@ Widgets are required to honor the size allocation they receive; a size request i Obtains the widget's requisition. - a + a Obtains requisition, unless someone has forced a particular geometry, in which case it returns that geometry instead of the widget's requisition. This method differs from in that it retrieves the last size request value, while the method recomputes the size request and fills in the requisition, and then returns the recomputed value. @@ -3982,10 +4285,14 @@ Widgets are required to honor the size allocation they receive; a size request i This property determines whether the widget will be affected by and . - a , true if the widget should be affected + a , true if the widget should be affected - + + + GLib.Property(Name="no_show_all") + + Event @@ -4000,7 +4307,11 @@ Widgets are required to honor the size allocation they receive; a size request i See for more details. - + + + GLib.Signal(CName="can_activate_accel") + + Method @@ -4205,7 +4516,7 @@ Widgets are required to honor the size allocation they receive; a size request i Contains Widget specific flags values. - a + a @@ -4219,7 +4530,11 @@ Widgets are required to honor the size allocation they receive; a size request i Emits the WidgetEventAfter. - + + + GLib.Signal(CName="event-after") + + Method @@ -4231,7 +4546,7 @@ Widgets are required to honor the size allocation they receive; a size request i Default handler for the event. a - a Override this method in a subclass to provide a default handler for the event. - \ No newline at end of file + + diff --git a/doc/en/Gtk/WidgetEventAfterArgs.xml b/doc/en/Gtk/WidgetEventAfterArgs.xml index 90b0c882d..beeca3f93 100644 --- a/doc/en/Gtk/WidgetEventAfterArgs.xml +++ b/doc/en/Gtk/WidgetEventAfterArgs.xml @@ -4,8 +4,6 @@ gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.SignalArgs - @@ -27,7 +24,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The uses this method to access the details of an event. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/WidgetEventAfterHandler.xml b/doc/en/Gtk/WidgetEventAfterHandler.xml index 5b232f869..80d529d1d 100644 --- a/doc/en/Gtk/WidgetEventAfterHandler.xml +++ b/doc/en/Gtk/WidgetEventAfterHandler.xml @@ -1,14 +1,14 @@ - + gtk-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -19,15 +19,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -36,4 +27,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/WidgetEventArgs.xml b/doc/en/Gtk/WidgetEventArgs.xml index aa5b75142..4eade5158 100644 --- a/doc/en/Gtk/WidgetEventArgs.xml +++ b/doc/en/Gtk/WidgetEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ The uses this method to access the details of an event. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/WidgetEventHandler.xml b/doc/en/Gtk/WidgetEventHandler.xml index 2a2457d56..b66c6a266 100644 --- a/doc/en/Gtk/WidgetEventHandler.xml +++ b/doc/en/Gtk/WidgetEventHandler.xml @@ -1,15 +1,15 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/WidgetFlags.xml b/doc/en/Gtk/WidgetFlags.xml index d225db204..b46f50e89 100644 --- a/doc/en/Gtk/WidgetFlags.xml +++ b/doc/en/Gtk/WidgetFlags.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,20 +14,12 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + GLib.GType(WrapperType=typeof(Gtk.WidgetFlagsGType)) + + + System.Flags @@ -358,7 +348,8 @@ Whether calls to ShowAll and HideAll will effect the widget. - + + diff --git a/doc/en/Gtk/WidgetHelpType.xml b/doc/en/Gtk/WidgetHelpType.xml index b41fd46b4..9d80f79f6 100644 --- a/doc/en/Gtk/WidgetHelpType.xml +++ b/doc/en/Gtk/WidgetHelpType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.WidgetHelpTypeGType)) + + @@ -69,4 +60,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/Window.xml b/doc/en/Gtk/Window.xml index b576e5101..7d3682958 100644 --- a/doc/en/Gtk/Window.xml +++ b/doc/en/Gtk/Window.xml @@ -1,13 +1,10 @@ - - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,20 +15,7 @@ Gtk.Bin - - Atk.Implementor - - - GLib.IWrapper - - - GLib.IWrapper - - - System.IDisposable - - @@ -723,7 +707,6 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Internal constructor. Pointer to the C object. - An instance of Window, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -739,7 +722,6 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Creates a new Window object, based on the . A . - A . Creates a new Window object, wich can be of type TopLevel ( most of the cases ) or PopUp. Take care with the use of PopUp type, since it is not controlled by the window manager. @@ -757,7 +739,6 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Creates a new TopLevel Window object, with as the title. A string. - A . Creates a new TopLevel Window object, using as the title. You get the same if you use the public Window ( Gtk.WindowType type ) constructor and later set the string Title property. @@ -776,7 +757,7 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or unsets the default for a about. Widget to be the default, or to unset the default for the toplevel. - A . + A . The default is the widget that's activated when the user presses Enter in a dialog (for example). When setting (rather than unsetting) the default it's generally easier to call on the . Before making a default , you must set the flag on the you'd like to make the default. @@ -795,8 +776,8 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); If this function is called on a with setting of , before it is realized or showed, it will have a "frame" around widget->window, accessible in window->frame. Or it access the "frame" exterior to widget->window. A . - - if a frame has been added to the via . + + if a frame has been added to the via . Using the event you can receive all events targeted at the frame. This method is used by the linux-fb port to implement managed windows, but it could concievably be used by X-programs that want to do their own window decorations. @@ -818,14 +799,18 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or obtains the meaning of coordinates passed to . A window gravity. - A window gravity. + A window gravity. The default window gravity is which is typically "do what you mean". See and . - + + + GLib.Property(Name="gravity") + + Property @@ -837,7 +822,7 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or obtains the mnemonic modifier for this . The modfier mask. - The modifier mask used to activate mnemonics on this . + The modifier mask used to activate mnemonics on this . @@ -852,14 +837,18 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or obtains the type hint for . The window type. - The type hint for . + The type hint for . By setting the type hint for the , you allow the window manager to decorate and handle the in a way which is suitable to the function of the in your application. This property should be called before the becomes visible. - + + + GLib.Property(Name="type_hint") + + Property @@ -871,7 +860,7 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or obtains the transient parent window. Parent . - + Dialog windows should be transient for the main they were spawned from, this allows windows managers to e.g. keep the dialog on top of the main , or center the dialog over the main . @@ -894,7 +883,7 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets a to be the focus widget for the if it is not the current focus widget, and its focusable, or retrieves the current focused within the . to be the new focus widget, or to unset any focus widget for the toplevel window. - The currently focused , or if there is none. + The currently focused , or if there is none. To set the focus to a particular in the toplevel, it is usually more convenient to use . @@ -916,7 +905,7 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or obtains the role of the . Unique identifier for the to be used when restoring a session. - The role of the if set, or . The returned is owned by the widget and must not be modified or freed. + The role of the if set, or . The returned is owned by the widget and must not be modified or freed. This property is only useful on X11, not with other GTK# targets. @@ -926,7 +915,11 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); If a already has a unique title, you don't need to set the role, since the WM can use the title to identigy the when restoring the session. - + + + GLib.Property(Name="role") + + Property @@ -939,8 +932,8 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or obtains whether the has been set to have decorations. to decorate the . - - if the has been set to have decorations. + + if the has been set to have decorations. With this property you control if a will be decorated or not. @@ -950,7 +943,11 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); - + + + GLib.Property(Name="decorated") + + Property @@ -963,15 +960,19 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or obtains whether a will be resizable by the user or not. if the user can resize this . - - if the user can resize the . + + if the user can resize the . By default, the are resizable, so you can change the size of them. But if you set this property to false, the user won't be able to change the size of them. - + + + GLib.Property(Name="resizable") + + Property @@ -983,14 +984,18 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Property used for setting/getting the position. A position. See also . - The position. See also . + The position. See also . This property will alow you to define where a must be displayed on the screen. It work with the enum, so maybe you should check it before use it. - + + + GLib.Property(Name="window_position") + + Property @@ -1002,14 +1007,18 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Property used for setting or obtaining the default height of a . A height. - The default height of the . + The default height of the . This property will allow you to define the default height for your . It only define the default one, so if the is resized, it won't be able to do anything. - + + + GLib.Property(Name="default_height") + + Property @@ -1021,14 +1030,18 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or obtains whether the transient parent of will also destroy itself an object of type - an object of type + an object of type This is useful for dialogs that shouldn't persist beyond the livefime of the main they're associated with, for example. - + + + GLib.Property(Name="destroy_with_parent") + + Property @@ -1040,8 +1053,8 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or obtains the modal status of . Whether the is modal. - - if the is set to be modal and establishes a grab when shown. + + if the is set to be modal and establishes a grab when shown. Modal windows prevent interaction with other windows in the same application. To keep modal dialogs on top of main application windows, use to make the dialog transient for the parent; most window managers will then disallow lowering the dialog below the parent. @@ -1051,7 +1064,11 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); - + + + GLib.Property(Name="modal") + + Property @@ -1063,11 +1080,15 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or obtains if the can be resized to a larger size by the user. If the can be resized. - - if the can be resized. + + if the can be resized. - + + + GLib.Property(Name="allow_grow") + + Property @@ -1079,14 +1100,18 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Property used for setting the title. Title of the . - The title of the , or if none has been set explicitely. The returned string is owned by the and must not be modified or freed. + The title of the , or if none has been set explicitely. The returned string is owned by the and must not be modified or freed. This property will allow you to set the title. The title of a will be displayed in its title bar. Since the title bar is rendered by the window managers on X Window System, the way it appears will depend on the user preferences. This title should help the users to distinguish a from others opened. A good title will have the application name an the actual document, for example. - + + + GLib.Property(Name="title") + + Property @@ -1095,14 +1120,18 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); The type of . - The type. + The type. See also . - + + + GLib.Property(Name="type") + + Property @@ -1114,14 +1143,18 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Property used for setting or obtaining the default width of a . A . - The default width of the . + The default width of the . This property will allow you to define the default width for . It only define the default one, so if the is resized, it won't be able to do anything. - + + + GLib.Property(Name="default_width") + + Property @@ -1133,10 +1166,14 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Property used for setting the icon for a . An icon. - The default icon for . + The default icon for . - + + + GLib.Property(Name="icon") + + Property @@ -1148,15 +1185,19 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or obtains if the has no mininum size. If the has no minimum size. - - if the has no minimum size. + + if the has no minimum size. Setting this to is 99% of the time a bad idea. - + + + GLib.Property(Name="allow_shrink") + + Event @@ -1168,7 +1209,11 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); KeysChanged event. This event is emited when the or mnemonic associated with the is changed. - + + + GLib.Signal(CName="keys_changed") + + Event @@ -1180,7 +1225,11 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); MoveFocus event. This event is emited when the focus is moved from one child to another. - + + + GLib.Signal(CName="move_focus") + + Event @@ -1192,7 +1241,11 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); SetFocus event. This event is emited when the focused widget is set. - + + + GLib.Signal(CName="set_focus") + + Event @@ -1204,7 +1257,11 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); DefaultActivated event. This event is emited when the keybinding for default widget activation is triggered. - + + + GLib.Signal(CName="activate_default") + + Event @@ -1216,7 +1273,11 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); FocusActivated event. This event is emited when the keybinding for focused widget activation is triggered. - + + + GLib.Signal(CName="activate_focus") + + Event @@ -1228,7 +1289,11 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); FrameEvent event. This event is emited when has been set to true and an event occurs on the resulting frame. - + + + GLib.Signal(CName="frame_event") + + Property @@ -1240,8 +1305,8 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Property used for setting the automatic startup notification. If automatically do startup notification. - - if set to automatically do startup notification. + + if set to automatically do startup notification. By default, after showing the first for each , GTK# calls . Use this property to disable the automatic startup notification. @@ -1263,14 +1328,18 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or obtains the where the is displayed. A . - A . + A . If the is already mapped, it will be unmapped, and then remapped on the new screen. - + + + GLib.Property(Name="screen") + + Property @@ -1279,12 +1348,16 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Whether the toplevel is the current active . - - if the is the toplevel. + + if the is the toplevel. - + + + GLib.Property(Name="is_active") + + Property @@ -1293,12 +1366,16 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Whether the input focus is within this . - - if the has the input focus. + + if the has the input focus. - + + + GLib.Property(Name="has_toplevel_focus") + + Property @@ -1310,12 +1387,16 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Whether the should not be in the pager. If then the will not be in the pager. - - if the should not be in the pager. + + if the should not be in the pager. - + + + GLib.Property(Name="skip_pager_hint") + + Property @@ -1327,12 +1408,16 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Whether the should not be in the taskbar. If then the will not be in the taskbar. - - if the should not be in the taskbar. + + if the should not be in the taskbar. - + + + GLib.Property(Name="skip_taskbar_hint") + + Method @@ -1418,7 +1503,7 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); GType Property - a + a Returns the native GObject type for . @@ -1514,12 +1599,15 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Protected constructor. a - a Chain to this constructor if you have manually registered a native GType for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - + Property Gdk.Pixbuf[] @@ -1528,7 +1616,7 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or obtains the icon list to be used as fallback for windows that haven't had called on them to set up a window-specific icon list. An array of . - An array of icons list. + An array of icons list. This method allows you to set up the icon for all windows in your app at once. @@ -1537,7 +1625,7 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); - + Property Gdk.Pixbuf[] @@ -1546,7 +1634,7 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or obtains the list of icons representing a . An array of s. - An array of s. + An array of s. The icon is used when is minimized (also known as iconified). Some window managers or desktop environments may also place it in the window frame, or display it in other contexts. @@ -1592,7 +1680,7 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets or obtains the default size of . - a + a A value of -1 for the size indicates that a default size has not been explicitly set for that dimension, so the "natural" size of the will be used. @@ -1626,7 +1714,7 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Sets an icon to be used as fallback for windows that have not had called on them from a pixbuf. - a + a @@ -1640,11 +1728,15 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Windows may set a hint asking the desktop environment not to receive the input focus. - a + a to let this window receive input focus - + + + GLib.Property(Name="accept_focus") + + Property @@ -1653,7 +1745,7 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Asks to keep window below, so that it stays in bottom. - a + a Note that you should not assume the window is definitely below afterward, because other entities (e.g. the user or window manager) could not keep it below, and not all window managers support putting windows below. But normally the window will be kept below. Just do not write code that crashes if not. It is permitted to call this function before showing a window, in which case the window will be kept below when it appears onscreen initially. @@ -1671,7 +1763,7 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height); Asks to keep window above, so that it stays on top. - a + a Note that you should not assume the window is definitely below afterward, because other entities (e.g. the user or window manager) could not keep it above, and not all window managers support putting windows below. But normally the window will be kept above. Just do not write code that crashes if not. It is permitted to call this function before showing a window, in which case the window will be kept above when it appears onscreen initially. @@ -1752,7 +1844,7 @@ Sometimes when you think you want to use allow_shrink, the real problem is that To be added - a + a To be added @@ -1765,10 +1857,14 @@ Sometimes when you think you want to use allow_shrink, the real problem is that To be added - a + a To be added - + + + GLib.Property(Name="icon_name") + + Property @@ -1778,9 +1874,13 @@ Sometimes when you think you want to use allow_shrink, the real problem is that To be added - a + a To be added - + + + GLib.Property(Name="focus_on_map") + + - \ No newline at end of file + diff --git a/doc/en/Gtk/WindowGroup.xml b/doc/en/Gtk/WindowGroup.xml index 2e297c026..a17fe3857 100644 --- a/doc/en/Gtk/WindowGroup.xml +++ b/doc/en/Gtk/WindowGroup.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,14 +17,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -80,7 +71,6 @@ Internal constructor Pointer to the C object. - An instance of WindowGroup, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -93,7 +83,6 @@ Creates an instance of . - an object of type @@ -106,7 +95,7 @@ GType Property. - a + a Returns the native value for . @@ -120,9 +109,12 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + - \ No newline at end of file + diff --git a/doc/en/Gtk/WindowKeysForeachFunc.xml b/doc/en/Gtk/WindowKeysForeachFunc.xml index 04f7f9695..69a92768e 100644 --- a/doc/en/Gtk/WindowKeysForeachFunc.xml +++ b/doc/en/Gtk/WindowKeysForeachFunc.xml @@ -1,27 +1,21 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. + To be added. + To be added. Delegate class. TODO: There are no references to this class elsewhere in the doc; is it obsolete? System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -32,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/WindowPosition.xml b/doc/en/Gtk/WindowPosition.xml index 60a6a37d6..deb6abf72 100644 --- a/doc/en/Gtk/WindowPosition.xml +++ b/doc/en/Gtk/WindowPosition.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,18 +15,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.WindowPositionGType)) + + @@ -104,4 +95,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/WindowStateEventArgs.xml b/doc/en/Gtk/WindowStateEventArgs.xml index d46b418de..24fca2e01 100644 --- a/doc/en/Gtk/WindowStateEventArgs.xml +++ b/doc/en/Gtk/WindowStateEventArgs.xml @@ -4,9 +4,7 @@ gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -40,9 +36,9 @@ The uses this method to access the details of an event. - a + a - \ No newline at end of file + diff --git a/doc/en/Gtk/WindowStateEventHandler.xml b/doc/en/Gtk/WindowStateEventHandler.xml index 30da51c0e..e23b3e8f4 100644 --- a/doc/en/Gtk/WindowStateEventHandler.xml +++ b/doc/en/Gtk/WindowStateEventHandler.xml @@ -1,12 +1,13 @@ - + gtk-sharp - 0.0.0.0 - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -17,15 +18,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -34,4 +26,4 @@ System.Void - \ No newline at end of file + diff --git a/doc/en/Gtk/WindowType.xml b/doc/en/Gtk/WindowType.xml index ca8f664f4..878e9afd6 100644 --- a/doc/en/Gtk/WindowType.xml +++ b/doc/en/Gtk/WindowType.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -25,18 +23,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.WindowTypeGType)) + + @@ -76,4 +67,4 @@ - \ No newline at end of file + diff --git a/doc/en/Gtk/WrapMode.xml b/doc/en/Gtk/WrapMode.xml index b6920e740..0757eba01 100644 --- a/doc/en/Gtk/WrapMode.xml +++ b/doc/en/Gtk/WrapMode.xml @@ -1,12 +1,10 @@ - + gtk-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -20,18 +18,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Gtk.WrapModeGType)) + + @@ -104,7 +95,8 @@ wrap text, breaking lines in between words, or if that is not enough, also between graphemes. - + + diff --git a/doc/en/Pango/Alignment.xml b/doc/en/Pango/Alignment.xml index d09f4eafe..120271e67 100644 --- a/doc/en/Pango/Alignment.xml +++ b/doc/en/Pango/Alignment.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,18 +22,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Pango.AlignmentGType)) + + @@ -87,4 +78,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/Analysis.xml b/doc/en/Pango/Analysis.xml index 624e8285c..7a6eaed1e 100644 --- a/doc/en/Pango/Analysis.xml +++ b/doc/en/Pango/Analysis.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -58,7 +55,7 @@ The an object of type - an object of type + an object of type @@ -73,7 +70,7 @@ the an object of type - an object of type + an object of type @@ -99,7 +96,7 @@ The engine for doing rendering-system-dependent processing. - a + a @@ -112,9 +109,9 @@ The engine for doing rendering-system-independent processing. - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrBackground.xml b/doc/en/Pango/AttrBackground.xml index eb2581edc..d7f883662 100644 --- a/doc/en/Pango/AttrBackground.xml +++ b/doc/en/Pango/AttrBackground.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Attribute - - GLib.IWrapper - - - System.IDisposable - - @@ -39,7 +30,6 @@ the red value the green value the blue value - a @@ -53,7 +43,6 @@ Creates a new background color attribute. a - a @@ -66,9 +55,9 @@ The color represented by this attribute - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrDataCopyFunc.xml b/doc/en/Pango/AttrDataCopyFunc.xml index 68ae26b25..276877d8a 100644 --- a/doc/en/Pango/AttrDataCopyFunc.xml +++ b/doc/en/Pango/AttrDataCopyFunc.xml @@ -1,32 +1,22 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. To be added + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.IntPtr - \ No newline at end of file + diff --git a/doc/en/Pango/AttrFallback.xml b/doc/en/Pango/AttrFallback.xml index a0aa587ae..ec0909b56 100644 --- a/doc/en/Pango/AttrFallback.xml +++ b/doc/en/Pango/AttrFallback.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Attribute - - GLib.IWrapper - - - System.IDisposable - - @@ -35,7 +26,6 @@ Creates a new font fallback attribute a - a If fallback is disabled, characters will only be used from the closest matching font on the system. No fallback will @@ -53,15 +43,14 @@ Whether or not font fallback is enabled - a + a If , characters will only be used - from the closest matching font on the system. If , fallback will be done to other fonts + from the closest matching font on the system. If , fallback will be done to other fonts on the system that might contain the characters in the text. - \ No newline at end of file + diff --git a/doc/en/Pango/AttrFamily.xml b/doc/en/Pango/AttrFamily.xml index f001bef1a..1ec1c6e26 100644 --- a/doc/en/Pango/AttrFamily.xml +++ b/doc/en/Pango/AttrFamily.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Attribute - - GLib.IWrapper - - - System.IDisposable - - @@ -35,7 +26,6 @@ Creates a new font family attribute the family or comman-separated list of families - a @@ -48,9 +38,9 @@ The font family, or comma-separated list of families - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrFilterFunc.xml b/doc/en/Pango/AttrFilterFunc.xml index 2342e1924..de3ba7a49 100644 --- a/doc/en/Pango/AttrFilterFunc.xml +++ b/doc/en/Pango/AttrFilterFunc.xml @@ -1,29 +1,20 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. used by to filter out a subset of attributes for a list. Returns if the attribute should be filtered out + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - @@ -31,4 +22,4 @@ System.Boolean - \ No newline at end of file + diff --git a/doc/en/Pango/AttrFontDesc.xml b/doc/en/Pango/AttrFontDesc.xml index e39897db1..814a03dca 100644 --- a/doc/en/Pango/AttrFontDesc.xml +++ b/doc/en/Pango/AttrFontDesc.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ Pango.Attribute - @@ -29,7 +26,6 @@ Creates a new font description attribute a - a @@ -42,9 +38,9 @@ The font description which is the value of this attribute - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrForeground.xml b/doc/en/Pango/AttrForeground.xml index 5046bb85f..2468aa09a 100644 --- a/doc/en/Pango/AttrForeground.xml +++ b/doc/en/Pango/AttrForeground.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Attribute - - GLib.IWrapper - - - System.IDisposable - - @@ -39,7 +30,6 @@ the red value the green value the blue value - a @@ -53,7 +43,6 @@ Creates a new foreground color attribute. a - a @@ -66,9 +55,9 @@ The color represented by this attribute - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrIterator.xml b/doc/en/Pango/AttrIterator.xml index c24d6ad9a..311dbdc48 100644 --- a/doc/en/Pango/AttrIterator.xml +++ b/doc/en/Pango/AttrIterator.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -88,7 +82,6 @@ Internal constructor Pointer to the C object. - An instance of AttrIterator, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -112,7 +105,7 @@ - + Property Pango.Attribute[] @@ -120,7 +113,7 @@ Gets a list all attributes a the current position of the iterator. - a + a a list of all attributes for the current range. @@ -144,4 +137,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/AttrLanguage.xml b/doc/en/Pango/AttrLanguage.xml index f3d3617e1..88c057e49 100644 --- a/doc/en/Pango/AttrLanguage.xml +++ b/doc/en/Pango/AttrLanguage.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ Pango.Attribute - @@ -29,7 +26,6 @@ Creates a new language tag attribute a - a @@ -42,9 +38,9 @@ The language represented by this attribute - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrLetterSpacing.xml b/doc/en/Pango/AttrLetterSpacing.xml index 902dc9145..0186d5d0e 100644 --- a/doc/en/Pango/AttrLetterSpacing.xml +++ b/doc/en/Pango/AttrLetterSpacing.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Attribute - - GLib.IWrapper - - - System.IDisposable - - @@ -35,7 +26,6 @@ Creates a new letter-spacing attribute the amount of extra space to add between letters, in Pango units - a @@ -48,9 +38,9 @@ The amount of extra space to add between letters, in Pango units - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrList.xml b/doc/en/Pango/AttrList.xml index c80364c8c..fb62ccedc 100644 --- a/doc/en/Pango/AttrList.xml +++ b/doc/en/Pango/AttrList.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,11 +17,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -141,7 +135,6 @@ This operation proves useful for, for instance, inserting a pre-edit string in t Internal constructor Pointer to the C object. - An instance of AttrList, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -154,7 +147,6 @@ This operation proves useful for, for instance, inserting a pre-edit string in t Default constructor - a new @@ -166,7 +158,7 @@ This operation proves useful for, for instance, inserting a pre-edit string in t Create a iterator initialized to the beginning of the list. - a new + a new @@ -195,9 +187,9 @@ This operation proves useful for, for instance, inserting a pre-edit string in t GType Property. - a + a Returns the native value for . - \ No newline at end of file + diff --git a/doc/en/Pango/AttrRise.xml b/doc/en/Pango/AttrRise.xml index 82438322f..f43f1b9d4 100644 --- a/doc/en/Pango/AttrRise.xml +++ b/doc/en/Pango/AttrRise.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Attribute - - GLib.IWrapper - - - System.IDisposable - - @@ -35,7 +26,6 @@ Creates a new baseline displacement attribute the amount that the text should be displaced vertically, in Pango units. Positive values displace the text upwards - a @@ -48,9 +38,9 @@ The amount that the text should be displaced vertically, in Pango units. Positive values displace the text upwards - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrScale.xml b/doc/en/Pango/AttrScale.xml index 7cfdb04dd..5fa27a6c2 100644 --- a/doc/en/Pango/AttrScale.xml +++ b/doc/en/Pango/AttrScale.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Attribute - - GLib.IWrapper - - - System.IDisposable - - @@ -35,7 +26,6 @@ Creates a new font size scale attribute the factor to scale the font by - a @@ -48,9 +38,9 @@ The factor to scale the font by - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrShape.xml b/doc/en/Pango/AttrShape.xml index 9b0310cb0..d94fac78b 100644 --- a/doc/en/Pango/AttrShape.xml +++ b/doc/en/Pango/AttrShape.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ Pango.Attribute - @@ -31,7 +28,6 @@ Creates a new shape attribute a a - a A shape is used to impose a particular ink and logical rectangle on the result of shaping a particular glyph. This @@ -49,7 +45,7 @@ The ink rectangle to restrict to - a + a @@ -62,9 +58,9 @@ The logical rectangle to restrict to - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrSize.xml b/doc/en/Pango/AttrSize.xml index 75269cf03..77784f082 100644 --- a/doc/en/Pango/AttrSize.xml +++ b/doc/en/Pango/AttrSize.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ Pango.Attribute - @@ -28,7 +25,6 @@ Creates a new font-size attribute in fractional points the font size, in units of - a @@ -44,7 +40,6 @@ Creates a new font-size attribute in Pango or device units the font size, in Pango or device units if , is in device units - a @@ -57,7 +52,7 @@ The font size - a + a If is , this is the font size in device units. If it is , this is the font size @@ -75,9 +70,9 @@ Whether or not is in device units - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrStretch.xml b/doc/en/Pango/AttrStretch.xml index 8ad6a980e..d99bd7cd0 100644 --- a/doc/en/Pango/AttrStretch.xml +++ b/doc/en/Pango/AttrStretch.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Attribute - - GLib.IWrapper - - - System.IDisposable - - @@ -35,7 +26,6 @@ Creates a new font stretch attribute the stretch - a @@ -48,9 +38,9 @@ The font stretch - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrStrikethrough.xml b/doc/en/Pango/AttrStrikethrough.xml index d56789f99..cabbbebd4 100644 --- a/doc/en/Pango/AttrStrikethrough.xml +++ b/doc/en/Pango/AttrStrikethrough.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Attribute - - GLib.IWrapper - - - System.IDisposable - - @@ -34,8 +25,8 @@ Creates a new font strike-through attribute - if the text should be struck-through - a + + if the text should be struck-through @@ -48,9 +39,9 @@ Whether or not the text is struck-through - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrStrikethroughColor.xml b/doc/en/Pango/AttrStrikethroughColor.xml index 940e6c62f..73aa53a5c 100644 --- a/doc/en/Pango/AttrStrikethroughColor.xml +++ b/doc/en/Pango/AttrStrikethroughColor.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Attribute - - GLib.IWrapper - - - System.IDisposable - - @@ -39,7 +30,6 @@ the red value the green value the blue value - a @@ -53,7 +43,6 @@ Creates a new strikethrough color attribute. a - a @@ -66,9 +55,9 @@ The color represented by this attribute - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrStyle.xml b/doc/en/Pango/AttrStyle.xml index e65d6056d..cbde2d4bc 100644 --- a/doc/en/Pango/AttrStyle.xml +++ b/doc/en/Pango/AttrStyle.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Attribute - - GLib.IWrapper - - - System.IDisposable - - @@ -35,7 +26,6 @@ Creates a new font slant syle attribute the slant style - a @@ -48,9 +38,9 @@ The font slant style - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrType.xml b/doc/en/Pango/AttrType.xml index 2fa4dc603..92add0f13 100644 --- a/doc/en/Pango/AttrType.xml +++ b/doc/en/Pango/AttrType.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -25,18 +23,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Pango.AttrTypeGType)) + + @@ -310,4 +301,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/AttrUnderline.xml b/doc/en/Pango/AttrUnderline.xml index 7b448f4cb..5b964d436 100644 --- a/doc/en/Pango/AttrUnderline.xml +++ b/doc/en/Pango/AttrUnderline.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Attribute - - GLib.IWrapper - - - System.IDisposable - - @@ -35,7 +26,6 @@ Creates a new underline-style object the underline style - a @@ -48,9 +38,9 @@ The underline style - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrUnderlineColor.xml b/doc/en/Pango/AttrUnderlineColor.xml index 414023b82..71184153d 100644 --- a/doc/en/Pango/AttrUnderlineColor.xml +++ b/doc/en/Pango/AttrUnderlineColor.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Attribute - - GLib.IWrapper - - - System.IDisposable - - @@ -39,7 +30,6 @@ the red value the green value the blue value - a @@ -53,7 +43,6 @@ Creates a new underline color attribute. a - a @@ -66,9 +55,9 @@ The color represented by this attribute - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrVariant.xml b/doc/en/Pango/AttrVariant.xml index ea17edae1..677adc662 100644 --- a/doc/en/Pango/AttrVariant.xml +++ b/doc/en/Pango/AttrVariant.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Attribute - - GLib.IWrapper - - - System.IDisposable - - @@ -35,7 +26,6 @@ Creates a new font variant attribute the variant - a @@ -48,9 +38,9 @@ The variant - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/AttrWeight.xml b/doc/en/Pango/AttrWeight.xml index 4c82dfbfc..334d3ab8c 100644 --- a/doc/en/Pango/AttrWeight.xml +++ b/doc/en/Pango/AttrWeight.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Attribute - - GLib.IWrapper - - - System.IDisposable - - @@ -35,7 +26,6 @@ Creates a new font weight attribute the weight - a @@ -48,9 +38,9 @@ The weight - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/Attribute.xml b/doc/en/Pango/Attribute.xml index f3a06a1da..c25b025cb 100644 --- a/doc/en/Pango/Attribute.xml +++ b/doc/en/Pango/Attribute.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,8 +14,14 @@ System.Object - - + + + GLib.IWrapper + + + System.IDisposable + + @@ -58,12 +62,12 @@ GType property - a + a Returns the value for - + Property System.IntPtr @@ -71,7 +75,7 @@ Pointer to the raw PangoAttribute structure associated with this object. - a + a To be added @@ -84,7 +88,7 @@ The attribute type - a + a @@ -97,7 +101,7 @@ the start index of the range (in bytes). - a + a @@ -110,7 +114,7 @@ end index of the range. - a + a The character containing this byte index is not included in the range. @@ -143,7 +147,7 @@ - + Method System.Void @@ -155,4 +159,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/Color.xml b/doc/en/Pango/Color.xml index 0f8bfdde3..b777ca93e 100644 --- a/doc/en/Pango/Color.xml +++ b/doc/en/Pango/Color.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -28,6 +25,7 @@ Returns an empty object. + To be added. @@ -97,7 +95,7 @@ GType Property. - a + a Returns the native value for . @@ -140,5 +138,37 @@ This is a value between 0 and 65535, with 65535 indicating full intensity. + + + Method + + GLib.Value + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Pango.Color + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Pango/Context.xml b/doc/en/Pango/Context.xml index f691304c1..f2170d6c0 100644 --- a/doc/en/Pango/Context.xml +++ b/doc/en/Pango/Context.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -103,7 +94,6 @@ Internal constructor Pointer to the C object. - An instance of Context, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -120,7 +110,7 @@ The default font description for the context. the new pango font description - the context's default font description. + the context's default font description. @@ -135,7 +125,7 @@ The global language tag for the context. the new language tag. - the global language tag. + the global language tag. @@ -150,7 +140,7 @@ The base direction for the context. the new base direction - the base direction + the base direction The base direction is used in applying the Unicode bidirectional algorithm; if the direction is or , then the value will be used as the paragraph direction in the Unicode bidirectional algorithm. @@ -163,7 +153,7 @@ GType Property. - a + a Returns the native value for . @@ -177,10 +167,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -204,12 +197,11 @@ Internal constructor - a This is an internal constructor, and should not be used by user code. - + Property Pango.FontFamily[] @@ -217,7 +209,7 @@ Returns an array of Font Families. - a + a @@ -231,7 +223,7 @@ To be added - a + a To be added @@ -244,9 +236,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Pango/Coverage.xml b/doc/en/Pango/Coverage.xml index 623a0222a..05d1b3a7c 100644 --- a/doc/en/Pango/Coverage.xml +++ b/doc/en/Pango/Coverage.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -86,7 +80,6 @@ Internal constructor Pointer to the C object. - An instance of Coverage, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -99,7 +92,6 @@ Default constructor - an object of type @@ -155,7 +147,7 @@ - + Method System.Void @@ -171,4 +163,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/CoverageLevel.xml b/doc/en/Pango/CoverageLevel.xml index 0321c17af..65dca5fee 100644 --- a/doc/en/Pango/CoverageLevel.xml +++ b/doc/en/Pango/CoverageLevel.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Pango.CoverageLevelGType)) + + @@ -106,4 +97,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/Direction.xml b/doc/en/Pango/Direction.xml index f9f2cf4a2..ee8e4801d 100644 --- a/doc/en/Pango/Direction.xml +++ b/doc/en/Pango/Direction.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Pango.DirectionGType)) + + @@ -136,4 +127,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/EllipsizeMode.xml b/doc/en/Pango/EllipsizeMode.xml index e0a4bfdf4..fffac0132 100644 --- a/doc/en/Pango/EllipsizeMode.xml +++ b/doc/en/Pango/EllipsizeMode.xml @@ -4,8 +4,6 @@ pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Pango.EllipsizeModeGType)) + + @@ -80,18 +71,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Pango/EngineLang.xml b/doc/en/Pango/EngineLang.xml index 31f1b4016..302809d8d 100644 --- a/doc/en/Pango/EngineLang.xml +++ b/doc/en/Pango/EngineLang.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ GLib.Opaque - @@ -29,9 +26,8 @@ Internal constructor a - a This is an internal constructor, and should not be used by user code. - \ No newline at end of file + diff --git a/doc/en/Pango/EngineShape.xml b/doc/en/Pango/EngineShape.xml index fa541b377..fe431f2c8 100644 --- a/doc/en/Pango/EngineShape.xml +++ b/doc/en/Pango/EngineShape.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ GLib.Opaque - @@ -29,9 +26,8 @@ Internal constructor a - a This is an internal constructor, and should not be used by user code. - \ No newline at end of file + diff --git a/doc/en/Pango/FT2FontMap.xml b/doc/en/Pango/FT2FontMap.xml deleted file mode 100644 index 059af294b..000000000 --- a/doc/en/Pango/FT2FontMap.xml +++ /dev/null @@ -1,149 +0,0 @@ - - - - pango-sharp - - - 0.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - The is the implementation for FreeType fonts. - - - - Pango.FontMap - - - - GLib.IWrapper - - - System.IDisposable - - - - - - - Method - - Pango.FontMap - - - - Returns a . - a - Use of the global PangoFT2 fontmap is deprecated. - - - - - Method - - System.Void - - - - Call this any time the results of the default substitution function set with changes. - - - - - - Method - - System.Void - - - - - - - Sets the horizontal and vertical resolutions for the fontmap. - dots per inch in the X direction - dots per inch in the Y direction - - - - - - Method - - Pango.Context - - - - Create a for the given fontmap. - a new - - - - - - Method - - System.Void - - - - Disposes the resources associated with the object. - - - - - - Constructor - - - - - - Internal constructor - a - a - This is an internal constructor, and should not be used by user code. - - - - - Constructor - - - - Default constructor - a - - - - - - Property - - GLib.GType - - - - GType Property. - a - Returns the native value for . - - - - - Constructor - - - - - - Protected Constructor. - a - a - Chain to this constructor if you have manually registered a native value for your subclass. - - - - \ No newline at end of file diff --git a/doc/en/Pango/FT2SubstituteFunc.xml b/doc/en/Pango/FT2SubstituteFunc.xml deleted file mode 100644 index 993c7e44b..000000000 --- a/doc/en/Pango/FT2SubstituteFunc.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - pango-sharp - - 0.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - For doing final config tweaking on prepared FcPatterns. - - - - System.Delegate - - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - - - - - - System.Void - - \ No newline at end of file diff --git a/doc/en/Pango/FcDecoder.xml b/doc/en/Pango/FcDecoder.xml index c68101d89..3ac4a2508 100644 --- a/doc/en/Pango/FcDecoder.xml +++ b/doc/en/Pango/FcDecoder.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -66,10 +57,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -80,7 +74,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -91,7 +84,6 @@ Default constructor - a @@ -104,9 +96,9 @@ GType Property. - a + a Returns the native value for . - \ No newline at end of file + diff --git a/doc/en/Pango/FcDecoderFindFunc.xml b/doc/en/Pango/FcDecoderFindFunc.xml index 06c8a88d3..50116e618 100644 --- a/doc/en/Pango/FcDecoderFindFunc.xml +++ b/doc/en/Pango/FcDecoderFindFunc.xml @@ -1,32 +1,22 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. This will be called whenever new fonts are created. If the function returns a , that decoder will be used to determine both coverage via a and a one-to-one mapping of characters to glyphs. This will allow applications to have application-specific encodings for various fonts. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - Pango.FcDecoder - \ No newline at end of file + diff --git a/doc/en/Pango/FcFont.xml b/doc/en/Pango/FcFont.xml index 60b84e696..aacc78b5e 100644 --- a/doc/en/Pango/FcFont.xml +++ b/doc/en/Pango/FcFont.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Pango.Font - - GLib.IWrapper - - - System.IDisposable - - @@ -48,10 +39,13 @@ Internal constructor a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -62,7 +56,6 @@ Internal constructor a - a @@ -73,7 +66,6 @@ Internal constructor - a @@ -86,7 +78,7 @@ GType Property. - a + a Returns the native value for . @@ -103,4 +95,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/FcFontMap.xml b/doc/en/Pango/FcFontMap.xml index 26c8bf2b0..4fb08cf58 100644 --- a/doc/en/Pango/FcFontMap.xml +++ b/doc/en/Pango/FcFontMap.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Pango.FontMap - - GLib.IWrapper - - - System.IDisposable - - @@ -48,10 +39,13 @@ Internal constructor a - a - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -62,7 +56,6 @@ Internal constructor a - a @@ -73,7 +66,6 @@ Internal constructor - a @@ -86,7 +78,7 @@ GType Property. - a + a Returns the native value for . @@ -106,4 +98,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/Font.xml b/doc/en/Pango/Font.xml index 4be02e1d4..a2d255a12 100644 --- a/doc/en/Pango/Font.xml +++ b/doc/en/Pango/Font.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -130,7 +121,6 @@ Internal constructor Pointer to the C object. - An instance of Font, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -145,7 +135,7 @@ GType Property. - a + a Returns the native value for . @@ -159,10 +149,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -170,9 +163,8 @@ Protected constructor. - a Default constuctor for children of this type. - \ No newline at end of file + diff --git a/doc/en/Pango/FontDescription.xml b/doc/en/Pango/FontDescription.xml index d37f15c00..b12c20b09 100644 --- a/doc/en/Pango/FontDescription.xml +++ b/doc/en/Pango/FontDescription.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -199,7 +193,6 @@ Any one of the options may be absent. If FAMILY-LIST is absent, then the family_ Internal constructor Pointer to the C object. - An instance of FontDescription, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -212,7 +205,6 @@ Any one of the options may be absent. If FAMILY-LIST is absent, then the family_ Default constructor - an object of type @@ -227,7 +219,7 @@ Any one of the options may be absent. If FAMILY-LIST is absent, then the family_ The style of the font. the style for the font description - the style for the font description + the style for the font description Most fonts will either have a italic style or an oblique style, but not both, and font matching in Pango will match italic specifications with oblique fonts and vice-versa if an exact match is not found. @@ -242,7 +234,7 @@ Any one of the options may be absent. If FAMILY-LIST is absent, then the family_ The stretch of the font. the stretch for the font description - the stretch field for the font description. + the stretch field for the font description. The stretch property specifies how narrow or wide the font should be. @@ -254,7 +246,7 @@ Any one of the options may be absent. If FAMILY-LIST is absent, then the family_ Determines which fields in the font description have been set. - a corresponding to the fields that have been set. + a corresponding to the fields that have been set. @@ -269,7 +261,7 @@ Any one of the options may be absent. If FAMILY-LIST is absent, then the family_ The size of the font in pango units. the size for the font description in pango units. - the size field for the font description in pango units. Returns 0 if the stretch field has not previously been set. Use to find out if the field was explicitly set or not. + the size field for the font description in pango units. Returns 0 if the stretch field has not previously been set. Use to find out if the field was explicitly set or not. There are pango units in one device unit - for fonts, font points are the device unit. Therefore, the size of the font in points is / . @@ -284,7 +276,7 @@ Any one of the options may be absent. If FAMILY-LIST is absent, then the family_ Sets the family name of the font without copying the string. a string representing the family name. - + The family name represents a family of related font styles, and will resolve to a particular . In some uses of , it is also possible to use a comma separated list of family names for this property. @@ -299,7 +291,7 @@ Any one of the options may be absent. If FAMILY-LIST is absent, then the family_ The variant of the font. the variant type for the font description. - the variant type for the font description. + the variant type for the font description. @@ -314,7 +306,7 @@ Any one of the options may be absent. If FAMILY-LIST is absent, then the family_ The weight (boldness) of the font. the weight for the font description. - the weight for the font description. + the weight for the font description. The weight property specifies how bold or light the font should be. In addition to the values of the enumeration, other intermediate numeric values are possible. @@ -329,7 +321,7 @@ Any one of the options may be absent. If FAMILY-LIST is absent, then the family_ The family name of the font. a string representing the family name. - The family name field. (Will be if not previously set.) + The family name field. (Will be if not previously set.) The family name represents a family of related font styles, and will resolve to a particular . In some uses of , it is also possible to use a comma separated list of family names for this property. @@ -355,7 +347,7 @@ Any one of the options may be absent. If FAMILY-LIST is absent, then the family_ Computes a hash of a structure suitable to be used. - the hash value. + the hash value. @@ -368,7 +360,7 @@ Any one of the options may be absent. If FAMILY-LIST is absent, then the family_ GType Property. - a + a Returns the native value for . @@ -381,7 +373,7 @@ Any one of the options may be absent. If FAMILY-LIST is absent, then the family_ To be added - a + a To be added @@ -393,9 +385,9 @@ Any one of the options may be absent. If FAMILY-LIST is absent, then the family_ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Pango/FontFace.xml b/doc/en/Pango/FontFace.xml index d22e3ea55..e58c08591 100644 --- a/doc/en/Pango/FontFace.xml +++ b/doc/en/Pango/FontFace.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -61,7 +52,6 @@ Internal constructor Pointer to the C object. - An instance of FontFace, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -75,7 +65,7 @@ A name representing the style of this face among the different faces in the for the face. - the face name for the fontface. + the face name for the fontface. This name is unique among all faces in the family and is suitable for displaying to users. @@ -88,7 +78,7 @@ GType Property. - a + a Returns the native value for . @@ -102,10 +92,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -113,7 +106,6 @@ Protected constructor - a @@ -135,4 +127,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/FontFamily.xml b/doc/en/Pango/FontFamily.xml index 94b1bc687..7832a03b6 100644 --- a/doc/en/Pango/FontFamily.xml +++ b/doc/en/Pango/FontFamily.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -48,7 +39,6 @@ Internal constructor Pointer to the C object. - An instance of FontFamily, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -62,7 +52,7 @@ The name of the family. - the name of the family. + the name of the family. The name is unique among all fonts for the font backend and can be used in a to specify that a face from this family is desired. @@ -75,7 +65,7 @@ GType Property. - a + a Returns the native value for . @@ -89,10 +79,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -116,12 +109,11 @@ Protected constructor - a - + Property Pango.FontFace[] @@ -130,7 +122,7 @@ To be added The font faces that make up . - a + a @@ -144,9 +136,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Pango/FontMap.xml b/doc/en/Pango/FontMap.xml index 006456d25..60c106f70 100644 --- a/doc/en/Pango/FontMap.xml +++ b/doc/en/Pango/FontMap.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -86,7 +77,6 @@ Internal constructor Pointer to the C object. - An instance of FontMap, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -101,7 +91,7 @@ GType Property. - a + a Returns the native value for . @@ -115,10 +105,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Method @@ -142,12 +135,11 @@ Protected constructor - a - + Property Pango.FontFamily[] @@ -155,10 +147,10 @@ List all families for a fontmap. - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/FontMask.xml b/doc/en/Pango/FontMask.xml index bcbdf950f..3b5c57bff 100644 --- a/doc/en/Pango/FontMask.xml +++ b/doc/en/Pango/FontMask.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,14 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Pango.FontMaskGType)) + + + System.Flags + + @@ -115,4 +109,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/FontMetrics.xml b/doc/en/Pango/FontMetrics.xml index af0393e4e..ee925bd8b 100644 --- a/doc/en/Pango/FontMetrics.xml +++ b/doc/en/Pango/FontMetrics.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ GLib.Opaque - @@ -52,7 +49,7 @@ The approximate character width for a font metrics structure. - the character width, in pango units. + the character width, in pango units. This is merely a representative value useful, for example, for determining the initial size for a window. Actual characters in text will be wider and narrower than this. @@ -64,7 +61,7 @@ The ascent from a font metrics structure. - the ascent, in pango units. + the ascent, in pango units. The ascent is the distance from the baseline to the logical top of a line of text. (The logical top may be above or below the top of the actual drawn ink. It is necessary to lay out the text to figure where the ink will be.) @@ -76,7 +73,7 @@ The approximate digit width for a font metrics structure. - the digit width, in pango units. + the digit width, in pango units. This is merely a representative value useful, for example, for determining the initial size for a window. Actual digits in text can be wider and narrower than this. @@ -88,7 +85,7 @@ The descent from a font metrics structure. - the descent, in pango units. + the descent, in pango units. The descent is the distance from the baseline to the logical bottom of a line of text. (The logical bottom may be above or below the bottom of the actual drawn ink. It is necessary to lay out the text to figure where the ink will be.) @@ -101,7 +98,7 @@ GType Property. - a + a Returns the native value for . @@ -115,7 +112,6 @@ Internal constructor a - a This is an internal constructor, and should not be used by user code. @@ -128,7 +124,7 @@ To be added - a + a To be added @@ -141,7 +137,7 @@ To be added - a + a To be added @@ -154,7 +150,7 @@ To be added - a + a To be added @@ -167,9 +163,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Pango/Fontset.xml b/doc/en/Pango/Fontset.xml index e3c8919da..f4b44b35e 100644 --- a/doc/en/Pango/Fontset.xml +++ b/doc/en/Pango/Fontset.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -64,7 +55,6 @@ Internal constructor Pointer to the C object. - An instance of Fontset, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -78,7 +68,7 @@ Get overall metric information for the fonts in the fontset. - a + a @@ -91,7 +81,7 @@ GType Property. - a + a Returns the native value for . @@ -105,10 +95,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -116,7 +109,6 @@ Protected constructor - a @@ -136,4 +128,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/FontsetForeachFunc.xml b/doc/en/Pango/FontsetForeachFunc.xml index c1e19a2f8..d0e20a2d0 100644 --- a/doc/en/Pango/FontsetForeachFunc.xml +++ b/doc/en/Pango/FontsetForeachFunc.xml @@ -1,29 +1,21 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Used by when enumerating the fonts in a fontset. + To be added. System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Boolean @@ -32,4 +24,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/Global.xml b/doc/en/Pango/Global.xml index 6cecd7717..defa91638 100644 --- a/doc/en/Pango/Global.xml +++ b/doc/en/Pango/Global.xml @@ -4,9 +4,7 @@ pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -81,7 +78,6 @@ Default constructor - a @@ -205,6 +201,7 @@ If no delimiters are found, both a a , a string to scan. a , an integer to put the result into. a , false if a parse error occurred. + To be added. @@ -360,4 +357,4 @@ If no delimiters are found, both a - \ No newline at end of file + diff --git a/doc/en/Pango/GlyphGeometry.xml b/doc/en/Pango/GlyphGeometry.xml index 3f825e435..ab0315628 100644 --- a/doc/en/Pango/GlyphGeometry.xml +++ b/doc/en/Pango/GlyphGeometry.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -87,4 +84,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/GlyphInfo.xml b/doc/en/Pango/GlyphInfo.xml index 4bf1622f4..54f83fb3f 100644 --- a/doc/en/Pango/GlyphInfo.xml +++ b/doc/en/Pango/GlyphInfo.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -87,4 +84,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/GlyphItem.xml b/doc/en/Pango/GlyphItem.xml index a6b4a3cc0..7b3c7ec78 100644 --- a/doc/en/Pango/GlyphItem.xml +++ b/doc/en/Pango/GlyphItem.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -77,7 +74,7 @@ This function is similar in function to (and the glyphs obtained by shaping the text corresponding to item. - a + a @@ -89,7 +86,7 @@ This function is similar in function to (and a that provides information about a segment of text. - a + a @@ -150,4 +147,4 @@ All attributes that start or end inside a cluster are applied to that cluster; f - \ No newline at end of file + diff --git a/doc/en/Pango/GlyphString.xml b/doc/en/Pango/GlyphString.xml index de1c2f218..9839199b9 100644 --- a/doc/en/Pango/GlyphString.xml +++ b/doc/en/Pango/GlyphString.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -70,6 +67,7 @@ Copies one into a new object. a + To be added. @@ -137,7 +135,8 @@ Resizes this GlyphString to the given length. An integer length to resize to. - The new length of the string. + The new length of the string. + To be added. @@ -148,7 +147,7 @@ an array of - an object of type + an object of type @@ -189,7 +188,7 @@ GType Property. - a + a Returns the native value for . @@ -230,6 +229,7 @@ Converts from character position to x position. (X position is measured from the left edge of the run). Character positions are computed by dividing up each cluster into equal portions. + To be added. @@ -252,5 +252,37 @@ + + + Method + + GLib.Value + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Pango.GlyphString + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Pango/GlyphVisAttr.xml b/doc/en/Pango/GlyphVisAttr.xml index ad2f68422..fe45adc36 100644 --- a/doc/en/Pango/GlyphVisAttr.xml +++ b/doc/en/Pango/GlyphVisAttr.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -56,9 +53,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Pango/IntSet.xml b/doc/en/Pango/IntSet.xml deleted file mode 100644 index b9ab96a17..000000000 --- a/doc/en/Pango/IntSet.xml +++ /dev/null @@ -1,149 +0,0 @@ - - - - pango-sharp - - - 0.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Represents a set of integers. - - - - System.ValueType - - - - - - - Field - - Pango.IntSet - - - - Returns an empty - - - - - - Method - - Pango.IntSet - - - - Creates a new - a new - - - - - - Method - - Pango.IntSet - - - - - - Internal method - an object of type - an object of type - This is an internal method, and should not be used by user code. - - - - - Method - - System.Void - - - - Destroys the IntSet object. - - - - - - Method - - System.Void - - - - - - - Adds a continuous range of integers to the set. - An integer to begin the range - An integer to end the range - - - - - - Method - - System.Void - - - - - - Adds a single integer to the range - An integer representing a glyph - - - - - - Method - - System.Boolean - - - - - - Test whether an integer is part of the set. - An integer to test - True if the given integer is part of the set, false otherwise. - - - - - - Field - - System.Int32 - - - - - The start of the set - - - - - Field - - System.Int32 - - - - - The size of the set. - - - - - \ No newline at end of file diff --git a/doc/en/Pango/Item.xml b/doc/en/Pango/Item.xml index 11720d64a..6caace064 100644 --- a/doc/en/Pango/Item.xml +++ b/doc/en/Pango/Item.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -156,4 +153,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/Language.xml b/doc/en/Pango/Language.xml index d3b4ef16e..1570033ef 100644 --- a/doc/en/Pango/Language.xml +++ b/doc/en/Pango/Language.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -66,7 +60,6 @@ Internal constructor Pointer to the C object. - An instance of Language, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -80,7 +73,7 @@ A sample - a + a @@ -93,7 +86,7 @@ GType Property. - a + a Returns the native value for . @@ -114,4 +107,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/Layout.xml b/doc/en/Pango/Layout.xml index 7503edc60..41fdf7df6 100644 --- a/doc/en/Pango/Layout.xml +++ b/doc/en/Pango/Layout.xml @@ -1,11 +1,9 @@ - + pango-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] - 1.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -69,14 +67,7 @@ class LayoutSample : DrawingArea GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -297,6 +288,7 @@ The X coordinate of the resulting represents th a to store where in the grapheme the user clicked. It will either be zero or the number of characters in the grapheme. 0 represents the trailing edge of the grapheme. a , true if the coordinates are inside the Layout. + To be added. @@ -338,13 +330,16 @@ The X coordinate of the resulting represents th Internal constructor - Pointer to the C object. - An instance of Layout, wrapping the C object. + Pointer to the C object. This is an internal constructor and should not be used by user code. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -354,8 +349,7 @@ The X coordinate of the resulting represents th Create a new PangoLayout object with attributes initialized to default values for a particular . - a . - a new . + a . @@ -369,7 +363,6 @@ The X coordinate of the resulting represents th Create a new PangoLayout object with attributes initialized to default values for a particular . a . - a new . @@ -382,7 +375,7 @@ The X coordinate of the resulting represents th GType Property. - a + a Returns the native value for . @@ -395,7 +388,7 @@ The X coordinate of the resulting represents th The default font description for the layout. - a + a If no font description is set on the layout, the font description from the layout's context is used. @@ -409,7 +402,7 @@ The X coordinate of the resulting represents th Gets or sets the wrap mode the new wrap mode - Active wrap mode. + Active wrap mode. The wrap mode only has an effect if a width is set on the layout using . To turn off wrapping, set the width to -1. @@ -422,7 +415,7 @@ The X coordinate of the resulting represents th Sets the text of the layout. - a in UTF-8 encoding. + a in UTF-8 encoding. @@ -435,7 +428,7 @@ The X coordinate of the resulting represents th Sets the width to which the lines of the Layout should be wrapped. - an object of type + an object of type @@ -449,7 +442,7 @@ The X coordinate of the resulting represents th Set or return the alignment for lines within the layout that do not take up the full width. a object. - an object of type + an object of type an object of type @@ -465,7 +458,7 @@ The X coordinate of the resulting represents th Sets whether or not each complete line should be stretched to fill the entire width of the layout. whether the lines in the layout should be justified. - an object of type + an object of type This stretching is typically done by adding whitespace, but for some scripts (such as Arabic), the justification is done by extending the characters. @@ -479,7 +472,7 @@ The X coordinate of the resulting represents th the amount of spacing between the lines of the layout. the amount of spacing (in ) - the amount of spacing (in ) + the amount of spacing (in ) @@ -493,7 +486,7 @@ The X coordinate of the resulting represents th Sets/gets the text attributes for a Layout object. an object of type - a + a @@ -507,7 +500,7 @@ The X coordinate of the resulting represents th An iterator to iterate over the visual extents of the layout. an object of type - a new . + a new . @@ -520,7 +513,7 @@ The X coordinate of the resulting represents th the used for this layout. - an object of type + an object of type @@ -533,7 +526,7 @@ The X coordinate of the resulting represents th Whether or not to treat newlines and similar characters as paragraph separators. - an object of type + an object of type If set to true, do not treat newlines and similar characters as paragraph separators; instead, keep all text in a single paragraph, and display a glyph for paragraph separator characters. Used when you want to allow editing of newlines on a single text line. @@ -550,7 +543,7 @@ The X coordinate of the resulting represents th The tabs to use for the layout. the tabs to use for the layout. - the current used by this layout. If no has been set, then the default tabs are in use and null is returned. + the current used by this layout. If no has been set, then the default tabs are in use and null is returned. By default, tabs are every 8 spaces. Setting new tabs overrides the default tabs. If Tabs is set to null, the default tabs are reinstated. @@ -567,7 +560,7 @@ The X coordinate of the resulting represents th Set or return the amount by which the first line should be shorter than the rest of the lines. an object of type , the new indent - an object of type + an object of type The value can be negative, in which case the subsequent lines will be shorter than the first line. (However, in either case, the entire width of the layout will be given by the value. @@ -580,12 +573,12 @@ The X coordinate of the resulting represents th Retrieves the count of lines for the layout. - An integer, the line count + An integer, the line count - + Property Pango.LayoutLine[] @@ -593,11 +586,12 @@ The X coordinate of the resulting represents th The count of lines for the layout. - The count of lines for the layout. + The count of lines for the layout. + To be added. - + Property Pango.LogAttr[] @@ -605,7 +599,7 @@ The X coordinate of the resulting represents th Retrieves an array of logical attributes for each character in the layout. - a + a @@ -639,7 +633,7 @@ The X coordinate of the resulting represents th To be added - a + a To be added @@ -652,7 +646,7 @@ The X coordinate of the resulting represents th To be added - a + a To be added diff --git a/doc/en/Pango/LayoutIter.xml b/doc/en/Pango/LayoutIter.xml index 61bc8b16e..18ab8a128 100644 --- a/doc/en/Pango/LayoutIter.xml +++ b/doc/en/Pango/LayoutIter.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -195,7 +189,6 @@ Internal constructor Pointer to the C object. - An instance of LayoutIter, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -209,7 +202,7 @@ Gets the current byte index. - current byte index + current byte index Note that iterating forward by char moves in visual order, not logical order, so indexes may not be sequential. Also, the index may be equal to the length of the text in the layout, if on the run (see ). @@ -221,7 +214,7 @@ Gets the current run. - an object of type 'Pango.LayoutRun' + an object of type 'Pango.LayoutRun' When iterating by run, at the end of each line, there is a position with a run, so this function can return . The run at the end of each line ensures that all lines have at least one run, even lines consisting of only a newline. @@ -233,7 +226,7 @@ Gets the y position of the current line's baseline, in layout coordinates (origin at top left of the entire layout). - baseline of current line + baseline of current line @@ -245,7 +238,7 @@ Gets the current line. - the current + the current @@ -275,9 +268,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Pango/LayoutLine.xml b/doc/en/Pango/LayoutLine.xml index 74cab3ebe..6fac8f978 100644 --- a/doc/en/Pango/LayoutLine.xml +++ b/doc/en/Pango/LayoutLine.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -18,7 +16,6 @@ GLib.Opaque - @@ -126,7 +123,7 @@ The parent for this line. - a + a @@ -139,7 +136,7 @@ the start of the line as byte index into . - a + a @@ -152,7 +149,7 @@ the length of the line in bytes. - a + a @@ -166,12 +163,11 @@ Internal constructor. a - a This is an internal constructor, and should not be used by user code. - + Method System.Void @@ -190,4 +186,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/LayoutRun.xml b/doc/en/Pango/LayoutRun.xml index dda05176a..014a44b4b 100644 --- a/doc/en/Pango/LayoutRun.xml +++ b/doc/en/Pango/LayoutRun.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -55,7 +52,7 @@ the glyphs obtained by shaping the text corresponding to item. - an object of type + an object of type @@ -67,9 +64,9 @@ A that provides information about a segment of text. - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/LogAttr.xml b/doc/en/Pango/LogAttr.xml index a09a3c4f3..50e531775 100644 --- a/doc/en/Pango/LogAttr.xml +++ b/doc/en/Pango/LogAttr.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -56,7 +53,7 @@ Whether or not a line break is allowed before this character. - a + a @@ -69,7 +66,7 @@ Whether or not a line break is required before this character. - a + a @@ -82,7 +79,7 @@ Whether or not a break is allowed before this character when doing character wrap. - a + a @@ -95,7 +92,7 @@ Whether or not this is a whitespace character. - a + a @@ -108,7 +105,7 @@ Whether or not the cursor can appear in front of this character. - a + a @@ -121,7 +118,7 @@ Whether or not this is the first character in a word. - a + a Note that in degenerate cases, you could have both this propery and set @@ -140,7 +137,7 @@ Whether or not this is the first non-word character after a word. - a + a Note that in degenerate cases, you could have both this propery and set @@ -159,15 +156,12 @@ Whether or not this character is a sentence boundary. - a + a There are two ways to divide sentences. The first assigns all intersentence whitespace/control/format chars to some - sentence, so all characters are in some sentence; denotes the - boundaries in this case. See and for the other + sentence, so all characters are in some sentence; denotes the + boundaries in this case. See and for the other method. @@ -181,16 +175,13 @@ Whether or not this is the first character in a sentence. - a + a There are two ways to divide sentences. The first is the - method used by (qv). The + method used by (qv). The second way is to consider intersentence characters to not - be part of any sentence, in which case identifies the - first character in a sentence and identifies the + be part of any sentence, in which case identifies the + first character in a sentence and identifies the first non-sentence character after a sentence. @@ -204,16 +195,13 @@ Whether or not this is the first non-sentence character after a sentence. - a + a There are two ways to divide sentences. The first is the - method used by (qv). The + method used by (qv). The second way is to consider intersentence characters to not - be part of any sentence, in which case identifies the - first character in a sentence and identifies the + be part of any sentence, in which case identifies the + first character in a sentence and identifies the first non-sentence character after a sentence. @@ -227,9 +215,9 @@ Whether Backspace deletes individual characters rather than complete grapheme clusters. - a + a - \ No newline at end of file + diff --git a/doc/en/Pango/Matrix.xml b/doc/en/Pango/Matrix.xml index ee8fb4f1d..5ac9829fb 100644 --- a/doc/en/Pango/Matrix.xml +++ b/doc/en/Pango/Matrix.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.ValueType - @@ -223,7 +220,7 @@ GType Property. - a + a Returns the native value for . @@ -240,5 +237,37 @@ This is the equivalent of PANGO_MATRIX_INIT in C. + + + Method + + GLib.Value + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + Method + + Pango.Matrix + + + + + + To be added. + To be added. + To be added. + To be added. + + - \ No newline at end of file + diff --git a/doc/en/Pango/Rectangle.xml b/doc/en/Pango/Rectangle.xml index 543932bc7..012509a52 100644 --- a/doc/en/Pango/Rectangle.xml +++ b/doc/en/Pango/Rectangle.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -100,4 +97,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/RenderPart.xml b/doc/en/Pango/RenderPart.xml index e03f916a9..f6d891bdb 100644 --- a/doc/en/Pango/RenderPart.xml +++ b/doc/en/Pango/RenderPart.xml @@ -4,8 +4,6 @@ pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Pango.RenderPartGType)) + + @@ -80,18 +71,6 @@ To be added - - - Field - - System.Int32 - - - - - To be added - To be added - - + - \ No newline at end of file + diff --git a/doc/en/Pango/Renderer.xml b/doc/en/Pango/Renderer.xml index 65f124405..596be010f 100644 --- a/doc/en/Pango/Renderer.xml +++ b/doc/en/Pango/Renderer.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -271,10 +262,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -285,7 +279,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -296,7 +289,6 @@ Default constructor - a @@ -309,7 +301,7 @@ GType Property. - a + a Returns the native value for . @@ -322,9 +314,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Pango/Scale.xml b/doc/en/Pango/Scale.xml index a7d7884a2..301d7dbf9 100644 --- a/doc/en/Pango/Scale.xml +++ b/doc/en/Pango/Scale.xml @@ -4,9 +4,7 @@ pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,10 +15,9 @@ System.Object - - + Field System.Double @@ -30,9 +27,9 @@ Represents the scale between dimensions used for Pango distances and device units. The definition of device units is dependent on the output device; it will typically be pixels for a screen, and points for a printer. This is currently 1024, but this may be changed in the future. When setting font sizes, device units are always considered to be points (as in "12 point font"), rather than pixels. - + 1024 - + Field System.Double @@ -42,9 +39,9 @@ The scale factor for three shrinking steps (1 / (1.2 * 1.2 * 1.2)). - + 0.5787037037037 - + Field System.Double @@ -54,9 +51,9 @@ The scale factor for two shrinking steps (1 / (1.2 * 1.2)). - + 0.6444444444444 - + Field System.Double @@ -66,9 +63,9 @@ The scale factor for one shrinking step (1 / 1.2). - + 0.8333333333333 - + Field System.Double @@ -78,9 +75,9 @@ The scale factor for normal size (1.0). - + 1 - + Field System.Double @@ -90,9 +87,9 @@ The scale factor for one magnification step (1.2). - + 1.2 - + Field System.Double @@ -102,9 +99,9 @@ The scale factor for two magnification steps (1.2 * 1.2). - + 1.4399999999999 - + Field System.Double @@ -114,7 +111,7 @@ The scale factor for three magnification steps (1.2 * 1.2 * 1.2). - + 1.728 Constructor @@ -122,12 +119,11 @@ Default constructor - an object of type - + Field System.Double @@ -137,9 +133,13 @@ Obsolete alias for . - + + + System.Obsolete(Message="Replaced by XXSmall", IsError=False) + + 0.5787037037037 - + Field System.Double @@ -149,9 +149,13 @@ Obsolete alias for . - + + + System.Obsolete(Message="Replaced by XSmall", IsError=False) + + 0.6444444444444 - + Field System.Double @@ -161,9 +165,13 @@ Obsolete alias for . - + + + System.Obsolete(Message="Replaced by XLarge", IsError=False) + + 1.4399999999999 - + Field System.Double @@ -173,6 +181,10 @@ Obsolete alias for . - + + + System.Obsolete(Message="Replaced by XXLarge", IsError=False) + + 1.728 - \ No newline at end of file + diff --git a/doc/en/Pango/Script.xml b/doc/en/Pango/Script.xml index 1ef1f324a..fbfb0b440 100644 --- a/doc/en/Pango/Script.xml +++ b/doc/en/Pango/Script.xml @@ -4,8 +4,6 @@ pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Pango.ScriptGType)) + + diff --git a/doc/en/Pango/ScriptForLang.xml b/doc/en/Pango/ScriptForLang.xml deleted file mode 100644 index 10f0ffa14..000000000 --- a/doc/en/Pango/ScriptForLang.xml +++ /dev/null @@ -1,77 +0,0 @@ - - - - pango-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] - 2.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - To be added - To be added - - - System.ValueType - - - - - - - Field - - Pango.ScriptForLang - - - - - To be added - To be added - - - - - Field - - System.String[] - - - - - To be added - To be added - - - - - Field - - Pango.Script[] - - - - - To be added - To be added - - - - - Method - - Pango.ScriptForLang - - - - - - To be added - a - a - To be added - - - - \ No newline at end of file diff --git a/doc/en/Pango/ScriptIter.xml b/doc/en/Pango/ScriptIter.xml index e2a57edab..e12dab22a 100644 --- a/doc/en/Pango/ScriptIter.xml +++ b/doc/en/Pango/ScriptIter.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -59,7 +53,6 @@ Internal constructor a - a @@ -74,10 +67,9 @@ Creates a new from . a - a - \ No newline at end of file + diff --git a/doc/en/Pango/Stretch.xml b/doc/en/Pango/Stretch.xml index 31bfd85c2..4c068cb08 100644 --- a/doc/en/Pango/Stretch.xml +++ b/doc/en/Pango/Stretch.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,18 +17,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Pango.StretchGType)) + + @@ -162,4 +153,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/Style.xml b/doc/en/Pango/Style.xml index 1b2421f4c..1819769ce 100644 --- a/doc/en/Pango/Style.xml +++ b/doc/en/Pango/Style.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,18 +17,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Pango.StyleGType)) + + @@ -82,4 +73,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/TabAlign.xml b/doc/en/Pango/TabAlign.xml index 369674806..9d0f3354c 100644 --- a/doc/en/Pango/TabAlign.xml +++ b/doc/en/Pango/TabAlign.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -24,18 +22,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Pango.TabAlignGType)) + + @@ -63,4 +54,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/TabArray.xml b/doc/en/Pango/TabArray.xml index 4f4993d9b..d5863f891 100644 --- a/doc/en/Pango/TabArray.xml +++ b/doc/en/Pango/TabArray.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -92,7 +86,6 @@ Internal constructor Pointer to the C object. - An instance of TabArray, wrapping the C object. This is an internal constructor, and should not be used by user code. @@ -110,7 +103,6 @@ an object containing an array of tab stops Initial number of tab stops to allocate, can be 0 if the tab positions are in pixel units - an object of type Creates a new with the number of tab stops specified by . If is , the tab stop positions are specified in pixel units otherwise in pango units. All tab stops are initially at position 0. @@ -122,7 +114,7 @@ returns if the tab positions are specified in pixels and if they are in pango units. - an object of type + an object of type @@ -134,7 +126,7 @@ returns the number of tab stops in the tab array. - the number of tab stops in the array. + the number of tab stops in the array. @@ -154,6 +146,7 @@ the tab stop index a a , the position in Pango units. + To be added. @@ -165,12 +158,12 @@ GType Property. - a + a Returns the native value for . - + Method System.Void @@ -187,4 +180,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/Underline.xml b/doc/en/Pango/Underline.xml index 70eee30a0..5ab67c3e2 100644 --- a/doc/en/Pango/Underline.xml +++ b/doc/en/Pango/Underline.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,18 +17,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Pango.UnderlineGType)) + + @@ -117,4 +108,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/Units.xml b/doc/en/Pango/Units.xml index c4841a407..e5db063a2 100644 --- a/doc/en/Pango/Units.xml +++ b/doc/en/Pango/Units.xml @@ -4,8 +4,6 @@ pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - diff --git a/doc/en/Pango/Variant.xml b/doc/en/Pango/Variant.xml index 8f1962ff7..8a8a804ed 100644 --- a/doc/en/Pango/Variant.xml +++ b/doc/en/Pango/Variant.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Pango.VariantGType)) + + @@ -70,4 +61,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/Weight.xml b/doc/en/Pango/Weight.xml index b372d10ac..3fa80b988 100644 --- a/doc/en/Pango/Weight.xml +++ b/doc/en/Pango/Weight.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -21,18 +19,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Pango.WeightGType)) + + @@ -133,4 +124,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/Win32FontCache.xml b/doc/en/Pango/Win32FontCache.xml deleted file mode 100644 index ab2444f30..000000000 --- a/doc/en/Pango/Win32FontCache.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - pango-sharp - - - 0.0.0.0 - neutral - - - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - - Caches HFONTs by their LOGFONT descriptions; represents the Windows cache for fonts, in which logical fonts are pointed to by font handles. Logical fonts are scaled to the appropriate resolution for a given output device. - Windows only. - - - GLib.Opaque - - - - GLib.IWrapper - - - - - - - Method - - System.Void - - - - Frees a and all associated memory. - All fonts loaded through this font cache will be freed along with the cache. - - - - - Constructor - - - - - - Internal constructor - Pointer to the C object. - An instance of Win32FontCache, wrapping the C object. - - This is an internal constructor, and should not be used by user code. - - - - - - Constructor - - - - Default constructor - an object of type - User code should use this constructor. - - - - \ No newline at end of file diff --git a/doc/en/Pango/WrapMode.xml b/doc/en/Pango/WrapMode.xml index ec4a0c4e6..232d13d5f 100644 --- a/doc/en/Pango/WrapMode.xml +++ b/doc/en/Pango/WrapMode.xml @@ -1,12 +1,10 @@ - + pango-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,18 +17,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Pango.WrapModeGType)) + + @@ -86,4 +77,4 @@ - \ No newline at end of file + diff --git a/doc/en/Pango/Xft.xml b/doc/en/Pango/Xft.xml index e9a364f5c..485d4ba84 100644 --- a/doc/en/Pango/Xft.xml +++ b/doc/en/Pango/Xft.xml @@ -4,8 +4,6 @@ pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,7 +14,6 @@ System.Object - @@ -25,9 +22,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Pango/XftRenderer.xml b/doc/en/Pango/XftRenderer.xml index 649560cc0..2e916a26e 100644 --- a/doc/en/Pango/XftRenderer.xml +++ b/doc/en/Pango/XftRenderer.xml @@ -1,11 +1,9 @@ - + pango-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,14 +14,7 @@ Pango.Renderer - - GLib.IWrapper - - - System.IDisposable - - @@ -48,10 +39,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -62,7 +56,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -75,7 +68,7 @@ GType Property. - a + a Returns the native value for . @@ -87,9 +80,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Rsvg/BpathDef.xml b/doc/en/Rsvg/BpathDef.xml index 249d799a1..89b29397c 100644 --- a/doc/en/Rsvg/BpathDef.xml +++ b/doc/en/Rsvg/BpathDef.xml @@ -1,12 +1,10 @@ - + rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -181,7 +178,7 @@ To be added - a + a To be added @@ -225,4 +222,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/Clone.xml b/doc/en/Rsvg/Clone.xml index 7c8fcf103..6888cc8af 100644 --- a/doc/en/Rsvg/Clone.xml +++ b/doc/en/Rsvg/Clone.xml @@ -4,9 +4,7 @@ rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -26,7 +23,6 @@ To be added - a To be added @@ -67,4 +63,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/Css.xml b/doc/en/Rsvg/Css.xml index 8465bfa9f..eed1424ec 100644 --- a/doc/en/Rsvg/Css.xml +++ b/doc/en/Rsvg/Css.xml @@ -4,9 +4,7 @@ rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -92,7 +89,6 @@ To be added - a To be added @@ -324,4 +320,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/DefType.xml b/doc/en/Rsvg/DefType.xml index b96a21d37..148e32fdb 100644 --- a/doc/en/Rsvg/DefType.xml +++ b/doc/en/Rsvg/DefType.xml @@ -4,9 +4,7 @@ rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -98,4 +84,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/DefVal.xml b/doc/en/Rsvg/DefVal.xml index 9617f12ae..641797a27 100644 --- a/doc/en/Rsvg/DefVal.xml +++ b/doc/en/Rsvg/DefVal.xml @@ -1,12 +1,10 @@ - + rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -62,4 +59,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/Defs.xml b/doc/en/Rsvg/Defs.xml index a503742bc..748bf5022 100644 --- a/doc/en/Rsvg/Defs.xml +++ b/doc/en/Rsvg/Defs.xml @@ -1,12 +1,10 @@ - + rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -78,7 +72,6 @@ To be added a - a To be added @@ -89,9 +82,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Rsvg/Error.xml b/doc/en/Rsvg/Error.xml index e8c523a39..5b76db30b 100644 --- a/doc/en/Rsvg/Error.xml +++ b/doc/en/Rsvg/Error.xml @@ -4,9 +4,7 @@ rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -57,4 +43,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/Global.xml b/doc/en/Rsvg/Global.xml index e97fa3a96..0789f9925 100644 --- a/doc/en/Rsvg/Global.xml +++ b/doc/en/Rsvg/Global.xml @@ -4,9 +4,7 @@ rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -55,7 +52,6 @@ Default constructor - a @@ -67,7 +63,7 @@ Sets the DPI for the all future outgoing pixbufs. - Dots Per Inch (aka Pixels Per Inch) + Dots Per Inch (aka Pixels Per Inch) Common values are 72, 90, and 300 DPI. Passing a number <= 0 to dpi will reset the DPI to whatever the default value happens to be. @@ -178,7 +174,7 @@ - + Method System.Boolean @@ -259,4 +255,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/GradientStop.xml b/doc/en/Rsvg/GradientStop.xml index 0311ee902..051dab6e4 100644 --- a/doc/en/Rsvg/GradientStop.xml +++ b/doc/en/Rsvg/GradientStop.xml @@ -1,12 +1,10 @@ - + rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -75,4 +72,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/GradientStops.xml b/doc/en/Rsvg/GradientStops.xml index ec6c37870..e01c2f0d9 100644 --- a/doc/en/Rsvg/GradientStops.xml +++ b/doc/en/Rsvg/GradientStops.xml @@ -1,12 +1,10 @@ - + rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -57,7 +54,7 @@ To be added - a + a To be added @@ -75,4 +72,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/Handle.xml b/doc/en/Rsvg/Handle.xml index 14f5a49cf..d502f7d5e 100644 --- a/doc/en/Rsvg/Handle.xml +++ b/doc/en/Rsvg/Handle.xml @@ -1,12 +1,10 @@ - + rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -59,7 +53,6 @@ To be added a - a To be added @@ -70,7 +63,6 @@ Returns a new rsvg handle. - a new This handle can be used for dynamically loading an image. You need to feed it data using , then call when done. No more than one image can be loaded with one handle. @@ -83,7 +75,7 @@ The pixbuf loaded by handle. - a + a If insufficient data has been read to create the pixbuf, or an error occurred in loading, then will be returned. @@ -95,7 +87,7 @@ Sets the DPI for the all future outgoing pixbufs. - Dots Per Inch (aka Pixels Per Inch) + Dots Per Inch (aka Pixels Per Inch) Common values are 72, 90, and 300 DPI. Passing a number <= 0 to dpi will reset the DPI to whatever the default value happens to be. @@ -113,7 +105,7 @@ - + Method System.Boolean @@ -139,7 +131,7 @@ To be added - a + a To be added @@ -152,7 +144,7 @@ To be added - a + a To be added @@ -200,9 +192,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Rsvg/LinearGradient.xml b/doc/en/Rsvg/LinearGradient.xml index 661185405..3d74e6bda 100644 --- a/doc/en/Rsvg/LinearGradient.xml +++ b/doc/en/Rsvg/LinearGradient.xml @@ -1,12 +1,10 @@ - + rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -57,7 +54,7 @@ To be added - a + a To be added @@ -88,7 +85,7 @@ - + Field System.Double[] @@ -166,4 +163,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/PSCtx.xml b/doc/en/Rsvg/PSCtx.xml index f39cd8a33..9f314c249 100644 --- a/doc/en/Rsvg/PSCtx.xml +++ b/doc/en/Rsvg/PSCtx.xml @@ -1,12 +1,10 @@ - + rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -101,7 +98,7 @@ - + Field System.Double[] @@ -114,4 +111,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/PaintServer.xml b/doc/en/Rsvg/PaintServer.xml index 3aa6946f9..50573fe6a 100644 --- a/doc/en/Rsvg/PaintServer.xml +++ b/doc/en/Rsvg/PaintServer.xml @@ -1,12 +1,10 @@ - + rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -75,9 +69,8 @@ To be added a - a To be added - \ No newline at end of file + diff --git a/doc/en/Rsvg/Pixbuf.xml b/doc/en/Rsvg/Pixbuf.xml index e6b381011..faa7b5fd0 100644 --- a/doc/en/Rsvg/Pixbuf.xml +++ b/doc/en/Rsvg/Pixbuf.xml @@ -4,9 +4,7 @@ rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -126,7 +123,6 @@ To be added - a To be added @@ -273,4 +269,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/RadialGradient.xml b/doc/en/Rsvg/RadialGradient.xml index 8a30cad3f..39fd7717d 100644 --- a/doc/en/Rsvg/RadialGradient.xml +++ b/doc/en/Rsvg/RadialGradient.xml @@ -1,12 +1,10 @@ - + rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -57,7 +54,7 @@ To be added - a + a To be added @@ -88,7 +85,7 @@ - + Field System.Double[] @@ -179,4 +176,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/Render.xml b/doc/en/Rsvg/Render.xml index 0839961ab..a4e4e3260 100644 --- a/doc/en/Rsvg/Render.xml +++ b/doc/en/Rsvg/Render.xml @@ -4,9 +4,7 @@ rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -62,9 +59,8 @@ To be added - a To be added - \ No newline at end of file + diff --git a/doc/en/Rsvg/SizeFunc.xml b/doc/en/Rsvg/SizeFunc.xml index 16ada9e73..978956000 100644 --- a/doc/en/Rsvg/SizeFunc.xml +++ b/doc/en/Rsvg/SizeFunc.xml @@ -1,15 +1,15 @@ - + rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Function to let a user of the library specify the SVG's dimensions @@ -24,21 +24,12 @@ height: the output height the SVG should be user_data: user data System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void - - + + - \ No newline at end of file + diff --git a/doc/en/Rsvg/Start.xml b/doc/en/Rsvg/Start.xml index 010287502..be0553c2e 100644 --- a/doc/en/Rsvg/Start.xml +++ b/doc/en/Rsvg/Start.xml @@ -4,9 +4,7 @@ rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.Object - @@ -26,7 +23,6 @@ To be added - a To be added @@ -218,4 +214,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/State.xml b/doc/en/Rsvg/State.xml index 3a5120cad..7766aa725 100644 --- a/doc/en/Rsvg/State.xml +++ b/doc/en/Rsvg/State.xml @@ -1,12 +1,10 @@ - + rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -49,7 +46,7 @@ - + Method System.Void @@ -96,7 +93,7 @@ To be added - a + a To be added @@ -109,7 +106,7 @@ To be added - a + a To be added @@ -122,7 +119,7 @@ To be added - a + a To be added @@ -135,12 +132,12 @@ To be added - a + a To be added - + Field System.Double[] @@ -455,4 +452,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/TextAnchor.xml b/doc/en/Rsvg/TextAnchor.xml index 277df072a..8bcd6683f 100644 --- a/doc/en/Rsvg/TextAnchor.xml +++ b/doc/en/Rsvg/TextAnchor.xml @@ -4,8 +4,6 @@ rsvg-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] 2.0.0.0 - neutral - Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -15,18 +13,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -81,4 +67,4 @@ - \ No newline at end of file + diff --git a/doc/en/Rsvg/Tool.xml b/doc/en/Rsvg/Tool.xml index 9bb81c6ac..c0d6a9c68 100644 --- a/doc/en/Rsvg/Tool.xml +++ b/doc/en/Rsvg/Tool.xml @@ -4,9 +4,7 @@ rsvg-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -54,7 +52,6 @@ class MyMainWindow : Gtk.Window System.Object - @@ -163,9 +160,8 @@ class MyMainWindow : Gtk.Window Internal constructor - a Should never be used. - \ No newline at end of file + diff --git a/doc/en/Vte/Bg.xml b/doc/en/Vte/Bg.xml index 33858eab6..4f977253c 100644 --- a/doc/en/Vte/Bg.xml +++ b/doc/en/Vte/Bg.xml @@ -1,12 +1,10 @@ - + vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -74,10 +65,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -88,7 +82,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -99,7 +92,6 @@ To be added - a To be added @@ -112,7 +104,7 @@ GType Property. - a + a Returns the native value for . @@ -127,6 +119,10 @@ To be added To be added - + + + GLib.Signal(CName="root-pixmap-changed") + + - \ No newline at end of file + diff --git a/doc/en/Vte/BgSourceType.xml b/doc/en/Vte/BgSourceType.xml index b30bd00e6..5938e5364 100644 --- a/doc/en/Vte/BgSourceType.xml +++ b/doc/en/Vte/BgSourceType.xml @@ -4,9 +4,7 @@ vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,6 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - @@ -99,4 +85,4 @@ - \ No newline at end of file + diff --git a/doc/en/Vte/CharAttributes.xml b/doc/en/Vte/CharAttributes.xml index 6ff2fa51f..55030879f 100644 --- a/doc/en/Vte/CharAttributes.xml +++ b/doc/en/Vte/CharAttributes.xml @@ -1,12 +1,10 @@ - + vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -83,7 +80,7 @@ To be added - a + a To be added @@ -96,7 +93,7 @@ To be added - a + a To be added @@ -109,7 +106,7 @@ To be added - a + a To be added @@ -122,9 +119,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Vte/CharSizeChangedArgs.xml b/doc/en/Vte/CharSizeChangedArgs.xml index fc9708e3c..efd0f93e5 100644 --- a/doc/en/Vte/CharSizeChangedArgs.xml +++ b/doc/en/Vte/CharSizeChangedArgs.xml @@ -4,9 +4,7 @@ vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,7 +37,7 @@ To be added - a + a To be added @@ -54,9 +50,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Vte/CharSizeChangedHandler.xml b/doc/en/Vte/CharSizeChangedHandler.xml index 1368b7415..1263e07e4 100644 --- a/doc/en/Vte/CharSizeChangedHandler.xml +++ b/doc/en/Vte/CharSizeChangedHandler.xml @@ -1,15 +1,15 @@ - + vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Vte/ChildExitedArgs.xml b/doc/en/Vte/ChildExitedArgs.xml index ec8f289e2..656f0f9bd 100644 --- a/doc/en/Vte/ChildExitedArgs.xml +++ b/doc/en/Vte/ChildExitedArgs.xml @@ -4,9 +4,7 @@ vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,7 +37,7 @@ To be added - a + a To be added @@ -54,9 +50,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Vte/ChildExitedHandler.xml b/doc/en/Vte/ChildExitedHandler.xml index 08e8d6b1c..5ca8ec531 100644 --- a/doc/en/Vte/ChildExitedHandler.xml +++ b/doc/en/Vte/ChildExitedHandler.xml @@ -1,15 +1,15 @@ - + vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Vte/CommitArgs.xml b/doc/en/Vte/CommitArgs.xml index 1bc17c553..fc693ff74 100644 --- a/doc/en/Vte/CommitArgs.xml +++ b/doc/en/Vte/CommitArgs.xml @@ -4,9 +4,7 @@ vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,7 +37,7 @@ To be added - a + a To be added @@ -54,9 +50,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Vte/CommitHandler.xml b/doc/en/Vte/CommitHandler.xml index 35ad7edb0..e2f3fd253 100644 --- a/doc/en/Vte/CommitHandler.xml +++ b/doc/en/Vte/CommitHandler.xml @@ -1,15 +1,15 @@ - + vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Vte/Conv.xml b/doc/en/Vte/Conv.xml index 47f49216f..f7d3dea7a 100644 --- a/doc/en/Vte/Conv.xml +++ b/doc/en/Vte/Conv.xml @@ -1,12 +1,10 @@ - + vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,11 +15,7 @@ GLib.Opaque - - GLib.IWrapper - - @@ -33,9 +27,8 @@ To be added a - a To be added - \ No newline at end of file + diff --git a/doc/en/Vte/DebugFlags.xml b/doc/en/Vte/DebugFlags.xml index a56c22644..6aff8a00f 100644 --- a/doc/en/Vte/DebugFlags.xml +++ b/doc/en/Vte/DebugFlags.xml @@ -4,9 +4,7 @@ vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,20 +14,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -229,4 +216,4 @@ - \ No newline at end of file + diff --git a/doc/en/Vte/MoveWindowArgs.xml b/doc/en/Vte/MoveWindowArgs.xml index 9f1d3a424..644827f80 100644 --- a/doc/en/Vte/MoveWindowArgs.xml +++ b/doc/en/Vte/MoveWindowArgs.xml @@ -4,9 +4,7 @@ vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,7 +37,7 @@ To be added - a + a To be added @@ -54,9 +50,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Vte/MoveWindowHandler.xml b/doc/en/Vte/MoveWindowHandler.xml index 35a06cb12..d2cd6419f 100644 --- a/doc/en/Vte/MoveWindowHandler.xml +++ b/doc/en/Vte/MoveWindowHandler.xml @@ -1,15 +1,15 @@ - + vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Vte/Reaper.xml b/doc/en/Vte/Reaper.xml index e8f2feff0..d74202d04 100644 --- a/doc/en/Vte/Reaper.xml +++ b/doc/en/Vte/Reaper.xml @@ -1,12 +1,10 @@ - + vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ GLib.Object - - GLib.IWrapper - - - System.IDisposable - - @@ -79,10 +70,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -93,7 +87,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -104,7 +97,6 @@ To be added - a To be added @@ -117,7 +109,7 @@ GType Property. - a + a Returns the native value for . @@ -132,6 +124,10 @@ To be added To be added - + + + GLib.Signal(CName="child-exited") + + - \ No newline at end of file + diff --git a/doc/en/Vte/ResizeWindowArgs.xml b/doc/en/Vte/ResizeWindowArgs.xml index 1ed5a263b..5927ed68b 100644 --- a/doc/en/Vte/ResizeWindowArgs.xml +++ b/doc/en/Vte/ResizeWindowArgs.xml @@ -4,9 +4,7 @@ vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,7 +37,7 @@ To be added - a + a To be added @@ -54,9 +50,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Vte/ResizeWindowHandler.xml b/doc/en/Vte/ResizeWindowHandler.xml index 21f583464..2418f77c5 100644 --- a/doc/en/Vte/ResizeWindowHandler.xml +++ b/doc/en/Vte/ResizeWindowHandler.xml @@ -1,15 +1,15 @@ - + vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Vte/Ring.xml b/doc/en/Vte/Ring.xml index 92e1dd20f..265059fb5 100644 --- a/doc/en/Vte/Ring.xml +++ b/doc/en/Vte/Ring.xml @@ -1,12 +1,10 @@ - + vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,7 +15,6 @@ System.ValueType - @@ -57,7 +54,7 @@ To be added - a + a To be added @@ -70,7 +67,7 @@ To be added - a + a To be added @@ -83,7 +80,7 @@ To be added - a + a To be added diff --git a/doc/en/Vte/RingFreeFunc.xml b/doc/en/Vte/RingFreeFunc.xml index 404f9a33a..f01b6bbb9 100644 --- a/doc/en/Vte/RingFreeFunc.xml +++ b/doc/en/Vte/RingFreeFunc.xml @@ -1,30 +1,20 @@ - + vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. To be added To be added System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -32,4 +22,4 @@ - \ No newline at end of file + diff --git a/doc/en/Vte/Terminal.xml b/doc/en/Vte/Terminal.xml index a2a24909d..f404b2248 100644 --- a/doc/en/Vte/Terminal.xml +++ b/doc/en/Vte/Terminal.xml @@ -1,12 +1,10 @@ - + vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -128,17 +126,7 @@ class T Gtk.Widget - - Atk.Implementor - - - GLib.IWrapper - - - System.IDisposable - - @@ -858,10 +846,13 @@ class T Internal Constructor. a - a This should not be called by normal applications. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -872,7 +863,6 @@ class T Internal Constructor. a - a This should not be called by normal user code. @@ -883,7 +873,6 @@ class T Default Constructor - a @@ -896,7 +885,7 @@ class T GType Property. - a + a Returns the native value for . @@ -909,7 +898,7 @@ class T An accessor function provided for the benefit of language bindings. - the contents of terminal's char_ascent field + the contents of terminal's char_ascent field @@ -922,7 +911,7 @@ class T An accessor function provided for the benefit of language bindings. - the contents of terminal's adjustment field + the contents of terminal's adjustment field @@ -935,7 +924,7 @@ class T An accessor function provided for the benefit of language bindings. - the contents of terminal's column_count field + the contents of terminal's column_count field @@ -947,7 +936,7 @@ class T Sets the background color for text which does not have a specific background color assigned. - the new background color + the new background color Only has effect when no background image is set and when the terminal is not transparent. @@ -959,8 +948,8 @@ class T Controls whether or not the terminal will forcibly scroll to the bottom of the viewable history when the user presses a key. - - if the terminal should scroll on keystrokes + + if the terminal should scroll on keystrokes Modifier keys do not trigger this behavior. @@ -973,7 +962,7 @@ class T An accessor function provided for the benefit of language bindings. - a + a the contents of terminal's char_width field @@ -986,7 +975,7 @@ class T An accessor function provided for the benefit of language bindings. - the contents of terminal's char_descent field + the contents of terminal's char_descent field @@ -999,8 +988,8 @@ class T Controls whether or not the terminal will present a visible bell to the user when the child outputs the "bl" sequence. - - if visible bell is enabled, if not + + if visible bell is enabled, if not The terminal will clear itself to the default foreground color and then repaint itself. @@ -1012,8 +1001,8 @@ class T Sets whether or not the cursor will blink. - - if the cursor should blink + + if the cursor should blink The length of the blinking cycle is controlled by the "gtk-cursor-blink-time" GTK+ setting. @@ -1025,7 +1014,7 @@ class T A convenience function which converts name into a PangoFontDescription and passes it to . - A string describing the font. + A string describing the font. @@ -1038,7 +1027,7 @@ class T Sets what type of terminal the widget attempts to emulate by scanning for control sequences defined in the system's termcap file. - the name of a terminal description + the name of a terminal description Unless you are interested in this feature, always use "xterm". @@ -1051,8 +1040,8 @@ class T Whether a is using Xft to draw text. - - if the terminal is using Xft to render, if the terminal is using Pango or Xlib. + + if the terminal is using Xft to render, if the terminal is using Pango or Xlib. This function allows an application to determine which mode the widget is in. This setting cannot be changed by the caller, but in practice usually matches the behavior of Gtk itself. @@ -1064,7 +1053,7 @@ class T Modifies the terminal's backspace key binding, which controls what string or control sequence the terminal sends to its child when the user presses the backspace key. - a for the backspace key + a for the backspace key @@ -1077,7 +1066,7 @@ class T An accessor function provided for the benefit of language bindings. - the contents of terminal's icon_title field + the contents of terminal's icon_title field @@ -1089,8 +1078,8 @@ class T Controls whether or not the terminal will forcibly scroll to the bottom of the viewable history when the new data is received from the child. - - if the terminal should scroll on output + + if the terminal should scroll on output @@ -1102,8 +1091,8 @@ class T Sets the terminal's background image to the pixmap stored in the root window, adjusted so that if there are no windows below your application, the widget will appear to be transparent. - - if the terminal should fake transparency + + if the terminal should fake transparency @@ -1115,7 +1104,7 @@ class T To be added - a + a To be added @@ -1127,7 +1116,7 @@ class T Modifies the terminal's delete key binding, which controls what string or control sequence the terminal sends to its child when the user presses the delete key. - a for the delete key + a for the delete key @@ -1140,7 +1129,7 @@ class T The encoding the terminal will expect data from the child to be encoded with. - a valid gconv target + a valid gconv target For certain terminal types, applications executing in the terminal can change the encoding. The default encoding is defined by the application's locale settings. @@ -1153,8 +1142,8 @@ class T Controls whether or not the terminal will attempt to draw bold text by repainting text with a different offset. - - if the terminal should attempt to draw bold text + + if the terminal should attempt to draw bold text @@ -1166,8 +1155,8 @@ class T Sets a background image for the widget. - - to use, or to cancel + + to use, or to cancel Text which would otherwise be drawn using the default background color will instead be drawn over the specified image. If necessary, the image will be tiled to cover the widget's entire visible area. @@ -1179,7 +1168,7 @@ class T When the user double-clicks to start selection, the terminal will extend the selection on word boundaries. - a specification + a specification When the user double-clicks to start selection, the terminal will extend the selection on word boundaries. It will treat characters passed in as parts of words, and all other characters as word separators. Ranges of characters can be specified by separating them with a hyphen. @@ -1197,7 +1186,7 @@ class T An accessor function provided for the benefit of language bindings. - the contents of terminal's row_count field + the contents of terminal's row_count field @@ -1210,7 +1199,7 @@ class T Some terminal emulations specify a status line which is separate from the main display area, and define a means for applications to move the cursor to the status line and back. - The current contents of the terminal's status line. For terminals like "xterm", this will usually be the empty string. The string must not be modified or freed by the caller. + The current contents of the terminal's status line. For terminals like "xterm", this will usually be the empty string. The string must not be modified or freed by the caller. @@ -1222,7 +1211,7 @@ class T To be added - a + a To be added @@ -1234,7 +1223,7 @@ class T Sets the color used to draw dim text in the default foreground color. - the new dim color + the new dim color @@ -1246,7 +1235,7 @@ class T Sets the length of the scrollback buffer used by the terminal. - the length of the history buffer + the length of the history buffer The size of the scrollback buffer will be set to the larger of this value and the number of visible rows the widget can display, so 0 can safely be used to disable scrollback. Note that this setting only affects the normal screen buffer. For terminal types which have an alternate screen buffer, no scrollback is allowed. @@ -1259,7 +1248,7 @@ class T An accessor function provided for the benefit of language bindings. - the contents of terminal's char_height field + the contents of terminal's char_height field @@ -1271,7 +1260,7 @@ class T Sets a background image for the widget. - a + a If specified by , the terminal will make its in-memory copy of the image darker for its own use. This is a convenience wrapper for . If your application intends to create multiple terminal widgets using the same background, performing this step yourself and just using will reduce memory consumption. @@ -1286,7 +1275,7 @@ class T Sets the color used to draw bold text in the default foreground color. - the new bold color + the new bold color @@ -1298,7 +1287,7 @@ class T Adjust the brightness of the background image. - a + a If a background image has been set using , , or , the terminal will adjust the brightness of the image before drawing the image. To do so, the terminal will create a copy of the background image (or snapshot of the root window) and modify its pixel values. @@ -1316,7 +1305,7 @@ class T An accessor function provided for the benefit of language bindings. - the contents of terminal's window_title field + the contents of terminal's window_title field the contents of terminal's window_title field @@ -1329,8 +1318,8 @@ class T The value of the terminal's mouse autohide setting. - - if the autohide should be enabled + + if the autohide should be enabled When autohiding is enabled, the mouse cursor will be hidden when the user presses a key and shown when the user moves the mouse. @@ -1342,7 +1331,7 @@ class T Sets the foreground color used to draw normal text - the new foreground color + the new foreground color @@ -1355,7 +1344,7 @@ class T Controls whether or not the terminal will beep when the child outputs the "bl" sequence. - a + a if the terminal should beep @@ -1369,8 +1358,8 @@ class T Checks if the terminal currently contains selected text. - - if part of the text in the terminal is selected. + + if part of the text in the terminal is selected. Note that this is different from determining if the terminal is the owner of any items. @@ -1385,7 +1374,11 @@ class T Emitted at the child application's request. - + + + GLib.Signal(CName="restore-window") + + Event @@ -1397,7 +1390,11 @@ class T Emitted at the child application's request. - + + + GLib.Signal(CName="lower-window") + + Event @@ -1409,7 +1406,11 @@ class T Emitted at the child application's request. - + + + GLib.Signal(CName="maximize-window") + + Event @@ -1421,7 +1422,11 @@ class T Emitted when the user hits the '+' key while holding the Control key. - + + + GLib.Signal(CName="increase-font-size") + + Event @@ -1433,7 +1438,11 @@ class T An internal signal used for communication between the terminal and its accessibility peer. May not be emitted under certain circumstances. - + + + GLib.Signal(CName="text-modified") + + Event @@ -1445,7 +1454,11 @@ class T Emitted at the child application's request. - + + + GLib.Signal(CName="raise-window") + + Event @@ -1457,7 +1470,11 @@ class T An internal signal used for communication between the terminal and its accessibility peer. May not be emitted under certain circumstances. - + + + GLib.Signal(CName="text-inserted") + + Event @@ -1469,7 +1486,11 @@ class T Emitted whenever the contents of the status line are modified or cleared. - + + + GLib.Signal(CName="status-line-changed") + + Event @@ -1481,7 +1502,11 @@ class T Emitted at the child application's request. - + + + GLib.Signal(CName="iconify-window") + + Event @@ -1493,7 +1518,11 @@ class T This signal is emitted when the terminal detects that a child started using has exited. - + + + GLib.Signal(CName="child-exited") + + Event @@ -1505,7 +1534,11 @@ class T An internal signal used for communication between the terminal and its accessibility peer. May not be emitted under certain circumstances. - + + + GLib.Signal(CName="text-deleted") + + Event @@ -1517,7 +1550,11 @@ class T Emitted at the child application's request. - + + + GLib.Signal(CName="move-window") + + Event @@ -1529,7 +1566,11 @@ class T Emitted at the child application's request. - + + + GLib.Signal(CName="refresh-window") + + Event @@ -1541,7 +1582,11 @@ class T Emitted at the child application's request. - + + + GLib.Signal(CName="deiconify-window") + + Event @@ -1553,7 +1598,11 @@ class T Emitted when the terminal's icon_title field is modified. - + + + GLib.Signal(CName="icon-title-changed") + + Event @@ -1565,7 +1614,11 @@ class T Emitted when the user hits the '-' key while holding the Control key. - + + + GLib.Signal(CName="decrease-font-size") + + Event @@ -1577,7 +1630,11 @@ class T An internal signal used for communication between the terminal and its accessibility peer. May not be emitted under certain circumstances. - + + + GLib.Signal(CName="text-scrolled") + + Event @@ -1589,7 +1646,11 @@ class T Emitted whenever selection of a new font causes the values of the char_width or char_height fields to change. - + + + GLib.Signal(CName="char-size-changed") + + Event @@ -1601,7 +1662,11 @@ class T Emitted when the terminals encoding type is changed. - + + + GLib.Signal(CName="encoding-changed") + + Event @@ -1613,7 +1678,11 @@ class T Emitted when the terminal's window_title field is modified. - + + + GLib.Signal(CName="window-title-changed") + + Event @@ -1625,7 +1694,11 @@ class T Emitted whenever the visible appearance of the terminal has changed. Used primarily by . - + + + GLib.Signal(CName="contents-changed") + + Event @@ -1637,7 +1710,11 @@ class T Emitted whenever the cursor moves to a new character cell. Used primarily by . - + + + GLib.Signal(CName="cursor-moved") + + Event @@ -1649,7 +1726,11 @@ class T Emitted whenever the contents of terminal's selection changes. - + + + GLib.Signal(CName="selection-changed") + + Event @@ -1661,7 +1742,11 @@ class T To be added - + + + GLib.Signal(CName="eof") + + Event @@ -1673,7 +1758,11 @@ class T Emitted when the terminal emulation type is changed. - + + + GLib.Signal(CName="emulation-changed") + + Event @@ -1685,7 +1774,11 @@ class T Emitted at the child application's request. - + + + GLib.Signal(CName="resize-window") + + Event @@ -1697,7 +1790,11 @@ class T Emitted whenever the terminal receives input from the user and prepares to send it to the child process. The signal is emitted even when there is no child process. - + + + GLib.Signal(CName="commit") + + Property @@ -1707,12 +1804,12 @@ class T The font used for rendering all text displayed by the terminal, overriding any fonts set using . - The of the desired font. + The of the desired font. The terminal will immediately attempt to load the desired font, retrieve its metrics, and attempts to resize itself to keep the same number of rows and columns. - + Method System.Int32 @@ -1761,4 +1858,4 @@ class T - \ No newline at end of file + diff --git a/doc/en/Vte/TerminalAccessible.xml b/doc/en/Vte/TerminalAccessible.xml index 57bc9f1bf..0e5e668a9 100644 --- a/doc/en/Vte/TerminalAccessible.xml +++ b/doc/en/Vte/TerminalAccessible.xml @@ -1,12 +1,10 @@ - + vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,20 +15,13 @@ Gtk.Accessible - - Atk.Text - - - GLib.IWrapper - Atk.Component - System.IDisposable + Atk.Text - @@ -46,7 +37,7 @@ - + Method System.Boolean @@ -64,7 +55,7 @@ - + Method System.String @@ -86,7 +77,7 @@ - + Method System.String @@ -106,7 +97,7 @@ - + Method System.String @@ -128,7 +119,7 @@ - + Method System.String @@ -146,7 +137,7 @@ - + Method System.Boolean @@ -162,7 +153,7 @@ - + Method System.Void @@ -187,7 +178,7 @@ - + Method GLib.SList @@ -207,7 +198,7 @@ - + Method System.String @@ -229,7 +220,7 @@ - + Method System.Boolean @@ -245,7 +236,7 @@ - + Method System.Boolean @@ -265,7 +256,7 @@ - + Method System.Int32 @@ -341,7 +332,7 @@ - + Method Atk.Object @@ -361,7 +352,7 @@ - + Method System.Boolean @@ -381,7 +372,7 @@ - + Method System.Void @@ -400,7 +391,7 @@ - + Method System.Void @@ -423,7 +414,7 @@ - + Method System.UInt32 @@ -439,7 +430,7 @@ - + Method System.Boolean @@ -457,7 +448,7 @@ - + Method System.Boolean @@ -481,7 +472,7 @@ - + Method System.Void @@ -498,7 +489,7 @@ - + Method System.Boolean @@ -511,7 +502,7 @@ - + Method System.Boolean @@ -531,7 +522,7 @@ - + Method System.Void @@ -555,10 +546,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -569,7 +563,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -583,7 +576,6 @@ Creates a new accessibility peer for the terminal widget. a - a @@ -596,12 +588,12 @@ GType Property. - a + a Returns the native value for . - + Property System.Int32 @@ -609,12 +601,12 @@ To be added - a + a To be added - + Property System.Int32 @@ -622,12 +614,12 @@ To be added - a + a To be added - + Property System.Int32 @@ -635,12 +627,12 @@ To be added - a + a To be added - + Property GLib.SList @@ -648,12 +640,12 @@ To be added - a + a To be added - + Property Atk.Layer @@ -661,12 +653,12 @@ To be added - a + a To be added - + Property System.Int32 @@ -674,12 +666,12 @@ To be added - a + a To be added - + Event Atk.TextCaretMovedHandler @@ -689,9 +681,13 @@ To be added To be added - + + + GLib.Signal(CName="text_caret_moved") + + - + Event System.EventHandler @@ -701,9 +697,13 @@ To be added To be added - + + + GLib.Signal(CName="text_selection_changed") + + - + Event System.EventHandler @@ -713,9 +713,13 @@ To be added To be added - + + + GLib.Signal(CName="text_attributes_changed") + + - + Event Atk.TextChangedHandler @@ -725,9 +729,13 @@ To be added To be added - + + + GLib.Signal(CName="text_changed") + + - + Method Atk.TextRange @@ -749,7 +757,7 @@ - + Method System.Void @@ -770,7 +778,7 @@ - + Method System.Char @@ -787,7 +795,7 @@ - + Event Atk.BoundsChangedHandler @@ -797,7 +805,11 @@ To be added To be added - + + + GLib.Signal(CName="bounds_changed") + + Method @@ -814,4 +826,4 @@ - \ No newline at end of file + diff --git a/doc/en/Vte/TerminalAccessibleFactory.xml b/doc/en/Vte/TerminalAccessibleFactory.xml index 74f005068..8589fad7b 100644 --- a/doc/en/Vte/TerminalAccessibleFactory.xml +++ b/doc/en/Vte/TerminalAccessibleFactory.xml @@ -1,12 +1,10 @@ - + vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -17,14 +15,7 @@ Atk.ObjectFactory - - GLib.IWrapper - - - System.IDisposable - - @@ -49,10 +40,13 @@ Protected Constructor. a - a Chain to this constructor if you have manually registered a native value for your subclass. - + + + System.Obsolete(Message=null, IsError=False) + + Constructor @@ -63,7 +57,6 @@ Internal constructor a - a This is not typically used by C# code. @@ -74,7 +67,6 @@ To be added - a To be added @@ -87,9 +79,9 @@ GType Property. - a + a Returns the native value for . - \ No newline at end of file + diff --git a/doc/en/Vte/TerminalEraseBinding.xml b/doc/en/Vte/TerminalEraseBinding.xml index d650c6190..1f8b08460 100644 --- a/doc/en/Vte/TerminalEraseBinding.xml +++ b/doc/en/Vte/TerminalEraseBinding.xml @@ -4,9 +4,7 @@ vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,18 +14,11 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - + + + GLib.GType(WrapperType=typeof(Vte.TerminalEraseBindingGType)) + + @@ -99,4 +90,4 @@ - \ No newline at end of file + diff --git a/doc/en/Vte/TextScrolledArgs.xml b/doc/en/Vte/TextScrolledArgs.xml index 0861c6f75..cd7a1674e 100644 --- a/doc/en/Vte/TextScrolledArgs.xml +++ b/doc/en/Vte/TextScrolledArgs.xml @@ -4,9 +4,7 @@ vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -19,7 +17,6 @@ GLib.SignalArgs - @@ -28,7 +25,6 @@ Public Constructor. - A new . Create a new instance with this constructor if you need to invoke a delegate. @@ -41,9 +37,9 @@ To be added - a + a To be added - \ No newline at end of file + diff --git a/doc/en/Vte/TextScrolledHandler.xml b/doc/en/Vte/TextScrolledHandler.xml index 83ab575f5..b1de143f3 100644 --- a/doc/en/Vte/TextScrolledHandler.xml +++ b/doc/en/Vte/TextScrolledHandler.xml @@ -1,15 +1,15 @@ - + vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. + To be added. + To be added. Event handler. The event utilizes this delegate: @@ -20,15 +20,6 @@ System.Delegate - - - System.ICloneable - - - System.Runtime.Serialization.ISerializable - - - System.Void @@ -37,4 +28,4 @@ - \ No newline at end of file + diff --git a/doc/en/Vte/VteGlyphFlags.xml b/doc/en/Vte/VteGlyphFlags.xml index 6a21ca55b..828db9ce9 100644 --- a/doc/en/Vte/VteGlyphFlags.xml +++ b/doc/en/Vte/VteGlyphFlags.xml @@ -4,9 +4,7 @@ vte-sharp - 0.0.0.0 - neutral - + 2.0.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. @@ -16,20 +14,9 @@ System.Enum - - - System.IComparable - - - System.IConvertible - - - System.IFormattable - - - System.FlagsAttribute + System.Flags @@ -131,4 +118,4 @@ - \ No newline at end of file + diff --git a/doc/en/index.xml b/doc/en/index.xml new file mode 100644 index 000000000..4335fd9ab --- /dev/null +++ b/doc/en/index.xml @@ -0,0 +1,1706 @@ + + + + + + + + + + + + + + + + + + + + + To be added. + To be added. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/updater/Makefile.am b/doc/updater/Makefile.am deleted file mode 100644 index b1d761571..000000000 --- a/doc/updater/Makefile.am +++ /dev/null @@ -1,19 +0,0 @@ -assemblydir = $(bindir) -noinst_DATA = updater.exe -CLEANFILES = updater.exe - -references = - -sources = \ - updater.cs \ - TypeReflector.cs - -build_sources = $(addprefix $(srcdir)/, $(sources)) -dist_sources = $(sources) - -EXTRA_DIST = \ - $(dist_sources) - -updater.exe: $(build_sources) - $(CSC) /out:updater.exe $(references) $(build_sources) - diff --git a/doc/updater/TypeReflector.cs b/doc/updater/TypeReflector.cs deleted file mode 100644 index 7f345f472..000000000 --- a/doc/updater/TypeReflector.cs +++ /dev/null @@ -1,104 +0,0 @@ -// TypeReflector.cs - Type reflection class -// -// Author: Mike Kestner -// -// Copyright (c) 2004, Novell, Inc. -// -// Permission is hereby granted, free of charge, to any person -// obtaining a copy of this software and associated documentation -// files (the "Software"), to deal in the Software without restriction, -// including without limitation the rights to use, copy, modify, merge, -// publish, distribute, sublicense, and/or sell copies of the Software, -// and to permit persons to whom the Software is furnished to do so, -// subject to the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS -// BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -// SOFTWARE. - - -namespace GtkSharp.Docs { - - using System; - using System.Collections; - using System.Reflection; - - public class TypeReflector { - - const BindingFlags static_flag = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.DeclaredOnly |BindingFlags.Static; - const BindingFlags instance_flag = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.DeclaredOnly |BindingFlags.Instance; - - Type t; - - public TypeReflector (Type t) - { - this.t = t; - } - - public FieldInfo [] Fields { - get { - ArrayList members = new ArrayList (); - foreach (object o in t.GetFields (static_flag)) - members.Add (o); - foreach (object o in t.GetFields (instance_flag)) - members.Add (o); - - return (FieldInfo []) members.ToArray (typeof (FieldInfo)); - } - } - - public MethodInfo [] Methods { - get { - ArrayList members = new ArrayList (); - foreach (object o in t.GetMethods (static_flag)) - members.Add (o); - foreach (object o in t.GetMethods (instance_flag)) - members.Add (o); - - return (MethodInfo []) members.ToArray (typeof (MethodInfo)); - } - } - - public PropertyInfo [] Properties { - get { - ArrayList members = new ArrayList (); - foreach (object o in t.GetProperties (static_flag)) - members.Add (o); - foreach (object o in t.GetProperties (instance_flag)) - members.Add (o); - - return (PropertyInfo []) members.ToArray (typeof (PropertyInfo)); - } - } - - public EventInfo [] Events { - get { - ArrayList members = new ArrayList (); - foreach (object o in t.GetEvents (static_flag)) - members.Add (o); - foreach (object o in t.GetEvents (instance_flag)) - members.Add (o); - - return (EventInfo []) members.ToArray (typeof (EventInfo)); - } - } - - public ConstructorInfo [] Constructors { - get { - ArrayList members = new ArrayList (); - foreach (object o in t.GetConstructors (instance_flag)) - members.Add (o); - - return (ConstructorInfo []) members.ToArray (typeof (ConstructorInfo)); - } - } - } -} diff --git a/doc/updater/updater.cs b/doc/updater/updater.cs deleted file mode 100644 index 7ac3ec9a0..000000000 --- a/doc/updater/updater.cs +++ /dev/null @@ -1,1468 +0,0 @@ -// updater.cs: Mono documentation updater -// -// Authors: -// Duncan Mak (duncan@ximian.com) -// Mike Kestner -// -// Copyright (c) 2003-2004 Ximian, Inc. -// - -namespace GtkSharp.Docs { - -using System; -using System.Globalization; -using System.Collections; -using System.IO; -using System.Reflection; -using System.Text; -using System.Xml; - -class Match -{ - string signature; - bool found; - MemberInfo member; - XmlNode node; - - public Match (string signature, bool found) - { - this.signature = signature; - this.found = found; - } - - public MemberInfo Member { - get { return member; } - set { member = value; } - } - - public XmlNode Node { - get { return node; } - set { node = value; } - } - - public string Signature { - get { return signature; } - set { signature = value; } - } - - public bool Found { - get { return found; } - set { found = value; } - } -} - -public enum MemberType { - Method, - Property, - Constructor, - Event, - Field, -} - -class Updater { - - const string EmptyString = "To be added"; - - DirectoryInfo root_dir; - Assembly assembly; - string ns; - - static void Main (string [] args) - { - if (args.Length < 1 || args.Length > 3) { - Console.WriteLine ("Usage: updater [-o ]"); - return; - } - - Updater updater; - if (args.Length == 3 && args [1] == "-o" ) - updater = new Updater (args [0], args [2]); - else - updater = new Updater (args [0]); - - Console.WriteLine ("Updating assembly {0}:", args [0]); - updater.Update (); - } - - public Updater (string assembly_path) : this (assembly_path, Directory.GetCurrentDirectory ()) {} - - public Updater (string assembly_path, string root_path) - { - assembly = Assembly.LoadFrom (assembly_path); - - if (assembly == null) - throw new Exception ("unable to load assembly from " + assembly_path); - - root_dir = new DirectoryInfo (root_path); - if (!root_dir.Exists) - root_dir.Create (); - } - - void Update () - { - int count = 0; - foreach (Type t in assembly.GetTypes ()) - if (Update (t)) - count++; - - Console.WriteLine ("Wrote {0} files.\n", count); - } - - DirectoryInfo GetDirectoryInfo (Type type) - { - string path = root_dir.FullName + Path.DirectorySeparatorChar + type.Namespace; - if (Directory.Exists (path)) - return new DirectoryInfo (path); - else - return root_dir.CreateSubdirectory (type.Namespace); - } - - bool Update (Type type) - { - DirectoryInfo directory = GetDirectoryInfo (type); - string filename = directory.FullName + Path.DirectorySeparatorChar + type.Name + ".xml"; - - XmlDocument doc; - - ns = type.Namespace; - if (File.Exists (filename)) { - doc = new XmlDocument (); - Stream stream = File.OpenRead (filename); - doc.Load (stream); - stream.Close (); - if (!Compare (type, doc)) - return false; - } else - doc = Generate (type); - - if (doc == null) - return false; - - XmlTextWriter writer = new XmlTextWriter (filename, Encoding.ASCII); - writer.Formatting = Formatting.Indented; - doc.WriteContentTo (writer); - writer.Close (); - Console.WriteLine (type.FullName); - return true; - } - - bool Compare (Type t, XmlDocument doc) - { - bool changed = false; - - XmlNode node = doc.SelectSingleNode ("/Type/@FullName"); - if (node == null || node.InnerText != t.FullName) - return false; - - if (!t.IsAbstract && typeof (System.Delegate).IsAssignableFrom (t)) - return CompareDelegate (t, doc); - - XmlNode base_type = doc.SelectSingleNode ("/Type/Base/BaseTypeName"); - if (base_type != null && base_type.InnerText != GetBaseType (t)) { - base_type.InnerText = GetBaseType (t); - changed = true; - } - - TypeReflector reflector = new TypeReflector (t); - changed |= Compare (doc, MemberType.Field, reflector.Fields, GetNodesOfType (doc, "Field")); - changed |= Compare (doc, MemberType.Property, reflector.Properties, GetNodesOfType (doc, "Property")); - changed |= Compare (doc, MemberType.Event, reflector.Events, GetNodesOfType (doc, "Event")); - changed |= Compare (doc, MemberType.Method, reflector.Methods, GetNodesOfType (doc, "Method")); - changed |= Compare (doc, MemberType.Constructor, reflector.Constructors, GetNodesOfType (doc, "Constructor")); - - return changed; - } - - bool CompareDelegate (Type t, XmlDocument doc) - { - bool is_delegate; - string node_signature = GetNodeSignature (doc); - string del_signature = AddTypeSignature (t, out is_delegate); - if (node_signature == del_signature) - return false; - else { - SetTypeSignature (doc, del_signature); - return true; - } - } - - bool Compare (XmlDocument document, MemberType member_type, MemberInfo [] members, XmlNodeList nodes) - { - int members_count = ((members == null) ? 0 :members.Length); - int nodes_count = ((nodes == null) ? 0 : nodes.Count); - - // If we have no existing members, we deprecate all nodes - if (nodes_count > 0 && members_count == 0 ) { - DeprecateNodes (document, nodes); - return true; - } - - ArrayList types_list; - - switch (member_type) { - case MemberType.Field: - types_list = MakeFieldList (members); - break; - case MemberType.Property: - types_list = MakePropertyList (members); - break; - case MemberType.Method: - types_list = MakeMethodList (members); - break; - case MemberType.Constructor: - types_list = MakeConstructorList (members); - break; - case MemberType.Event: - types_list = MakeEventList (members); - break; - default: - throw new ArgumentException (); - } - - if (types_list.Count == 0 && nodes == null) - return false; - - // There are no existing nodes, we generate all members - if (types_list.Count > 0 && nodes == null) { - GenerateMembers (members, document); - return true; - } - - Match [] nodes_list = MakeNodesList (nodes); - - // Look for stuff that we can match between the type and the document - foreach (object obj in types_list) { - foreach (Match node in nodes_list) { - Match type = (Match) obj; - if (node.Signature != type.Signature) { - continue; - } else { - node.Found = true; - type.Found = true; - } - } - } - - bool changed = false; - - // Go thru each item found in the type, - // If it's not found, then generate it in the document - foreach (object o in types_list) { - Match match = (Match) o; - if (match.Found) { - continue; - } else { - XmlElement element = GetMembersElement (document); - switch (member_type) { - case MemberType.Constructor: - AddConstructor (element, (ConstructorInfo) match.Member); - break; - case MemberType.Event: - AddEvent (element, (EventInfo) match.Member); - break; - case MemberType.Method: - AddMethod (element, (MethodInfo) match.Member); - break; - case MemberType.Property: - AddProperty (element, (PropertyInfo) match.Member); - break; - case MemberType.Field: - AddField (element, (FieldInfo) match.Member); - break; - default: - throw new Exception (); - } - - changed = true; - } - } - - // Go thru each item in the node list, - // If there's no corresponding MemberInfo in the type, - // then mark it as deprecated and print a warning. - foreach (Match match in nodes_list) { - if (match.Found) - continue; - else { - DeprecateNode (document, match.Node); - changed = true; - } - } - - return changed; - } - - void GenerateMembers (MemberInfo [] members, XmlDocument document) - { - XmlElement element = GetMembersElement (document); - foreach (MemberInfo member in members) { - if (member is FieldInfo) { - Console.WriteLine ("Adding field: " + member); - AddField (element, (FieldInfo) member); - continue; - - } else if (member is PropertyInfo) { - Console.WriteLine ("Adding prop: " + member); - AddProperty (element, (PropertyInfo) member); - continue; - - } else if (member is ConstructorInfo) { - Console.WriteLine ("Adding ctor: " + member); - AddConstructor (element, (ConstructorInfo) member); - continue; - - } else if (member is MethodInfo) { - Console.WriteLine ("Adding method: " + member); - AddMethod (element, (MethodInfo) member); - continue; - - } else if (member is EventInfo) { - Console.WriteLine ("Adding event: " + member); - AddEvent (element, (EventInfo) member); - continue; - - } else { - Console.WriteLine ("{0} is of type {1}", member.Name, member.GetType ()); - throw new Exception ("Can't generate member."); - } - } - } - - void DeprecateNodes (XmlDocument document, XmlNodeList nodes) - { - foreach (XmlNode node in nodes) - DeprecateNode (document, node); - } - - void DeprecateNode (XmlDocument document, XmlNode node) - { - Console.Write ("Warning! {0} not found in assembly.", GetNodeName (node)); - -/* - if (IsStubbed (node)) { - XmlNode members = document.SelectSingleNode ("/Type/Members"); - node.RemoveAll (); - members.RemoveChild (node); - Console.WriteLine (" Removed, since it was stubbed."); - } else { -*/ - Console.WriteLine (" Marking it as deprecated."); - ((XmlElement) node).SetAttribute ("Deprecated", "true"); - - //} - } - - ArrayList MakeMethodList (MemberInfo [] members) - { - ArrayList list = new ArrayList (); - if (members.Length == 0) - return list; - - MethodInfo [] methods = (MethodInfo []) members; - - foreach (MethodInfo method in methods) { - - // Filter out methods that are also properties - if (method.IsSpecialName) - continue; - - // Filter out methods from events - if (method.Name.StartsWith ("add_") || method.Name.StartsWith ("remove_")) - continue; - - string signature = AddMethodSignature (method); - - if (signature == null) - continue; - - Match m = new Match (signature, false); - m.Member = method; - list.Add (m); - } - - return list; - } - - string GetNodeSignature (XmlDocument document) - { - XmlElement type_signature = (XmlElement) document.SelectSingleNode ("/Type/TypeSignature"); - return type_signature.GetAttribute ("Value"); - } - - void SetTypeSignature (XmlDocument document, string signature) - { - XmlElement type_signature = (XmlElement) document.SelectSingleNode ("/Type/TypeSignature"); - type_signature.SetAttribute ("Value", signature); - } - - ArrayList MakePropertyList (MemberInfo [] members) - { - ArrayList list = new ArrayList (); - if (members.Length == 0) - return list; - - PropertyInfo [] properties = (PropertyInfo []) members; - - foreach (PropertyInfo property in properties) { - - string signature = AddPropertySignature (property); - - if (signature == null) - continue; - - Match m = new Match (signature, false); - m.Member = property; - list.Add (m); - } - return list; - } - - ArrayList MakeConstructorList (MemberInfo [] members) - { - ArrayList list = new ArrayList (); - if (members.Length == 0) - return list; - - ConstructorInfo [] constructors = (ConstructorInfo []) members; - - foreach (ConstructorInfo constructor in constructors) { - string signature = AddConstructorSignature (constructor); - - // .cctors are not suppose to be visible - if (signature == null || constructor.Name == ".cctor") - continue; - - Match m = new Match (signature, false); - m.Member = constructor; - list.Add (m); - } - return list; - } - - ArrayList MakeFieldList (MemberInfo [] members) - { - ArrayList list = new ArrayList (); - if (members.Length == 0) - return list; - - FieldInfo [] fields = (FieldInfo []) members; - - foreach (FieldInfo field in fields) { - string signature = AddFieldSignature (field); - - if (signature == null) - continue; - - Match m = new Match (signature, false); - m.Member = field; - list.Add (m); - } - return list; - } - - ArrayList MakeEventList (MemberInfo [] members) - { - ArrayList list = new ArrayList (); - if (members.Length == 0) - return list; - - EventInfo [] events = (EventInfo []) members; - - foreach (EventInfo ev in events) { - string signature = AddEventSignature (ev); - - if (signature == null) - continue; - - Match m = new Match (signature, false); - m.Member = ev; - list.Add (m); - } - return list; - } - - Match [] MakeNodesList (XmlNodeList nodes) - { - Match [] list = new Match [nodes.Count]; - - if (nodes.Count == 0) - return list; - - for (int i = 0; i < list.Length; i ++) { - Match m = new Match (GetNodeSignature (nodes [i]), false); - m.Node = nodes [i]; - list [i] = m; - } - - return list; - } - - XmlNodeList GetNodesOfType (XmlDocument document, string type) - { - string expression = String.Format ("/Type/Members/Member[MemberType=\"{0}\"]", type); - XmlNodeList nodes = document.SelectNodes (expression); - - if (nodes.Count == 0) - return null; - - return nodes; - } - - string GetNodeSignature (XmlNode node) - { - XmlElement signature = node.SelectSingleNode ("./MemberSignature") as XmlElement; - return signature.GetAttribute ("Value"); - } - - string GetNodeName (XmlNode node) - { - XmlElement signature = (XmlElement) node; - return signature.GetAttribute ("MemberName"); - } - - XmlElement GetMembersElement (XmlDocument document) - { - XmlNode node = document.SelectSingleNode ("/Type/Members"); - - return (XmlElement) node; - } - - XmlDocument Generate (Type type) - { - bool isDelegate; - string signature = AddTypeSignature (type, out isDelegate); - - if (signature == null) - return null; - - XmlDocument document = new XmlDocument (); - - // - // This is the top level node - // - XmlElement type_node = document.CreateElement ("Type"); - document.AppendChild (type_node); - type_node.SetAttribute ("Name", type.Name); - type_node.SetAttribute ("FullName", type.FullName); - - XmlElement type_signature = document.CreateElement ("TypeSignature"); - type_signature.SetAttribute ("Language", "C#"); - type_signature.SetAttribute ("Value", signature); - type_signature.SetAttribute ("Maintainer", "auto"); - - type_node.AppendChild (type_signature); - - // - // This is for the AssemblyInfo nodes - // - XmlElement assembly_info = document.CreateElement ("AssemblyInfo"); - type_node.AppendChild (assembly_info); - - AssemblyName asm_name = type.Assembly.GetName (); - - byte[] public_key = asm_name.GetPublicKey (); - string key; - - if (public_key == null) - key = "null"; - else - key = GetKeyString (public_key); - - CultureInfo ci = asm_name.CultureInfo; - string culture; - - if ((ci == null) || (ci.LCID == CultureInfo.InvariantCulture.LCID)) - culture = "neutral"; - else - culture = ci.ToString (); - - assembly_info.AppendChild (AddElement (document, "AssemblyName", asm_name.Name)); - assembly_info.AppendChild (AddElement (document, "AssemblyPublicKey", key)); - assembly_info.AppendChild (AddElement (document, "AssemblyVersion", asm_name.Version.ToString ())); - assembly_info.AppendChild (AddElement (document, "AssemblyCulture", culture)); - - // - // Assembly-level Attribute nodes - // - XmlElement assembly_attributes = document.CreateElement ("Attributes"); - assembly_info.AppendChild (assembly_attributes); - - object [] attrs = type.Assembly.GetCustomAttributes (false); - AddAttributes (document, assembly_attributes, attrs); - - // - // Thread-safety node - // - XmlElement thread_safety_statement = document.CreateElement ("ThreadSafetyStatement"); - XmlElement link_element = document.CreateElement ("link"); - link_element.SetAttribute ("location", "node:gtk-sharp/programming/threads"); - link_element.AppendChild (document.CreateTextNode ("Gtk# Thread Programming")); - - thread_safety_statement.AppendChild ( - document.CreateTextNode ("Gtk# is thread aware, but not thread safe; See the ")); - thread_safety_statement.AppendChild (link_element); - thread_safety_statement.AppendChild ( - document.CreateTextNode (" for details.")); - - type_node.AppendChild (thread_safety_statement); - - // - // Class-level node - // - type_node.AppendChild (AddDocsNode (document)); - - // - // - // - XmlElement base_node = document.CreateElement ("Base"); - type_node.AppendChild (base_node); - - string base_type = GetBaseType (type); - if (base_type != null) - base_node.AppendChild (AddElement (document, "BaseTypeName", base_type)); - - // - // - // - XmlElement interfaces = document.CreateElement ("Interfaces"); - type_node.AppendChild (interfaces); - Type [] ifaces = type.GetInterfaces (); - - if (ifaces != null) { - foreach (Type iface in ifaces ) { - XmlElement interface_node = document.CreateElement ("Interface"); - interfaces.AppendChild (interface_node); - XmlElement interface_name = AddElement ( - document, "InterfaceName", iface.FullName); - interface_node.AppendChild (interface_name); - } - } - - // - // - // - XmlElement class_attributes = document.CreateElement ("Attributes"); - object [] class_attrs = type.GetCustomAttributes (false); - AddAttributes (document, class_attributes, class_attrs); - - type_node.AppendChild (class_attributes); - - // - // - // - XmlElement members; - - // - // delegates have an empty element. - // - if (isDelegate) - members = document.CreateElement ("Members"); - else - members = AddMembersNode (document, type); - - type_node.AppendChild (members); - - // - // delegates have a top-level parameters and return value section - // - if (isDelegate) { - System.Reflection.MethodInfo method = type.GetMethod ("Invoke"); - Type return_type = method.ReturnType; - ParameterInfo [] parameters = method.GetParameters (); - - type_node.AppendChild (AddReturnValue (document, return_type)); - type_node.AppendChild (AddParameters (document, parameters)); - } - - return document; - } - - string GetKeyString (byte [] key) - { - if (key.Length == 0) - return String.Empty; - - string s = BitConverter.ToString (key); - s = s.Replace ('-', ' '); - - return '[' + s + ']'; - } - - void AddAttributes (XmlDocument document, XmlElement root_element, object [] attributes) - { - if (attributes == null) - return; - - foreach (object attr in attributes) { - // - // Filter out the AssemblyFunkyAttributes - // - if (((Attribute) attr).GetType ().FullName.StartsWith ("System.Reflection.Assembly")) - continue; - - else { - XmlElement attribute = document.CreateElement ("Attribute"); - root_element.AppendChild (attribute); - XmlElement attribute_name = AddElement (document, - "AttributeName", ((Attribute) attr).GetType ().FullName); - attribute.AppendChild (attribute_name); - } - } - } - - XmlElement AddElement (XmlDocument document, string name, string text) - { - XmlElement element = document.CreateElement (name); - - if (text != null) { - XmlText text_node = document.CreateTextNode (text); - element.AppendChild (text_node); - } - - return element; - } - - XmlElement AddDocsNode (XmlDocument document) - { - XmlElement docs = document.CreateElement ("Docs"); - docs.AppendChild (AddElement (document, "summary", EmptyString)); - docs.AppendChild (AddElement (document, "remarks", EmptyString)); - - return docs; - } - - XmlElement AddDocsNode (XmlDocument document, Type return_value, ParameterInfo [] pi) - { - XmlElement docs = document.CreateElement ("Docs"); - docs.AppendChild (AddElement (document, "summary", EmptyString)); - - if (pi != null) - foreach (ParameterInfo param in pi) - docs.AppendChild (AddDocsParamNode (document, param)); - - XmlElement returns = AddDocsReturnsNode (document, return_value); - - if (returns != null) - docs.AppendChild (returns); - - docs.AppendChild (AddElement (document, "remarks", EmptyString)); - - return docs; - } - - XmlElement AddDocsParamNode (XmlDocument document, ParameterInfo parameter) - { - Type param_type = parameter.ParameterType; - Type element_type = param_type.GetElementType(); - XmlElement see_node = document.CreateElement ("see"); - see_node.SetAttribute ("cref", "T:" + (element_type == null ? param_type.ToString() : element_type.ToString())); - - XmlElement param = document.CreateElement ("param"); - param.SetAttribute ("name", parameter.Name); - XmlText text_node = document.CreateTextNode ("a "); - param.AppendChild (text_node); - param.AppendChild (see_node); - - return param; - } - - XmlElement AddDocsReturnsNode (XmlDocument document, Type return_value) - { - string return_type = ConvertCTSName (return_value.FullName); - - // - // Return now if it returns void here. - // - if (return_type == "void") - return null; - - XmlElement see_node = document.CreateElement ("see"); - see_node.SetAttribute ("cref", "T:" + return_value.FullName); - - XmlElement param = document.CreateElement ("returns"); - XmlText text_node = document.CreateTextNode ("a "); - param.AppendChild (text_node); - param.AppendChild (see_node); - - return param; - } - - XmlElement AddMembersNode (XmlDocument document, Type t) - { - XmlElement members = document.CreateElement ("Members"); - BindingFlags static_flag = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.DeclaredOnly |BindingFlags.Static; - BindingFlags instance_flag = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.DeclaredOnly |BindingFlags.Instance; - - foreach (FieldInfo fi in t.GetFields (static_flag)) - AddField (members, fi); - - foreach (FieldInfo fi in t.GetFields (instance_flag)) - AddField (members, fi); - - foreach (MethodInfo mi in t.GetMethods (static_flag)) - AddMethod (members, mi); - - foreach (MethodInfo mi in t.GetMethods (instance_flag)) - AddMethod (members, mi); - - foreach (ConstructorInfo ci in t.GetConstructors (static_flag)) - AddConstructor (members, ci); - - foreach (ConstructorInfo ci in t.GetConstructors (instance_flag)) - AddConstructor (members, ci); - - foreach (PropertyInfo pi in t.GetProperties (static_flag)) - AddProperty (members, pi); - - foreach (PropertyInfo pi in t.GetProperties (instance_flag)) - AddProperty (members, pi); - - foreach (EventInfo ei in t.GetEvents (static_flag)) - AddEvent (members, ei); - - foreach (EventInfo ei in t.GetEvents (instance_flag)) - AddEvent (members, ei); - - return members; - } - - void AddField (XmlElement members, FieldInfo field) - { - XmlDocument document = members.OwnerDocument; - string signature = AddFieldSignature (field); - - if (signature == null) - return; - - XmlElement member = document.CreateElement ("Member"); - member.SetAttribute ("MemberName", field.Name); - XmlElement field_signature = document.CreateElement ("MemberSignature"); - field_signature.SetAttribute ("Language", "C#"); - field_signature.SetAttribute ("Value", signature); - - members.AppendChild (member); - member.AppendChild (field_signature); - member.AppendChild (AddElement (document, "MemberType", "Field")); - member.AppendChild (AddReturnValue (document, field.FieldType)); - member.AppendChild (AddElement (document, "Parameters", String.Empty)); - member.AppendChild (AddDocsNode (document)); - } - - void AddMethod (XmlElement members, MethodInfo method) - { - XmlDocument document = members.OwnerDocument; - string signature = AddMethodSignature (method); - - if (signature == null) - return; - - // - // Filter out methods that are also properties - // - if (method.IsSpecialName) - return; - - // - // Filter out methods from events - // This is a lame hack, but there's no way around it. - // - if (method.Name.StartsWith ("add_") || method.Name.StartsWith ("remove_")) - return; - - XmlElement member = document.CreateElement ("Member"); - member.SetAttribute ("MemberName", method.Name); - XmlElement method_signature = document.CreateElement ("MemberSignature"); - method_signature.SetAttribute ("Language", "C#"); - method_signature.SetAttribute ("Value", signature); - - members.AppendChild (member); - member.AppendChild (method_signature); - member.AppendChild (AddElement (document, "MemberType", "Method")); - - Type return_type = method.ReturnType; - ParameterInfo [] parameters = method.GetParameters (); - - member.AppendChild (AddReturnValue (document, return_type)); - member.AppendChild (AddParameters (document, parameters)); - member.AppendChild (AddDocsNode (document, return_type, parameters)); - } - - void AddConstructor (XmlElement members, ConstructorInfo constructor) - { - XmlDocument document = members.OwnerDocument; - string signature = AddConstructorSignature (constructor); - string constructor_name = constructor.Name; - - // .cctors are not suppose to be visible - if (signature == null || constructor.Name == ".cctor") - return; - - XmlElement member = document.CreateElement ("Member"); - member.SetAttribute ("MemberName", constructor_name); - members.AppendChild (member); - XmlElement constructor_signature = document.CreateElement ("MemberSignature"); - constructor_signature.SetAttribute ("Language", "C#"); - constructor_signature.SetAttribute ("Value", signature); - member.AppendChild (constructor_signature); - member.AppendChild (AddElement (document, "MemberType", "Constructor")); - - Type return_type = constructor.DeclaringType; - ParameterInfo [] parameters = constructor.GetParameters (); - - // constructors have an empty ReturnValue node. - member.AppendChild (document.CreateElement ("ReturnValue")); - member.AppendChild (AddParameters (document, parameters)); - member.AppendChild (AddDocsNode (document, return_type, parameters)); - } - - void AddProperty (XmlElement members, PropertyInfo property) - { - XmlDocument document = members.OwnerDocument; - string signature = AddPropertySignature (property); - - if (signature == null) - return; - - XmlElement member = document.CreateElement ("Member"); - member.SetAttribute ("MemberName", property.Name); - members.AppendChild (member); - XmlElement property_signature = document.CreateElement ("MemberSignature"); - property_signature.SetAttribute ("Language", "C#"); - property_signature.SetAttribute ("Value", signature); - member.AppendChild (property_signature); - member.AppendChild (AddElement (document, "MemberType", "Property")); - - Type return_type = property.PropertyType; - member.AppendChild (AddReturnValue (document, return_type)); - - if (property.CanRead && property.GetGetMethod () != null) { - ParameterInfo [] parameters = property.GetGetMethod ().GetParameters (); - member.AppendChild (AddParameters (document, parameters)); - member.AppendChild (AddDocsNode (document, return_type, parameters)); - } else - member.AppendChild (AddDocsNode (document, return_type, null)); - } - - void AddEvent (XmlElement members, EventInfo ev) - { - XmlDocument document = members.OwnerDocument; - string signature = AddEventSignature (ev); - - if (signature == null) - return; - - XmlElement member = document.CreateElement ("Member"); - member.SetAttribute ("MemberName", ev.Name); - members.AppendChild (member); - XmlElement event_signature = document.CreateElement ("MemberSignature"); - event_signature.SetAttribute ("Language", "C#"); - event_signature.SetAttribute ("Value", signature); - member.AppendChild (event_signature); - member.AppendChild (AddElement (document, "MemberType", "Event")); - member.AppendChild (AddReturnValue (document, ev.EventHandlerType)); - member.AppendChild (AddElement (document, "Parameters", null)); - member.AppendChild (AddDocsNode (document)); - } - - XmlElement AddReturnValue (XmlDocument document, Type retval) - { - XmlElement return_value = document.CreateElement ("ReturnValue"); - XmlElement return_type = document.CreateElement ("ReturnType"); - XmlText value = document.CreateTextNode (retval.FullName); - - return_type.AppendChild (value); - return_value.AppendChild (return_type); - - return return_value; - } - - XmlElement AddParameters (XmlDocument document, ParameterInfo [] pi) - { - XmlElement parameters = document.CreateElement ("Parameters"); - - foreach (ParameterInfo p in pi) { - XmlElement parameter = document.CreateElement ("Parameter"); - parameter.SetAttribute ("Name", p.Name); - parameter.SetAttribute ("Type", p.ParameterType.FullName); - - if (p.ParameterType.IsByRef) { - if (!p.IsOut) - parameter.SetAttribute ("RefType", "ref"); - else - parameter.SetAttribute ("RefType", "out"); - } - parameters.AppendChild (parameter); - } - - return parameters; - } - - string GetTypeKind (Type t) - { - if (t.IsEnum || t == typeof (System.Enum)) - return "enum"; - if (t.IsClass) - return "class"; - if (t.IsInterface) - return "interface"; - if (t.IsValueType) - return "struct"; - else - throw new ArgumentException (); - } - - string GetBaseType (Type t) - { - if (t.IsEnum) - return "System.Enum"; - else if (t.IsValueType) - return "System.ValueType"; - else if (!t.IsAbstract && typeof (System.Delegate).IsAssignableFrom (t)) - return "System.Delegate"; - else if (t.IsClass && t != typeof (object)) - return t.BaseType.FullName; - else - return null; - } - - string GetTypeVisibility (TypeAttributes ta) - { - switch (ta & TypeAttributes.VisibilityMask){ - case TypeAttributes.Public: - case TypeAttributes.NestedPublic: - return "public"; - - case TypeAttributes.NestedFamily: - case TypeAttributes.NestedFamANDAssem: - case TypeAttributes.NestedFamORAssem: - return "protected"; - - default: - return null; - } - } - - string AddTypeSignature (Type type, out bool isDelegate) - { - // Assume it is not a delegate - isDelegate = false; - - if (type == null) - return null; - - string signature; - bool colon = true; - - string name = type.Name; - StringBuilder extends = new StringBuilder (); - string modifiers = String.Empty; - - TypeAttributes ta = type.Attributes; - string kind = GetTypeKind (type); - string visibility = GetTypeVisibility (ta); - - if (visibility == null) - return null; - - // - // Modifiers - // - if (type.IsAbstract) - modifiers = " abstract"; - if (type.IsSealed) - modifiers = " sealed"; - - // - // handle delegates - // - if (kind == "class" && !type.IsAbstract && - typeof (System.Delegate).IsAssignableFrom (type)) { - isDelegate = true; - return AddDelegateSignature (visibility, modifiers, name, type); - } - - // - // get BaseType - // - if (type != typeof (object) && kind == "class" && type.BaseType != typeof (object)) { - extends.Append (" : " + type.BaseType.FullName); - colon = false; - } - - // - // Implements interfaces... - // - Type [] interfaces = type.GetInterfaces (); - - if (interfaces.Length != 0) { - if (colon) - extends.Append (" : "); - else - extends.Append (", "); - - for (int i = 0; i < interfaces.Length; i ++){ - extends.Append (interfaces [i].Name); - if (i + 1 != interfaces.Length) extends.Append (", "); - } - } - - // - // Put it together - // - switch (kind){ - case "class": - signature = String.Format ("{0}{1} {2} {3}{4}", - visibility, modifiers, kind, name, extends.ToString ()); - break; - - case "enum": - signature = String.Format ("{0} {1} {2}", - visibility, kind, name); - break; - - case "interface": - case "struct": - default: - signature = String.Format ("{0}{1} {2} {3}", - visibility, modifiers, kind, name); - break; - } - - return signature; - } - - string AddDelegateSignature (string visibility, string modifiers, string name, Type type) - { - string signature; - - MethodInfo invoke = type.GetMethod ("Invoke"); - string arguments = GetMethodParameters (invoke); - string return_value = ConvertCTSName (invoke.ReturnType.FullName); - - signature = String.Format ("{0}{1} delegate {2} {3} {4};", - visibility, modifiers, return_value, name, arguments); - - return signature; - } - - string GetFieldVisibility (FieldInfo field) - { - if (field.IsPublic) - return "public"; - - if (field.IsFamily || field.IsFamilyOrAssembly) - return "protected"; - - else - return null; - } - - string GetFieldModifiers (FieldInfo field) - { - if (field.IsStatic) - return " static"; - - if (field.IsInitOnly) - return " readonly"; - - else - return null; - } - - string GetMethodVisibility (MethodBase method) - { - if (method.IsPublic) - return "public"; - - if (method.IsFamily || method.IsFamilyOrAssembly) - return "protected"; - else - return null; - } - - string GetMethodModifiers (MethodBase method) - { - if (method.IsStatic) - return " static"; - - if (method.IsVirtual) { - if ((method.Attributes & MethodAttributes.NewSlot) != 0) - return " virtual"; - else - return " override"; - - } else - return null; - } - - string GetMethodParameters (MethodBase method) - { - StringBuilder sb; - ParameterInfo [] pi = method.GetParameters (); - - if (pi.Length == 0) - return "()"; - - else { - sb = new StringBuilder (); - sb.Append ('('); - - int i = 0; - foreach (ParameterInfo parameter in pi) { - bool isPointer = false; - if (parameter.ParameterType.IsByRef) { - sb.Append (GetParameterModifier (parameter)); - isPointer = true; - } - string param = ConvertCTSName (parameter.ParameterType.FullName, isPointer); - - sb.Append (param); - sb.Append (" " + parameter.Name); - if (i + 1 < pi.Length) sb.Append (", "); - i++; - } - sb.Append (')'); - } - - return sb.ToString (); - } - - string GetParameterModifier (ParameterInfo parameter) - { - if (parameter.IsOut) - return "out "; - - return "ref "; - } - - string GetPropertyVisibility (PropertyInfo property) - { - MethodBase mb = property.GetSetMethod (true); - - if (mb == null) - mb = property.GetGetMethod (true); - - return GetMethodVisibility (mb); - } - - string GetPropertyModifiers (PropertyInfo property) - { - MethodBase mb = property.GetSetMethod (true); - - if (mb == null) - mb = property.GetGetMethod (true); - - return GetMethodModifiers (mb); - } - - string GetEventModifiers (EventInfo ev) - { - return GetMethodModifiers (ev.GetAddMethod ()); - } - - string GetEventVisibility (EventInfo ev) - { - MethodInfo add = ev.GetAddMethod (); - if (add == null) - return null; - return GetMethodVisibility (add); - } - - string GetEventType (EventInfo ev) - { - ParameterInfo [] pi = ev.GetAddMethod ().GetParameters (); - - if (pi.Length != 1) - throw new ArgumentException ("There is more than one argument to the add_ method of this event."); - - return ConvertCTSName (pi [0].ParameterType.FullName); - } - - string AddFieldSignature (FieldInfo field) - { - string signature; - string visibility = GetFieldVisibility (field); - - if (visibility == null) - return null; - - string type = ConvertCTSName (field.FieldType.FullName); - string name = field.Name; - string modifiers = GetFieldModifiers (field); - - signature = String.Format ("{0}{1} {2} {3};", - visibility, modifiers, type, name); - - if (field.DeclaringType.IsEnum) - signature = name; - - return signature; - } - - string AddMethodSignature (MethodInfo method) - { - string signature; - string visibility = GetMethodVisibility (method); - - if (visibility == null) - return null; - - string modifiers = GetMethodModifiers (method); - string return_type = ConvertCTSName (method.ReturnType.FullName); - string method_name = method.Name; - string parameters = GetMethodParameters (method); - - signature = String.Format ("{0}{1} {2} {3} {4};", - visibility, modifiers, return_type, method_name, parameters); - - return signature; - } - - string AddConstructorSignature (ConstructorInfo constructor) - { - string signature; - string visibility = GetMethodVisibility (constructor); - - if (visibility == null) - return null; - - string modifiers = GetMethodModifiers (constructor); - string name = constructor.DeclaringType.Name; - string parameters = GetMethodParameters (constructor); - - signature = String.Format ("{0}{1} {2} {3};", - visibility, modifiers, name, parameters); - - return signature; - } - - string AddPropertySignature (PropertyInfo property) - { - string signature; - string visibility = GetPropertyVisibility (property); - - if (visibility == null) - return null; - - string modifiers = GetPropertyModifiers (property); - string name = property.Name; - - string type_name = property.PropertyType.FullName; - - if (property.PropertyType.IsArray) { - int i = type_name.IndexOf ('['); - if (type_name [i - 1] != ' ') - type_name = type_name.Insert (i, " "); // always put a space before the [] - } - - string return_type = ConvertCTSName (type_name); - string arguments = null; - - if (property.CanRead && property.CanWrite) - arguments = "{ set; get; }"; - - else if (property.CanRead) - arguments = "{ get; }"; - - else if (property.CanWrite) - arguments = "{ set; }"; - - signature = String.Format ("{0}{1} {2} {3} {4};", - visibility, modifiers, return_type, name, arguments); - - return signature; - } - - string AddEventSignature (EventInfo ev) - { - string signature; - string visibility = GetEventVisibility (ev); - - if (visibility == null) - return null; - - string modifiers = GetEventModifiers (ev); - string name = ev.Name; - string type = GetEventType (ev); - - signature = String.Format ("{0}{1} event {2} {3};", - visibility, modifiers, type, name); - - return signature; - } - - string ConvertCTSName (string type, bool shorten) - { - if (shorten) - type = type.Substring (0, type.Length - 1); - - string retval = ConvertCTSName (type); - - return retval; - } - - // - // Utility function: converts a fully .NET qualified type name into a C#-looking one - // - string ConvertCTSName (string type) - { - string retval = String.Empty; - bool isArray = false; - bool isPointer = false; - - if (!type.StartsWith ("System.")) - return type; - - if (type.EndsWith ("[]")) { - isArray = true; - type = type.Substring (0, type.Length - 2); - type = type.TrimEnd (); - } - - if (type.EndsWith ("&")) { - isPointer = true; - type = type.Substring (0, type.Length - 1); - type = type.TrimEnd (); - } - - switch (type) { - case "System.Byte": retval = "byte"; break; - case "System.SByte": retval = "sbyte"; break; - case "System.Int16": retval = "short"; break; - case "System.Int32": retval = "int"; break; - case "System.Int64": retval = "long"; break; - - case "System.UInt16": retval = "ushort"; break; - case "System.UInt32": retval = "uint"; break; - case "System.UInt64": retval = "ulong"; break; - - case "System.Single": retval = "float"; break; - case "System.Double": retval = "double"; break; - case "System.Decimal": retval = "decimal"; break; - case "System.Boolean": retval = "bool"; break; - case "System.Char": retval = "char"; break; - case "System.Void": retval = "void"; break; - case "System.String": retval = "string"; break; - case "System.Object": retval = "object"; break; - - default: - if (type.StartsWith (ns)) - retval = type.Substring (ns.Length + 1); - else if (type.StartsWith ("System") && - (type.IndexOf ('.') == type.LastIndexOf ('.'))) - retval = type.Substring (7); - else - retval = type; - break; - } - - if (isArray) - retval = retval + " []"; - - if (isPointer) - retval = retval + "&"; - - return retval; - } -} -}