StringCache.h 4.1 KB

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