Merge "[Telephony] Sample App implementation."
[platform/core/csapi/tizenfx.git] / test / ElmSharp.Test / TC / BackgroundTest1.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 BackgroundTest1 : TestCaseBase
23     {
24         public override string TestName => "BackgroundTest1";
25         public override string TestDescription => "To test basic operation of Background";
26
27         public override void Run(Window window)
28         {
29             Background bg1 = new Background(window)
30             {
31                 Color = Color.Orange
32             };
33
34             Background bg2 = new Background(window)
35             {
36                 File = "/home/owner/apps_rw/ElmSharpTest/res/picture.png",
37                 BackgroundOption = BackgroundOptions.Center,
38                 BackgroundColor = Color.Gray
39             };
40
41             bg2.SetFileLoadSize(50, 50);
42
43             Show(bg1, 0, 0, 100, 100);
44             Show(bg2, 0, 100, 700, 700);
45         }
46
47         void Show(Background bg, int x, int y, int w, int h)
48         {
49             bg.Show();
50             bg.Move(x, y);
51             bg.Resize(w, h);
52         }
53     }
54 }