[NUI] Revert patch about StyleManager (#1970)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.Wearable / src / public / WearableStyle / PopupStyle.cs
1 /*
2  * Copyright(c) 2020 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 using Tizen.NUI.Components;
21
22 namespace Tizen.NUI.Wearable
23 {
24     /// <summary>
25     /// PopupStyle used to config the Popup represent.
26     /// </summary>
27     [EditorBrowsable(EditorBrowsableState.Never)]
28     public class PopupStyle : ControlStyle
29     {
30         static PopupStyle() { }
31
32         /// <summary>
33         /// Creates a new instance of a PopupStyle.
34         /// </summary>
35         [EditorBrowsable(EditorBrowsableState.Never)]
36         public PopupStyle() : base()
37         {
38             initSubStyle();
39         }
40
41         /// <summary>
42         /// Creates a new instance of a PopupStyle using style.
43         /// </summary>
44         [EditorBrowsable(EditorBrowsableState.Never)]
45         public PopupStyle(PopupStyle style) : base(style)
46         {
47             if (null == style)
48             {
49                 return;
50             }
51             initSubStyle();
52             CopyFrom(style);
53         }
54
55         /// <summary>
56         /// WrapContent
57         /// </summary>
58         [EditorBrowsable(EditorBrowsableState.Never)]
59         public bool? WrapContent
60         {
61             get;
62             set;
63         }
64
65         /// <summary>
66         /// Retrieves a copy of PopupStyle.
67         /// </summary>
68         [EditorBrowsable(EditorBrowsableState.Never)]
69         public override void CopyFrom(BindableObject bindableObject)
70         {
71             base.CopyFrom(bindableObject);
72
73             PopupStyle popupStyle = bindableObject as PopupStyle;
74             if (null != popupStyle)
75             {
76                 if (null != popupStyle.WrapContent)
77                 {
78                     WrapContent = popupStyle.WrapContent;
79                 }
80             }
81         }
82
83         private void initSubStyle()
84         {
85             WrapContent = false;
86             //to do
87             Size = new Size(10, 10);
88         }
89
90     }
91 }