Merge "[Telephony] Sample App implementation."
[platform/core/csapi/tizenfx.git] / test / ElmSharp.Test / TC / EntryTest2.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
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
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17 using System;
18 using ElmSharp;
19
20 namespace ElmSharp.Test
21 {
22     class EntryTest2 : TestCaseBase
23     {
24         public override string TestName => "EntryTest2";
25         public override string TestDescription => "To test basic operation of Entry";
26
27         public override void Run(Window window)
28         {
29             Background bg = new Background(window) {
30                 AlignmentX = -1,
31                 AlignmentY = -1,
32                 WeightX = 1,
33                 WeightY = 1,
34                 Color = Color.Yellow
35             };
36             bg.Show();
37             window.AddResizeObject(bg);
38
39             Conformant conformant = new Conformant(window);
40             conformant.Show();
41             Box box = new Box(window);
42             conformant.SetContent(box);
43             box.Show();
44
45             Check check = new Check(window) {
46                 AlignmentX = -1,
47                 AlignmentY = 0.9,
48                 WeightX = 1,
49                 WeightY = 0.1,
50                 Text = "Select All",
51             };
52             check.Show();
53
54             Entry entry = new Entry(window) {
55                 AlignmentX = -1,
56                 AlignmentY = 0.1,
57                 WeightX = 1,
58                 WeightY = 1,
59                 IsSingleLine = true,
60                 Text = "Hello, Tizen !!!"
61             };
62             entry.Show();
63
64             check.StateChanged += (object sender, CheckStateChangedEventArgs e) =>
65             {
66                 if (e.NewState == true)
67                 {
68                     entry.SelectAll();
69                 }
70                 else
71                 {
72                     entry.SelectNone();
73                 }
74             };
75
76             box.PackEnd(check);
77             box.PackEnd(entry);
78         }
79     }
80 }