2 * Copyright (c) 2016 Samsung Electronics Co., Ltd.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
19 using System.Runtime.InteropServices;
21 using Tizen.NUI.UIComponents;
22 using Tizen.NUI.BaseComponents;
23 using Tizen.NUI.Constants;
25 namespace HelloWorldTest
27 class Example : NUIApplication
29 private Animation _animation;
30 private TextLabel _text;
34 public Example() : base()
38 public Example(string stylesheet) : base(stylesheet)
42 public Example(string stylesheet, WindowMode windowMode) : base(stylesheet, windowMode)
46 protected override void OnCreate()
52 public void Initialize()
54 Window window = Window.Instance;
55 window.BackgroundColor = Color.White;
56 window.TouchEvent += OnWindowTouched;
57 window.KeyEvent += OnWindowKeyEvent;
59 TextLabel pixelLabel = new TextLabel("Test Pixel Size 32.0f");
60 pixelLabel.Position2D = new Position2D(10, 10);
61 pixelLabel.PixelSize = 32.0f;
62 window.GetDefaultLayer().Add(pixelLabel);
64 TextLabel pointLabel = new TextLabel("Test Point Size 32.0f");
65 pointLabel.Position2D = new Position2D(10, 100);
66 pointLabel.PointSize = 32.0f;
67 window.GetDefaultLayer().Add(pointLabel);
69 TextLabel ellipsis = new TextLabel("Ellipsis of TextLabel is enabled.");
70 ellipsis.Size2D = new Size2D(100, 100);
71 ellipsis.Position2D = new Position2D(10, 250);
72 ellipsis.PointSize = 20.0f;
73 ellipsis.Ellipsis = true;
74 window.GetDefaultLayer().Add(ellipsis);
76 _text = new TextLabel("Hello NUI World");
77 _text.ParentOrigin = ParentOrigin.Center;
78 _text.AnchorPoint = AnchorPoint.Center;
79 _text.HorizontalAlignment = HorizontalAlignment.Center;
80 _text.PointSize = 32.0f;
81 _text.TextColor = Color.Magenta;
82 window.GetDefaultLayer().Add(_text);
85 _view.Size = new Size(100, 100, 100);
87 Tizen.Log.Debug("NUI", "[1]_view SizeWidth=" + _view.SizeWidth);
89 _animation = new Animation
93 _animation.AnimateTo(_text, "Orientation", new Rotation(new Radian(new Degree(180.0f)), PositionAxis.X), 0, 500);
94 _animation.AnimateTo(_text, "Orientation", new Rotation(new Radian(new Degree(0.0f)), PositionAxis.X), 500, 1000);
95 _animation.AnimateBy(_text, "ScaleX", 3, 1000, 1500);
96 _animation.AnimateBy(_text, "ScaleY", 4.0f, 1500, 2000);
97 _animation.EndAction = Animation.EndActions.Discard;
98 _animation.Finished += AnimationFinished;
100 _view.SizeWidth = 50;
101 Tizen.Log.Debug("NUI", "[2]_view SizeWidth=" + _view.SizeWidth);
104 public void AnimationFinished(object sender, EventArgs e)
106 Tizen.Log.Debug("NUI", "AnimationFinished()! cnt=" + (cnt));
109 Tizen.Log.Debug("NUI", "Duration= " + _animation.Duration + "EndAction= " + _animation.EndAction);
111 _view.SizeWidth = 50;
112 Tizen.Log.Debug("NUI", "[3]_view SizeWidth=" + _view.SizeWidth);
115 public void OnWindowKeyEvent(object sender, Window.KeyEventArgs e)
117 if (e.Key.State == Key.StateType.Down)
119 if (e.Key.KeyPressedName == "Up")
123 _animation.Finished += AnimationFinished;
125 Tizen.Log.Debug("NUI", "AnimationFinished added!");
128 else if (e.Key.KeyPressedName == "Down")
132 _animation.Finished -= AnimationFinished;
134 Tizen.Log.Debug("NUI", "AnimationFinished removed!");
140 public void OnWindowTouched(object sender, Window.TouchEventArgs e)
142 if (e.Touch.GetState(0) == PointStateType.Down)
146 //_animation.Stop(Dali.Constants.Animation.EndAction.Stop);
147 //_animation.Reset();
154 static void _Main(string[] args)
156 //Tizen.Log.Debug("NUI", "Main() called!");
157 Example example = new Example();