X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FElmSharp%2FElmSharp%2FUtility.cs;h=4884f4772c3044ec4f3174804ef63eefa07c923e;hb=4a9d296866c560d5b83b1e16dd27beba8f7caa59;hp=49877a121e3626e4da8fbbb3a06cf33d4689d4b8;hpb=ffb47341007a36f7643ac2f081f0dc641dd3f249;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/ElmSharp/ElmSharp/Utility.cs b/src/ElmSharp/ElmSharp/Utility.cs index 49877a1..4884f47 100755 --- a/src/ElmSharp/ElmSharp/Utility.cs +++ b/src/ElmSharp/ElmSharp/Utility.cs @@ -17,7 +17,7 @@ namespace ElmSharp { /// - /// This class is a static class for a utility methods. + /// This class is a static class for utility methods. /// /// preview public static class Utility @@ -43,7 +43,7 @@ namespace ElmSharp } /// - /// Removes all font paths loaded into memory by evas_font_path_app_* APIs for the application. + /// Removes all font paths loaded into the memory by evas_font_path_app_* APIs for the application. /// /// preview public static void ClearEvasGlobalFontPath() @@ -52,21 +52,21 @@ namespace ElmSharp } /// - /// Sets Edje color class. + /// Sets the Edje color class. /// - /// Color class - /// Object Red value - /// Object Red value - /// Object Red value - /// Object Red value - /// Outline Red value - /// Outline Green value - /// Outline Blue value - /// Outline Alpha value - /// Shadow Red value - /// Shadow Green value - /// Shadow Bluevalue - /// Shadow Alpha value + /// Color class. + /// Object red value. + /// Object green value. + /// Object blue value. + /// Object alpha value. + /// Outline red value. + /// Outline green value. + /// Outline blue value. + /// Outline alpha value. + /// Shadow red value. + /// Shadow green value. + /// Shadow blue value. + /// Shadow alpha value. /// /// preview public static bool SetEdjeColorClass(string colorClass, int red, int green, int blue, int alpha, int outlineRed, int outlineGreen, int outlineBlue, int outlineAlpha, @@ -76,21 +76,21 @@ namespace ElmSharp } /// - /// Gets Edje color class. + /// Gets the Edje color class. /// - /// Color class - /// Object Red value - /// Object Red value - /// Object Red value - /// Object Red value - /// Outline Red value - /// Outline Green value - /// Outline Blue value - /// Outline Alpha value - /// Shadow Red value - /// Shadow Green value - /// Shadow Bluevalue - /// Shadow Alpha value + /// Color class. + /// Object red value. + /// Object green value. + /// Object blue value. + /// Object alpha value. + /// Outline red value. + /// Outline green value. + /// Outline blue value. + /// Outline alpha value. + /// Shadow red value. + /// Shadow green value. + /// Shadow blue value. + /// Shadow alpha value. /// /// preview public static bool GetEdjeColorClass(string colorClass, out int red, out int green, out int blue, out int alpha, out int outlineRed, out int outlineGreen, out int outlineBlue, @@ -101,7 +101,7 @@ namespace ElmSharp } /// - /// Processes all queued up edje messages. + /// Processes all the queued up edje messages. /// This function triggers the processing of messages addressed to any (alive) edje objects. /// /// preview @@ -113,10 +113,10 @@ namespace ElmSharp /// /// Sets the Edje text class. /// - /// The text class name - /// The font name - /// The font size - /// True, on success or false, on error + /// The text class name. + /// The font name. + /// The font size. + /// True on success, or False on error. /// preview public static bool SetEdjeTextClass(string textClass, string font, int size) { @@ -126,10 +126,10 @@ namespace ElmSharp /// /// Gets the Edje text class. /// - /// The text class name - /// The font name - /// The font size - /// True, on success or false, on error + /// The text class name. + /// The font name. + /// The font size. + /// True on success, or False on error. /// preview public static bool GetEdjeTextClass(string textClass, out string font, out int size) { @@ -139,7 +139,7 @@ namespace ElmSharp /// /// Delete the text class. /// - /// + /// The text class name. /// preview public static void DeleteEdjeTextClass(string textClass) { @@ -147,12 +147,12 @@ namespace ElmSharp } /// - /// Pre-multiplies a rgb triplet by an alpha factor. + /// Pre-multiplies the RGB triplet by an alpha factor. /// - /// The alpha factor - /// The Red component of the color - /// The Green component of the color - /// The Blue component of the color + /// The alpha factor. + /// The red component of the color. + /// The green component of the color. + /// The blue component of the color. /// preview public static void PremulityplyEvasColorByAlpha(int alpha, ref int red, ref int green, ref int blue) { @@ -160,12 +160,12 @@ namespace ElmSharp } /// - /// Undoes pre-multiplies a rgb triplet by an alpha factor. + /// Undoes pre-multiplication of the RGB triplet by an alpha factor. /// - /// The alpha factor - /// The Red component of the color - /// The Green component of the color - /// The Blue component of the color + /// The alpha factor. + /// The red component of the color. + /// The green component of the color. + /// The blue component of the color. /// preview public static void UnPremulityplyEvasColorByAlpha(int alpha, ref int red, ref int green, ref int blue) {