[NUI] Update theme system
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.Components / Style / TabButtonStyle.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     /// TabButtonStyle is a class which saves TabButton's ux data.
25     /// </summary>
26     [EditorBrowsable(EditorBrowsableState.Never)]
27     public class TabButtonStyle : ButtonStyle
28     {
29         [EditorBrowsable(EditorBrowsableState.Never)]
30         static TabButtonStyle() { }
31
32         /// <summary>
33         /// Creates a new instance of a TabButtonStyle.
34         /// </summary>
35         [EditorBrowsable(EditorBrowsableState.Never)]
36         public TabButtonStyle() : base()
37         {
38         }
39
40         /// <summary>
41         /// Creates a new instance of a TabButtonStyle with style.
42         /// </summary>
43         /// <param name="style">Create TabButtonStyle by style customized by user.</param>
44         [EditorBrowsable(EditorBrowsableState.Never)]
45         public TabButtonStyle(TabButtonStyle style) : base(style)
46         {
47         }
48
49         /// <summary>
50         /// Gets or Sets the Line Style at the top of TabButton.
51         /// </summary>
52         [EditorBrowsable(EditorBrowsableState.Never)]
53         public ViewStyle TopLine { get; set; } = new ViewStyle();
54
55         /// <summary>
56         /// Gets or Sets the Line Style at the bottom of TabButton.
57         /// </summary>
58         [EditorBrowsable(EditorBrowsableState.Never)]
59         public ViewStyle BottomLine { get; set; } = new ViewStyle();
60
61         /// <inheritdoc/>
62         [EditorBrowsable(EditorBrowsableState.Never)]
63         public override void CopyFrom(BindableObject bindableObject)
64         {
65             base.CopyFrom(bindableObject);
66
67             if (bindableObject is TabButtonStyle tabButtonStyle)
68             {
69                 TopLine.CopyFrom(tabButtonStyle.TopLine);
70                 BottomLine.CopyFrom(tabButtonStyle.BottomLine);
71             }
72         }
73     }
74 }