summaryrefslogtreecommitdiff
path: root/ElmSharp.Test/TC/LabelValignTest1.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ElmSharp.Test/TC/LabelValignTest1.cs')
-rw-r--r--ElmSharp.Test/TC/LabelValignTest1.cs126
1 files changed, 126 insertions, 0 deletions
diff --git a/ElmSharp.Test/TC/LabelValignTest1.cs b/ElmSharp.Test/TC/LabelValignTest1.cs
new file mode 100644
index 0000000..a104a82
--- /dev/null
+++ b/ElmSharp.Test/TC/LabelValignTest1.cs
@@ -0,0 +1,126 @@
+/*
+ * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+using System;
+using ElmSharp;
+using System.Collections.Generic;
+
+namespace ElmSharp.Test
+{
+ public class LabelValignTest1 : TestCaseBase
+ {
+ public override string TestName => "LabelValignTest1";
+ public override string TestDescription => "To test Vertical align of Label";
+
+ public override void Run(Window window)
+ {
+ Background bg = new Background(window)
+ {
+ AlignmentX = -1,
+ AlignmentY = -1,
+ WeightX = 1,
+ WeightY = 1,
+ Color = Color.White
+ };
+ bg.Show();
+ window.AddResizeObject(bg);
+
+ Conformant conformant = new Conformant(window);
+ conformant.Show();
+ Box box = new Box(window)
+ {
+ AlignmentX = -1,
+ AlignmentY = -1,
+ WeightX = 1,
+ WeightY = 1
+ };
+ box.Show();
+ conformant.SetContent(box);
+
+ Box labelBox = new Box(window)
+ {
+ AlignmentX = -1,
+ AlignmentY = -1,
+ WeightX = 1,
+ WeightY = 1,
+ MinimumHeight = 400,
+ BackgroundColor = Color.Blue,
+ };
+ labelBox.Show();
+
+
+
+ Label label1 = new Label(window)
+ {
+ Text = "Align Test",
+ AlignmentX = -1,
+ AlignmentY = -1,
+ WeightX = 1,
+ WeightY = 1
+ };
+ label1.TextStyle = "DEFAULT = 'color=#000000FF font_size=100 align=center wrap=word'";
+ label1.Show();
+ labelBox.PackEnd(label1);
+
+ Button top = new Button(window)
+ {
+ Text = "Top",
+ AlignmentX = -1,
+ AlignmentY = -1,
+ WeightX = 1,
+ };
+
+ Button middle = new Button(window)
+ {
+ Text = "Middle",
+ AlignmentX = -1,
+ AlignmentY = -1,
+ WeightX = 1,
+ };
+ Button bottom = new Button(window)
+ {
+ Text = "bottom",
+ AlignmentX = -1,
+ AlignmentY = -1,
+ WeightX = 1,
+ };
+
+ top.Clicked += (s, e) =>
+ {
+ label1.SetPartValign("elm.text", 0);
+ };
+
+ middle.Clicked += (s, e) =>
+ {
+ label1.SetPartValign("elm.text", 0.5);
+ };
+
+ bottom.Clicked += (s, e) =>
+ {
+ label1.SetPartValign("elm.text", 1.0);
+ };
+
+ top.Show();
+ labelBox.Show();
+ middle.Show();
+ bottom.Show();
+ box.PackEnd(labelBox);
+ box.PackEnd(top);
+ box.PackEnd(middle);
+ box.PackEnd(bottom);
+ }
+ }
+}