Ryujinx-GtkSharp/sample/GtkDemo
Dan Winship b8126ce3af * generator/ClassBase.cs (ParseImplements): record both managed
and unmanaged interface declarations.
	(Implements): check recursively

	* generator/ObjectGen.cs (Generate): output managed interfaces

	* gtk/Gtk.metadata: make Container implement IEnumerable

	* gtk/Container.custom (GetEnumerator): implement (a simplified
	form of Children).
	(AllChildren): add this (which accumulates the results of
	Forall()).
	(ForAll): mark ForAll(bool,CallbackInvoker) obsolete and add a
	ForAll(bool,Gtk.Callback) overload to replace it.

	* sample/PolarFixed.cs: new silly but fully-functional demo of
	how to subclass container.

	* sample/CustomNotebook.cs: kill this, since it was really
	complicated, and never fully functional.

	* sample/GtkDemo/DemoImages.cs (ToggleSensitivity): Use foreach
	directly on the container, rather than on its .Children.

svn path=/trunk/gtk-sharp/; revision=42805
2005-04-11 20:35:56 +00:00
..
images 2003-10-30 Daniel Kornhauser Eisenberg <dkor@alum.mit.edu> 2003-10-31 00:01:35 +00:00
.cvsignore implement some of the DemoApplicationWindow 2004-08-07 17:06:29 +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 * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +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
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
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 2005-01-07 Mike Kestner <mkestner@novell.com> 2005-01-07 23:22:54 +00:00
README * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +00:00
TODO * samples/GtkDemo/*.cs: General fixup and cleanup; Remove some 2005-04-01 21:08:14 +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.