[NUI][AT-SPI] Add IAtspiTable and IAtspiTableCell interfaces (#5305)
[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     /// <since_tizen> 9 </since_tizen>
27     public class AlertDialogStyle : ButtonStyle
28     {
29         [EditorBrowsable(EditorBrowsableState.Never)]
30         static AlertDialogStyle() { }
31
32         /// <summary>
33         /// Creates a new instance of an AlertDialogStyle.
34         /// </summary>
35         /// <since_tizen> 9 </since_tizen>
36         public AlertDialogStyle() : base()
37         {
38         }
39
40         /// <summary>
41         /// Creates a new instance of an AlertDialogStyle with style.
42         /// The given style is copied to the new instance.
43         /// </summary>
44         /// <param name="style">Create AlertDialogStyle by style customized by user.</param>
45         /// <since_tizen> 9 </since_tizen>
46         public AlertDialogStyle(AlertDialogStyle style) : base(style)
47         {
48         }
49
50         /// <summary>
51         /// Gets or sets the AlertDialog Title TextLabel style.
52         /// This style is applied if AlertDialog TitleContent is a TextLabel.
53         /// </summary>
54         /// <since_tizen> 9 </since_tizen>
55         public TextLabelStyle TitleTextLabel { get; set; } = new TextLabelStyle();
56
57         /// <summary>
58         /// Gets or sets the AlertDialog Message TextLabel style.
59         /// This style is applied if AlertDialog Content is a TextLabel.
60         /// </summary>
61         /// <since_tizen> 9 </since_tizen>
62         public TextLabelStyle MessageTextLabel { get; set; } = new TextLabelStyle();
63
64         /// <summary>
65         /// Gets or sets the AlertDialog ActionContent style.
66         /// </summary>
67         /// <since_tizen> 9 </since_tizen>
68         public ViewStyle ActionContent { get; set; } = new ViewStyle();
69
70         /// <inheritdoc/>
71         /// <since_tizen> 9 </since_tizen>
72         public override void CopyFrom(BindableObject bindableObject)
73         {
74             base.CopyFrom(bindableObject);
75
76             if (bindableObject is AlertDialogStyle alertDialogStyle)
77             {
78                 TitleTextLabel.CopyFrom(alertDialogStyle.TitleTextLabel);
79                 MessageTextLabel.CopyFrom(alertDialogStyle.MessageTextLabel);
80                 ActionContent.CopyFrom(alertDialogStyle.ActionContent);
81             }
82         }
83     }
84 }