[NUI] Public Style apis (#1434)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.Components / PreloadStyle / DefaultToastStyle.cs
1 /*
2  * Copyright(c) 2020 Samsung Electronics Co., Ltd.
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.ComponentModel;
18 using Tizen.NUI.BaseComponents;
19
20 namespace Tizen.NUI.Components
21 {
22     /// <summary>
23     /// The default Toast style
24     /// </summary>
25     [EditorBrowsable(EditorBrowsableState.Never)]
26     public class DefaultToastStyle : StyleBase
27     {
28         /// <summary>
29         /// Return default Toast style
30         /// </summary>
31         internal protected override ViewStyle GetViewStyle()
32         {
33             ToastStyle style = new ToastStyle
34             {
35                 WidthResizePolicy = ResizePolicyType.FitToChildren,
36                 HeightResizePolicy = ResizePolicyType.FitToChildren,
37                 BackgroundColor = new Color(0, 0, 0, 0.8f),
38                 Text = new TextLabelStyle()
39                 {
40                     PositionUsesPivotPoint = true,
41                     ParentOrigin = Tizen.NUI.ParentOrigin.Center,
42                     PivotPoint = Tizen.NUI.PivotPoint.Center,
43                     WidthResizePolicy = ResizePolicyType.UseNaturalSize,
44                     HeightResizePolicy = ResizePolicyType.UseNaturalSize,
45                     HorizontalAlignment = HorizontalAlignment.Center,
46                     VerticalAlignment = VerticalAlignment.Center,
47                     TextColor = Color.White,
48                     Padding = new Extents(12, 12, 8, 8),
49                 }
50             };
51             return style;
52         }
53     }
54 }