[NUI] Add license, delete unnecessary code (#2679)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / Common / FontDescription.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
18 namespace Tizen.NUI
19 {
20     internal class FontDescription : Disposable
21     {
22
23         internal FontDescription(global::System.IntPtr cPtr, bool cMemoryOwn) : base(cPtr, cMemoryOwn)
24         {
25         }
26
27         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FontDescription obj)
28         {
29             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.SwigCPtr;
30         }
31
32         protected override void ReleaseSwigCPtr(System.Runtime.InteropServices.HandleRef swigCPtr)
33         {
34             Interop.FontClient.DeleteFontDescription(swigCPtr);
35         }
36
37         public FontDescription() : this(Interop.FontClient.NewFontDescription(), true)
38         {
39             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
40         }
41
42         public string Path
43         {
44             set
45             {
46                 Interop.FontClient.FontDescriptionPathSet(SwigCPtr, value);
47                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
48             }
49             get
50             {
51                 string ret = Interop.FontClient.FontDescriptionPathGet(SwigCPtr);
52                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
53                 return ret;
54             }
55         }
56
57         public string Family
58         {
59             set
60             {
61                 Interop.FontClient.FontDescriptionFamilySet(SwigCPtr, value);
62                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
63             }
64             get
65             {
66                 string ret = Interop.FontClient.FontDescriptionFamilyGet(SwigCPtr);
67                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
68                 return ret;
69             }
70         }
71
72         public FontWidthType Width
73         {
74             set
75             {
76                 Interop.FontClient.FontDescriptionWidthSet(SwigCPtr, (int)value);
77                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
78             }
79             get
80             {
81                 FontWidthType ret = (FontWidthType)Interop.FontClient.FontDescriptionWidthGet(SwigCPtr);
82                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
83                 return ret;
84             }
85         }
86
87         public FontWeightType Weight
88         {
89             set
90             {
91                 Interop.FontClient.FontDescriptionWeightSet(SwigCPtr, (int)value);
92                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
93             }
94             get
95             {
96                 FontWeightType ret = (FontWeightType)Interop.FontClient.FontDescriptionWeightGet(SwigCPtr);
97                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
98                 return ret;
99             }
100         }
101
102         public FontSlantType Slant
103         {
104             set
105             {
106                 Interop.FontClient.FontDescriptionSlantSet(SwigCPtr, (int)value);
107                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
108             }
109             get
110             {
111                 FontSlantType ret = (FontSlantType)Interop.FontClient.FontDescriptionSlantGet(SwigCPtr);
112                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
113                 return ret;
114             }
115         }
116     }
117 }