From: bshsqa <32317749+bshsqa@users.noreply.github.com> Date: Thu, 9 May 2019 07:19:24 +0000 (+0900) Subject: [NUI] Comment modifying in GraphicsTypeManager (#825) X-Git-Tag: 5.5_M2~222 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=959d3fec82a048c953416d67284755cf11b79dd7;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Comment modifying in GraphicsTypeManager (#825) Signed-off-by: Seungho, Baek --- diff --git a/src/Tizen.NUI/src/public/GraphicsTypeConverter.cs b/src/Tizen.NUI/src/public/GraphicsTypeConverter.cs index 0778de1..f039b06 100755 --- a/src/Tizen.NUI/src/public/GraphicsTypeConverter.cs +++ b/src/Tizen.NUI/src/public/GraphicsTypeConverter.cs @@ -33,8 +33,9 @@ namespace Tizen.NUI private const float defaultDpi = 160.0f; /// + /// Converts script to px /// - /// Convert script to px + /// Pixel value that is converted from input string /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public virtual float ConvertScriptToPixel(string scriptValue) @@ -60,8 +61,9 @@ namespace Tizen.NUI } /// + /// Converts other type to px /// - /// Convert other type to px + /// Pixel value that is converted by the the display matric /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public virtual float ConvertToPixel(float value) @@ -70,8 +72,9 @@ namespace Tizen.NUI } /// + /// Converts px to other type /// - /// Convert px to other type + /// An converted value from pixel /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public virtual float ConvertFromPixel(float value) diff --git a/src/Tizen.NUI/src/public/GraphicsTypeManager.cs b/src/Tizen.NUI/src/public/GraphicsTypeManager.cs index 29b5c5c..169a54c 100755 --- a/src/Tizen.NUI/src/public/GraphicsTypeManager.cs +++ b/src/Tizen.NUI/src/public/GraphicsTypeManager.cs @@ -31,15 +31,15 @@ namespace Tizen.NUI /// /// Creates private GraphicsTypeManager object. /// - /// 5 private GraphicsTypeManager() { _typeConverter = new GraphicsTypeConverter(); } /// + /// An unique Singleton Instance of GraphicsTypeManager /// - /// Returns Singleton instance of GraphicsTypeManager + /// Singleton instance of GraphicsTypeManager /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public static GraphicsTypeManager Instance @@ -57,8 +57,8 @@ namespace Tizen.NUI } /// + /// Sets the custom GraphicsTypeConverter. /// - /// Set Custom GraphicsTypeConverter /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public void SetTypeConverter(GraphicsTypeConverter typeConverter) @@ -67,8 +67,9 @@ namespace Tizen.NUI } /// + /// Converts script to px /// - /// Convert script to px + /// Pixel value that is converted from input string /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public float ConvertScriptToPixel(string scriptValue) @@ -77,8 +78,9 @@ namespace Tizen.NUI } /// + /// Converts other type to px /// - /// Convert other type to px + /// Pixel value that is converted by the the display matric /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public virtual float ConvertToPixel(float value) @@ -87,8 +89,9 @@ namespace Tizen.NUI } /// + /// Converts px to other type /// - /// Convert px to other type + /// An converted value from pixel /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public virtual float ConvertFromPixel(float value)