0cc8ed80b8d73ae84cda9ab1c6a12d621a6e8717
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.Components / Style / AlertDialogStyle.cs
1 /*
2  * Copyright(c) 2021 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 using Tizen.NUI.Binding;
20
21 namespace Tizen.NUI.Components
22 {
23     /// <summary>
24     /// AlertDialogStyle is a class which saves AlertDialog's ux data.
25     /// </summary>
26     [EditorBrowsable(EditorBrowsableState.Never)]
27     public class AlertDialogStyle : ButtonStyle
28     {
29         [EditorBrowsable(EditorBrowsableState.Never)]
30         static AlertDialogStyle() { }
31
32         /// <summary>
33         /// Creates a new instance of a AlertDialogStyle.
34         /// </summary>
35         [EditorBrowsable(EditorBrowsableState.Never)]
36         public AlertDialogStyle() : base()
37         {
38         }
39
40         /// <summary>
41         /// Creates a new instance of a AlertDialogStyle with style.
42         /// </summary>
43         /// <param name="style">Create AlertDialogStyle by style customized by user.</param>
44         [EditorBrowsable(EditorBrowsableState.Never)]
45         public AlertDialogStyle(AlertDialogStyle style) : base(style)
46         {
47         }
48
49         /// <summary>
50         /// Gets or sets the AlertDialog Title TextLabel style.
51         /// This style is applied if AlertDialog TitleContent is a TextLabel.
52         /// </summary>
53         [EditorBrowsable(EditorBrowsableState.Never)]
54         public TextLabelStyle TitleTextLabel { get; set; } = new TextLabelStyle();
55
56         /// <summary>
57         /// Gets or sets the AlertDialog Message TextLabel style.
58         /// This style is applied if AlertDialog Content is a TextLabel.
59         /// </summary>
60         [EditorBrowsable(EditorBrowsableState.Never)]
61         public TextLabelStyle MessageTextLabel { get; set; } = new TextLabelStyle();
62
63         /// <summary>
64         /// Gets or sets the AlertDialog ActionContent style.
65         /// </summary>
66         [EditorBrowsable(EditorBrowsableState.Never)]
67         public ViewStyle ActionContent { get; set; } = new ViewStyle();
68
69         /// <summary>
70         /// Style's clone function.
71         /// </summary>
72         /// <param name="bindableObject">The style that need to copy.</param>
73         [EditorBrowsable(EditorBrowsableState.Never)]
74         public override void CopyFrom(BindableObject bindableObject)
75         {
76             base.CopyFrom(bindableObject);
77
78             if (bindableObject is AlertDialogStyle alertDialogStyle)
79             {
80                 TitleTextLabel.CopyFrom(alertDialogStyle.TitleTextLabel);
81                 MessageTextLabel.CopyFrom(alertDialogStyle.MessageTextLabel);
82                 ActionContent.CopyFrom(alertDialogStyle.ActionContent);
83             }
84         }
85     }
86 }