[NUI][AT-SPI] Add IAtspiTable and IAtspiTableCell interfaces (#5305)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.Components / Style / MenuStyle.cs
1 /*
2  * Copyright(c) 2022 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     /// MenuStyle is a class which saves Menu's ux data.
25     /// </summary>
26     [EditorBrowsable(EditorBrowsableState.Never)]
27     public class MenuStyle : ControlStyle
28     {
29         [EditorBrowsable(EditorBrowsableState.Never)]
30         static MenuStyle() { }
31
32         /// <summary>
33         /// Creates a new instance of an MenuStyle.
34         /// </summary>
35         [EditorBrowsable(EditorBrowsableState.Never)]
36         public MenuStyle() : base()
37         {
38         }
39
40         /// <summary>
41         /// Creates a new instance of an MenuStyle with style.
42         /// The given style is copied to the new instance.
43         /// </summary>
44         /// <param name="style">Creates MenuStyle by style customized by user.</param>
45         [EditorBrowsable(EditorBrowsableState.Never)]
46         public MenuStyle(MenuStyle style) : base(style)
47         {
48         }
49
50         /// <summary>
51         /// Gets or sets the Menu Content style.
52         /// </summary>
53         [EditorBrowsable(EditorBrowsableState.Never)]
54         public ViewStyle Content { get; set; } = new ViewStyle();
55
56         /// <inheritdoc/>
57         [EditorBrowsable(EditorBrowsableState.Never)]
58         public override void CopyFrom(BindableObject bindableObject)
59         {
60             base.CopyFrom(bindableObject);
61
62             if (bindableObject is MenuStyle menuStyle)
63             {
64                 Content.CopyFrom(menuStyle.Content);
65             }
66         }
67     }
68 }