ElementImage.cpp 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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-2023 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. #include "../Common/TestsShell.h"
  29. #include <RmlUi/Core/Context.h>
  30. #include <RmlUi/Core/Element.h>
  31. #include <RmlUi/Core/ElementDocument.h>
  32. #include <doctest.h>
  33. using namespace Rml;
  34. static const String document_wrapped_image_rml = R"(
  35. <rml>
  36. <head>
  37. <title>Test</title>
  38. <link type="text/rcss" href="/assets/rml.rcss"/>
  39. <style>
  40. body {
  41. left: 0;
  42. top: 0;
  43. right: 0;
  44. bottom: 0;
  45. }
  46. </style>
  47. </head>
  48. <body>
  49. <div>
  50. <img src="/assets/high_scores_alien_1.tga"/>
  51. </div>
  52. </body>
  53. </rml>
  54. )";
  55. TEST_CASE("elementimage.dp_ratio")
  56. {
  57. Context* context = TestsShell::GetContext();
  58. ElementDocument* document = context->LoadDocumentFromMemory(document_wrapped_image_rml, "assets/");
  59. Element* div = document->GetChild(0);
  60. Element* img = div->GetChild(0);
  61. document->Show();
  62. const float img_width = img->GetClientWidth();
  63. SUBCASE("basic")
  64. {
  65. context->SetDensityIndependentPixelRatio(2.0f);
  66. context->Update();
  67. CHECK(img->GetClientWidth() == 2.f * img_width);
  68. }
  69. SUBCASE("clone")
  70. {
  71. context->SetDensityIndependentPixelRatio(2.0f);
  72. auto clone_ptr = div->Clone();
  73. context->SetDensityIndependentPixelRatio(4.f);
  74. Element* clone_div = As<Element*>(document->AppendChild(std::move(clone_ptr)));
  75. Element* clone_img = clone_div->GetChild(0);
  76. context->Update();
  77. CHECK(clone_img->GetClientWidth() == 4.f * img_width);
  78. }
  79. SUBCASE("create_image")
  80. {
  81. context->SetDensityIndependentPixelRatio(2.0f);
  82. ElementPtr new_img_ptr = document->CreateElement("img");
  83. new_img_ptr->SetAttribute("src", "high_scores_alien_1.tga");
  84. context->SetDensityIndependentPixelRatio(4.0f);
  85. Element* new_img = As<Element*>(document->AppendChild(std::move(new_img_ptr)));
  86. context->Update();
  87. CHECK(new_img->GetClientWidth() == 4.f * img_width);
  88. }
  89. TestsShell::RenderLoop();
  90. document->Close();
  91. TestsShell::ShutdownShell();
  92. }
  93. static const String document_wrapped_image_rml_ratio_test = R"(
  94. <rml>
  95. <head>
  96. <title>Test</title>
  97. <style>
  98. .width-50 { width: 50px; }
  99. .height-50 { height: 50px; }
  100. .height-100 { height: 100px; }
  101. </style>
  102. </head>
  103. <body>
  104. <img src="/test_not_loaded/test_512_256.tga" id="test1" alt="Original size" />
  105. <img src="/test_not_loaded/test_512_256.tga" id="test2" height="50" alt="Set height to 50, width auto, attribute set" />
  106. <img src="/test_not_loaded/test_512_256.tga" id="test3" class="height-50" alt="Set height to 50, width auto, css set" />
  107. <img src="/test_not_loaded/test_512_256.tga" id="test4" width="50" alt="Set width to 50, height auto, attribute set" />
  108. <img src="/test_not_loaded/test_512_256.tga" id="test5" class="width-50" alt="Set width to 50, height auto, css set" />
  109. <img src="/test_not_loaded/test_512_256.tga" id="test6" width="50" height="100" alt="Set width to 50 and height to 100, attribute set" />
  110. <img src="/test_not_loaded/test_512_256.tga" id="test7" class="height-100 width-50" alt="Set width to 50 and height to 100, css set" />
  111. </body>
  112. </rml>
  113. )";
  114. TEST_CASE("elementimage.preserve_ratio")
  115. {
  116. Context* context = TestsShell::GetContext();
  117. ElementDocument* document = context->LoadDocumentFromMemory(document_wrapped_image_rml_ratio_test, "assets/");
  118. document->Show();
  119. // Texture size is hardcoded in test render interface to 512x256
  120. {
  121. INFO("original image size");
  122. Element* img_test1 = document->GetElementById("test1");
  123. CHECK(img_test1->GetClientWidth() == 512);
  124. CHECK(img_test1->GetClientHeight() == 256);
  125. }
  126. {
  127. INFO("height only - attribute set");
  128. Element* img_test2 = document->GetElementById("test2");
  129. CHECK(img_test2->GetClientWidth() == 100);
  130. CHECK(img_test2->GetClientHeight() == 50);
  131. }
  132. {
  133. INFO("height only - css set");
  134. Element* img_test3 = document->GetElementById("test3");
  135. CHECK(img_test3->GetClientWidth() == 100);
  136. CHECK(img_test3->GetClientHeight() == 50);
  137. }
  138. {
  139. INFO("width only - attribute set");
  140. Element* img_test4 = document->GetElementById("test4");
  141. CHECK(img_test4->GetClientWidth() == 50);
  142. CHECK(img_test4->GetClientHeight() == 25);
  143. }
  144. {
  145. INFO("width only - css set");
  146. Element* img_test5 = document->GetElementById("test5");
  147. CHECK(img_test5->GetClientWidth() == 50);
  148. CHECK(img_test5->GetClientHeight() == 25);
  149. }
  150. {
  151. INFO("height and width - attribute set");
  152. Element* img_test6 = document->GetElementById("test6");
  153. CHECK(img_test6->GetClientWidth() == 50);
  154. CHECK(img_test6->GetClientHeight() == 100);
  155. }
  156. {
  157. INFO("height and width - css set");
  158. Element* img_test7 = document->GetElementById("test7");
  159. CHECK(img_test7->GetClientWidth() == 50);
  160. CHECK(img_test7->GetClientHeight() == 100);
  161. }
  162. TestsShell::RenderLoop();
  163. document->Close();
  164. TestsShell::ShutdownShell();
  165. }