Element.cpp 86 KB

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