You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FontIcon.java 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*
  2. * Copyright 2000-2018 Vaadin Ltd.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  5. * use this file except in compliance with the License. You may obtain a copy of
  6. * 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, WITHOUT
  12. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. * License for the specific language governing permissions and limitations under
  14. * the License.
  15. */
  16. package com.vaadin.client.ui;
  17. import com.google.gwt.http.client.URL;
  18. import com.google.gwt.user.client.DOM;
  19. import com.vaadin.shared.ApplicationConstants;
  20. /**
  21. * A font-based icon implementation.
  22. * <p>
  23. * The icon represents a specific character (identified by codepoint,
  24. * {@link #getCodepoint()}, {@link #setCodepoint(int)}) within a specific font
  25. * (identified by font-family, {@link #getFontFamily()},
  26. * {@link #setFontFamily(String)}).
  27. * </p>
  28. *
  29. * @since 7.2
  30. * @author Vaadin Ltd
  31. */
  32. public class FontIcon extends Icon {
  33. private int codepoint;
  34. private String fontFamily;
  35. public FontIcon() {
  36. setElement(DOM.createSpan());
  37. setStyleName(CLASSNAME);
  38. }
  39. @Override
  40. public void setUri(String uri) {
  41. String[] parts = uri
  42. .substring(
  43. ApplicationConstants.FONTICON_PROTOCOL_PREFIX.length())
  44. .split("/");
  45. setFontFamily(URL.decode(parts[0]));
  46. setCodepoint(Integer.parseInt(parts[1], 16));
  47. }
  48. /**
  49. * Not implemeted for {@link FontIcon} yet.
  50. *
  51. * @see com.vaadin.client.ui.Icon#setAlternateText(java.lang.String)
  52. */
  53. @Override
  54. public void setAlternateText(String alternateText) {
  55. // TODO this is mostly for WAI-ARIA and should be implemented in an
  56. // appropriate way.
  57. }
  58. /**
  59. * Sets the font-family from which this icon comes. Use
  60. * {@link #setCodepoint(int)} to specify a particular icon (character)
  61. * within the font.
  62. *
  63. * @param fontFamily
  64. * font-family name
  65. */
  66. protected void setFontFamily(String fontFamily) {
  67. if (this.fontFamily != null) {
  68. removeStyleName(getFontStylename());
  69. }
  70. this.fontFamily = fontFamily;
  71. if (fontFamily != null) {
  72. addStyleName(getFontStylename());
  73. }
  74. }
  75. /**
  76. * Gets the font-family from which this icon comes. Use
  77. * {@link #getCodepoint()} to find out which particular icon (character)
  78. * within the font this is.
  79. *
  80. * @return font-family name
  81. */
  82. public String getFontFamily() {
  83. return fontFamily;
  84. }
  85. /**
  86. * Sets the codepoint indicating which particular icon (character) within
  87. * the font-family this is.
  88. *
  89. * @param codepoint
  90. */
  91. protected void setCodepoint(int codepoint) {
  92. this.codepoint = codepoint;
  93. getElement().setInnerText(new String(Character.toChars(codepoint)));
  94. }
  95. /**
  96. * Gets the codepoint indicating which particular icon (character) within
  97. * the font-family this is.
  98. *
  99. * @return
  100. */
  101. public int getCodepoint() {
  102. return codepoint;
  103. }
  104. /**
  105. * Get the font-family based stylename used to apply the font-family.
  106. *
  107. * @since 7.2
  108. * @return stylename used to apply font-family
  109. */
  110. protected String getFontStylename() {
  111. if (fontFamily == null) {
  112. return null;
  113. }
  114. return fontFamily.replace(' ', '-');
  115. }
  116. /**
  117. * Checks whether or not the given uri is a font icon uri. Does not check
  118. * whether or not the font icon is available and can be rendered.
  119. *
  120. * @since 7.2
  121. * @param uri
  122. * @return true if it's a fonticon uri
  123. */
  124. public static boolean isFontIconUri(String uri) {
  125. return uri != null && uri
  126. .startsWith(ApplicationConstants.FONTICON_PROTOCOL_PREFIX);
  127. }
  128. @Override
  129. public String getUri() {
  130. if (fontFamily == null) {
  131. return null;
  132. }
  133. return ApplicationConstants.FONTICON_PROTOCOL_PREFIX + fontFamily + "/"
  134. + codepoint;
  135. }
  136. }