Ryujinx-GtkSharp/sample/GtkDemo
Dan Winship b7e4cc507e * generator/Parameters.cs (IsHidden): method to check if a
parameter should be hidden in the managed sig (eg, because it's
	user_data, or it's the length of the preceding array/string, etc).
	(VisibleCount): the number of parameters that will actually be
	exposed in the managed signature.
	(IsAccessor): test VisibleCount, not Count
	(AccessorReturnType, AccessorName): deal with the fact that the
	accessor parameter might not be the first one.

	* generator/CallbackGen.cs:
	* generator/Signature.cs: use Parameters.IsHidden.

	* generator/Method.cs (Initialize): set is_set based on
	VisibleCount, not Count.
	(Validate): call base.Validate() before Initialize() so that
	VisibleCount will be correct in Initialize.

	* generator/MethodBody.cs (GetCallString, CallArrayLength,
	Initialize): update to deal with accessors with multiple args.

	* gtk/Clipboard.custom (SetText): implement as an Obsolete variant
	of the Text property

	* gtk/IconTheme.custom (SearchPath, SetSearchPath): obsolete
	SetSearchPath, implement a setter on SearchPath instead.

	* gtk/ListStore.custom (SetColumnTypes):
	* gtk/TreeStore.custom (SetColumnTypes): implement as an Obsolete
	variant of the ColumnTypes property.

	* glade/XML.custom (CustomHandler): implement as a property
	(SetCustomHandler): Mark this obsolete

	* glade/Global.custom (SetCustomHandler): deprecate in favor of
	XML.CustomHandler.

	* gnomedb/Editor.custom (SetText): implement as an Obsolete
	variant of the Text property

svn path=/trunk/gtk-sharp/; revision=43898
2005-05-02 20:10:03 +00:00
..
images 2003-10-30 Daniel Kornhauser Eisenberg <dkor@alum.mit.edu> 2003-10-31 00:01:35 +00:00
DemoApplicationWindow.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoAttribute.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoButtonBox.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoClipboard.cs * generator/Parameters.cs (IsHidden): method to check if a 2005-05-02 20:10:03 +00:00
DemoColorSelection.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoDialog.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoDrawingArea.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoEditableCells.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoEntryCompletion.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoExpander.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoHyperText.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoIconView.cs make the icon view actually work 2005-04-22 02:03:47 +00:00
DemoImages.cs * generator/ClassBase.cs (ParseImplements): record both managed 2005-04-11 20:35:56 +00:00
DemoListStore.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoMain.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoMenus.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoPanes.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoPixbuf.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoRotatedText.cs add rotated text demo 2005-04-21 20:11:03 +00:00
DemoSizeGroup.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoStockBrowser.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoTextView.cs * pango/Scale.cs: rename the size constants to not have 2005-04-04 18:50:50 +00:00
DemoTreeStore.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
DemoUIManager.cs * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
Makefile.am add demo icon view 2005-04-22 00:46:57 +00:00
README * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
TODO add demo icon view 2005-04-22 00:46:57 +00:00

This is a mostly complete port of gtk-demo to Gtk#; for notes on
what's missing, see the TODO file.

The original port was done by Daniel Kornhauser (dkor@alum.mit.edu),
with additions/changes/fixes by various other people, as seen in the
main gtk-sharp ChangeLog.

For the most part, the various demos should stay as close as possible
to the C version, so that GtkDemo.exe can be compared against gtk-demo
to make sure Gtk# is working correctly.