Ryujinx-GtkSharp/pango
Dan Winship 900b14290c * parser/gapi2xml.pl: make note of _get_type methods for enums
* */*-api.xml: Regen, adding gtype="..." to many enum types

	* generator/EnumGen.cs (Generate): if the enum has the
	"gtype" property, add a GTypeAttribute pointing to an internal
	FooGType class whose GType property can be used to get the enum's
	GType.

	* generator/ObjectGen.cs:
	s/ObjectManager.RegisterType/GType.Register/

	* glib/GTypeAttribute.cs: attribute for indicating a property that
	will return the GType of a type (particularly for enums, which
	can't have GType properties added to them).

	* glib/GType.cs: renamed from Type.cs to match the type name
	(public static readonly GType ...): add a few missing types.
	(Register): moved from ObjectManager.RegisterType
	(LookupGType): moved from TypeConverter.LookupType and extended to
	handle GTypeAttribute. Also, fix mappings for sbyte/byte/char, and
	return specific GTypes for Object subclasses rather than always
	returning GType.Object.	[Fixes #74699]
	(LookupType): moved from ObjectWrapper.LookupType
	(ToString): return the type name
	
	* glib/Object.cs (RegisterGType):
	s/ObjectManager.Register/GType.Register/
	(LookupGType): Make this protected internal so GType can access
	it.

	* glib/ObjectManager.cs (RegisterType): deprecate in favor of
	GType.Register.
	(LookupType): moved to GType
	
	* glib/TypeConverter.cs (LookupType): now a deprecated wrapper
	around GType.LookupGType.

	* glib/Value.cs: Use GType casts rather than TypeConverter

	* gtk/NodeStore.cs (ScanType):
	* gtk/ListStore.custom (ListStore): 
	* gtk/TreeStore.custom (TreeStore): Use (GType) cast rather than
	TypeConverter. Remove the error check and exception, since the
	cast never returns GType.Invalid. (The check probably predates
	GLib.ManagedValue.)

	* gnome/PanelAppletFactory.cs (Register): Use a GType cast rather
	than GLib.Object.LookupGType (which is no longer accessible after
	an mcs bugfix)

	* sample/GtkDemo/DemoIconView.cs (CreateStore): use the Type[]
	constructor rather than the GType[] constructor, since it
	translates typeof(Gdk.Pixbuf) correctly now.

svn path=/trunk/gtk-sharp/; revision=44038
2005-05-04 16:54:24 +00:00
..
glue * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrBackground.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrFallback.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrFamily.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrFontDesc.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrForeground.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
Attribute.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrIterator.custom * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrLanguage.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrLetterSpacing.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrRise.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrScale.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrShape.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrSize.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrStretch.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrStrikethrough.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrStrikethroughColor.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrStyle.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrUnderline.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrUnderlineColor.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrVariant.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
AttrWeight.cs * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
Context.custom 2004-08-17 Mike Kestner <mkestner@ximian.com> 2004-08-17 20:43:49 +00:00
Coverage.custom 2004-08-17 Mike Kestner <mkestner@ximian.com> 2004-08-17 20:43:49 +00:00
FontFamily.custom 2004-08-17 Mike Kestner <mkestner@ximian.com> 2004-08-17 20:43:49 +00:00
FontMap.custom 2004-08-17 Mike Kestner <mkestner@ximian.com> 2004-08-17 20:43:49 +00:00
Global.custom 2005-03-09 Mike Kestner <mkestner@novell.com> 2005-03-09 20:32:24 +00:00
GlyphItem.custom 2005-03-09 Mike Kestner <mkestner@novell.com> 2005-03-09 20:32:24 +00:00
Layout.custom 2005-03-09 Mike Kestner <mkestner@novell.com> 2005-03-09 20:32:24 +00:00
LayoutLine.custom * gdk/EventClient.cs (gtksharp_gdk_event_client_get_time): 2005-04-21 15:12:12 +00:00
Makefile.am * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
makefile.win32 2005-03-25 Mike Kestner <mkestner@novell.com> 2005-03-25 18:31:10 +00:00
pango-api.raw * parser/gapi2xml.pl: make note of _get_type methods for enums 2005-05-04 16:54:24 +00:00
pango-sharp.dll.config.in merge to HEAD of jeroen and friends' work on the 2-4 branch. HEAD 2004-10-29 20:33:07 +00:00
pango-symbols.xml * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
Pango.metadata * pango/Attribute.cs: Base class for Pango attributes, a la 2005-04-24 22:35:43 +00:00
Scale.cs * pango/Scale.cs: rename the size constants to not have 2005-04-04 18:50:50 +00:00
TabArray.custom 2004-08-17 Mike Kestner <mkestner@ximian.com> 2004-08-17 20:43:49 +00:00