ElementImage.cpp 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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 = 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 = 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. }