ae33eef068b42304bde633dec694562cc4928331
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.Components / Style / TabButtonStyle.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     /// 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         internal ViewStyle TopLine { get; set; } = new ViewStyle();
53
54         /// <summary>
55         /// Gets or Sets the Line Style at the bottom of TabButton.
56         /// </summary>
57         internal ViewStyle BottomLine { get; set; } = new ViewStyle();
58
59         /// <summary>
60         /// Style's clone function.
61         /// </summary>
62         /// <param name="bindableObject">The style that need to copy.</param>
63         [EditorBrowsable(EditorBrowsableState.Never)]
64         public override void CopyFrom(BindableObject bindableObject)
65         {
66             base.CopyFrom(bindableObject);
67
68             if (bindableObject is TabButtonStyle tabButtonStyle)
69             {
70                 TopLine.CopyFrom(tabButtonStyle.TopLine);
71                 BottomLine.CopyFrom(tabButtonStyle.BottomLine);
72             }
73         }
74     }
75 }