Merge remote-tracking branch 'origin/API8' into tizen_6.0
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.Components / Style / PopupStyle.cs
1 /*
2  * Copyright(c) 2019 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     /// PopupStyle is a class which saves Popup's ux data.
25     /// </summary>
26     [EditorBrowsable(EditorBrowsableState.Never)]
27     public class PopupStyle : ControlStyle
28     {
29         static PopupStyle() { }
30
31         /// <summary>
32         /// Creates a new instance of a PopupStyle.
33         /// </summary>
34         [EditorBrowsable(EditorBrowsableState.Never)]
35         public PopupStyle() : base()
36         {
37         }
38
39         /// <summary>
40         /// Creates a new instance of a PopupStyle with style.
41         /// </summary>
42         /// <param name="style">Create PopupStyle by style customized by user.</param>
43         [EditorBrowsable(EditorBrowsableState.Never)]
44         public PopupStyle(PopupStyle style) : base(style)
45         {
46         }
47
48         /// <summary>
49         /// Title Text's style.
50         /// </summary>
51         [EditorBrowsable(EditorBrowsableState.Never)]
52         public TextLabelStyle Title { get; set; } = new TextLabelStyle();
53
54         /// <summary>
55         /// Popup button's style.
56         /// </summary>
57         [EditorBrowsable(EditorBrowsableState.Never)]
58         public ButtonStyle Buttons { get; set; } = new ButtonStyle();
59
60         /// <inheritdoc/>
61         [EditorBrowsable(EditorBrowsableState.Never)]
62         public override void CopyFrom(BindableObject bindableObject)
63         {
64             base.CopyFrom(bindableObject);
65
66             if (bindableObject is PopupStyle popupStyle)
67             {
68                 Title.CopyFrom(popupStyle.Title);
69                 Buttons.CopyFrom(popupStyle.Buttons);
70             }
71         }
72     }
73 }