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

39
eugtk/examples/test149.ex Normal file
View File

@@ -0,0 +1,39 @@
include GtkEngine.e
--# tinkering with pixbufs;
constant clown = "thumbnails/clown.png"
constant win = create(GtkWindow,"background=blue,position=1,$destroy=Quit")
constant panel = create(GtkBox,"orientation=VERTICAL")
add(win,panel)
constant pixbox = create(GtkBox,"orientation=HORIZONTAL")
add(panel,pixbox)
constant pix = create(GdkPixbuf,clown,200,200),
img1 = create(GtkImage,pix)
atom x1 = get(pix,"add alpha",TRUE,237,0,0) -- 237 is color of bowtie & nose
constant img2 = create(GtkImage,x1)
atom x2 = create(GdkPixbuf,clown,200,200)
set(pix,"saturate and pixelate",x2,1,TRUE)
constant img3 = create(GtkImage,x2)
atom x3 = create(GdkPixbuf,clown,200,200)
constant img4 = create(GtkImage,get(x3,"rotate simple",180))
add(pixbox,{img1,img2,img3,img4})
constant lbl = create(GtkLabel)
set(lbl,"color","white")
set(lbl,"markup",
"Original\t\t\t\tAdd alpha transparency\t\tSaturate and Pixelate\t\t\tRotate 180")
pack(panel,-lbl)
show_all(win)
main()