File: test-scale.cs

package info (click to toggle)
clutter-sharp 1.0.0~alpha3~git20090817.r1.349dba6-8
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 4,104 kB
  • ctags: 2,193
  • sloc: xml: 23,456; cs: 9,946; sh: 3,393; perl: 1,213; makefile: 270; awk: 50; sed: 13
file content (36 lines) | stat: -rw-r--r-- 783 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using Clutter;

class Program 
{
	static Rectangle rect;
	static EffectTemplate template;

	static void ScaleRect () {
		Effect.Scale (template, rect, 2.0, 2.0, null);
	}

	static void Main () {
	 	ClutterRun.Init ();
	 	Stage stage = Stage.Default;
		stage.SetSize (200, 200);

		template = new EffectTemplate (new Timeline (90, 120), Sine.Func);

		rect = new Rectangle ();	
		Clutter.Color rect_bg_color = new Clutter.Color (0x33, 0x22, 0x22, 0xff);
		rect.Color = rect_bg_color;
		rect.BorderWidth = 10;

		rect.Reactive = true;
		rect.SetSize (100, 100);
		rect.AnchorPointFromGravity = Gravity.Center;
		rect.SetPosition (100, 100);
		rect.ButtonPressEvent += delegate { ScaleRect (); };

		stage.AddActor (rect);
		stage.ShowAll ();

		ClutterRun.Main ();
	} 
}