d67564eb8987cb9e8c08ad4660cbbf35f3b4e45c
[platform/core/csapi/tizenfx.git] / test / ElmSharp.Wearable.Test / TC / CircleSpinnerTest1.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 ElmSharp.Wearable;
18
19 namespace ElmSharp.Test.TC
20 {
21     class CircleSpinnerTest1 : TestCaseBase
22     {
23         public override string TestName => "CircleSpinnerTest1";
24         public override string TestDescription => "To test basic operation of Circle Spinner";
25
26         public override void Run(Window window)
27         {
28             Log.Debug(TestName, "CircleSpinnerTest run");
29             Conformant conformant = new Conformant(window);
30             conformant.Show();
31
32             Layout layout = new Layout(window);
33             layout.SetTheme("layout", "circle", "spinner");
34             conformant.SetContent(layout);
35
36             CircleSpinner spn1 = new CircleSpinner(conformant)
37             {
38                 Text = "Spinner Test",
39                 LabelFormat = "%d Value",
40                 Style = "circle",
41                 AngleRatio = 3.0,
42                 Minimum = 0,
43                 Maximum = 360,
44                 Value = 0,
45                 Step = 10,
46                 Interval = 0.5,
47                 AlignmentX = -1,
48                 AlignmentY = 1,
49                 WeightX = 1,
50                 WeightY = 1
51             };
52             spn1.AddSpecialValue(50, "50 match !!!!");
53             layout.SetContent(spn1);
54
55             Button btn = new Button(layout) {
56                 Text = "OK",
57                 Style = "bottom",
58             };
59
60             btn.Clicked += (s, e) =>
61             {
62                 spn1.Disabled = true;
63                 spn1.Text = "100 match";
64                 spn1.Value = 0;
65             };
66
67             layout.SetPartContent("elm.swallow.btn", btn);
68             layout.SetPartText("elm.text", "Set value");
69         }
70     }
71 }