Element.cpp 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910
  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 "../../Include/RmlUi/Core/Element.h"
  29. #include "../../Include/RmlUi/Core/Context.h"
  30. #include "../../Include/RmlUi/Core/Core.h"
  31. #include "../../Include/RmlUi/Core/Dictionary.h"
  32. #include "../../Include/RmlUi/Core/ElementDocument.h"
  33. #include "../../Include/RmlUi/Core/ElementInstancer.h"
  34. #include "../../Include/RmlUi/Core/ElementScroll.h"
  35. #include "../../Include/RmlUi/Core/ElementUtilities.h"
  36. #include "../../Include/RmlUi/Core/Factory.h"
  37. #include "../../Include/RmlUi/Core/Profiling.h"
  38. #include "../../Include/RmlUi/Core/PropertiesIteratorView.h"
  39. #include "../../Include/RmlUi/Core/PropertyDefinition.h"
  40. #include "../../Include/RmlUi/Core/PropertyIdSet.h"
  41. #include "../../Include/RmlUi/Core/StyleSheet.h"
  42. #include "../../Include/RmlUi/Core/StyleSheetSpecification.h"
  43. #include "../../Include/RmlUi/Core/TransformPrimitive.h"
  44. #include "Clock.h"
  45. #include "ComputeProperty.h"
  46. #include "DataModel.h"
  47. #include "ElementAnimation.h"
  48. #include "ElementBackgroundBorder.h"
  49. #include "ElementDefinition.h"
  50. #include "ElementEffects.h"
  51. #include "ElementStyle.h"
  52. #include "EventDispatcher.h"
  53. #include "EventSpecification.h"
  54. #include "Layout/LayoutEngine.h"
  55. #include "PluginRegistry.h"
  56. #include "Pool.h"
  57. #include "PropertiesIterator.h"
  58. #include "StyleSheetNode.h"
  59. #include "StyleSheetParser.h"
  60. #include "TransformState.h"
  61. #include "TransformUtilities.h"
  62. #include "XMLParseTools.h"
  63. #include <algorithm>
  64. #include <cmath>
  65. namespace Rml {
  66. // Determines how many levels up in the hierarchy the OnChildAdd and OnChildRemove are called (starting at the child itself)
  67. static constexpr int ChildNotifyLevels = 2;
  68. // Helper function to select scroll offset delta
  69. static float GetScrollOffsetDelta(ScrollAlignment alignment, float begin_offset, float end_offset)
  70. {
  71. switch (alignment)
  72. {
  73. case ScrollAlignment::Start: return begin_offset;
  74. case ScrollAlignment::Center: return (begin_offset + end_offset) / 2.0f;
  75. case ScrollAlignment::End: return end_offset;
  76. case ScrollAlignment::Nearest:
  77. if (begin_offset >= 0.f && end_offset <= 0.f)
  78. return 0.f; // Element is already visible, don't scroll
  79. else if (begin_offset < 0.f && end_offset < 0.f)
  80. return Math::Max(begin_offset, end_offset);
  81. else if (begin_offset > 0.f && end_offset > 0.f)
  82. return Math::Min(begin_offset, end_offset);
  83. else
  84. return 0.f; // Shouldn't happen
  85. }
  86. return 0.f;
  87. }
  88. // Meta objects for element collected in a single struct to reduce memory allocations
  89. struct ElementMeta {
  90. ElementMeta(Element* el) : event_dispatcher(el), style(el), background_border(), effects(el), scroll(el), computed_values(el) {}
  91. SmallUnorderedMap<EventId, EventListener*> attribute_event_listeners;
  92. EventDispatcher event_dispatcher;
  93. ElementStyle style;
  94. ElementBackgroundBorder background_border;
  95. ElementEffects effects;
  96. ElementScroll scroll;
  97. Style::ComputedValues computed_values;
  98. };
  99. static Pool<ElementMeta> element_meta_chunk_pool(200, true);
  100. Element::Element(const String& tag) :
  101. local_stacking_context(false), local_stacking_context_forced(false), stacking_context_dirty(false), computed_values_are_default_initialized(true),
  102. visible(true), offset_fixed(false), absolute_offset_dirty(true), dirty_definition(false), dirty_child_definitions(false), dirty_animation(false),
  103. dirty_transition(false), dirty_transform(false), dirty_perspective(false), tag(tag), relative_offset_base(0, 0), relative_offset_position(0, 0),
  104. absolute_offset(0, 0), scroll_offset(0, 0)
  105. {
  106. RMLUI_ASSERT(tag == StringUtilities::ToLower(tag));
  107. parent = nullptr;
  108. focus = nullptr;
  109. instancer = nullptr;
  110. owner_document = nullptr;
  111. offset_parent = nullptr;
  112. clip_area = BoxArea::Padding;
  113. baseline = 0.0f;
  114. num_non_dom_children = 0;
  115. z_index = 0;
  116. meta = element_meta_chunk_pool.AllocateAndConstruct(this);
  117. data_model = nullptr;
  118. }
  119. Element::~Element()
  120. {
  121. RMLUI_ASSERT(parent == nullptr);
  122. PluginRegistry::NotifyElementDestroy(this);
  123. // A simplified version of RemoveChild() for destruction.
  124. for (ElementPtr& child : children)
  125. {
  126. Element* child_ancestor = child.get();
  127. for (int i = 0; i <= ChildNotifyLevels && child_ancestor; i++, child_ancestor = child_ancestor->GetParentNode())
  128. child_ancestor->OnChildRemove(child.get());
  129. child->SetParent(nullptr);
  130. }
  131. children.clear();
  132. num_non_dom_children = 0;
  133. element_meta_chunk_pool.DestroyAndDeallocate(meta);
  134. }
  135. void Element::Update(float dp_ratio, Vector2f vp_dimensions)
  136. {
  137. #ifdef RMLUI_TRACY_PROFILING
  138. auto name = GetAddress(false, false);
  139. RMLUI_ZoneScoped;
  140. RMLUI_ZoneText(name.c_str(), name.size());
  141. #endif
  142. OnUpdate();
  143. HandleTransitionProperty();
  144. HandleAnimationProperty();
  145. AdvanceAnimations();
  146. meta->scroll.Update();
  147. UpdateProperties(dp_ratio, vp_dimensions);
  148. // Do en extra pass over the animations and properties if the 'animation' property was just changed.
  149. if (dirty_animation)
  150. {
  151. HandleAnimationProperty();
  152. AdvanceAnimations();
  153. UpdateProperties(dp_ratio, vp_dimensions);
  154. }
  155. meta->effects.InstanceEffects();
  156. for (size_t i = 0; i < children.size(); i++)
  157. children[i]->Update(dp_ratio, vp_dimensions);
  158. if (!animations.empty() && IsVisible(true))
  159. {
  160. if (Context* ctx = GetContext())
  161. ctx->RequestNextUpdate(0);
  162. }
  163. }
  164. void Element::UpdateProperties(const float dp_ratio, const Vector2f vp_dimensions)
  165. {
  166. UpdateDefinition();
  167. if (meta->style.AnyPropertiesDirty())
  168. {
  169. const ComputedValues* parent_values = parent ? &parent->GetComputedValues() : nullptr;
  170. const ComputedValues* document_values = owner_document ? &owner_document->GetComputedValues() : nullptr;
  171. // Compute values and clear dirty properties
  172. PropertyIdSet dirty_properties = meta->style.ComputeValues(meta->computed_values, parent_values, document_values,
  173. computed_values_are_default_initialized, dp_ratio, vp_dimensions);
  174. computed_values_are_default_initialized = false;
  175. // Computed values are just calculated and can safely be used in OnPropertyChange.
  176. // However, new properties set during this call will not be available until the next update loop.
  177. if (!dirty_properties.Empty())
  178. OnPropertyChange(dirty_properties);
  179. }
  180. }
  181. void Element::Render()
  182. {
  183. #ifdef RMLUI_TRACY_PROFILING
  184. auto name = GetAddress(false, false);
  185. RMLUI_ZoneScoped;
  186. RMLUI_ZoneText(name.c_str(), name.size());
  187. #endif
  188. // TODO: This is a work-around for the dirty offset not being properly updated when used by containing block children. This results
  189. // in scrolling not working properly. We don't care about the return value, the call is only used to force the absolute offset to update.
  190. if (absolute_offset_dirty)
  191. GetAbsoluteOffset(BoxArea::Border);
  192. // Rebuild our stacking context if necessary.
  193. if (stacking_context_dirty)
  194. BuildLocalStackingContext();
  195. UpdateTransformState();
  196. // Apply our transform
  197. ElementUtilities::ApplyTransform(*this);
  198. meta->effects.RenderEffects(RenderStage::Enter);
  199. // Set up the clipping region for this element.
  200. if (ElementUtilities::SetClippingRegion(this))
  201. {
  202. meta->background_border.Render(this);
  203. meta->effects.RenderEffects(RenderStage::Decoration);
  204. {
  205. RMLUI_ZoneScopedNC("OnRender", 0x228B22);
  206. OnRender();
  207. }
  208. }
  209. // Render all elements in our local stacking context.
  210. for (Element* element : stacking_context)
  211. element->Render();
  212. meta->effects.RenderEffects(RenderStage::Exit);
  213. }
  214. ElementPtr Element::Clone() const
  215. {
  216. ElementPtr clone;
  217. if (instancer)
  218. {
  219. clone = instancer->InstanceElement(nullptr, GetTagName(), attributes);
  220. if (clone)
  221. clone->SetInstancer(instancer);
  222. }
  223. else
  224. clone = Factory::InstanceElement(nullptr, GetTagName(), GetTagName(), attributes);
  225. if (clone)
  226. {
  227. // Copy over the attributes. The 'style' and 'class' attributes are skipped because inline styles and class names are copied manually below.
  228. // This is necessary in case any properties or classes have been set manually, in which case the 'style' and 'class' attributes are out of
  229. // sync with the used style and active classes.
  230. ElementAttributes clone_attributes = attributes;
  231. clone_attributes.erase("style");
  232. clone_attributes.erase("class");
  233. clone->SetAttributes(clone_attributes);
  234. for (auto& id_property : GetStyle()->GetLocalStyleProperties())
  235. clone->SetProperty(id_property.first, id_property.second);
  236. clone->GetStyle()->SetClassNames(GetStyle()->GetClassNames());
  237. String inner_rml;
  238. GetInnerRML(inner_rml);
  239. clone->SetInnerRML(inner_rml);
  240. }
  241. return clone;
  242. }
  243. void Element::SetClass(const String& class_name, bool activate)
  244. {
  245. if (meta->style.SetClass(class_name, activate))
  246. DirtyDefinition(DirtyNodes::SelfAndSiblings);
  247. }
  248. bool Element::IsClassSet(const String& class_name) const
  249. {
  250. return meta->style.IsClassSet(class_name);
  251. }
  252. void Element::SetClassNames(const String& class_names)
  253. {
  254. SetAttribute("class", class_names);
  255. }
  256. String Element::GetClassNames() const
  257. {
  258. return meta->style.GetClassNames();
  259. }
  260. const StyleSheet* Element::GetStyleSheet() const
  261. {
  262. if (ElementDocument* document = GetOwnerDocument())
  263. return document->GetStyleSheet();
  264. return nullptr;
  265. }
  266. String Element::GetAddress(bool include_pseudo_classes, bool include_parents) const
  267. {
  268. // Add the tag name onto the address.
  269. String address(tag);
  270. // Add the ID if we have one.
  271. if (!id.empty())
  272. {
  273. address += "#";
  274. address += id;
  275. }
  276. String classes = meta->style.GetClassNames();
  277. if (!classes.empty())
  278. {
  279. classes = StringUtilities::Replace(classes, ' ', '.');
  280. address += ".";
  281. address += classes;
  282. }
  283. if (include_pseudo_classes)
  284. {
  285. const PseudoClassMap& pseudo_classes = meta->style.GetActivePseudoClasses();
  286. for (auto& pseudo_class : pseudo_classes)
  287. {
  288. address += ":";
  289. address += pseudo_class.first;
  290. }
  291. }
  292. if (include_parents && parent)
  293. {
  294. address += " < ";
  295. return address + parent->GetAddress(include_pseudo_classes, true);
  296. }
  297. else
  298. return address;
  299. }
  300. void Element::SetOffset(Vector2f offset, Element* _offset_parent, bool _offset_fixed)
  301. {
  302. _offset_fixed |= GetPosition() == Style::Position::Fixed;
  303. // If our offset has definitely changed, or any of our parenting has, then these are set and
  304. // updated based on our left / right / top / bottom properties.
  305. if (relative_offset_base != offset || offset_parent != _offset_parent || offset_fixed != _offset_fixed)
  306. {
  307. relative_offset_base = offset;
  308. offset_fixed = _offset_fixed;
  309. offset_parent = _offset_parent;
  310. UpdateOffset();
  311. DirtyAbsoluteOffset();
  312. }
  313. // Otherwise, our offset is updated in case left / right / top / bottom will have an impact on
  314. // our final position, and our children are dirtied if they do.
  315. else
  316. {
  317. const Vector2f old_base = relative_offset_base;
  318. const Vector2f old_position = relative_offset_position;
  319. UpdateOffset();
  320. if (old_base != relative_offset_base || old_position != relative_offset_position)
  321. DirtyAbsoluteOffset();
  322. }
  323. }
  324. Vector2f Element::GetRelativeOffset(BoxArea area)
  325. {
  326. return relative_offset_base + relative_offset_position + GetBox().GetPosition(area);
  327. }
  328. Vector2f Element::GetAbsoluteOffset(BoxArea area)
  329. {
  330. if (absolute_offset_dirty)
  331. {
  332. absolute_offset_dirty = false;
  333. if (offset_parent)
  334. absolute_offset = offset_parent->GetAbsoluteOffset(BoxArea::Border) + relative_offset_base + relative_offset_position;
  335. else
  336. absolute_offset = relative_offset_base + relative_offset_position;
  337. if (!offset_fixed)
  338. {
  339. // Add any parent scrolling onto our position as well.
  340. if (offset_parent)
  341. absolute_offset -= offset_parent->scroll_offset;
  342. // Finally, there may be relatively positioned elements between ourself and our containing block, add their relative offsets as well.
  343. for (Element* ancestor = parent; ancestor && ancestor != offset_parent; ancestor = ancestor->parent)
  344. absolute_offset += ancestor->relative_offset_position;
  345. }
  346. }
  347. return absolute_offset + GetBox().GetPosition(area);
  348. }
  349. void Element::SetClipArea(BoxArea _clip_area)
  350. {
  351. clip_area = _clip_area;
  352. }
  353. BoxArea Element::GetClipArea() const
  354. {
  355. return clip_area;
  356. }
  357. void Element::SetScrollableOverflowRectangle(Vector2f _scrollable_overflow_rectangle)
  358. {
  359. if (scrollable_overflow_rectangle != _scrollable_overflow_rectangle)
  360. {
  361. scrollable_overflow_rectangle = _scrollable_overflow_rectangle;
  362. scroll_offset.x = Math::Min(scroll_offset.x, GetScrollWidth() - GetClientWidth());
  363. scroll_offset.y = Math::Min(scroll_offset.y, GetScrollHeight() - GetClientHeight());
  364. DirtyAbsoluteOffset();
  365. }
  366. }
  367. void Element::SetBox(const Box& box)
  368. {
  369. if (box != main_box || additional_boxes.size() > 0)
  370. {
  371. main_box = box;
  372. additional_boxes.clear();
  373. OnResize();
  374. meta->background_border.DirtyBackground();
  375. meta->background_border.DirtyBorder();
  376. meta->effects.DirtyEffectsData();
  377. }
  378. }
  379. void Element::AddBox(const Box& box, Vector2f offset)
  380. {
  381. additional_boxes.emplace_back(PositionedBox{box, offset});
  382. OnResize();
  383. meta->background_border.DirtyBackground();
  384. meta->background_border.DirtyBorder();
  385. meta->effects.DirtyEffectsData();
  386. }
  387. const Box& Element::GetBox()
  388. {
  389. return main_box;
  390. }
  391. const Box& Element::GetBox(int index, Vector2f& offset)
  392. {
  393. offset = Vector2f(0);
  394. if (index < 1)
  395. return main_box;
  396. const int additional_box_index = index - 1;
  397. if (additional_box_index >= (int)additional_boxes.size())
  398. return main_box;
  399. offset = additional_boxes[additional_box_index].offset;
  400. return additional_boxes[additional_box_index].box;
  401. }
  402. int Element::GetNumBoxes()
  403. {
  404. return 1 + (int)additional_boxes.size();
  405. }
  406. float Element::GetBaseline() const
  407. {
  408. return baseline;
  409. }
  410. bool Element::GetIntrinsicDimensions(Vector2f& /*dimensions*/, float& /*ratio*/)
  411. {
  412. return false;
  413. }
  414. bool Element::IsReplaced()
  415. {
  416. Vector2f unused_dimensions;
  417. float unused_ratio = 0.f;
  418. return GetIntrinsicDimensions(unused_dimensions, unused_ratio);
  419. }
  420. bool Element::IsPointWithinElement(const Vector2f point)
  421. {
  422. const Vector2f position = GetAbsoluteOffset(BoxArea::Border);
  423. for (int i = 0; i < GetNumBoxes(); ++i)
  424. {
  425. Vector2f box_offset;
  426. const Box& box = GetBox(i, box_offset);
  427. const Vector2f box_position = position + box_offset;
  428. const Vector2f box_dimensions = box.GetSize(BoxArea::Border);
  429. if (point.x >= box_position.x && point.x <= (box_position.x + box_dimensions.x) && point.y >= box_position.y &&
  430. point.y <= (box_position.y + box_dimensions.y))
  431. {
  432. return true;
  433. }
  434. }
  435. return false;
  436. }
  437. bool Element::IsVisible(bool include_ancestors) const
  438. {
  439. if (!include_ancestors)
  440. return visible;
  441. const Element* element = this;
  442. while (element)
  443. {
  444. if (!element->visible)
  445. return false;
  446. element = element->parent;
  447. }
  448. return true;
  449. }
  450. float Element::GetZIndex() const
  451. {
  452. return z_index;
  453. }
  454. FontFaceHandle Element::GetFontFaceHandle() const
  455. {
  456. return meta->computed_values.font_face_handle();
  457. }
  458. bool Element::SetProperty(const String& name, const String& value)
  459. {
  460. // The name may be a shorthand giving us multiple underlying properties
  461. PropertyDictionary properties;
  462. if (!StyleSheetSpecification::ParsePropertyDeclaration(properties, name, value))
  463. {
  464. Log::Message(Log::LT_WARNING, "Syntax error parsing inline property declaration '%s: %s;'.", name.c_str(), value.c_str());
  465. return false;
  466. }
  467. for (auto& property : properties.GetProperties())
  468. {
  469. if (!meta->style.SetProperty(property.first, property.second))
  470. return false;
  471. }
  472. return true;
  473. }
  474. bool Element::SetProperty(PropertyId id, const Property& property)
  475. {
  476. return meta->style.SetProperty(id, property);
  477. }
  478. void Element::RemoveProperty(const String& name)
  479. {
  480. auto property_id = StyleSheetSpecification::GetPropertyId(name);
  481. if (property_id != PropertyId::Invalid)
  482. meta->style.RemoveProperty(property_id);
  483. else
  484. {
  485. auto shorthand_id = StyleSheetSpecification::GetShorthandId(name);
  486. if (shorthand_id != ShorthandId::Invalid)
  487. {
  488. auto property_id_set = StyleSheetSpecification::GetShorthandUnderlyingProperties(shorthand_id);
  489. for (auto it = property_id_set.begin(); it != property_id_set.end(); ++it)
  490. meta->style.RemoveProperty(*it);
  491. }
  492. }
  493. }
  494. void Element::RemoveProperty(PropertyId id)
  495. {
  496. meta->style.RemoveProperty(id);
  497. }
  498. const Property* Element::GetProperty(const String& name)
  499. {
  500. return meta->style.GetProperty(StyleSheetSpecification::GetPropertyId(name));
  501. }
  502. const Property* Element::GetProperty(PropertyId id)
  503. {
  504. return meta->style.GetProperty(id);
  505. }
  506. const Property* Element::GetLocalProperty(const String& name)
  507. {
  508. return meta->style.GetLocalProperty(StyleSheetSpecification::GetPropertyId(name));
  509. }
  510. const Property* Element::GetLocalProperty(PropertyId id)
  511. {
  512. return meta->style.GetLocalProperty(id);
  513. }
  514. const PropertyMap& Element::GetLocalStyleProperties()
  515. {
  516. return meta->style.GetLocalStyleProperties();
  517. }
  518. float Element::ResolveLength(NumericValue value)
  519. {
  520. float result = 0.f;
  521. if (Any(value.unit & Unit::LENGTH))
  522. result = meta->style.ResolveNumericValue(value, 0.f);
  523. return result;
  524. }
  525. float Element::ResolveNumericValue(NumericValue value, float base_value)
  526. {
  527. float result = 0.f;
  528. if (Any(value.unit & Unit::NUMERIC))
  529. result = meta->style.ResolveNumericValue(value, base_value);
  530. return result;
  531. }
  532. Vector2f Element::GetContainingBlock()
  533. {
  534. Vector2f containing_block(0, 0);
  535. if (offset_parent != nullptr)
  536. {
  537. using namespace Style;
  538. Position position_property = GetPosition();
  539. const Box& parent_box = offset_parent->GetBox();
  540. if (position_property == Position::Static || position_property == Position::Relative)
  541. {
  542. containing_block = parent_box.GetSize();
  543. }
  544. else if (position_property == Position::Absolute || position_property == Position::Fixed)
  545. {
  546. containing_block = parent_box.GetSize(BoxArea::Padding);
  547. }
  548. }
  549. return containing_block;
  550. }
  551. Style::Position Element::GetPosition()
  552. {
  553. return meta->computed_values.position();
  554. }
  555. Style::Float Element::GetFloat()
  556. {
  557. return meta->computed_values.float_();
  558. }
  559. Style::Display Element::GetDisplay()
  560. {
  561. return meta->computed_values.display();
  562. }
  563. float Element::GetLineHeight()
  564. {
  565. return meta->computed_values.line_height().value;
  566. }
  567. const TransformState* Element::GetTransformState() const noexcept
  568. {
  569. return transform_state.get();
  570. }
  571. bool Element::Project(Vector2f& point) const noexcept
  572. {
  573. if (!transform_state || !transform_state->GetTransform())
  574. return true;
  575. // The input point is in window coordinates. Need to find the projection of the point onto the current element plane,
  576. // taking into account the full transform applied to the element.
  577. if (const Matrix4f* inv_transform = transform_state->GetInverseTransform())
  578. {
  579. // Pick two points forming a line segment perpendicular to the window.
  580. Vector4f window_points[2] = {{point.x, point.y, -10, 1}, {point.x, point.y, 10, 1}};
  581. // Project them into the local element space.
  582. window_points[0] = *inv_transform * window_points[0];
  583. window_points[1] = *inv_transform * window_points[1];
  584. Vector3f local_points[2] = {window_points[0].PerspectiveDivide(), window_points[1].PerspectiveDivide()};
  585. // Construct a ray from the two projected points in the local space of the current element.
  586. // Find the intersection with the z=0 plane to produce our destination point.
  587. Vector3f ray = local_points[1] - local_points[0];
  588. // Only continue if we are not close to parallel with the plane.
  589. if (std::fabs(ray.z) > 1.0f)
  590. {
  591. // Solving the line equation p = p0 + t*ray for t, knowing that p.z = 0, produces the following.
  592. float t = -local_points[0].z / ray.z;
  593. Vector3f p = local_points[0] + ray * t;
  594. point = Vector2f(p.x, p.y);
  595. return true;
  596. }
  597. }
  598. // The transformation matrix is either singular, or the ray is parallel to the element's plane.
  599. return false;
  600. }
  601. PropertiesIteratorView Element::IterateLocalProperties() const
  602. {
  603. return PropertiesIteratorView(MakeUnique<PropertiesIterator>(meta->style.Iterate()));
  604. }
  605. void Element::SetPseudoClass(const String& pseudo_class, bool activate)
  606. {
  607. if (meta->style.SetPseudoClass(pseudo_class, activate, false))
  608. {
  609. // Include siblings in case of RCSS presence of sibling combinators '+', '~'.
  610. DirtyDefinition(DirtyNodes::SelfAndSiblings);
  611. OnPseudoClassChange(pseudo_class, activate);
  612. }
  613. }
  614. bool Element::IsPseudoClassSet(const String& pseudo_class) const
  615. {
  616. return meta->style.IsPseudoClassSet(pseudo_class);
  617. }
  618. bool Element::ArePseudoClassesSet(const StringList& pseudo_classes) const
  619. {
  620. for (const String& pseudo_class : pseudo_classes)
  621. {
  622. if (!IsPseudoClassSet(pseudo_class))
  623. return false;
  624. }
  625. return true;
  626. }
  627. StringList Element::GetActivePseudoClasses() const
  628. {
  629. const PseudoClassMap& pseudo_classes = meta->style.GetActivePseudoClasses();
  630. StringList names;
  631. names.reserve(pseudo_classes.size());
  632. for (auto& pseudo_class : pseudo_classes)
  633. {
  634. names.push_back(pseudo_class.first);
  635. }
  636. return names;
  637. }
  638. void Element::OverridePseudoClass(Element* element, const String& pseudo_class, bool activate)
  639. {
  640. RMLUI_ASSERT(element);
  641. element->GetStyle()->SetPseudoClass(pseudo_class, activate, true);
  642. }
  643. Variant* Element::GetAttribute(const String& name)
  644. {
  645. return GetIf(attributes, name);
  646. }
  647. const Variant* Element::GetAttribute(const String& name) const
  648. {
  649. return GetIf(attributes, name);
  650. }
  651. bool Element::HasAttribute(const String& name) const
  652. {
  653. return attributes.find(name) != attributes.end();
  654. }
  655. void Element::RemoveAttribute(const String& name)
  656. {
  657. auto it = attributes.find(name);
  658. if (it != attributes.end())
  659. {
  660. attributes.erase(it);
  661. ElementAttributes changed_attributes;
  662. changed_attributes.emplace(name, Variant());
  663. OnAttributeChange(changed_attributes);
  664. }
  665. }
  666. Element* Element::GetFocusLeafNode()
  667. {
  668. // If there isn't a focus, then we are the leaf.
  669. if (!focus)
  670. {
  671. return this;
  672. }
  673. // Recurse down the tree until we found the leaf focus element
  674. Element* focus_element = focus;
  675. while (focus_element->focus)
  676. focus_element = focus_element->focus;
  677. return focus_element;
  678. }
  679. Context* Element::GetContext() const
  680. {
  681. ElementDocument* document = GetOwnerDocument();
  682. if (document != nullptr)
  683. return document->GetContext();
  684. return nullptr;
  685. }
  686. RenderManager* Element::GetRenderManager() const
  687. {
  688. if (Context* context = GetContext())
  689. return &context->GetRenderManager();
  690. return nullptr;
  691. }
  692. void Element::SetAttributes(const ElementAttributes& _attributes)
  693. {
  694. attributes.reserve(attributes.size() + _attributes.size());
  695. for (auto& pair : _attributes)
  696. attributes[pair.first] = pair.second;
  697. OnAttributeChange(_attributes);
  698. }
  699. int Element::GetNumAttributes() const
  700. {
  701. return (int)attributes.size();
  702. }
  703. const String& Element::GetTagName() const
  704. {
  705. return tag;
  706. }
  707. const String& Element::GetId() const
  708. {
  709. return id;
  710. }
  711. void Element::SetId(const String& _id)
  712. {
  713. SetAttribute("id", _id);
  714. }
  715. float Element::GetAbsoluteLeft()
  716. {
  717. return GetAbsoluteOffset(BoxArea::Border).x;
  718. }
  719. float Element::GetAbsoluteTop()
  720. {
  721. return GetAbsoluteOffset(BoxArea::Border).y;
  722. }
  723. float Element::GetClientLeft()
  724. {
  725. return GetBox().GetPosition(BoxArea::Padding).x;
  726. }
  727. float Element::GetClientTop()
  728. {
  729. return GetBox().GetPosition(BoxArea::Padding).y;
  730. }
  731. float Element::GetClientWidth()
  732. {
  733. return GetBox().GetSize(BoxArea::Padding).x - meta->scroll.GetScrollbarSize(ElementScroll::VERTICAL);
  734. }
  735. float Element::GetClientHeight()
  736. {
  737. return GetBox().GetSize(BoxArea::Padding).y - meta->scroll.GetScrollbarSize(ElementScroll::HORIZONTAL);
  738. }
  739. Element* Element::GetOffsetParent()
  740. {
  741. return offset_parent;
  742. }
  743. float Element::GetOffsetLeft()
  744. {
  745. return relative_offset_base.x + relative_offset_position.x;
  746. }
  747. float Element::GetOffsetTop()
  748. {
  749. return relative_offset_base.y + relative_offset_position.y;
  750. }
  751. float Element::GetOffsetWidth()
  752. {
  753. return GetBox().GetSize(BoxArea::Border).x;
  754. }
  755. float Element::GetOffsetHeight()
  756. {
  757. return GetBox().GetSize(BoxArea::Border).y;
  758. }
  759. float Element::GetScrollLeft()
  760. {
  761. return scroll_offset.x;
  762. }
  763. void Element::SetScrollLeft(float scroll_left)
  764. {
  765. const float new_offset = Math::Clamp(Math::Round(scroll_left), 0.0f, GetScrollWidth() - GetClientWidth());
  766. if (new_offset != scroll_offset.x)
  767. {
  768. scroll_offset.x = new_offset;
  769. meta->scroll.UpdateScrollbar(ElementScroll::HORIZONTAL);
  770. DirtyAbsoluteOffset();
  771. DispatchEvent(EventId::Scroll, Dictionary());
  772. }
  773. }
  774. float Element::GetScrollTop()
  775. {
  776. return scroll_offset.y;
  777. }
  778. void Element::SetScrollTop(float scroll_top)
  779. {
  780. const float new_offset = Math::Clamp(Math::Round(scroll_top), 0.0f, GetScrollHeight() - GetClientHeight());
  781. if (new_offset != scroll_offset.y)
  782. {
  783. scroll_offset.y = new_offset;
  784. meta->scroll.UpdateScrollbar(ElementScroll::VERTICAL);
  785. DirtyAbsoluteOffset();
  786. DispatchEvent(EventId::Scroll, Dictionary());
  787. }
  788. }
  789. float Element::GetScrollWidth()
  790. {
  791. return Math::Max(scrollable_overflow_rectangle.x, GetClientWidth());
  792. }
  793. float Element::GetScrollHeight()
  794. {
  795. return Math::Max(scrollable_overflow_rectangle.y, GetClientHeight());
  796. }
  797. ElementStyle* Element::GetStyle() const
  798. {
  799. return &meta->style;
  800. }
  801. ElementDocument* Element::GetOwnerDocument() const
  802. {
  803. #ifdef RMLUI_DEBUG
  804. if (parent && !owner_document)
  805. {
  806. // Since we have a parent but no owner_document, then we must be a 'loose' element -- that is, constructed
  807. // outside of a document and not attached to a child of any element in the hierarchy of a document.
  808. // This check ensures that we didn't just forget to set the owner document.
  809. RMLUI_ASSERT(!parent->GetOwnerDocument());
  810. }
  811. #endif
  812. return owner_document;
  813. }
  814. Element* Element::GetParentNode() const
  815. {
  816. return parent;
  817. }
  818. Element* Element::Closest(const String& selectors) const
  819. {
  820. StyleSheetNode root_node;
  821. StyleSheetNodeListRaw leaf_nodes = StyleSheetParser::ConstructNodes(root_node, selectors);
  822. if (leaf_nodes.empty())
  823. {
  824. Log::Message(Log::LT_WARNING, "Query selector '%s' is empty. In element %s", selectors.c_str(), GetAddress().c_str());
  825. return nullptr;
  826. }
  827. Element* parent = GetParentNode();
  828. while (parent)
  829. {
  830. for (const StyleSheetNode* node : leaf_nodes)
  831. {
  832. if (node->IsApplicable(parent))
  833. {
  834. return parent;
  835. }
  836. }
  837. parent = parent->GetParentNode();
  838. }
  839. return nullptr;
  840. }
  841. Element* Element::GetNextSibling() const
  842. {
  843. if (parent == nullptr)
  844. return nullptr;
  845. for (size_t i = 0; i < parent->children.size() - (parent->num_non_dom_children + 1); i++)
  846. {
  847. if (parent->children[i].get() == this)
  848. return parent->children[i + 1].get();
  849. }
  850. return nullptr;
  851. }
  852. Element* Element::GetPreviousSibling() const
  853. {
  854. if (parent == nullptr)
  855. return nullptr;
  856. for (size_t i = 1; i < parent->children.size() - parent->num_non_dom_children; i++)
  857. {
  858. if (parent->children[i].get() == this)
  859. return parent->children[i - 1].get();
  860. }
  861. return nullptr;
  862. }
  863. Element* Element::GetFirstChild() const
  864. {
  865. if (GetNumChildren() > 0)
  866. return children[0].get();
  867. return nullptr;
  868. }
  869. Element* Element::GetLastChild() const
  870. {
  871. if (GetNumChildren() > 0)
  872. return (children.end() - (num_non_dom_children + 1))->get();
  873. return nullptr;
  874. }
  875. Element* Element::GetChild(int index) const
  876. {
  877. if (index < 0 || index >= (int)children.size())
  878. return nullptr;
  879. return children[index].get();
  880. }
  881. int Element::GetNumChildren(bool include_non_dom_elements) const
  882. {
  883. return (int)children.size() - (include_non_dom_elements ? 0 : num_non_dom_children);
  884. }
  885. void Element::GetInnerRML(String& content) const
  886. {
  887. for (int i = 0; i < GetNumChildren(); i++)
  888. {
  889. children[i]->GetRML(content);
  890. }
  891. }
  892. String Element::GetInnerRML() const
  893. {
  894. String result;
  895. GetInnerRML(result);
  896. return result;
  897. }
  898. void Element::SetInnerRML(const String& rml)
  899. {
  900. RMLUI_ZoneScopedC(0x6495ED);
  901. // Remove all DOM children.
  902. while ((int)children.size() > num_non_dom_children)
  903. RemoveChild(children.front().get());
  904. if (!rml.empty())
  905. Factory::InstanceElementText(this, rml);
  906. }
  907. bool Element::Focus(bool focus_visible)
  908. {
  909. // Are we allowed focus?
  910. Style::Focus focus_property = meta->computed_values.focus();
  911. if (focus_property == Style::Focus::None)
  912. return false;
  913. // Ask our context if we can switch focus.
  914. Context* context = GetContext();
  915. if (context == nullptr)
  916. return false;
  917. if (!context->OnFocusChange(this, focus_visible))
  918. return false;
  919. // Set this as the end of the focus chain.
  920. focus = nullptr;
  921. // Update the focus chain up the hierarchy.
  922. Element* element = this;
  923. while (Element* parent = element->GetParentNode())
  924. {
  925. parent->focus = element;
  926. element = parent;
  927. }
  928. return true;
  929. }
  930. void Element::Blur()
  931. {
  932. if (parent)
  933. {
  934. Context* context = GetContext();
  935. if (context == nullptr)
  936. return;
  937. if (context->GetFocusElement() == this)
  938. {
  939. parent->Focus();
  940. }
  941. else if (parent->focus == this)
  942. {
  943. parent->focus = nullptr;
  944. }
  945. }
  946. }
  947. void Element::Click()
  948. {
  949. Context* context = GetContext();
  950. if (context == nullptr)
  951. return;
  952. context->GenerateClickEvent(this);
  953. }
  954. void Element::AddEventListener(const String& event, EventListener* listener, const bool in_capture_phase)
  955. {
  956. const EventId id = EventSpecificationInterface::GetIdOrInsert(event);
  957. meta->event_dispatcher.AttachEvent(id, listener, in_capture_phase);
  958. }
  959. void Element::AddEventListener(const EventId id, EventListener* listener, const bool in_capture_phase)
  960. {
  961. meta->event_dispatcher.AttachEvent(id, listener, in_capture_phase);
  962. }
  963. void Element::RemoveEventListener(const String& event, EventListener* listener, bool in_capture_phase)
  964. {
  965. EventId id = EventSpecificationInterface::GetIdOrInsert(event);
  966. meta->event_dispatcher.DetachEvent(id, listener, in_capture_phase);
  967. }
  968. void Element::RemoveEventListener(EventId id, EventListener* listener, bool in_capture_phase)
  969. {
  970. meta->event_dispatcher.DetachEvent(id, listener, in_capture_phase);
  971. }
  972. bool Element::DispatchEvent(const String& type, const Dictionary& parameters)
  973. {
  974. const EventSpecification& specification = EventSpecificationInterface::GetOrInsert(type);
  975. return EventDispatcher::DispatchEvent(this, specification.id, type, parameters, specification.interruptible, specification.bubbles,
  976. specification.default_action_phase);
  977. }
  978. bool Element::DispatchEvent(const String& type, const Dictionary& parameters, bool interruptible, bool bubbles)
  979. {
  980. const EventSpecification& specification = EventSpecificationInterface::GetOrInsert(type);
  981. return EventDispatcher::DispatchEvent(this, specification.id, type, parameters, interruptible, bubbles, specification.default_action_phase);
  982. }
  983. bool Element::DispatchEvent(EventId id, const Dictionary& parameters)
  984. {
  985. const EventSpecification& specification = EventSpecificationInterface::Get(id);
  986. return EventDispatcher::DispatchEvent(this, specification.id, specification.type, parameters, specification.interruptible, specification.bubbles,
  987. specification.default_action_phase);
  988. }
  989. void Element::ScrollIntoView(const ScrollIntoViewOptions options)
  990. {
  991. const Vector2f size = main_box.GetSize(BoxArea::Border);
  992. ScrollBehavior scroll_behavior = options.behavior;
  993. for (Element* scroll_parent = parent; scroll_parent; scroll_parent = scroll_parent->GetParentNode())
  994. {
  995. using Style::Overflow;
  996. const ComputedValues& computed = scroll_parent->GetComputedValues();
  997. const bool scrollable_box_x = (computed.overflow_x() != Overflow::Visible && computed.overflow_x() != Overflow::Hidden);
  998. const bool scrollable_box_y = (computed.overflow_y() != Overflow::Visible && computed.overflow_y() != Overflow::Hidden);
  999. const Vector2f parent_scroll_size = {scroll_parent->GetScrollWidth(), scroll_parent->GetScrollHeight()};
  1000. const Vector2f parent_client_size = {scroll_parent->GetClientWidth(), scroll_parent->GetClientHeight()};
  1001. if ((scrollable_box_x && parent_scroll_size.x > parent_client_size.x) || (scrollable_box_y && parent_scroll_size.y > parent_client_size.y))
  1002. {
  1003. const Vector2f relative_offset = scroll_parent->GetAbsoluteOffset(BoxArea::Border) - GetAbsoluteOffset(BoxArea::Border);
  1004. const Vector2f old_scroll_offset = {scroll_parent->GetScrollLeft(), scroll_parent->GetScrollTop()};
  1005. const Vector2f parent_client_offset = {scroll_parent->GetClientLeft(), scroll_parent->GetClientTop()};
  1006. const Vector2f delta_scroll_offset_start = parent_client_offset - relative_offset;
  1007. const Vector2f delta_scroll_offset_end = delta_scroll_offset_start + size - parent_client_size;
  1008. Vector2f scroll_delta = {
  1009. scrollable_box_x ? GetScrollOffsetDelta(options.horizontal, delta_scroll_offset_start.x, delta_scroll_offset_end.x) : 0.f,
  1010. scrollable_box_y ? GetScrollOffsetDelta(options.vertical, delta_scroll_offset_start.y, delta_scroll_offset_end.y) : 0.f,
  1011. };
  1012. scroll_parent->ScrollTo(old_scroll_offset + scroll_delta, scroll_behavior);
  1013. // Currently, only a single scrollable parent can be smooth scrolled at a time, so any other parents must be instant scrolled.
  1014. scroll_behavior = ScrollBehavior::Instant;
  1015. }
  1016. }
  1017. }
  1018. void Element::ScrollIntoView(bool align_with_top)
  1019. {
  1020. ScrollIntoViewOptions options;
  1021. options.vertical = (align_with_top ? ScrollAlignment::Start : ScrollAlignment::End);
  1022. options.horizontal = ScrollAlignment::Nearest;
  1023. ScrollIntoView(options);
  1024. }
  1025. void Element::ScrollTo(Vector2f offset, ScrollBehavior behavior)
  1026. {
  1027. if (behavior != ScrollBehavior::Instant)
  1028. {
  1029. if (Context* context = GetContext())
  1030. {
  1031. context->PerformSmoothscrollOnTarget(this, offset - scroll_offset, behavior);
  1032. return;
  1033. }
  1034. }
  1035. SetScrollLeft(offset.x);
  1036. SetScrollTop(offset.y);
  1037. }
  1038. Element* Element::AppendChild(ElementPtr child, bool dom_element)
  1039. {
  1040. RMLUI_ASSERT(child);
  1041. Element* child_ptr = child.get();
  1042. if (dom_element)
  1043. children.insert(children.end() - num_non_dom_children, std::move(child));
  1044. else
  1045. {
  1046. children.push_back(std::move(child));
  1047. num_non_dom_children++;
  1048. }
  1049. // Set parent just after inserting into children. This allows us to eg. get our previous sibling in SetParent.
  1050. child_ptr->SetParent(this);
  1051. Element* ancestor = child_ptr;
  1052. for (int i = 0; i <= ChildNotifyLevels && ancestor; i++, ancestor = ancestor->GetParentNode())
  1053. ancestor->OnChildAdd(child_ptr);
  1054. DirtyStackingContext();
  1055. // Not only does the element definition of the newly inserted element need to be dirtied, but also our own definition and implicitly all of our
  1056. // children's. This ensures correct styles being applied in the presence of tree-structural selectors such as ':first-child'.
  1057. DirtyDefinition(DirtyNodes::Self);
  1058. if (dom_element)
  1059. DirtyLayout();
  1060. return child_ptr;
  1061. }
  1062. Element* Element::InsertBefore(ElementPtr child, Element* adjacent_element)
  1063. {
  1064. RMLUI_ASSERT(child);
  1065. // Find the position in the list of children of the adjacent element. If
  1066. // it's nullptr or we can't find it, then we insert it at the end of the dom
  1067. // children, as a dom element.
  1068. size_t child_index = 0;
  1069. bool found_child = false;
  1070. if (adjacent_element)
  1071. {
  1072. for (child_index = 0; child_index < children.size(); child_index++)
  1073. {
  1074. if (children[child_index].get() == adjacent_element)
  1075. {
  1076. found_child = true;
  1077. break;
  1078. }
  1079. }
  1080. }
  1081. Element* child_ptr = nullptr;
  1082. if (found_child)
  1083. {
  1084. child_ptr = child.get();
  1085. if ((int)child_index >= GetNumChildren())
  1086. num_non_dom_children++;
  1087. else
  1088. DirtyLayout();
  1089. children.insert(children.begin() + child_index, std::move(child));
  1090. child_ptr->SetParent(this);
  1091. Element* ancestor = child_ptr;
  1092. for (int i = 0; i <= ChildNotifyLevels && ancestor; i++, ancestor = ancestor->GetParentNode())
  1093. ancestor->OnChildAdd(child_ptr);
  1094. DirtyStackingContext();
  1095. DirtyDefinition(DirtyNodes::Self);
  1096. }
  1097. else
  1098. {
  1099. child_ptr = AppendChild(std::move(child));
  1100. }
  1101. return child_ptr;
  1102. }
  1103. ElementPtr Element::ReplaceChild(ElementPtr inserted_element, Element* replaced_element)
  1104. {
  1105. RMLUI_ASSERT(inserted_element);
  1106. auto insertion_point = children.begin();
  1107. while (insertion_point != children.end() && insertion_point->get() != replaced_element)
  1108. {
  1109. ++insertion_point;
  1110. }
  1111. Element* inserted_element_ptr = inserted_element.get();
  1112. if (insertion_point == children.end())
  1113. {
  1114. AppendChild(std::move(inserted_element));
  1115. return nullptr;
  1116. }
  1117. children.insert(insertion_point, std::move(inserted_element));
  1118. inserted_element_ptr->SetParent(this);
  1119. ElementPtr result = RemoveChild(replaced_element);
  1120. Element* ancestor = inserted_element_ptr;
  1121. for (int i = 0; i <= ChildNotifyLevels && ancestor; i++, ancestor = ancestor->GetParentNode())
  1122. ancestor->OnChildAdd(inserted_element_ptr);
  1123. return result;
  1124. }
  1125. ElementPtr Element::RemoveChild(Element* child)
  1126. {
  1127. size_t child_index = 0;
  1128. for (auto itr = children.begin(); itr != children.end(); ++itr)
  1129. {
  1130. // Add the element to the delete list
  1131. if (itr->get() == child)
  1132. {
  1133. Element* ancestor = child;
  1134. for (int i = 0; i <= ChildNotifyLevels && ancestor; i++, ancestor = ancestor->GetParentNode())
  1135. ancestor->OnChildRemove(child);
  1136. if (child_index >= children.size() - num_non_dom_children)
  1137. num_non_dom_children--;
  1138. ElementPtr detached_child = std::move(*itr);
  1139. children.erase(itr);
  1140. // Remove the child element as the focused child of this element.
  1141. if (child == focus)
  1142. {
  1143. focus = nullptr;
  1144. // If this child (or a descendant of this child) is the context's currently
  1145. // focused element, set the focus to us instead.
  1146. if (Context* context = GetContext())
  1147. {
  1148. Element* focus_element = context->GetFocusElement();
  1149. while (focus_element)
  1150. {
  1151. if (focus_element == child)
  1152. {
  1153. Focus();
  1154. break;
  1155. }
  1156. focus_element = focus_element->GetParentNode();
  1157. }
  1158. }
  1159. }
  1160. detached_child->SetParent(nullptr);
  1161. DirtyLayout();
  1162. DirtyStackingContext();
  1163. DirtyDefinition(DirtyNodes::Self);
  1164. return detached_child;
  1165. }
  1166. child_index++;
  1167. }
  1168. return nullptr;
  1169. }
  1170. bool Element::HasChildNodes() const
  1171. {
  1172. return (int)children.size() > num_non_dom_children;
  1173. }
  1174. Element* Element::GetElementById(const String& id)
  1175. {
  1176. // Check for special-case tokens.
  1177. if (id == "#self")
  1178. return this;
  1179. else if (id == "#document")
  1180. return GetOwnerDocument();
  1181. else if (id == "#parent")
  1182. return this->parent;
  1183. else
  1184. {
  1185. Element* search_root = GetOwnerDocument();
  1186. if (search_root == nullptr)
  1187. search_root = this;
  1188. return ElementUtilities::GetElementById(search_root, id);
  1189. }
  1190. }
  1191. void Element::GetElementsByTagName(ElementList& elements, const String& tag)
  1192. {
  1193. return ElementUtilities::GetElementsByTagName(elements, this, tag);
  1194. }
  1195. void Element::GetElementsByClassName(ElementList& elements, const String& class_name)
  1196. {
  1197. return ElementUtilities::GetElementsByClassName(elements, this, class_name);
  1198. }
  1199. static Element* QuerySelectorMatchRecursive(const StyleSheetNodeListRaw& nodes, Element* element)
  1200. {
  1201. const int num_children = element->GetNumChildren();
  1202. for (int i = 0; i < num_children; i++)
  1203. {
  1204. Element* child = element->GetChild(i);
  1205. if (child->GetTagName() == "#text")
  1206. continue;
  1207. for (const StyleSheetNode* node : nodes)
  1208. {
  1209. if (node->IsApplicable(child))
  1210. return child;
  1211. }
  1212. Element* matching_element = QuerySelectorMatchRecursive(nodes, child);
  1213. if (matching_element)
  1214. return matching_element;
  1215. }
  1216. return nullptr;
  1217. }
  1218. static void QuerySelectorAllMatchRecursive(ElementList& matching_elements, const StyleSheetNodeListRaw& nodes, Element* element)
  1219. {
  1220. const int num_children = element->GetNumChildren();
  1221. for (int i = 0; i < num_children; i++)
  1222. {
  1223. Element* child = element->GetChild(i);
  1224. if (child->GetTagName() == "#text")
  1225. continue;
  1226. for (const StyleSheetNode* node : nodes)
  1227. {
  1228. if (node->IsApplicable(child))
  1229. {
  1230. matching_elements.push_back(child);
  1231. break;
  1232. }
  1233. }
  1234. QuerySelectorAllMatchRecursive(matching_elements, nodes, child);
  1235. }
  1236. }
  1237. Element* Element::QuerySelector(const String& selectors)
  1238. {
  1239. StyleSheetNode root_node;
  1240. StyleSheetNodeListRaw leaf_nodes = StyleSheetParser::ConstructNodes(root_node, selectors);
  1241. if (leaf_nodes.empty())
  1242. {
  1243. Log::Message(Log::LT_WARNING, "Query selector '%s' is empty. In element %s", selectors.c_str(), GetAddress().c_str());
  1244. return nullptr;
  1245. }
  1246. return QuerySelectorMatchRecursive(leaf_nodes, this);
  1247. }
  1248. void Element::QuerySelectorAll(ElementList& elements, const String& selectors)
  1249. {
  1250. StyleSheetNode root_node;
  1251. StyleSheetNodeListRaw leaf_nodes = StyleSheetParser::ConstructNodes(root_node, selectors);
  1252. if (leaf_nodes.empty())
  1253. {
  1254. Log::Message(Log::LT_WARNING, "Query selector '%s' is empty. In element %s", selectors.c_str(), GetAddress().c_str());
  1255. return;
  1256. }
  1257. QuerySelectorAllMatchRecursive(elements, leaf_nodes, this);
  1258. }
  1259. bool Element::Matches(const String& selectors)
  1260. {
  1261. StyleSheetNode root_node;
  1262. StyleSheetNodeListRaw leaf_nodes = StyleSheetParser::ConstructNodes(root_node, selectors);
  1263. if (leaf_nodes.empty())
  1264. {
  1265. Log::Message(Log::LT_WARNING, "Query selector '%s' is empty. In element %s", selectors.c_str(), GetAddress().c_str());
  1266. return false;
  1267. }
  1268. for (const StyleSheetNode* node : leaf_nodes)
  1269. {
  1270. if (node->IsApplicable(this))
  1271. {
  1272. return true;
  1273. }
  1274. }
  1275. return false;
  1276. }
  1277. EventDispatcher* Element::GetEventDispatcher() const
  1278. {
  1279. return &meta->event_dispatcher;
  1280. }
  1281. String Element::GetEventDispatcherSummary() const
  1282. {
  1283. return meta->event_dispatcher.ToString();
  1284. }
  1285. ElementBackgroundBorder* Element::GetElementBackgroundBorder() const
  1286. {
  1287. return &meta->background_border;
  1288. }
  1289. ElementScroll* Element::GetElementScroll() const
  1290. {
  1291. return &meta->scroll;
  1292. }
  1293. DataModel* Element::GetDataModel() const
  1294. {
  1295. return data_model;
  1296. }
  1297. void Element::SetInstancer(ElementInstancer* _instancer)
  1298. {
  1299. // Only record the first instancer being set as some instancers call other instancers to do their dirty work, in
  1300. // which case we don't want to update the lowest level instancer.
  1301. if (!instancer)
  1302. {
  1303. instancer = _instancer;
  1304. }
  1305. }
  1306. void Element::ForceLocalStackingContext()
  1307. {
  1308. local_stacking_context_forced = true;
  1309. local_stacking_context = true;
  1310. DirtyStackingContext();
  1311. }
  1312. void Element::OnUpdate() {}
  1313. void Element::OnRender() {}
  1314. void Element::OnResize() {}
  1315. void Element::OnLayout() {}
  1316. void Element::OnDpRatioChange() {}
  1317. void Element::OnStyleSheetChange() {}
  1318. void Element::OnAttributeChange(const ElementAttributes& changed_attributes)
  1319. {
  1320. for (const auto& element_attribute : changed_attributes)
  1321. {
  1322. const auto& attribute = element_attribute.first;
  1323. const auto& value = element_attribute.second;
  1324. if (attribute == "id")
  1325. {
  1326. id = value.Get<String>();
  1327. }
  1328. else if (attribute == "class")
  1329. {
  1330. meta->style.SetClassNames(value.Get<String>());
  1331. }
  1332. else if (((attribute == "colspan" || attribute == "rowspan") && meta->computed_values.display() == Style::Display::TableCell) ||
  1333. (attribute == "span" &&
  1334. (meta->computed_values.display() == Style::Display::TableColumn ||
  1335. meta->computed_values.display() == Style::Display::TableColumnGroup)))
  1336. {
  1337. DirtyLayout();
  1338. }
  1339. else if (attribute.size() > 2 && attribute[0] == 'o' && attribute[1] == 'n')
  1340. {
  1341. static constexpr bool IN_CAPTURE_PHASE = false;
  1342. auto& attribute_event_listeners = meta->attribute_event_listeners;
  1343. auto& event_dispatcher = meta->event_dispatcher;
  1344. const auto event_id = EventSpecificationInterface::GetIdOrInsert(attribute.substr(2));
  1345. const auto remove_event_listener_if_exists = [&attribute_event_listeners, &event_dispatcher, event_id]() {
  1346. const auto listener_it = attribute_event_listeners.find(event_id);
  1347. if (listener_it != attribute_event_listeners.cend())
  1348. {
  1349. event_dispatcher.DetachEvent(event_id, listener_it->second, IN_CAPTURE_PHASE);
  1350. attribute_event_listeners.erase(listener_it);
  1351. }
  1352. };
  1353. if (value.GetType() == Variant::Type::STRING)
  1354. {
  1355. remove_event_listener_if_exists();
  1356. const auto value_as_string = value.Get<String>();
  1357. auto insertion_result = attribute_event_listeners.emplace(event_id, Factory::InstanceEventListener(value_as_string, this));
  1358. if (auto* listener = insertion_result.first->second)
  1359. event_dispatcher.AttachEvent(event_id, listener, IN_CAPTURE_PHASE);
  1360. }
  1361. else if (value.GetType() == Variant::Type::NONE)
  1362. remove_event_listener_if_exists();
  1363. }
  1364. else if (attribute == "style")
  1365. {
  1366. if (value.GetType() == Variant::STRING)
  1367. {
  1368. PropertyDictionary properties;
  1369. StyleSheetParser parser;
  1370. parser.ParseProperties(properties, value.GetReference<String>());
  1371. for (const auto& name_value : properties.GetProperties())
  1372. meta->style.SetProperty(name_value.first, name_value.second);
  1373. }
  1374. else if (value.GetType() != Variant::NONE)
  1375. Log::Message(Log::LT_WARNING, "Invalid 'style' attribute, string type required. In element: %s", GetAddress().c_str());
  1376. }
  1377. else if (attribute == "lang")
  1378. {
  1379. if (value.GetType() == Variant::STRING)
  1380. meta->style.SetProperty(PropertyId::RmlUi_Language, Property(value.GetReference<String>(), Unit::STRING));
  1381. else if (value.GetType() != Variant::NONE)
  1382. Log::Message(Log::LT_WARNING, "Invalid 'lang' attribute, string type required. In element: %s", GetAddress().c_str());
  1383. }
  1384. else if (attribute == "dir")
  1385. {
  1386. if (value.GetType() == Variant::STRING)
  1387. {
  1388. const String& dir_value = value.GetReference<String>();
  1389. if (dir_value == "auto")
  1390. meta->style.SetProperty(PropertyId::RmlUi_Direction, Property(Style::Direction::Auto));
  1391. else if (dir_value == "ltr")
  1392. meta->style.SetProperty(PropertyId::RmlUi_Direction, Property(Style::Direction::Ltr));
  1393. else if (dir_value == "rtl")
  1394. meta->style.SetProperty(PropertyId::RmlUi_Direction, Property(Style::Direction::Rtl));
  1395. else
  1396. Log::Message(Log::LT_WARNING, "Invalid 'dir' attribute '%s', value must be 'auto', 'ltr', or 'rtl'. In element: %s",
  1397. dir_value.c_str(), GetAddress().c_str());
  1398. }
  1399. else if (value.GetType() != Variant::NONE)
  1400. Log::Message(Log::LT_WARNING, "Invalid 'dir' attribute, string type required. In element: %s", GetAddress().c_str());
  1401. }
  1402. }
  1403. // Any change to the attributes may affect which styles apply to the current element, in particular due to attribute selectors, ID selectors, and
  1404. // class selectors. This can further affect all siblings or descendants due to sibling or descendant combinators.
  1405. DirtyDefinition(DirtyNodes::SelfAndSiblings);
  1406. }
  1407. void Element::OnPropertyChange(const PropertyIdSet& changed_properties)
  1408. {
  1409. RMLUI_ZoneScoped;
  1410. const bool top_right_bottom_left_changed = ( //
  1411. changed_properties.Contains(PropertyId::Top) || //
  1412. changed_properties.Contains(PropertyId::Right) || //
  1413. changed_properties.Contains(PropertyId::Bottom) || //
  1414. changed_properties.Contains(PropertyId::Left) //
  1415. );
  1416. // See if the document layout needs to be updated.
  1417. if (!IsLayoutDirty())
  1418. {
  1419. // Force a relayout if any of the changed properties require it.
  1420. const PropertyIdSet changed_properties_forcing_layout =
  1421. (changed_properties & StyleSheetSpecification::GetRegisteredPropertiesForcingLayout());
  1422. if (!changed_properties_forcing_layout.Empty())
  1423. {
  1424. DirtyLayout();
  1425. }
  1426. else if (top_right_bottom_left_changed)
  1427. {
  1428. // Normally, the position properties only affect the position of the element and not the layout. Thus, these properties are not registered
  1429. // as affecting layout. However, when absolutely positioned elements with both left & right, or top & bottom are set to definite values,
  1430. // they affect the size of the element and thereby also the layout. This layout-dirtying condition needs to be registered manually.
  1431. using namespace Style;
  1432. const ComputedValues& computed = GetComputedValues();
  1433. const bool absolutely_positioned = (computed.position() == Position::Absolute || computed.position() == Position::Fixed);
  1434. const bool sized_width =
  1435. (computed.width().type == Width::Auto && computed.left().type != Left::Auto && computed.right().type != Right::Auto);
  1436. const bool sized_height =
  1437. (computed.height().type == Height::Auto && computed.top().type != Top::Auto && computed.bottom().type != Bottom::Auto);
  1438. if (absolutely_positioned && (sized_width || sized_height))
  1439. DirtyLayout();
  1440. }
  1441. }
  1442. // Update the position.
  1443. if (top_right_bottom_left_changed)
  1444. {
  1445. UpdateOffset();
  1446. DirtyAbsoluteOffset();
  1447. }
  1448. // Update the visibility.
  1449. if (changed_properties.Contains(PropertyId::Visibility) || changed_properties.Contains(PropertyId::Display))
  1450. {
  1451. bool new_visibility =
  1452. (meta->computed_values.display() != Style::Display::None && meta->computed_values.visibility() == Style::Visibility::Visible);
  1453. if (visible != new_visibility)
  1454. {
  1455. visible = new_visibility;
  1456. if (parent != nullptr)
  1457. parent->DirtyStackingContext();
  1458. if (!visible)
  1459. Blur();
  1460. }
  1461. }
  1462. const bool border_radius_changed = ( //
  1463. changed_properties.Contains(PropertyId::BorderTopLeftRadius) || //
  1464. changed_properties.Contains(PropertyId::BorderTopRightRadius) || //
  1465. changed_properties.Contains(PropertyId::BorderBottomRightRadius) || //
  1466. changed_properties.Contains(PropertyId::BorderBottomLeftRadius) //
  1467. );
  1468. const bool filter_or_mask_changed = (changed_properties.Contains(PropertyId::Filter) || changed_properties.Contains(PropertyId::BackdropFilter) ||
  1469. changed_properties.Contains(PropertyId::MaskImage));
  1470. // Update the z-index and stacking context.
  1471. if (changed_properties.Contains(PropertyId::ZIndex) || filter_or_mask_changed)
  1472. {
  1473. const Style::ZIndex z_index_property = meta->computed_values.z_index();
  1474. const float new_z_index = (z_index_property.type == Style::ZIndex::Auto ? 0.f : z_index_property.value);
  1475. const bool enable_local_stacking_context = (z_index_property.type != Style::ZIndex::Auto || local_stacking_context_forced ||
  1476. meta->computed_values.has_filter() || meta->computed_values.has_backdrop_filter() || meta->computed_values.has_mask_image());
  1477. if (z_index != new_z_index || local_stacking_context != enable_local_stacking_context)
  1478. {
  1479. z_index = new_z_index;
  1480. if (local_stacking_context != enable_local_stacking_context)
  1481. {
  1482. local_stacking_context = enable_local_stacking_context;
  1483. // If we are no longer acting as a local stacking context, then we clear the list and are all set. Otherwise, we need to rebuild our
  1484. // local stacking context.
  1485. stacking_context.clear();
  1486. stacking_context_dirty = local_stacking_context;
  1487. }
  1488. // When our z-index or local stacking context changes, then we must dirty our parent stacking context so we are re-indexed.
  1489. if (parent)
  1490. parent->DirtyStackingContext();
  1491. }
  1492. }
  1493. // Dirty the background if it's changed.
  1494. if (border_radius_changed || //
  1495. changed_properties.Contains(PropertyId::BackgroundColor) || //
  1496. changed_properties.Contains(PropertyId::Opacity) || //
  1497. changed_properties.Contains(PropertyId::ImageColor) || //
  1498. changed_properties.Contains(PropertyId::BoxShadow)) //
  1499. {
  1500. meta->background_border.DirtyBackground();
  1501. }
  1502. // Dirty the border if it's changed.
  1503. if (border_radius_changed || //
  1504. changed_properties.Contains(PropertyId::BorderTopWidth) || //
  1505. changed_properties.Contains(PropertyId::BorderRightWidth) || //
  1506. changed_properties.Contains(PropertyId::BorderBottomWidth) || //
  1507. changed_properties.Contains(PropertyId::BorderLeftWidth) || //
  1508. changed_properties.Contains(PropertyId::BorderTopColor) || //
  1509. changed_properties.Contains(PropertyId::BorderRightColor) || //
  1510. changed_properties.Contains(PropertyId::BorderBottomColor) || //
  1511. changed_properties.Contains(PropertyId::BorderLeftColor) || //
  1512. changed_properties.Contains(PropertyId::Opacity))
  1513. {
  1514. meta->background_border.DirtyBorder();
  1515. }
  1516. // Dirty the effects if they've changed.
  1517. if (border_radius_changed || filter_or_mask_changed || changed_properties.Contains(PropertyId::Decorator))
  1518. {
  1519. meta->effects.DirtyEffects();
  1520. }
  1521. // Dirty the effects data when their visual looks may have changed.
  1522. if (border_radius_changed || //
  1523. changed_properties.Contains(PropertyId::Opacity) || //
  1524. changed_properties.Contains(PropertyId::ImageColor))
  1525. {
  1526. meta->effects.DirtyEffectsData();
  1527. }
  1528. // Check for `perspective' and `perspective-origin' changes
  1529. if (changed_properties.Contains(PropertyId::Perspective) || //
  1530. changed_properties.Contains(PropertyId::PerspectiveOriginX) || //
  1531. changed_properties.Contains(PropertyId::PerspectiveOriginY))
  1532. {
  1533. DirtyTransformState(true, false);
  1534. }
  1535. // Check for `transform' and `transform-origin' changes
  1536. if (changed_properties.Contains(PropertyId::Transform) || //
  1537. changed_properties.Contains(PropertyId::TransformOriginX) || //
  1538. changed_properties.Contains(PropertyId::TransformOriginY) || //
  1539. changed_properties.Contains(PropertyId::TransformOriginZ))
  1540. {
  1541. DirtyTransformState(false, true);
  1542. }
  1543. // Check for `animation' changes
  1544. if (changed_properties.Contains(PropertyId::Animation))
  1545. {
  1546. dirty_animation = true;
  1547. }
  1548. // Check for `transition' changes
  1549. if (changed_properties.Contains(PropertyId::Transition))
  1550. {
  1551. dirty_transition = true;
  1552. }
  1553. }
  1554. void Element::OnPseudoClassChange(const String& /*pseudo_class*/, bool /*activate*/) {}
  1555. void Element::OnChildAdd(Element* /*child*/) {}
  1556. void Element::OnChildRemove(Element* /*child*/) {}
  1557. void Element::DirtyLayout()
  1558. {
  1559. if (Element* document = GetOwnerDocument())
  1560. document->DirtyLayout();
  1561. }
  1562. bool Element::IsLayoutDirty()
  1563. {
  1564. if (Element* document = GetOwnerDocument())
  1565. return document->IsLayoutDirty();
  1566. return false;
  1567. }
  1568. Element* Element::GetClosestScrollableContainer()
  1569. {
  1570. using namespace Style;
  1571. Overflow overflow_x = meta->computed_values.overflow_x();
  1572. Overflow overflow_y = meta->computed_values.overflow_y();
  1573. bool scrollable_x = (overflow_x == Overflow::Auto || overflow_x == Overflow::Scroll);
  1574. bool scrollable_y = (overflow_y == Overflow::Auto || overflow_y == Overflow::Scroll);
  1575. scrollable_x = (scrollable_x && GetScrollWidth() > GetClientWidth());
  1576. scrollable_y = (scrollable_y && GetScrollHeight() > GetClientHeight());
  1577. if (scrollable_x || scrollable_y || meta->computed_values.overscroll_behavior() == OverscrollBehavior::Contain)
  1578. return this;
  1579. else if (parent)
  1580. return parent->GetClosestScrollableContainer();
  1581. return nullptr;
  1582. }
  1583. void Element::ProcessDefaultAction(Event& event)
  1584. {
  1585. if (event == EventId::Mousedown)
  1586. {
  1587. const Vector2f mouse_pos(event.GetParameter("mouse_x", 0.f), event.GetParameter("mouse_y", 0.f));
  1588. if (IsPointWithinElement(mouse_pos) && event.GetParameter("button", 0) == 0)
  1589. SetPseudoClass("active", true);
  1590. }
  1591. if (event.GetPhase() == EventPhase::Target)
  1592. {
  1593. switch (event.GetId())
  1594. {
  1595. case EventId::Mouseover: SetPseudoClass("hover", true); break;
  1596. case EventId::Mouseout: SetPseudoClass("hover", false); break;
  1597. case EventId::Focus:
  1598. SetPseudoClass("focus", true);
  1599. if (event.GetParameter("focus_visible", false))
  1600. SetPseudoClass("focus-visible", true);
  1601. break;
  1602. case EventId::Blur:
  1603. SetPseudoClass("focus", false);
  1604. SetPseudoClass("focus-visible", false);
  1605. break;
  1606. default: break;
  1607. }
  1608. }
  1609. }
  1610. const Style::ComputedValues& Element::GetComputedValues() const
  1611. {
  1612. return meta->computed_values;
  1613. }
  1614. void Element::GetRML(String& content)
  1615. {
  1616. // First we start the open tag, add the attributes then close the open tag.
  1617. // Then comes the children in order, then we add our close tag.
  1618. content += "<";
  1619. content += tag;
  1620. for (auto& pair : attributes)
  1621. {
  1622. auto& name = pair.first;
  1623. auto& variant = pair.second;
  1624. String value;
  1625. if (variant.GetInto(value))
  1626. {
  1627. content += ' ';
  1628. content += name;
  1629. content += "=\"";
  1630. content += value;
  1631. content += "\"";
  1632. }
  1633. }
  1634. if (HasChildNodes())
  1635. {
  1636. content += ">";
  1637. GetInnerRML(content);
  1638. content += "</";
  1639. content += tag;
  1640. content += ">";
  1641. }
  1642. else
  1643. {
  1644. content += " />";
  1645. }
  1646. }
  1647. void Element::SetOwnerDocument(ElementDocument* document)
  1648. {
  1649. if (owner_document && !document)
  1650. {
  1651. // We are detaching from the document and thereby also the context.
  1652. if (Context* context = owner_document->GetContext())
  1653. context->OnElementDetach(this);
  1654. }
  1655. // If this element is a document, then never change owner_document.
  1656. if (owner_document != this && owner_document != document)
  1657. {
  1658. owner_document = document;
  1659. for (ElementPtr& child : children)
  1660. child->SetOwnerDocument(document);
  1661. }
  1662. }
  1663. void Element::SetDataModel(DataModel* new_data_model)
  1664. {
  1665. RMLUI_ASSERTMSG(!data_model || !new_data_model, "We must either attach a new data model, or detach the old one.");
  1666. if (data_model == new_data_model)
  1667. return;
  1668. // stop descent if a nested data model is encountered
  1669. if (data_model && new_data_model && data_model != new_data_model)
  1670. return;
  1671. if (data_model)
  1672. data_model->OnElementRemove(this);
  1673. data_model = new_data_model;
  1674. if (data_model)
  1675. ElementUtilities::ApplyDataViewsControllers(this);
  1676. for (ElementPtr& child : children)
  1677. child->SetDataModel(new_data_model);
  1678. }
  1679. void Element::Release()
  1680. {
  1681. if (instancer)
  1682. instancer->ReleaseElement(this);
  1683. else
  1684. Log::Message(Log::LT_WARNING, "Leak detected: element %s not instanced via RmlUi Factory. Unable to release.", GetAddress().c_str());
  1685. }
  1686. void Element::SetParent(Element* _parent)
  1687. {
  1688. // Assumes we are already detached from the hierarchy or we are detaching now.
  1689. RMLUI_ASSERT(!parent || !_parent);
  1690. parent = _parent;
  1691. if (parent)
  1692. {
  1693. // We need to update our definition and make sure we inherit the properties of our new parent.
  1694. DirtyDefinition(DirtyNodes::Self);
  1695. meta->style.DirtyInheritedProperties();
  1696. }
  1697. // The transform state may require recalculation.
  1698. if (transform_state || (parent && parent->transform_state))
  1699. DirtyTransformState(true, true);
  1700. SetOwnerDocument(parent ? parent->GetOwnerDocument() : nullptr);
  1701. if (!parent)
  1702. {
  1703. if (data_model)
  1704. SetDataModel(nullptr);
  1705. }
  1706. else
  1707. {
  1708. auto it = attributes.find("data-model");
  1709. if (it == attributes.end())
  1710. {
  1711. SetDataModel(parent->data_model);
  1712. }
  1713. else if (Context* context = GetContext())
  1714. {
  1715. String name = it->second.Get<String>();
  1716. if (DataModel* model = context->GetDataModelPtr(name))
  1717. {
  1718. model->AttachModelRootElement(this);
  1719. SetDataModel(model);
  1720. }
  1721. else
  1722. Log::Message(Log::LT_ERROR, "Could not locate data model '%s' in element %s.", name.c_str(), GetAddress().c_str());
  1723. }
  1724. }
  1725. }
  1726. void Element::DirtyAbsoluteOffset()
  1727. {
  1728. if (!absolute_offset_dirty)
  1729. DirtyAbsoluteOffsetRecursive();
  1730. }
  1731. void Element::DirtyAbsoluteOffsetRecursive()
  1732. {
  1733. if (!absolute_offset_dirty)
  1734. {
  1735. absolute_offset_dirty = true;
  1736. if (transform_state)
  1737. DirtyTransformState(true, true);
  1738. }
  1739. for (size_t i = 0; i < children.size(); i++)
  1740. children[i]->DirtyAbsoluteOffsetRecursive();
  1741. }
  1742. void Element::UpdateOffset()
  1743. {
  1744. using namespace Style;
  1745. const auto& computed = meta->computed_values;
  1746. Position position_property = computed.position();
  1747. if (position_property == Position::Absolute || position_property == Position::Fixed)
  1748. {
  1749. if (offset_parent != nullptr)
  1750. {
  1751. const Box& parent_box = offset_parent->GetBox();
  1752. Vector2f containing_block = parent_box.GetSize(BoxArea::Padding);
  1753. // If the element is anchored left, then the position is offset by that resolved value.
  1754. if (computed.left().type != Left::Auto)
  1755. relative_offset_base.x = parent_box.GetEdge(BoxArea::Border, BoxEdge::Left) +
  1756. (ResolveValue(computed.left(), containing_block.x) + GetBox().GetEdge(BoxArea::Margin, BoxEdge::Left));
  1757. // If the element is anchored right, then the position is set first so the element's right-most edge
  1758. // (including margins) will render up against the containing box's right-most content edge, and then
  1759. // offset by the resolved value.
  1760. else if (computed.right().type != Right::Auto)
  1761. {
  1762. relative_offset_base.x = containing_block.x + parent_box.GetEdge(BoxArea::Border, BoxEdge::Left) -
  1763. (ResolveValue(computed.right(), containing_block.x) + GetBox().GetSize(BoxArea::Border).x +
  1764. GetBox().GetEdge(BoxArea::Margin, BoxEdge::Right));
  1765. }
  1766. // If the element is anchored top, then the position is offset by that resolved value.
  1767. if (computed.top().type != Top::Auto)
  1768. {
  1769. relative_offset_base.y = parent_box.GetEdge(BoxArea::Border, BoxEdge::Top) +
  1770. (ResolveValue(computed.top(), containing_block.y) + GetBox().GetEdge(BoxArea::Margin, BoxEdge::Top));
  1771. }
  1772. // If the element is anchored bottom, then the position is set first so the element's right-most edge
  1773. // (including margins) will render up against the containing box's right-most content edge, and then
  1774. // offset by the resolved value.
  1775. else if (computed.bottom().type != Bottom::Auto)
  1776. {
  1777. relative_offset_base.y = containing_block.y + parent_box.GetEdge(BoxArea::Border, BoxEdge::Top) -
  1778. (ResolveValue(computed.bottom(), containing_block.y) + GetBox().GetSize(BoxArea::Border).y +
  1779. GetBox().GetEdge(BoxArea::Margin, BoxEdge::Bottom));
  1780. }
  1781. }
  1782. }
  1783. else if (position_property == Position::Relative)
  1784. {
  1785. if (offset_parent != nullptr)
  1786. {
  1787. const Box& parent_box = offset_parent->GetBox();
  1788. Vector2f containing_block = parent_box.GetSize();
  1789. if (computed.left().type != Left::Auto)
  1790. relative_offset_position.x = ResolveValue(computed.left(), containing_block.x);
  1791. else if (computed.right().type != Right::Auto)
  1792. relative_offset_position.x = -1 * ResolveValue(computed.right(), containing_block.x);
  1793. else
  1794. relative_offset_position.x = 0;
  1795. if (computed.top().type != Top::Auto)
  1796. relative_offset_position.y = ResolveValue(computed.top(), containing_block.y);
  1797. else if (computed.bottom().type != Bottom::Auto)
  1798. relative_offset_position.y = -1 * ResolveValue(computed.bottom(), containing_block.y);
  1799. else
  1800. relative_offset_position.y = 0;
  1801. }
  1802. }
  1803. else
  1804. {
  1805. relative_offset_position.x = 0;
  1806. relative_offset_position.y = 0;
  1807. }
  1808. }
  1809. void Element::SetBaseline(float in_baseline)
  1810. {
  1811. baseline = in_baseline;
  1812. }
  1813. enum class RenderOrder {
  1814. StackNegative, // Local stacking context with z < 0.
  1815. Block,
  1816. TableColumnGroup,
  1817. TableColumn,
  1818. TableRowGroup,
  1819. TableRow,
  1820. TableCell,
  1821. Floating,
  1822. Inline,
  1823. Positioned, // Positioned element, or local stacking context with z == 0.
  1824. StackPositive, // Local stacking context with z > 0.
  1825. };
  1826. struct StackingContextChild {
  1827. Element* element = nullptr;
  1828. RenderOrder order = {};
  1829. };
  1830. static bool operator<(const StackingContextChild& lhs, const StackingContextChild& rhs)
  1831. {
  1832. if (int(lhs.order) == int(rhs.order))
  1833. return lhs.element->GetZIndex() < rhs.element->GetZIndex();
  1834. return int(lhs.order) < int(rhs.order);
  1835. }
  1836. // Treat all children in the range [index_begin, end) as if the parent created a new stacking context, by sorting them
  1837. // separately and then assigning their parent's paint order. However, positioned and descendants which create a new
  1838. // stacking context should be considered part of the parent stacking context. See CSS 2, Appendix E.
  1839. static void StackingContext_MakeAtomicRange(Vector<StackingContextChild>& stacking_children, size_t index_begin, RenderOrder parent_render_order)
  1840. {
  1841. std::stable_sort(stacking_children.begin() + index_begin, stacking_children.end());
  1842. for (auto it = stacking_children.begin() + index_begin; it != stacking_children.end(); ++it)
  1843. {
  1844. auto order = it->order;
  1845. if (order != RenderOrder::StackNegative && order != RenderOrder::Positioned && order != RenderOrder::StackPositive)
  1846. it->order = parent_render_order;
  1847. }
  1848. }
  1849. void Element::BuildLocalStackingContext()
  1850. {
  1851. stacking_context_dirty = false;
  1852. Vector<StackingContextChild> stacking_children;
  1853. AddChildrenToStackingContext(stacking_children);
  1854. std::stable_sort(stacking_children.begin(), stacking_children.end());
  1855. stacking_context.resize(stacking_children.size());
  1856. for (size_t i = 0; i < stacking_children.size(); i++)
  1857. stacking_context[i] = stacking_children[i].element;
  1858. }
  1859. void Element::AddChildrenToStackingContext(Vector<StackingContextChild>& stacking_children)
  1860. {
  1861. bool is_flex_container = (GetDisplay() == Style::Display::Flex);
  1862. const int num_children = (int)children.size();
  1863. for (int i = 0; i < num_children; ++i)
  1864. {
  1865. const bool is_non_dom_element = (i >= num_children - num_non_dom_children);
  1866. children[i]->AddToStackingContext(stacking_children, is_flex_container, is_non_dom_element);
  1867. }
  1868. }
  1869. void Element::AddToStackingContext(Vector<StackingContextChild>& stacking_children, bool is_flex_item, bool is_non_dom_element)
  1870. {
  1871. using Style::Display;
  1872. if (!IsVisible())
  1873. return;
  1874. const Display display = GetDisplay();
  1875. RenderOrder order = RenderOrder::Inline;
  1876. bool include_children = true;
  1877. bool render_as_atomic_unit = false;
  1878. if (local_stacking_context)
  1879. {
  1880. if (z_index > 0.f)
  1881. order = RenderOrder::StackPositive;
  1882. else if (z_index < 0.f)
  1883. order = RenderOrder::StackNegative;
  1884. else
  1885. order = RenderOrder::Positioned;
  1886. include_children = false;
  1887. }
  1888. else if (display == Display::TableRow || display == Display::TableRowGroup || display == Display::TableColumn ||
  1889. display == Display::TableColumnGroup)
  1890. {
  1891. // Handle internal display values taking priority over position and float.
  1892. switch (display)
  1893. {
  1894. case Display::TableRow: order = RenderOrder::TableRow; break;
  1895. case Display::TableRowGroup: order = RenderOrder::TableRowGroup; break;
  1896. case Display::TableColumn: order = RenderOrder::TableColumn; break;
  1897. case Display::TableColumnGroup: order = RenderOrder::TableColumnGroup; break;
  1898. default: break;
  1899. }
  1900. }
  1901. else if (GetPosition() != Style::Position::Static)
  1902. {
  1903. order = RenderOrder::Positioned;
  1904. render_as_atomic_unit = true;
  1905. }
  1906. else if (GetFloat() != Style::Float::None)
  1907. {
  1908. order = RenderOrder::Floating;
  1909. render_as_atomic_unit = true;
  1910. }
  1911. else
  1912. {
  1913. switch (display)
  1914. {
  1915. case Display::Block:
  1916. case Display::FlowRoot:
  1917. case Display::Table:
  1918. case Display::Flex:
  1919. order = RenderOrder::Block;
  1920. render_as_atomic_unit = (display == Display::Table || is_flex_item);
  1921. break;
  1922. case Display::Inline:
  1923. case Display::InlineBlock:
  1924. case Display::InlineFlex:
  1925. case Display::InlineTable:
  1926. order = RenderOrder::Inline;
  1927. render_as_atomic_unit = (display != Display::Inline || is_flex_item);
  1928. break;
  1929. case Display::TableCell:
  1930. order = RenderOrder::TableCell;
  1931. render_as_atomic_unit = true;
  1932. break;
  1933. case Display::TableRow:
  1934. case Display::TableRowGroup:
  1935. case Display::TableColumn:
  1936. case Display::TableColumnGroup:
  1937. case Display::None: RMLUI_ERROR; break; // Handled above.
  1938. }
  1939. }
  1940. if (is_non_dom_element)
  1941. render_as_atomic_unit = true;
  1942. stacking_children.push_back(StackingContextChild{this, order});
  1943. if (include_children && !children.empty())
  1944. {
  1945. const size_t index_child_begin = stacking_children.size();
  1946. AddChildrenToStackingContext(stacking_children);
  1947. if (render_as_atomic_unit)
  1948. StackingContext_MakeAtomicRange(stacking_children, index_child_begin, order);
  1949. }
  1950. }
  1951. void Element::DirtyStackingContext()
  1952. {
  1953. // Find the first ancestor that has a local stacking context, that is our stacking context parent.
  1954. Element* stacking_context_parent = this;
  1955. while (stacking_context_parent && !stacking_context_parent->local_stacking_context)
  1956. {
  1957. stacking_context_parent = stacking_context_parent->GetParentNode();
  1958. }
  1959. if (stacking_context_parent)
  1960. stacking_context_parent->stacking_context_dirty = true;
  1961. }
  1962. void Element::DirtyDefinition(DirtyNodes dirty_nodes)
  1963. {
  1964. switch (dirty_nodes)
  1965. {
  1966. case DirtyNodes::Self: dirty_definition = true; break;
  1967. case DirtyNodes::SelfAndSiblings:
  1968. dirty_definition = true;
  1969. if (parent)
  1970. parent->dirty_child_definitions = true;
  1971. break;
  1972. }
  1973. }
  1974. void Element::UpdateDefinition()
  1975. {
  1976. if (dirty_definition)
  1977. {
  1978. dirty_definition = false;
  1979. // Dirty definition implies all our descendent elements. Anything that can change the definition of this element can also change the
  1980. // definition of any descendants due to the presence of RCSS descendant or child combinators. In principle this also applies to sibling
  1981. // combinators, but those are handled during the DirtyDefinition call.
  1982. dirty_child_definitions = true;
  1983. GetStyle()->UpdateDefinition();
  1984. }
  1985. if (dirty_child_definitions)
  1986. {
  1987. dirty_child_definitions = false;
  1988. for (const ElementPtr& child : children)
  1989. child->dirty_definition = true;
  1990. }
  1991. }
  1992. bool Element::Animate(const String& property_name, const Property& target_value, float duration, Tween tween, int num_iterations,
  1993. bool alternate_direction, float delay, const Property* start_value)
  1994. {
  1995. bool result = false;
  1996. PropertyId property_id = StyleSheetSpecification::GetPropertyId(property_name);
  1997. auto it_animation = StartAnimation(property_id, start_value, num_iterations, alternate_direction, delay, false);
  1998. if (it_animation != animations.end())
  1999. {
  2000. result = it_animation->AddKey(duration, target_value, *this, tween, true);
  2001. if (!result)
  2002. animations.erase(it_animation);
  2003. }
  2004. return result;
  2005. }
  2006. bool Element::AddAnimationKey(const String& property_name, const Property& target_value, float duration, Tween tween)
  2007. {
  2008. ElementAnimation* animation = nullptr;
  2009. PropertyId property_id = StyleSheetSpecification::GetPropertyId(property_name);
  2010. for (auto& existing_animation : animations)
  2011. {
  2012. if (existing_animation.GetPropertyId() == property_id)
  2013. {
  2014. animation = &existing_animation;
  2015. break;
  2016. }
  2017. }
  2018. if (!animation)
  2019. return false;
  2020. bool result = animation->AddKey(animation->GetDuration() + duration, target_value, *this, tween, true);
  2021. return result;
  2022. }
  2023. ElementAnimationList::iterator Element::StartAnimation(PropertyId property_id, const Property* start_value, int num_iterations,
  2024. bool alternate_direction, float delay, bool initiated_by_animation_property)
  2025. {
  2026. auto it = std::find_if(animations.begin(), animations.end(), [&](const ElementAnimation& el) { return el.GetPropertyId() == property_id; });
  2027. if (it != animations.end())
  2028. {
  2029. const bool allow_overwriting_animation = !initiated_by_animation_property;
  2030. if (!allow_overwriting_animation)
  2031. {
  2032. Log::Message(Log::LT_WARNING,
  2033. "Could not animate property '%s' on element: %s. "
  2034. "Please ensure that the property does not appear in multiple animations on the same element.",
  2035. StyleSheetSpecification::GetPropertyName(property_id).c_str(), GetAddress().c_str());
  2036. return it;
  2037. }
  2038. *it = ElementAnimation{};
  2039. }
  2040. else
  2041. {
  2042. animations.emplace_back();
  2043. it = animations.end() - 1;
  2044. }
  2045. Property value;
  2046. if (start_value)
  2047. {
  2048. value = *start_value;
  2049. if (!value.definition)
  2050. if (auto default_value = GetProperty(property_id))
  2051. value.definition = default_value->definition;
  2052. }
  2053. else if (auto default_value = GetProperty(property_id))
  2054. {
  2055. value = *default_value;
  2056. }
  2057. if (value.definition)
  2058. {
  2059. ElementAnimationOrigin origin = (initiated_by_animation_property ? ElementAnimationOrigin::Animation : ElementAnimationOrigin::User);
  2060. double start_time = Clock::GetElapsedTime() + (double)delay;
  2061. *it = ElementAnimation{property_id, origin, value, *this, start_time, 0.0f, num_iterations, alternate_direction};
  2062. }
  2063. if (!it->IsInitalized())
  2064. {
  2065. animations.erase(it);
  2066. it = animations.end();
  2067. }
  2068. return it;
  2069. }
  2070. bool Element::AddAnimationKeyTime(PropertyId property_id, const Property* target_value, float time, Tween tween)
  2071. {
  2072. if (!target_value)
  2073. target_value = meta->style.GetProperty(property_id);
  2074. if (!target_value)
  2075. return false;
  2076. ElementAnimation* animation = nullptr;
  2077. for (auto& existing_animation : animations)
  2078. {
  2079. if (existing_animation.GetPropertyId() == property_id)
  2080. {
  2081. animation = &existing_animation;
  2082. break;
  2083. }
  2084. }
  2085. if (!animation)
  2086. return false;
  2087. bool result = animation->AddKey(time, *target_value, *this, tween, true);
  2088. return result;
  2089. }
  2090. bool Element::StartTransition(const Transition& transition, const Property& start_value, const Property& target_value)
  2091. {
  2092. auto it = std::find_if(animations.begin(), animations.end(), [&](const ElementAnimation& el) { return el.GetPropertyId() == transition.id; });
  2093. if (it != animations.end() && !it->IsTransition())
  2094. return false;
  2095. float duration = transition.duration;
  2096. double start_time = Clock::GetElapsedTime() + (double)transition.delay;
  2097. if (it == animations.end())
  2098. {
  2099. // Add transition as new animation
  2100. animations.push_back(ElementAnimation{transition.id, ElementAnimationOrigin::Transition, start_value, *this, start_time, 0.0f, 1, false});
  2101. it = (animations.end() - 1);
  2102. }
  2103. else
  2104. {
  2105. // Compress the duration based on the progress of the current animation
  2106. float f = it->GetInterpolationFactor();
  2107. f = 1.0f - (1.0f - f) * transition.reverse_adjustment_factor;
  2108. duration = duration * f;
  2109. // Replace old transition
  2110. *it = ElementAnimation{transition.id, ElementAnimationOrigin::Transition, start_value, *this, start_time, 0.0f, 1, false};
  2111. }
  2112. bool result = it->AddKey(duration, target_value, *this, transition.tween, true);
  2113. if (result)
  2114. SetProperty(transition.id, start_value);
  2115. else
  2116. animations.erase(it);
  2117. return result;
  2118. }
  2119. void Element::HandleTransitionProperty()
  2120. {
  2121. if (dirty_transition)
  2122. {
  2123. dirty_transition = false;
  2124. // Remove all transitions that are no longer in our local list
  2125. const TransitionList* keep_transitions = GetComputedValues().transition();
  2126. if (keep_transitions && keep_transitions->all)
  2127. return;
  2128. auto it_remove = animations.end();
  2129. if (!keep_transitions || keep_transitions->none)
  2130. {
  2131. // All transitions should be removed, but only touch the animations that originate from the 'transition' property.
  2132. // Move all animations to be erased in a valid state at the end of the list, and erase later.
  2133. it_remove = std::partition(animations.begin(), animations.end(),
  2134. [](const ElementAnimation& animation) -> bool { return !animation.IsTransition(); });
  2135. }
  2136. else
  2137. {
  2138. RMLUI_ASSERT(keep_transitions);
  2139. // Only remove the transitions that are not in our keep list.
  2140. const auto& keep_transitions_list = keep_transitions->transitions;
  2141. it_remove = std::partition(animations.begin(), animations.end(), [&keep_transitions_list](const ElementAnimation& animation) -> bool {
  2142. if (!animation.IsTransition())
  2143. return true;
  2144. auto it = std::find_if(keep_transitions_list.begin(), keep_transitions_list.end(),
  2145. [&animation](const Transition& transition) { return animation.GetPropertyId() == transition.id; });
  2146. bool keep_animation = (it != keep_transitions_list.end());
  2147. return keep_animation;
  2148. });
  2149. }
  2150. // We can decide what to do with cancelled transitions here.
  2151. for (auto it = it_remove; it != animations.end(); ++it)
  2152. RemoveProperty(it->GetPropertyId());
  2153. animations.erase(it_remove, animations.end());
  2154. }
  2155. }
  2156. void Element::HandleAnimationProperty()
  2157. {
  2158. // Note: We are effectively restarting all animations whenever 'dirty_animation' is set. Use the dirty flag with care,
  2159. // or find another approach which only updates actual "dirty" animations.
  2160. if (dirty_animation)
  2161. {
  2162. dirty_animation = false;
  2163. const AnimationList* animation_list = meta->computed_values.animation();
  2164. bool element_has_animations = ((animation_list && !animation_list->empty()) || !animations.empty());
  2165. const StyleSheet* stylesheet = nullptr;
  2166. if (element_has_animations)
  2167. stylesheet = GetStyleSheet();
  2168. if (stylesheet)
  2169. {
  2170. // Remove existing animations
  2171. {
  2172. // We only touch the animations that originate from the 'animation' property.
  2173. auto it_remove = std::partition(animations.begin(), animations.end(),
  2174. [](const ElementAnimation& animation) { return animation.GetOrigin() != ElementAnimationOrigin::Animation; });
  2175. // We can decide what to do with cancelled animations here.
  2176. for (auto it = it_remove; it != animations.end(); ++it)
  2177. RemoveProperty(it->GetPropertyId());
  2178. animations.erase(it_remove, animations.end());
  2179. }
  2180. // Start animations
  2181. if (animation_list)
  2182. {
  2183. for (const auto& animation : *animation_list)
  2184. {
  2185. const Keyframes* keyframes_ptr = stylesheet->GetKeyframes(animation.name);
  2186. if (keyframes_ptr && keyframes_ptr->blocks.size() >= 1 && !animation.paused)
  2187. {
  2188. auto& property_ids = keyframes_ptr->property_ids;
  2189. auto& blocks = keyframes_ptr->blocks;
  2190. bool has_from_key = (blocks[0].normalized_time == 0);
  2191. bool has_to_key = (blocks.back().normalized_time == 1);
  2192. // If the first key defines initial conditions for a given property, use those values, else, use this element's current
  2193. // values.
  2194. for (PropertyId id : property_ids)
  2195. StartAnimation(id, (has_from_key ? blocks[0].properties.GetProperty(id) : nullptr), animation.num_iterations,
  2196. animation.alternate, animation.delay, true);
  2197. // Add middle keys: Need to skip the first and last keys if they set the initial and end conditions, respectively.
  2198. for (int i = (has_from_key ? 1 : 0); i < (int)blocks.size() + (has_to_key ? -1 : 0); i++)
  2199. {
  2200. // Add properties of current key to animation
  2201. float time = blocks[i].normalized_time * animation.duration;
  2202. for (auto& property : blocks[i].properties.GetProperties())
  2203. AddAnimationKeyTime(property.first, &property.second, time, animation.tween);
  2204. }
  2205. // If the last key defines end conditions for a given property, use those values, else, use this element's current values.
  2206. float time = animation.duration;
  2207. for (PropertyId id : property_ids)
  2208. AddAnimationKeyTime(id, (has_to_key ? blocks.back().properties.GetProperty(id) : nullptr), time, animation.tween);
  2209. }
  2210. }
  2211. }
  2212. }
  2213. }
  2214. }
  2215. void Element::AdvanceAnimations()
  2216. {
  2217. if (!animations.empty())
  2218. {
  2219. double time = Clock::GetElapsedTime();
  2220. for (auto& animation : animations)
  2221. {
  2222. Property property = animation.UpdateAndGetProperty(time, *this);
  2223. if (property.unit != Unit::UNKNOWN)
  2224. SetProperty(animation.GetPropertyId(), property);
  2225. }
  2226. // Move all completed animations to the end of the list
  2227. auto it_completed =
  2228. std::partition(animations.begin(), animations.end(), [](const ElementAnimation& animation) { return !animation.IsComplete(); });
  2229. Vector<Dictionary> dictionary_list;
  2230. Vector<bool> is_transition;
  2231. dictionary_list.reserve(animations.end() - it_completed);
  2232. is_transition.reserve(animations.end() - it_completed);
  2233. for (auto it = it_completed; it != animations.end(); ++it)
  2234. {
  2235. const String& property_name = StyleSheetSpecification::GetPropertyName(it->GetPropertyId());
  2236. dictionary_list.emplace_back();
  2237. dictionary_list.back().emplace("property", Variant(property_name));
  2238. is_transition.push_back(it->IsTransition());
  2239. // Remove completed transition- and animation-initiated properties.
  2240. // Should behave like in HandleTransitionProperty() and HandleAnimationProperty() respectively.
  2241. if (it->GetOrigin() != ElementAnimationOrigin::User)
  2242. RemoveProperty(it->GetPropertyId());
  2243. }
  2244. // Need to erase elements before submitting event, as iterators might be invalidated when calling external code.
  2245. animations.erase(it_completed, animations.end());
  2246. for (size_t i = 0; i < dictionary_list.size(); i++)
  2247. DispatchEvent(is_transition[i] ? EventId::Transitionend : EventId::Animationend, dictionary_list[i]);
  2248. }
  2249. }
  2250. void Element::DirtyTransformState(bool perspective_dirty, bool transform_dirty)
  2251. {
  2252. dirty_perspective |= perspective_dirty;
  2253. dirty_transform |= transform_dirty;
  2254. }
  2255. void Element::UpdateTransformState()
  2256. {
  2257. if (!dirty_perspective && !dirty_transform)
  2258. return;
  2259. const ComputedValues& computed = meta->computed_values;
  2260. const Vector2f pos = GetAbsoluteOffset(BoxArea::Border);
  2261. const Vector2f size = GetBox().GetSize(BoxArea::Border);
  2262. bool perspective_or_transform_changed = false;
  2263. if (dirty_perspective)
  2264. {
  2265. // If perspective is set on this element, then it applies to our children. We just calculate it here,
  2266. // and let the children's transform update merge it with their transform.
  2267. bool had_perspective = (transform_state && transform_state->GetLocalPerspective());
  2268. float distance = computed.perspective();
  2269. Vector2f vanish = Vector2f(pos.x + size.x * 0.5f, pos.y + size.y * 0.5f);
  2270. bool have_perspective = false;
  2271. if (distance > 0.0f)
  2272. {
  2273. have_perspective = true;
  2274. // Compute the vanishing point from the perspective origin
  2275. if (computed.perspective_origin_x().type == Style::PerspectiveOrigin::Percentage)
  2276. vanish.x = pos.x + computed.perspective_origin_x().value * 0.01f * size.x;
  2277. else
  2278. vanish.x = pos.x + computed.perspective_origin_x().value;
  2279. if (computed.perspective_origin_y().type == Style::PerspectiveOrigin::Percentage)
  2280. vanish.y = pos.y + computed.perspective_origin_y().value * 0.01f * size.y;
  2281. else
  2282. vanish.y = pos.y + computed.perspective_origin_y().value;
  2283. }
  2284. if (have_perspective)
  2285. {
  2286. // Equivalent to: Translate(x,y,0) * Perspective(distance) * Translate(-x,-y,0)
  2287. Matrix4f perspective = Matrix4f::FromRows( //
  2288. {1, 0, -vanish.x / distance, 0}, //
  2289. {0, 1, -vanish.y / distance, 0}, //
  2290. {0, 0, 1, 0}, //
  2291. {0, 0, -1 / distance, 1} //
  2292. );
  2293. if (!transform_state)
  2294. transform_state = MakeUnique<TransformState>();
  2295. perspective_or_transform_changed |= transform_state->SetLocalPerspective(&perspective);
  2296. }
  2297. else if (transform_state)
  2298. transform_state->SetLocalPerspective(nullptr);
  2299. perspective_or_transform_changed |= (have_perspective != had_perspective);
  2300. dirty_perspective = false;
  2301. }
  2302. if (dirty_transform)
  2303. {
  2304. // We want to find the accumulated transform given all our ancestors. It is assumed here that the parent transform is already updated,
  2305. // so that we only need to consider our local transform and combine it with our parent's transform and perspective matrices.
  2306. bool had_transform = (transform_state && transform_state->GetTransform());
  2307. bool have_transform = false;
  2308. Matrix4f transform = Matrix4f::Identity();
  2309. if (TransformPtr transform_ptr = computed.transform())
  2310. {
  2311. // First find the current element's transform
  2312. const int n = transform_ptr->GetNumPrimitives();
  2313. for (int i = 0; i < n; ++i)
  2314. {
  2315. const TransformPrimitive& primitive = transform_ptr->GetPrimitive(i);
  2316. Matrix4f matrix = TransformUtilities::ResolveTransform(primitive, *this);
  2317. transform *= matrix;
  2318. have_transform = true;
  2319. }
  2320. if (have_transform)
  2321. {
  2322. // Compute the transform origin
  2323. Vector3f transform_origin(pos.x + size.x * 0.5f, pos.y + size.y * 0.5f, 0);
  2324. if (computed.transform_origin_x().type == Style::TransformOrigin::Percentage)
  2325. transform_origin.x = pos.x + computed.transform_origin_x().value * size.x * 0.01f;
  2326. else
  2327. transform_origin.x = pos.x + computed.transform_origin_x().value;
  2328. if (computed.transform_origin_y().type == Style::TransformOrigin::Percentage)
  2329. transform_origin.y = pos.y + computed.transform_origin_y().value * size.y * 0.01f;
  2330. else
  2331. transform_origin.y = pos.y + computed.transform_origin_y().value;
  2332. transform_origin.z = computed.transform_origin_z();
  2333. // Make the transformation apply relative to the transform origin
  2334. transform = Matrix4f::Translate(transform_origin) * transform * Matrix4f::Translate(-transform_origin);
  2335. }
  2336. // We may want to include the local offsets here, as suggested by the CSS specs, so that the local transform is applied after the offset I
  2337. // believe the motivation is. Then we would need to subtract the absolute zero-offsets during geometry submit whenever we have transforms.
  2338. }
  2339. if (parent && parent->transform_state)
  2340. {
  2341. // Apply the parent's local perspective and transform.
  2342. // @performance: If we have no local transform and no parent perspective, we can effectively just point to the parent transform instead of
  2343. // copying it.
  2344. const TransformState& parent_state = *parent->transform_state;
  2345. if (auto parent_perspective = parent_state.GetLocalPerspective())
  2346. {
  2347. transform = *parent_perspective * transform;
  2348. have_transform = true;
  2349. }
  2350. if (auto parent_transform = parent_state.GetTransform())
  2351. {
  2352. transform = *parent_transform * transform;
  2353. have_transform = true;
  2354. }
  2355. }
  2356. if (have_transform)
  2357. {
  2358. if (!transform_state)
  2359. transform_state = MakeUnique<TransformState>();
  2360. perspective_or_transform_changed |= transform_state->SetTransform(&transform);
  2361. }
  2362. else if (transform_state)
  2363. transform_state->SetTransform(nullptr);
  2364. perspective_or_transform_changed |= (had_transform != have_transform);
  2365. }
  2366. // A change in perspective or transform will require an update to children transforms as well.
  2367. if (perspective_or_transform_changed)
  2368. {
  2369. for (size_t i = 0; i < children.size(); i++)
  2370. children[i]->DirtyTransformState(false, true);
  2371. }
  2372. // No reason to keep the transform state around if transform and perspective have been removed.
  2373. if (transform_state && !transform_state->GetTransform() && !transform_state->GetLocalPerspective())
  2374. {
  2375. transform_state.reset();
  2376. }
  2377. }
  2378. void Element::OnStyleSheetChangeRecursive()
  2379. {
  2380. meta->effects.DirtyEffects();
  2381. OnStyleSheetChange();
  2382. // Now dirty all of our descendants.
  2383. const int num_children = GetNumChildren(true);
  2384. for (int i = 0; i < num_children; ++i)
  2385. GetChild(i)->OnStyleSheetChangeRecursive();
  2386. }
  2387. void Element::OnDpRatioChangeRecursive()
  2388. {
  2389. meta->effects.DirtyEffects();
  2390. GetStyle()->DirtyPropertiesWithUnits(Unit::DP_SCALABLE_LENGTH);
  2391. OnDpRatioChange();
  2392. // Now dirty all of our descendants.
  2393. const int num_children = GetNumChildren(true);
  2394. for (int i = 0; i < num_children; ++i)
  2395. GetChild(i)->OnDpRatioChangeRecursive();
  2396. }
  2397. void Element::DirtyFontFaceRecursive()
  2398. {
  2399. // Dirty the font size to force the element to update the face handle during the next Update(), and update any existing text geometry.
  2400. meta->style.DirtyProperty(PropertyId::FontSize);
  2401. meta->computed_values.font_face_handle(0);
  2402. const int num_children = GetNumChildren(true);
  2403. for (int i = 0; i < num_children; ++i)
  2404. GetChild(i)->DirtyFontFaceRecursive();
  2405. }
  2406. } // namespace Rml