Class for constructing the HTML for a rounded corner border based on the RoundedCornerServlet server class.
Instance Method Summary | |
colorStyleFor_(string side) ⇒ string Get the CSS style for a given side with the current diplay parameters. Will return either a background or border color | |
createUri_(string corner) ⇒ ?goog.Uri Returns the image Uri for a specific corner image. | |
getBackgroundColor() ⇒ string Returns the background color | |
getBackgroundHtml() ⇒ string Returns the HTML for a relatively positioned DIV that includes four absolutely positioned DIVs for the corner images and a DIV for the content. | |
getBorderHtml() ⇒ string Returns the HTML of a 9-cell table (when all corners are needed) that uses transparent images in the corners, a solid color on the sides, and the content in the middle cell. | |
getBorderThickness() ⇒ ?goog.math.Size Returns the border thickness. The height and width specifies the width and height of the corner images that form the arcs. The height dictates the thickness of the top and bottom borders and width dicates the thickness of the left and right borders. | |
getColor() ⇒ string Returns the foreground color | |
getContent() ⇒ string Returns the content of the borders | |
getCornerStyle_(string corner) ⇒ string Returns the background image style string that uses AlphaImageLoader for IE6 and background-images for other browsers | |
getCornersToShow() ⇒ number Returns which corners to show | |
getCtx_() ⇒ ?Object Returns the context object used by the template mechanism | |
getExplicitHeight() ⇒ ?string Returns the explicit height of the element creating the border or background. For the #getBorderHtml case, this usually isn't necessary to set as it will size to content. For the #getBackgroundHtml case, this may be necessary to set in certain cases in IE because of an off-by-1 bug in IE's bottom positioning code. | |
getImageFormat() ⇒ string Returns the image format. Currently, only png and gif are supported. | |
getInnerColor() ⇒ string Returns the inner color | |
getLineWidth() ⇒ number Returns the width of the border line. If 0, border is width/height of corners | |
getPadding() ⇒ string Returns the padding of the rounded corner border. | |
performTemplateSubstitutions_(string htmlTemplate) ⇒ string Performs the substitutions in the templates to values determined at runtime. | |
removeHash_(string s) ⇒ string Helper function to remove hash from the color string | |
setBackgroundColor(string bgColor) Sets the background color. | |
setBorderThickness(?goog.math.Size size) Sets the border thickness. The height and width specifies the width and height of the corner images that form the arcs. The height dictates the thickness of the top and bottom borders and width dicates the thickness of the left and right borders. | |
setColor(string color) Sets the foreground color. | |
setContent(string html) Sets the content of the borders | |
setCornersToShow(number cornersToShow) Sets which corners to show | |
setExplicitHeight(string height) Sets the explicit height of the element creating the border or background. For the #getBorderHtml case, this usually isn't necessary to set as it will size to content. For the #getBackgroundHtml case, this may be necessary to set in certain cases in IE because of an off-by-1 bug in IE's bottom positioning code. | |
setImageFormat(string imageFormat) Sets the image format. Currently, only png and gif are supported. | |
setInnerColor(string inColor) Sets the inner color. | |
setLineWidth(number lineWidth) Sets the width of the border line. If 0, border is width/height of corners | |
setPadding(string padding) Sets the padding of the rounded corner border. |
Static Method Summary | |
roundElement(?Element element, string servletUri, ?goog.math.Size= opt_borderThickness, number= opt_corners) A convenience method to round the corners of a given element. To achieve the rounding, the rounded corners div replaces the element in its parent. The element is added as the content of the rounded corners div. |