StringCache.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * This source file is part of RmlUi, the HTML/CSS Interface Middleware
  3. *
  4. * For the latest information, see http://github.com/mikke89/RmlUi
  5. *
  6. * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
  7. * Copyright (c) 2019 The RmlUi Team, and contributors
  8. *
  9. * Permission is hereby granted, free of charge, to any person obtaining a copy
  10. * of this software and associated documentation files (the "Software"), to deal
  11. * in the Software without restriction, including without limitation the rights
  12. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  13. * copies of the Software, and to permit persons to whom the Software is
  14. * furnished to do so, subject to the following conditions:
  15. *
  16. * The above copyright notice and this permission notice shall be included in
  17. * all copies or substantial portions of the Software.
  18. *
  19. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  22. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  23. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  24. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  25. * THE SOFTWARE.
  26. *
  27. */
  28. #ifndef RMLUICORESTRINGCACHE_H
  29. #define RMLUICORESTRINGCACHE_H
  30. #include "../../Include/RmlUi/Core/Types.h"
  31. namespace Rml {
  32. namespace Core {
  33. extern const String MARGIN_TOP;
  34. extern const String MARGIN_RIGHT;
  35. extern const String MARGIN_BOTTOM;
  36. extern const String MARGIN_LEFT;
  37. extern const String MARGIN;
  38. extern const String PADDING_TOP;
  39. extern const String PADDING_RIGHT;
  40. extern const String PADDING_BOTTOM;
  41. extern const String PADDING_LEFT;
  42. extern const String PADDING;
  43. extern const String BORDER_TOP_WIDTH;
  44. extern const String BORDER_RIGHT_WIDTH;
  45. extern const String BORDER_BOTTOM_WIDTH;
  46. extern const String BORDER_LEFT_WIDTH;
  47. extern const String BORDER_WIDTH;
  48. extern const String BORDER_TOP_COLOR;
  49. extern const String BORDER_RIGHT_COLOR;
  50. extern const String BORDER_BOTTOM_COLOR;
  51. extern const String BORDER_LEFT_COLOR;
  52. extern const String BORDER_COLOR;
  53. extern const String BORDER_TOP;
  54. extern const String BORDER_RIGHT;
  55. extern const String BORDER_BOTTOM;
  56. extern const String BORDER_LEFT;
  57. extern const String BORDER;
  58. extern const String DISPLAY;
  59. extern const String POSITION;
  60. extern const String TOP;
  61. extern const String RIGHT;
  62. extern const String BOTTOM;
  63. extern const String LEFT;
  64. extern const String FLOAT;
  65. extern const String CLEAR;
  66. extern const String Z_INDEX;
  67. extern const String WIDTH;
  68. extern const String MIN_WIDTH;
  69. extern const String MAX_WIDTH;
  70. extern const String HEIGHT;
  71. extern const String MIN_HEIGHT;
  72. extern const String MAX_HEIGHT;
  73. extern const String LINE_HEIGHT;
  74. extern const String VERTICAL_ALIGN;
  75. extern const String OVERFLOW_X;
  76. extern const String OVERFLOW_Y;
  77. extern const String CLIP;
  78. extern const String VISIBILITY;
  79. extern const String BACKGROUND_COLOR;
  80. extern const String BACKGROUND;
  81. extern const String COLOR;
  82. extern const String IMAGE_COLOR;
  83. extern const String FONT_FAMILY;
  84. extern const String FONT_CHARSET;
  85. extern const String FONT_STYLE;
  86. extern const String FONT_WEIGHT;
  87. extern const String FONT_SIZE;
  88. extern const String FONT;
  89. extern const String TEXT_ALIGN;
  90. extern const String TEXT_DECORATION;
  91. extern const String TEXT_TRANSFORM;
  92. extern const String WHITE_SPACE;
  93. extern const String CURSOR;
  94. extern const String DRAG;
  95. extern const String TAB_INDEX;
  96. extern const String SCROLLBAR_MARGIN;
  97. extern const String PERSPECTIVE;
  98. extern const String PERSPECTIVE_ORIGIN;
  99. extern const String PERSPECTIVE_ORIGIN_X;
  100. extern const String PERSPECTIVE_ORIGIN_Y;
  101. extern const String TRANSFORM;
  102. extern const String TRANSFORM_ORIGIN;
  103. extern const String TRANSFORM_ORIGIN_X;
  104. extern const String TRANSFORM_ORIGIN_Y;
  105. extern const String TRANSFORM_ORIGIN_Z;
  106. extern const String NONE;
  107. extern const String TRANSITION;
  108. extern const String ANIMATION;
  109. extern const String KEYFRAMES;
  110. extern const String OPACITY;
  111. extern const String POINTER_EVENTS;
  112. extern const String MOUSEDOWN;
  113. extern const String MOUSESCROLL;
  114. extern const String MOUSEOVER;
  115. extern const String MOUSEOUT;
  116. extern const String FOCUS;
  117. extern const String BLUR;
  118. extern const String KEYDOWN;
  119. extern const String MOUSEUP;
  120. extern const String CLICK;
  121. extern const String DRAGSTART;
  122. extern const String LOAD;
  123. extern const String UNLOAD;
  124. extern const String KEYUP;
  125. extern const String TEXTINPUT;
  126. extern const String MOUSEMOVE;
  127. extern const String DRAGMOVE;
  128. extern const String DBLCLICK;
  129. extern const String DRAGDROP;
  130. extern const String DRAGOUT;
  131. extern const String DRAGEND;
  132. extern const String DRAGOVER;
  133. extern const String RESIZE;
  134. extern const String ANIMATIONEND;
  135. extern const String TRANSITIONEND;
  136. }
  137. }
  138. #endif