added eugtk examples

This commit is contained in:
2016-11-25 00:33:18 -07:00
parent 87a821e3da
commit c0b98b619e
877 changed files with 96872 additions and 0 deletions

14
eugtk/examples/test211.ex Normal file
View File

@@ -0,0 +1,14 @@
-------------------------------------------------------
--# Animated, swirling icons (one of the GTK demos)
-- The animation is totally controlled by the css,
-- therefore the Euphoria/GTK code is minimal:
-------------------------------------------------------
include GtkEngine.e
constant css = create(GtkCssProvider,"~/demos/resources/css_pixbufs.css")
constant win = create(GtkWindow,"size=400x300,position=1,$destroy=Quit")
show_all(win)
main()