Element.cpp 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691
  1. /*
  2. * This source file is part of libRocket, the HTML/CSS Interface Middleware
  3. *
  4. * For the latest information, see http://www.librocket.com
  5. *
  6. * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. *
  26. */
  27. #include "precompiled.h"
  28. #include "../../Include/Rocket/Core/Element.h"
  29. #include "../../Include/Rocket/Core/Dictionary.h"
  30. #include "../../Include/Rocket/Core/TransformPrimitive.h"
  31. #include <algorithm>
  32. #include <limits>
  33. #include "Clock.h"
  34. #include "ElementAnimation.h"
  35. #include "ElementBackground.h"
  36. #include "ElementBorder.h"
  37. #include "ElementDefinition.h"
  38. #include "ElementStyle.h"
  39. #include "EventDispatcher.h"
  40. #include "ElementDecoration.h"
  41. #include "FontFaceHandle.h"
  42. #include "LayoutEngine.h"
  43. #include "PluginRegistry.h"
  44. #include "Pool.h"
  45. #include "StyleSheetParser.h"
  46. #include "XMLParseTools.h"
  47. #include "../../Include/Rocket/Core/Core.h"
  48. namespace Rocket {
  49. namespace Core {
  50. /**
  51. STL function object for sorting elements by z-type (ie, float-types before general types, etc).
  52. @author Peter Curry
  53. */
  54. class ElementSortZOrder
  55. {
  56. public:
  57. bool operator()(const std::pair< Element*, float >& lhs, const std::pair< Element*, float >& rhs) const
  58. {
  59. return lhs.second < rhs.second;
  60. }
  61. };
  62. /**
  63. STL function object for sorting elements by z-index property.
  64. @author Peter Curry
  65. */
  66. class ElementSortZIndex
  67. {
  68. public:
  69. bool operator()(const Element* lhs, const Element* rhs) const
  70. {
  71. // Check the z-index.
  72. return lhs->GetZIndex() < rhs->GetZIndex();
  73. }
  74. };
  75. // Determines how many levels up in the hierarchy the OnChildAdd and OnChildRemove are called (starting at the child itself)
  76. static constexpr int ChildNotifyLevels = 2;
  77. struct ElementMetaChunk;
  78. static Pool< ElementMetaChunk > element_meta_chunk_pool(200, true);
  79. // Meta objects for element collected in a single struct to reduce memory allocations
  80. struct ElementMeta
  81. {
  82. ElementMeta(Element* el) : event_dispatcher(el), style(el), background(el), border(el), decoration(el), scroll(el) {}
  83. EventDispatcher event_dispatcher;
  84. ElementStyle style;
  85. ElementBackground background;
  86. ElementBorder border;
  87. ElementDecoration decoration;
  88. ElementScroll scroll;
  89. Style::ComputedValues computed_values;
  90. void* operator new(size_t size)
  91. {
  92. void* memory = element_meta_chunk_pool.AllocateObject();
  93. return memory;
  94. }
  95. void operator delete(void* chunk)
  96. {
  97. element_meta_chunk_pool.DeallocateObject((ElementMetaChunk*)chunk);
  98. }
  99. };
  100. struct alignas(ElementMeta) ElementMetaChunk
  101. {
  102. ElementMetaChunk() { memset(buffer, 0, size); }
  103. static constexpr size_t size = sizeof(ElementMeta);
  104. char buffer[size];
  105. };
  106. /// Constructs a new libRocket element.
  107. Element::Element(const String& tag) : tag(tag), relative_offset_base(0, 0), relative_offset_position(0, 0), absolute_offset(0, 0), scroll_offset(0, 0), content_offset(0, 0), content_box(0, 0),
  108. transform_state(), transform_state_perspective_dirty(true), transform_state_transform_dirty(true), transform_state_parent_transform_dirty(true), dirty_animation(false)
  109. {
  110. ROCKET_ASSERT(tag == ToLower(tag));
  111. parent = NULL;
  112. focus = NULL;
  113. instancer = NULL;
  114. owner_document = NULL;
  115. offset_fixed = false;
  116. offset_parent = NULL;
  117. offset_dirty = true;
  118. client_area = Box::PADDING;
  119. num_non_dom_children = 0;
  120. visible = true;
  121. z_index = 0;
  122. local_stacking_context = false;
  123. local_stacking_context_forced = false;
  124. stacking_context_dirty = false;
  125. structure_dirty = false;
  126. parent_structure_dirty = false;
  127. computed_values_are_default_initialized = true;
  128. box_dirty = false;
  129. font_face_handle = NULL;
  130. clipping_ignore_depth = 0;
  131. clipping_enabled = false;
  132. clipping_state_dirty = true;
  133. element_meta = new ElementMeta(this);
  134. event_dispatcher = &element_meta->event_dispatcher;
  135. style = &element_meta->style;
  136. background = &element_meta->background;
  137. border = &element_meta->border;
  138. decoration = &element_meta->decoration;
  139. scroll = &element_meta->scroll;
  140. }
  141. Element::~Element()
  142. {
  143. ROCKET_ASSERT(parent == NULL);
  144. PluginRegistry::NotifyElementDestroy(this);
  145. // Remove scrollbar elements before we delete the children!
  146. scroll->ClearScrollbars();
  147. while (!children.empty())
  148. {
  149. // A simplified version of RemoveChild() for destruction.
  150. Element* child = children.front();
  151. Element* ancestor = child;
  152. for (int i = 0; i <= ChildNotifyLevels && ancestor; i++, ancestor = ancestor->GetParentNode())
  153. ancestor->OnChildRemove(child);
  154. if (num_non_dom_children > 0)
  155. num_non_dom_children--;
  156. deleted_children.push_back(child);
  157. children.erase(children.begin());
  158. }
  159. // Release all deleted children.
  160. ReleaseElements(deleted_children);
  161. delete element_meta;
  162. if (font_face_handle != NULL)
  163. font_face_handle->RemoveReference();
  164. if (instancer)
  165. instancer->RemoveReference();
  166. }
  167. void Element::Update()
  168. {
  169. ReleaseElements(deleted_children);
  170. active_children = children;
  171. OnUpdate();
  172. UpdateStructure();
  173. style->UpdateDefinition();
  174. scroll->Update();
  175. UpdateAnimation();
  176. AdvanceAnimations();
  177. {
  178. using namespace Style;
  179. const ComputedValues* parent_values = (parent ? &parent->GetComputedValues() : nullptr);
  180. float dp_ratio = 1.0f;
  181. const ComputedValues* document_values = nullptr;
  182. if (auto doc = GetOwnerDocument())
  183. {
  184. document_values = &doc->GetComputedValues();
  185. if (auto context = doc->GetContext())
  186. dp_ratio = context->GetDensityIndependentPixelRatio();
  187. }
  188. auto dirty_properties = style->ComputeValues(element_meta->computed_values, parent_values, document_values, computed_values_are_default_initialized, dp_ratio);
  189. computed_values_are_default_initialized = false;
  190. // Computed values are calculated before OnPropertyChange in UpdateDirtyProperties, thus these can safely be used.
  191. // However, new properties set during this call will not be available until the next update loop.
  192. // Enable ROCKET_DEBUG to get a warning when this happens.
  193. UpdateDirtyProperties(dirty_properties);
  194. }
  195. if (box_dirty)
  196. {
  197. box_dirty = false;
  198. OnResize();
  199. }
  200. UpdateTransformState();
  201. for (size_t i = 0; i < active_children.size(); i++)
  202. active_children[i]->Update();
  203. }
  204. void Element::Render()
  205. {
  206. // Rebuild our stacking context if necessary.
  207. if (stacking_context_dirty)
  208. BuildLocalStackingContext();
  209. // Apply our transform
  210. ElementUtilities::ApplyTransform(*this);
  211. // Render all elements in our local stacking context that have a z-index beneath our local index of 0.
  212. size_t i = 0;
  213. for (; i < stacking_context.size() && stacking_context[i]->z_index < 0; ++i)
  214. stacking_context[i]->Render();
  215. // Set up the clipping region for this element.
  216. if (ElementUtilities::SetClippingRegion(this))
  217. {
  218. background->RenderBackground();
  219. border->RenderBorder();
  220. decoration->RenderDecorators();
  221. OnRender();
  222. }
  223. // Render the rest of the elements in the stacking context.
  224. for (; i < stacking_context.size(); ++i)
  225. stacking_context[i]->Render();
  226. // Unapply our transform
  227. ElementUtilities::UnapplyTransform(*this);
  228. }
  229. // Clones this element, returning a new, unparented element.
  230. Element* Element::Clone() const
  231. {
  232. Element* clone = NULL;
  233. if (instancer != NULL)
  234. {
  235. clone = instancer->InstanceElement(NULL, GetTagName(), attributes);
  236. if (clone != NULL)
  237. clone->SetInstancer(instancer);
  238. }
  239. else
  240. clone = Factory::InstanceElement(NULL, GetTagName(), GetTagName(), attributes);
  241. if (clone != NULL)
  242. {
  243. String inner_rml;
  244. GetInnerRML(inner_rml);
  245. clone->SetInnerRML(inner_rml);
  246. }
  247. return clone;
  248. }
  249. // Sets or removes a class on the element.
  250. void Element::SetClass(const String& class_name, bool activate)
  251. {
  252. style->SetClass(class_name, activate);
  253. }
  254. // Checks if a class is set on the element.
  255. bool Element::IsClassSet(const String& class_name) const
  256. {
  257. return style->IsClassSet(class_name);
  258. }
  259. // Specifies the entire list of classes for this element. This will replace any others specified.
  260. void Element::SetClassNames(const String& class_names)
  261. {
  262. SetAttribute("class", class_names);
  263. }
  264. /// Return the active class list
  265. String Element::GetClassNames() const
  266. {
  267. return style->GetClassNames();
  268. }
  269. // Returns the active style sheet for this element. This may be NULL.
  270. StyleSheet* Element::GetStyleSheet() const
  271. {
  272. return style->GetStyleSheet();
  273. }
  274. // Returns the element's definition, updating if necessary.
  275. const ElementDefinition* Element::GetDefinition()
  276. {
  277. return style->GetDefinition();
  278. }
  279. // Fills an String with the full address of this element.
  280. String Element::GetAddress(bool include_pseudo_classes) const
  281. {
  282. // Add the tag name onto the address.
  283. String address(tag);
  284. // Add the ID if we have one.
  285. if (!id.empty())
  286. {
  287. address += "#";
  288. address += id;
  289. }
  290. String classes = style->GetClassNames();
  291. if (!classes.empty())
  292. {
  293. classes = Replace(classes, ".", " ");
  294. address += ".";
  295. address += classes;
  296. }
  297. if (include_pseudo_classes)
  298. {
  299. const PseudoClassList& pseudo_classes = style->GetActivePseudoClasses();
  300. for (PseudoClassList::const_iterator i = pseudo_classes.begin(); i != pseudo_classes.end(); ++i)
  301. {
  302. address += ":";
  303. address += (*i);
  304. }
  305. }
  306. if (parent)
  307. {
  308. address += " < ";
  309. return address + parent->GetAddress(true);
  310. }
  311. else
  312. return address;
  313. }
  314. // Sets the position of this element, as a two-dimensional offset from another element.
  315. void Element::SetOffset(const Vector2f& offset, Element* _offset_parent, bool _offset_fixed)
  316. {
  317. _offset_fixed |= GetPosition() == Style::Position::Fixed;
  318. // If our offset has definitely changed, or any of our parenting has, then these are set and
  319. // updated based on our left / right / top / bottom properties.
  320. if (relative_offset_base != offset ||
  321. offset_parent != _offset_parent ||
  322. offset_fixed != _offset_fixed)
  323. {
  324. relative_offset_base = offset;
  325. offset_fixed = _offset_fixed;
  326. offset_parent = _offset_parent;
  327. UpdateOffset();
  328. DirtyOffset();
  329. }
  330. // Otherwise, our offset is updated in case left / right / top / bottom will have an impact on
  331. // our final position, and our children are dirtied if they do.
  332. else
  333. {
  334. Vector2f& old_base = relative_offset_base;
  335. Vector2f& old_position = relative_offset_position;
  336. UpdateOffset();
  337. if (old_base != relative_offset_base ||
  338. old_position != relative_offset_position)
  339. DirtyOffset();
  340. }
  341. }
  342. // Returns the position of the top-left corner of one of the areas of this element's primary box.
  343. Vector2f Element::GetRelativeOffset(Box::Area area)
  344. {
  345. return relative_offset_base + relative_offset_position + GetBox().GetPosition(area);
  346. }
  347. // Returns the position of the top-left corner of one of the areas of this element's primary box.
  348. Vector2f Element::GetAbsoluteOffset(Box::Area area)
  349. {
  350. if (offset_dirty)
  351. {
  352. offset_dirty = false;
  353. if (offset_parent != NULL)
  354. absolute_offset = offset_parent->GetAbsoluteOffset(Box::BORDER) + relative_offset_base + relative_offset_position;
  355. else
  356. absolute_offset = relative_offset_base + relative_offset_position;
  357. // Add any parent scrolling onto our position as well. Could cache this if required.
  358. if (!offset_fixed)
  359. {
  360. Element* scroll_parent = parent;
  361. while (scroll_parent != NULL)
  362. {
  363. absolute_offset -= (scroll_parent->scroll_offset + scroll_parent->content_offset);
  364. if (scroll_parent == offset_parent)
  365. break;
  366. else
  367. scroll_parent = scroll_parent->parent;
  368. }
  369. }
  370. }
  371. return absolute_offset + GetBox().GetPosition(area);
  372. }
  373. // Sets an alternate area to use as the client area.
  374. void Element::SetClientArea(Box::Area _client_area)
  375. {
  376. client_area = _client_area;
  377. }
  378. // Returns the area the element uses as its client area.
  379. Box::Area Element::GetClientArea() const
  380. {
  381. return client_area;
  382. }
  383. // Sets the dimensions of the element's internal content.
  384. void Element::SetContentBox(const Vector2f& _content_offset, const Vector2f& _content_box)
  385. {
  386. if (content_offset != _content_offset ||
  387. content_box != _content_box)
  388. {
  389. // Seems to be jittering a wee bit; might need to be looked at.
  390. scroll_offset.x += (content_offset.x - _content_offset.x);
  391. scroll_offset.y += (content_offset.y - _content_offset.y);
  392. content_offset = _content_offset;
  393. content_box = _content_box;
  394. scroll_offset.x = Math::Min(scroll_offset.x, GetScrollWidth() - GetClientWidth());
  395. scroll_offset.y = Math::Min(scroll_offset.y, GetScrollHeight() - GetClientHeight());
  396. DirtyOffset();
  397. }
  398. }
  399. // Sets the box describing the size of the element.
  400. void Element::SetBox(const Box& box)
  401. {
  402. if (box != main_box || additional_boxes.size() > 0)
  403. {
  404. main_box = box;
  405. additional_boxes.clear();
  406. box_dirty = true;
  407. background->DirtyBackground();
  408. border->DirtyBorder();
  409. decoration->DirtyDecorators(true);
  410. }
  411. }
  412. // Adds a box to the end of the list describing this element's geometry.
  413. void Element::AddBox(const Box& box)
  414. {
  415. additional_boxes.push_back(box);
  416. box_dirty = true;
  417. background->DirtyBackground();
  418. border->DirtyBorder();
  419. decoration->DirtyDecorators(true);
  420. }
  421. // Returns one of the boxes describing the size of the element.
  422. const Box& Element::GetBox()
  423. {
  424. return main_box;
  425. }
  426. // Returns one of the boxes describing the size of the element.
  427. const Box& Element::GetBox(int index)
  428. {
  429. if (index < 1)
  430. return main_box;
  431. int additional_box_index = index - 1;
  432. if (additional_box_index >= (int)additional_boxes.size())
  433. return main_box;
  434. return additional_boxes[additional_box_index];
  435. }
  436. // Returns the number of boxes making up this element's geometry.
  437. int Element::GetNumBoxes()
  438. {
  439. return 1 + (int)additional_boxes.size();
  440. }
  441. // Returns the baseline of the element, in pixels offset from the bottom of the element's content area.
  442. float Element::GetBaseline() const
  443. {
  444. return 0;
  445. }
  446. // Gets the intrinsic dimensions of this element, if it is of a type that has an inherent size.
  447. bool Element::GetIntrinsicDimensions(Vector2f& ROCKET_UNUSED_PARAMETER(dimensions))
  448. {
  449. ROCKET_UNUSED(dimensions);
  450. return false;
  451. }
  452. // Checks if a given point in screen coordinates lies within the bordered area of this element.
  453. bool Element::IsPointWithinElement(const Vector2f& point)
  454. {
  455. Vector2f position = GetAbsoluteOffset(Box::BORDER);
  456. for (int i = 0; i < GetNumBoxes(); ++i)
  457. {
  458. const Box& box = GetBox(i);
  459. Vector2f box_position = position + box.GetOffset();
  460. Vector2f box_dimensions = box.GetSize(Box::BORDER);
  461. if (point.x >= box_position.x &&
  462. point.x <= (box_position.x + box_dimensions.x) &&
  463. point.y >= box_position.y &&
  464. point.y <= (box_position.y + box_dimensions.y))
  465. {
  466. return true;
  467. }
  468. }
  469. return false;
  470. }
  471. // Returns the visibility of the element.
  472. bool Element::IsVisible() const
  473. {
  474. return visible;
  475. }
  476. // Returns the z-index of the element.
  477. float Element::GetZIndex() const
  478. {
  479. return z_index;
  480. }
  481. // Returns the element's font face handle.
  482. FontFaceHandle* Element::GetFontFaceHandle() const
  483. {
  484. return font_face_handle;
  485. }
  486. // Sets a local property override on the element.
  487. bool Element::SetProperty(const String& name, const String& value)
  488. {
  489. return style->SetProperty(name, value);
  490. }
  491. // Removes a local property override on the element.
  492. void Element::RemoveProperty(const String& name)
  493. {
  494. style->RemoveProperty(name);
  495. }
  496. // Sets a local property override on the element to a pre-parsed value.
  497. bool Element::SetProperty(const String& name, const Property& property)
  498. {
  499. return style->SetProperty(name, property);
  500. }
  501. // Returns one of this element's properties.
  502. const Property* Element::GetProperty(const String& name)
  503. {
  504. return style->GetProperty(name);
  505. }
  506. // Returns one of this element's properties.
  507. const Property* Element::GetLocalProperty(const String& name)
  508. {
  509. return style->GetLocalProperty(name);
  510. }
  511. const PropertyMap * Element::GetLocalProperties()
  512. {
  513. return style->GetLocalProperties();
  514. }
  515. // Resolves one of this element's style.
  516. float Element::ResolveLengthPercentage(const Property *property, float base_value)
  517. {
  518. return style->ResolveLengthPercentage(property, base_value);
  519. }
  520. Vector2f Element::GetContainingBlock()
  521. {
  522. Vector2f containing_block(0, 0);
  523. if (offset_parent != NULL)
  524. {
  525. using namespace Style;
  526. Position position_property = GetPosition();
  527. const Box& parent_box = offset_parent->GetBox();
  528. if (position_property == Position::Static || position_property == Position::Relative)
  529. {
  530. containing_block = parent_box.GetSize();
  531. }
  532. else if(position_property == Position::Absolute || position_property == Position::Fixed)
  533. {
  534. containing_block = parent_box.GetSize(Box::PADDING);
  535. }
  536. }
  537. return containing_block;
  538. }
  539. Style::Position Element::GetPosition()
  540. {
  541. return element_meta->computed_values.position;
  542. }
  543. Style::Float Element::GetFloat()
  544. {
  545. return element_meta->computed_values.float_;
  546. }
  547. Style::Display Element::GetDisplay()
  548. {
  549. return element_meta->computed_values.display;
  550. }
  551. float Element::GetLineHeight()
  552. {
  553. return element_meta->computed_values.line_height.value;
  554. }
  555. // Returns this element's TransformState
  556. const TransformState *Element::GetTransformState() const noexcept
  557. {
  558. return transform_state.get();
  559. }
  560. // Returns the TransformStates that are effective for this element.
  561. void Element::GetEffectiveTransformState(
  562. const TransformState **local_perspective,
  563. const TransformState **perspective,
  564. const TransformState **transform
  565. ) noexcept
  566. {
  567. UpdateTransformState();
  568. if (local_perspective)
  569. {
  570. *local_perspective = 0;
  571. }
  572. if (perspective)
  573. {
  574. *perspective = 0;
  575. }
  576. if (transform)
  577. {
  578. *transform = 0;
  579. }
  580. Element *perspective_node = 0, *transform_node = 0;
  581. // Find the TransformState to use for unprojecting.
  582. if (transform_state.get() && transform_state->GetLocalPerspective(0))
  583. {
  584. if (local_perspective)
  585. {
  586. *local_perspective = transform_state.get();
  587. }
  588. }
  589. else
  590. {
  591. Element *node = 0;
  592. for (node = parent; node; node = node->parent)
  593. {
  594. if (node->transform_state.get() && node->transform_state->GetPerspective(0))
  595. {
  596. if (perspective)
  597. {
  598. *perspective = node->transform_state.get();
  599. }
  600. perspective_node = node;
  601. break;
  602. }
  603. }
  604. }
  605. // Find the TransformState to use for transforming.
  606. Element *node = 0;
  607. for (node = this; node; node = node->parent)
  608. {
  609. if (node->transform_state.get() && node->transform_state->GetRecursiveTransform(0))
  610. {
  611. if (transform)
  612. {
  613. *transform = node->transform_state.get();
  614. }
  615. transform_node = node;
  616. break;
  617. }
  618. }
  619. }
  620. // Project a 2D point in pixel coordinates onto the element's plane.
  621. const Vector2f Element::Project(const Vector2f& point) noexcept
  622. {
  623. UpdateTransformState();
  624. Context *context = GetContext();
  625. if (!context)
  626. {
  627. return point;
  628. }
  629. const TransformState *local_perspective, *perspective, *transform;
  630. GetEffectiveTransformState(&local_perspective, &perspective, &transform);
  631. Vector2i view_pos(0, 0);
  632. Vector2i view_size = context->GetDimensions();
  633. // Compute the line segment for ray picking, one point on the near and one on the far plane.
  634. // These need to be in clip space coordinates ([-1; 1]³) so that we an unproject them.
  635. Vector3f line_segment[2] =
  636. {
  637. // When unprojected, the intersection point on the near plane
  638. Vector3f(
  639. (point.x - view_pos.x) / (0.5f * view_size.x) - 1.0f,
  640. (view_size.y - point.y - view_pos.y) / (0.5f * view_size.y) - 1.0f,
  641. -1
  642. ),
  643. // When unprojected, the intersection point on the far plane
  644. Vector3f(
  645. (point.x - view_pos.x) / (0.5f * view_size.x) - 1.0f,
  646. (view_size.y - point.y - view_pos.y) / (0.5f * view_size.y) - 1.0f,
  647. 1
  648. )
  649. };
  650. // Find the TransformState to use for unprojecting.
  651. if (local_perspective)
  652. {
  653. TransformState::LocalPerspective the_local_perspective;
  654. local_perspective->GetLocalPerspective(&the_local_perspective);
  655. line_segment[0] = the_local_perspective.Unproject(line_segment[0]);
  656. line_segment[1] = the_local_perspective.Unproject(line_segment[1]);
  657. }
  658. else if (perspective)
  659. {
  660. TransformState::Perspective the_perspective;
  661. perspective->GetPerspective(&the_perspective);
  662. line_segment[0] = the_perspective.Unproject(line_segment[0]);
  663. line_segment[1] = the_perspective.Unproject(line_segment[1]);
  664. }
  665. else
  666. {
  667. line_segment[0] = context->GetViewState().Unproject(line_segment[0]);
  668. line_segment[1] = context->GetViewState().Unproject(line_segment[1]);
  669. }
  670. // Compute three points on the context's corners to define the element's plane.
  671. // It may seem elegant to base this computation on the element's size, but
  672. // there are elements with zero length or height.
  673. Vector3f element_rect[3] =
  674. {
  675. // Top-left corner
  676. Vector3f(0, 0, 0),
  677. // Top-right corner
  678. Vector3f((float)view_size.x, 0, 0),
  679. // Bottom-left corner
  680. Vector3f(0, (float)view_size.y, 0)
  681. };
  682. // Transform by the correct matrix
  683. if (transform)
  684. {
  685. element_rect[0] = transform->Transform(element_rect[0]);
  686. element_rect[1] = transform->Transform(element_rect[1]);
  687. element_rect[2] = transform->Transform(element_rect[2]);
  688. }
  689. Vector3f u = line_segment[0] - line_segment[1];
  690. Vector3f v = element_rect[1] - element_rect[0];
  691. Vector3f w = element_rect[2] - element_rect[0];
  692. // Now compute the intersection point of the line segment and the element's rectangle.
  693. // This is based on the algorithm discussed at Wikipedia
  694. // (http://en.wikipedia.org/wiki/Line-plane_intersection).
  695. Matrix4f A = Matrix4f::FromColumns(
  696. Vector4f(u, 0),
  697. Vector4f(v, 0),
  698. Vector4f(w, 0),
  699. Vector4f(0, 0, 0, 1)
  700. );
  701. if (A.Invert())
  702. {
  703. Vector3f factors = A * (line_segment[0] - element_rect[0]);
  704. Vector3f intersection3d = element_rect[0] + v * factors[1] + w * factors[2];
  705. Vector3f projected;
  706. if (transform)
  707. {
  708. projected = transform->Untransform(intersection3d);
  709. //ROCKET_ASSERT(fabs(projected.z) < 0.0001);
  710. }
  711. else
  712. {
  713. // FIXME: Is this correct?
  714. projected = intersection3d;
  715. }
  716. return Vector2f(projected.x, projected.y);
  717. }
  718. else
  719. {
  720. // The line segment is parallel to the element's plane.
  721. // Although, mathematically, it could also lie within the plane
  722. // (yielding infinitely many intersection points), we still
  723. // return a value that's pretty sure to not match anything,
  724. // since this case has nothing to do with the user `picking'
  725. // anything.
  726. float inf = std::numeric_limits< float >::infinity();
  727. return Vector2f(-inf, -inf);
  728. }
  729. }
  730. // Iterates over the properties defined on this element.
  731. bool Element::IterateProperties(int& index, String& name, const Property*& property, const PseudoClassList** pseudo_classes) const
  732. {
  733. return style->IterateProperties(index, name, property, pseudo_classes);
  734. }
  735. // Sets or removes a pseudo-class on the element.
  736. void Element::SetPseudoClass(const String& pseudo_class, bool activate)
  737. {
  738. style->SetPseudoClass(pseudo_class, activate);
  739. }
  740. // Checks if a specific pseudo-class has been set on the element.
  741. bool Element::IsPseudoClassSet(const String& pseudo_class) const
  742. {
  743. return style->IsPseudoClassSet(pseudo_class);
  744. }
  745. // Checks if a complete set of pseudo-classes are set on the element.
  746. bool Element::ArePseudoClassesSet(const PseudoClassList& pseudo_classes) const
  747. {
  748. for (PseudoClassList::const_iterator i = pseudo_classes.begin(); i != pseudo_classes.end(); ++i)
  749. {
  750. if (!IsPseudoClassSet(*i))
  751. return false;
  752. }
  753. return true;
  754. }
  755. // Gets a list of the current active pseudo classes
  756. const PseudoClassList& Element::GetActivePseudoClasses() const
  757. {
  758. return style->GetActivePseudoClasses();
  759. }
  760. /// Get the named attribute
  761. Variant* Element::GetAttribute(const String& name)
  762. {
  763. return GetIf(attributes, name);
  764. }
  765. // Checks if the element has a certain attribute.
  766. bool Element::HasAttribute(const String& name) const
  767. {
  768. return attributes.find(name) != attributes.end();
  769. }
  770. // Removes an attribute from the element
  771. void Element::RemoveAttribute(const String& name)
  772. {
  773. auto it = attributes.find(name);
  774. if (it != attributes.end())
  775. {
  776. attributes.erase(it);
  777. AttributeNameList changed_attributes;
  778. changed_attributes.insert(name);
  779. OnAttributeChange(changed_attributes);
  780. }
  781. }
  782. // Gets the outer most focus element down the tree from this node
  783. Element* Element::GetFocusLeafNode()
  784. {
  785. // If there isn't a focus, then we are the leaf.
  786. if (!focus)
  787. {
  788. return this;
  789. }
  790. // Recurse down the tree until we found the leaf focus element
  791. Element* focus_element = focus;
  792. while (focus_element->focus)
  793. focus_element = focus_element->focus;
  794. return focus_element;
  795. }
  796. // Returns the element's context.
  797. Context* Element::GetContext()
  798. {
  799. ElementDocument* document = GetOwnerDocument();
  800. if (document != NULL)
  801. return document->GetContext();
  802. return NULL;
  803. }
  804. // Set a group of attributes
  805. void Element::SetAttributes(const ElementAttributes* _attributes)
  806. {
  807. attributes.reserve(attributes.size() + _attributes->size());
  808. for (auto& pair : *_attributes)
  809. attributes[pair.first] = pair.second;
  810. AttributeNameList changed_attributes;
  811. changed_attributes.reserve(_attributes->size());
  812. for (auto& pair : *_attributes)
  813. changed_attributes.insert(pair.first);
  814. OnAttributeChange(changed_attributes);
  815. }
  816. // Returns the number of attributes on the element.
  817. int Element::GetNumAttributes() const
  818. {
  819. return (int)attributes.size();
  820. }
  821. // Iterates over all decorators attached to the element.
  822. bool Element::IterateDecorators(int& index, PseudoClassList& pseudo_classes, String& name, Decorator*& decorator, DecoratorDataHandle& decorator_data)
  823. {
  824. return decoration->IterateDecorators(index, pseudo_classes, name, decorator, decorator_data);
  825. }
  826. // Gets the name of the element.
  827. const String& Element::GetTagName() const
  828. {
  829. return tag;
  830. }
  831. // Gets the ID of the element.
  832. const String& Element::GetId() const
  833. {
  834. return id;
  835. }
  836. // Sets the ID of the element.
  837. void Element::SetId(const String& _id)
  838. {
  839. SetAttribute("id", _id);
  840. }
  841. // Gets the horizontal offset from the context's left edge to element's left border edge.
  842. float Element::GetAbsoluteLeft()
  843. {
  844. return GetAbsoluteOffset(Box::BORDER).x;
  845. }
  846. // Gets the vertical offset from the context's top edge to element's top border edge.
  847. float Element::GetAbsoluteTop()
  848. {
  849. return GetAbsoluteOffset(Box::BORDER).y;
  850. }
  851. // Gets the width of the left border of an element.
  852. float Element::GetClientLeft()
  853. {
  854. return GetBox().GetPosition(client_area).x;
  855. }
  856. // Gets the height of the top border of an element.
  857. float Element::GetClientTop()
  858. {
  859. return GetBox().GetPosition(client_area).y;
  860. }
  861. // Gets the inner width of the element.
  862. float Element::GetClientWidth()
  863. {
  864. return GetBox().GetSize(client_area).x - scroll->GetScrollbarSize(ElementScroll::VERTICAL);
  865. }
  866. // Gets the inner height of the element.
  867. float Element::GetClientHeight()
  868. {
  869. return GetBox().GetSize(client_area).y - scroll->GetScrollbarSize(ElementScroll::HORIZONTAL);
  870. }
  871. // Returns the element from which all offset calculations are currently computed.
  872. Element* Element::GetOffsetParent()
  873. {
  874. return offset_parent;
  875. }
  876. // Gets the distance from this element's left border to its offset parent's left border.
  877. float Element::GetOffsetLeft()
  878. {
  879. return relative_offset_base.x + relative_offset_position.x;
  880. }
  881. // Gets the distance from this element's top border to its offset parent's top border.
  882. float Element::GetOffsetTop()
  883. {
  884. return relative_offset_base.y + relative_offset_position.y;
  885. }
  886. // Gets the width of the element, including the client area, padding, borders and scrollbars, but not margins.
  887. float Element::GetOffsetWidth()
  888. {
  889. return GetBox().GetSize(Box::BORDER).x;
  890. }
  891. // Gets the height of the element, including the client area, padding, borders and scrollbars, but not margins.
  892. float Element::GetOffsetHeight()
  893. {
  894. return GetBox().GetSize(Box::BORDER).y;
  895. }
  896. // Gets the left scroll offset of the element.
  897. float Element::GetScrollLeft()
  898. {
  899. return scroll_offset.x;
  900. }
  901. // Sets the left scroll offset of the element.
  902. void Element::SetScrollLeft(float scroll_left)
  903. {
  904. scroll_offset.x = Math::Clamp(scroll_left, 0.0f, GetScrollWidth() - GetClientWidth());
  905. scroll->UpdateScrollbar(ElementScroll::HORIZONTAL);
  906. DirtyOffset();
  907. DispatchEvent("scroll", Dictionary());
  908. }
  909. // Gets the top scroll offset of the element.
  910. float Element::GetScrollTop()
  911. {
  912. return scroll_offset.y;
  913. }
  914. // Sets the top scroll offset of the element.
  915. void Element::SetScrollTop(float scroll_top)
  916. {
  917. scroll_offset.y = Math::Clamp(scroll_top, 0.0f, GetScrollHeight() - GetClientHeight());
  918. scroll->UpdateScrollbar(ElementScroll::VERTICAL);
  919. DirtyOffset();
  920. DispatchEvent("scroll", Dictionary());
  921. }
  922. // Gets the width of the scrollable content of the element; it includes the element padding but not its margin.
  923. float Element::GetScrollWidth()
  924. {
  925. return Math::Max(content_box.x, GetClientWidth());
  926. }
  927. // Gets the height of the scrollable content of the element; it includes the element padding but not its margin.
  928. float Element::GetScrollHeight()
  929. {
  930. return Math::Max(content_box.y, GetClientHeight());
  931. }
  932. // Gets the object representing the declarations of an element's style attributes.
  933. ElementStyle* Element::GetStyle()
  934. {
  935. return style;
  936. }
  937. // Gets the document this element belongs to.
  938. ElementDocument* Element::GetOwnerDocument()
  939. {
  940. if (parent == NULL)
  941. return NULL;
  942. if (!owner_document)
  943. {
  944. owner_document = parent->GetOwnerDocument();
  945. }
  946. return owner_document;
  947. }
  948. // Gets this element's parent node.
  949. Element* Element::GetParentNode() const
  950. {
  951. return parent;
  952. }
  953. // Gets the element immediately following this one in the tree.
  954. Element* Element::GetNextSibling() const
  955. {
  956. if (parent == NULL)
  957. return NULL;
  958. for (size_t i = 0; i < parent->children.size() - (parent->num_non_dom_children + 1); i++)
  959. {
  960. if (parent->children[i] == this)
  961. return parent->children[i + 1];
  962. }
  963. return NULL;
  964. }
  965. // Gets the element immediately preceding this one in the tree.
  966. Element* Element::GetPreviousSibling() const
  967. {
  968. if (parent == NULL)
  969. return NULL;
  970. for (size_t i = 1; i < parent->children.size() - parent->num_non_dom_children; i++)
  971. {
  972. if (parent->children[i] == this)
  973. return parent->children[i - 1];
  974. }
  975. return NULL;
  976. }
  977. // Returns the first child of this element.
  978. Element* Element::GetFirstChild() const
  979. {
  980. if (GetNumChildren() > 0)
  981. return children[0];
  982. return NULL;
  983. }
  984. // Gets the last child of this element.
  985. Element* Element::GetLastChild() const
  986. {
  987. if (GetNumChildren() > 0)
  988. return *(children.end() - (num_non_dom_children + 1));
  989. return NULL;
  990. }
  991. Element* Element::GetChild(int index) const
  992. {
  993. if (index < 0 || index >= (int) children.size())
  994. return NULL;
  995. return children[index];
  996. }
  997. int Element::GetNumChildren(bool include_non_dom_elements) const
  998. {
  999. return (int) children.size() - (include_non_dom_elements ? 0 : num_non_dom_children);
  1000. }
  1001. // Gets the markup and content of the element.
  1002. void Element::GetInnerRML(String& content) const
  1003. {
  1004. for (int i = 0; i < GetNumChildren(); i++)
  1005. {
  1006. children[i]->GetRML(content);
  1007. }
  1008. }
  1009. // Gets the markup and content of the element.
  1010. String Element::GetInnerRML() const {
  1011. String result;
  1012. GetInnerRML(result);
  1013. return result;
  1014. }
  1015. // Sets the markup and content of the element. All existing children will be replaced.
  1016. void Element::SetInnerRML(const String& rml)
  1017. {
  1018. // Remove all DOM children.
  1019. while ((int) children.size() > num_non_dom_children)
  1020. RemoveChild(children.front());
  1021. Factory::InstanceElementText(this, rml);
  1022. }
  1023. // Sets the current element as the focus object.
  1024. bool Element::Focus()
  1025. {
  1026. // Are we allowed focus?
  1027. Style::Focus focus_property = element_meta->computed_values.focus;
  1028. if (focus_property == Style::Focus::None)
  1029. return false;
  1030. // Ask our context if we can switch focus.
  1031. Context* context = GetContext();
  1032. if (context == NULL)
  1033. return false;
  1034. if (!context->OnFocusChange(this))
  1035. return false;
  1036. // Set this as the end of the focus chain.
  1037. focus = NULL;
  1038. // Update the focus chain up the hierarchy.
  1039. Element* element = this;
  1040. while (element->GetParentNode())
  1041. {
  1042. element->GetParentNode()->focus = element;
  1043. element = element->GetParentNode();
  1044. }
  1045. return true;
  1046. }
  1047. // Removes focus from from this element.
  1048. void Element::Blur()
  1049. {
  1050. if (parent)
  1051. {
  1052. Context* context = GetContext();
  1053. if (context == NULL)
  1054. return;
  1055. if (context->GetFocusElement() == this)
  1056. {
  1057. parent->Focus();
  1058. }
  1059. else if (parent->focus == this)
  1060. {
  1061. parent->focus = NULL;
  1062. }
  1063. }
  1064. }
  1065. // Fakes a mouse click on this element.
  1066. void Element::Click()
  1067. {
  1068. Context* context = GetContext();
  1069. if (context == NULL)
  1070. return;
  1071. context->GenerateClickEvent(this);
  1072. }
  1073. // Adds an event listener
  1074. void Element::AddEventListener(const String& event, EventListener* listener, bool in_capture_phase)
  1075. {
  1076. event_dispatcher->AttachEvent(event, listener, in_capture_phase);
  1077. }
  1078. // Removes an event listener from this element.
  1079. void Element::RemoveEventListener(const String& event, EventListener* listener, bool in_capture_phase)
  1080. {
  1081. event_dispatcher->DetachEvent(event, listener, in_capture_phase);
  1082. }
  1083. // Dispatches the specified event
  1084. bool Element::DispatchEvent(const String& event, const Dictionary& parameters, bool interruptible)
  1085. {
  1086. return event_dispatcher->DispatchEvent(this, event, parameters, interruptible);
  1087. }
  1088. // Scrolls the parent element's contents so that this element is visible.
  1089. void Element::ScrollIntoView(bool align_with_top)
  1090. {
  1091. Vector2f size(0, 0);
  1092. if (!align_with_top)
  1093. {
  1094. size.y = main_box.GetOffset().y +
  1095. main_box.GetSize(Box::BORDER).y;
  1096. }
  1097. Element* scroll_parent = parent;
  1098. while (scroll_parent != NULL)
  1099. {
  1100. Style::Overflow overflow_x_property = scroll_parent->GetComputedValues().overflow_x;
  1101. Style::Overflow overflow_y_property = scroll_parent->GetComputedValues().overflow_y;
  1102. if ((overflow_x_property != Style::Overflow::Visible &&
  1103. scroll_parent->GetScrollWidth() > scroll_parent->GetClientWidth()) ||
  1104. (overflow_y_property != Style::Overflow::Visible &&
  1105. scroll_parent->GetScrollHeight() > scroll_parent->GetClientHeight()))
  1106. {
  1107. Vector2f offset = scroll_parent->GetAbsoluteOffset(Box::BORDER) - GetAbsoluteOffset(Box::BORDER);
  1108. Vector2f scroll_offset(scroll_parent->GetScrollLeft(), scroll_parent->GetScrollTop());
  1109. scroll_offset -= offset;
  1110. scroll_offset.x += scroll_parent->GetClientLeft();
  1111. scroll_offset.y += scroll_parent->GetClientTop();
  1112. if (!align_with_top)
  1113. scroll_offset.y -= (scroll_parent->GetClientHeight() - size.y);
  1114. if (overflow_x_property != Style::Overflow::Visible)
  1115. scroll_parent->SetScrollLeft(scroll_offset.x);
  1116. if (overflow_y_property != Style::Overflow::Visible)
  1117. scroll_parent->SetScrollTop(scroll_offset.y);
  1118. }
  1119. scroll_parent = scroll_parent->GetParentNode();
  1120. }
  1121. }
  1122. // Appends a child to this element
  1123. void Element::AppendChild(Element* child, bool dom_element)
  1124. {
  1125. child->AddReference();
  1126. child->SetParent(this);
  1127. if (dom_element)
  1128. children.insert(children.end() - num_non_dom_children, child);
  1129. else
  1130. {
  1131. children.push_back(child);
  1132. num_non_dom_children++;
  1133. }
  1134. child->GetStyle()->DirtyDefinition();
  1135. Element* ancestor = child;
  1136. for (int i = 0; i <= ChildNotifyLevels && ancestor; i++, ancestor = ancestor->GetParentNode())
  1137. ancestor->OnChildAdd(child);
  1138. DirtyStackingContext();
  1139. DirtyStructure();
  1140. if (dom_element)
  1141. DirtyLayout();
  1142. }
  1143. // Adds a child to this element, directly after the adjacent element. Inherits
  1144. // the dom/non-dom status from the adjacent element.
  1145. void Element::InsertBefore(Element* child, Element* adjacent_element)
  1146. {
  1147. // Find the position in the list of children of the adjacent element. If
  1148. // it's NULL or we can't find it, then we insert it at the end of the dom
  1149. // children, as a dom element.
  1150. size_t child_index = 0;
  1151. bool found_child = false;
  1152. if (adjacent_element)
  1153. {
  1154. for (child_index = 0; child_index < children.size(); child_index++)
  1155. {
  1156. if (children[child_index] == adjacent_element)
  1157. {
  1158. found_child = true;
  1159. break;
  1160. }
  1161. }
  1162. }
  1163. if (found_child)
  1164. {
  1165. child->AddReference();
  1166. child->SetParent(this);
  1167. if ((int) child_index >= GetNumChildren())
  1168. num_non_dom_children++;
  1169. else
  1170. DirtyLayout();
  1171. children.insert(children.begin() + child_index, child);
  1172. child->GetStyle()->DirtyDefinition();
  1173. Element* ancestor = child;
  1174. for (int i = 0; i <= ChildNotifyLevels && ancestor; i++, ancestor = ancestor->GetParentNode())
  1175. ancestor->OnChildAdd(child);
  1176. DirtyStackingContext();
  1177. DirtyStructure();
  1178. }
  1179. else
  1180. {
  1181. AppendChild(child);
  1182. }
  1183. }
  1184. // Replaces the second node with the first node.
  1185. bool Element::ReplaceChild(Element* inserted_element, Element* replaced_element)
  1186. {
  1187. inserted_element->AddReference();
  1188. inserted_element->SetParent(this);
  1189. ElementList::iterator insertion_point = children.begin();
  1190. while (insertion_point != children.end() && *insertion_point != replaced_element)
  1191. {
  1192. ++insertion_point;
  1193. }
  1194. if (insertion_point == children.end())
  1195. {
  1196. AppendChild(inserted_element);
  1197. return false;
  1198. }
  1199. children.insert(insertion_point, inserted_element);
  1200. RemoveChild(replaced_element);
  1201. inserted_element->GetStyle()->DirtyDefinition();
  1202. Element* ancestor = inserted_element;
  1203. for (int i = 0; i <= ChildNotifyLevels && ancestor; i++, ancestor = ancestor->GetParentNode())
  1204. ancestor->OnChildAdd(inserted_element);
  1205. return true;
  1206. }
  1207. // Removes the specified child
  1208. bool Element::RemoveChild(Element* child)
  1209. {
  1210. size_t child_index = 0;
  1211. for (ElementList::iterator itr = children.begin(); itr != children.end(); ++itr)
  1212. {
  1213. // Add the element to the delete list
  1214. if ((*itr) == child)
  1215. {
  1216. // Inform the context of the element's pending removal (if we have a valid context).
  1217. Context* context = GetContext();
  1218. if (context)
  1219. context->OnElementRemove(child);
  1220. Element* ancestor = child;
  1221. for (int i = 0; i <= ChildNotifyLevels && ancestor; i++, ancestor = ancestor->GetParentNode())
  1222. ancestor->OnChildRemove(child);
  1223. if (child_index >= children.size() - num_non_dom_children)
  1224. num_non_dom_children--;
  1225. deleted_children.push_back(child);
  1226. children.erase(itr);
  1227. // Remove the child element as the focussed child of this element.
  1228. if (child == focus)
  1229. {
  1230. focus = NULL;
  1231. // If this child (or a descendant of this child) is the context's currently
  1232. // focussed element, set the focus to us instead.
  1233. Context* context = GetContext();
  1234. if (context != NULL)
  1235. {
  1236. Element* focus_element = context->GetFocusElement();
  1237. while (focus_element != NULL)
  1238. {
  1239. if (focus_element == child)
  1240. {
  1241. Focus();
  1242. break;
  1243. }
  1244. focus_element = focus_element->GetParentNode();
  1245. }
  1246. }
  1247. }
  1248. DirtyLayout();
  1249. DirtyStackingContext();
  1250. DirtyStructure();
  1251. return true;
  1252. }
  1253. child_index++;
  1254. }
  1255. return false;
  1256. }
  1257. bool Element::HasChildNodes() const
  1258. {
  1259. return (int) children.size() > num_non_dom_children;
  1260. }
  1261. Element* Element::GetElementById(const String& id)
  1262. {
  1263. // Check for special-case tokens.
  1264. if (id == "#self")
  1265. return this;
  1266. else if (id == "#document")
  1267. return GetOwnerDocument();
  1268. else if (id == "#parent")
  1269. return this->parent;
  1270. else
  1271. {
  1272. Element* search_root = GetOwnerDocument();
  1273. if (search_root == NULL)
  1274. search_root = this;
  1275. return ElementUtilities::GetElementById(search_root, id);
  1276. }
  1277. }
  1278. // Get all elements with the given tag.
  1279. void Element::GetElementsByTagName(ElementList& elements, const String& tag)
  1280. {
  1281. return ElementUtilities::GetElementsByTagName(elements, this, tag);
  1282. }
  1283. // Get all elements with the given class set on them.
  1284. void Element::GetElementsByClassName(ElementList& elements, const String& class_name)
  1285. {
  1286. return ElementUtilities::GetElementsByClassName(elements, this, class_name);
  1287. }
  1288. // Access the event dispatcher
  1289. EventDispatcher* Element::GetEventDispatcher() const
  1290. {
  1291. return event_dispatcher;
  1292. }
  1293. String Element::GetEventDispatcherSummary() const
  1294. {
  1295. return event_dispatcher->ToString();
  1296. }
  1297. // Access the element background.
  1298. ElementBackground* Element::GetElementBackground() const
  1299. {
  1300. return background;
  1301. }
  1302. // Access the element border.
  1303. ElementBorder* Element::GetElementBorder() const
  1304. {
  1305. return border;
  1306. }
  1307. // Access the element decorators
  1308. ElementDecoration* Element::GetElementDecoration() const
  1309. {
  1310. return decoration;
  1311. }
  1312. // Returns the element's scrollbar functionality.
  1313. ElementScroll* Element::GetElementScroll() const
  1314. {
  1315. return scroll;
  1316. }
  1317. int Element::GetClippingIgnoreDepth()
  1318. {
  1319. if (clipping_state_dirty)
  1320. {
  1321. IsClippingEnabled();
  1322. }
  1323. return clipping_ignore_depth;
  1324. }
  1325. bool Element::IsClippingEnabled()
  1326. {
  1327. if (clipping_state_dirty)
  1328. {
  1329. const auto& computed = GetComputedValues();
  1330. // Is clipping enabled for this element, yes unless both overlow properties are set to visible
  1331. clipping_enabled = computed.overflow_x != Style::Overflow::Visible
  1332. || computed.overflow_y != Style::Overflow::Visible;
  1333. // Get the clipping ignore depth from the clip property
  1334. clipping_ignore_depth = computed.clip.number;
  1335. clipping_state_dirty = false;
  1336. }
  1337. return clipping_enabled;
  1338. }
  1339. // Gets the render interface owned by this element's context.
  1340. RenderInterface* Element::GetRenderInterface()
  1341. {
  1342. Context* context = GetContext();
  1343. if (context != NULL)
  1344. return context->GetRenderInterface();
  1345. return Rocket::Core::GetRenderInterface();
  1346. }
  1347. void Element::SetInstancer(ElementInstancer* _instancer)
  1348. {
  1349. // Only record the first instancer being set as some instancers call other instancers to do their dirty work, in
  1350. // which case we don't want to update the lowest level instancer.
  1351. if (instancer == NULL)
  1352. {
  1353. instancer = _instancer;
  1354. instancer->AddReference();
  1355. }
  1356. }
  1357. // Forces the element to generate a local stacking context, regardless of the value of its z-index property.
  1358. void Element::ForceLocalStackingContext()
  1359. {
  1360. local_stacking_context_forced = true;
  1361. local_stacking_context = true;
  1362. DirtyStackingContext();
  1363. }
  1364. // Called during the update loop after children are rendered.
  1365. void Element::OnUpdate()
  1366. {
  1367. }
  1368. // Called during render after backgrounds, borders, decorators, but before children, are rendered.
  1369. void Element::OnRender()
  1370. {
  1371. }
  1372. void Element::OnResize()
  1373. {
  1374. }
  1375. // Called during a layout operation, when the element is being positioned and sized.
  1376. void Element::OnLayout()
  1377. {
  1378. }
  1379. // Called when attributes on the element are changed.
  1380. void Element::OnAttributeChange(const AttributeNameList& changed_attributes)
  1381. {
  1382. if (changed_attributes.find("id") != changed_attributes.end())
  1383. {
  1384. id = GetAttribute< String >("id", "");
  1385. style->DirtyDefinition();
  1386. }
  1387. if (changed_attributes.find("class") != changed_attributes.end())
  1388. {
  1389. style->SetClassNames(GetAttribute< String >("class", ""));
  1390. }
  1391. // Add any inline style declarations.
  1392. if (changed_attributes.find("style") != changed_attributes.end())
  1393. {
  1394. PropertyDictionary properties;
  1395. StyleSheetParser parser;
  1396. parser.ParseProperties(properties, GetAttribute< String >("style", ""));
  1397. Rocket::Core::PropertyMap property_map = properties.GetProperties();
  1398. for (Rocket::Core::PropertyMap::iterator i = property_map.begin(); i != property_map.end(); ++i)
  1399. {
  1400. SetProperty((*i).first, (*i).second);
  1401. }
  1402. }
  1403. }
  1404. // Called when properties on the element are changed.
  1405. void Element::OnPropertyChange(const PropertyNameList& changed_properties)
  1406. {
  1407. bool all_dirty = false;
  1408. {
  1409. auto& registered_properties = StyleSheetSpecification::GetRegisteredProperties();
  1410. if (&registered_properties == &changed_properties || registered_properties == changed_properties)
  1411. all_dirty = true;
  1412. }
  1413. if (!IsLayoutDirty())
  1414. {
  1415. if (all_dirty)
  1416. {
  1417. DirtyLayout();
  1418. }
  1419. else
  1420. {
  1421. // Force a relayout if any of the changed properties require it.
  1422. for (PropertyNameList::const_iterator i = changed_properties.begin(); i != changed_properties.end(); ++i)
  1423. {
  1424. const PropertyDefinition* property_definition = StyleSheetSpecification::GetProperty(*i);
  1425. if (property_definition)
  1426. {
  1427. if (property_definition->IsLayoutForced())
  1428. {
  1429. DirtyLayout();
  1430. break;
  1431. }
  1432. }
  1433. }
  1434. }
  1435. }
  1436. // Update the visibility.
  1437. if (all_dirty || changed_properties.find(VISIBILITY) != changed_properties.end() ||
  1438. changed_properties.find(DISPLAY) != changed_properties.end())
  1439. {
  1440. bool new_visibility = (element_meta->computed_values.display != Style::Display::None && element_meta->computed_values.visibility == Style::Visibility::Visible);
  1441. if (visible != new_visibility)
  1442. {
  1443. visible = new_visibility;
  1444. if (parent != NULL)
  1445. parent->DirtyStackingContext();
  1446. }
  1447. if (all_dirty ||
  1448. changed_properties.find(DISPLAY) != changed_properties.end())
  1449. {
  1450. if (parent != NULL)
  1451. parent->DirtyStructure();
  1452. }
  1453. }
  1454. // Fetch a new font face if it has been changed.
  1455. if (all_dirty ||
  1456. changed_properties.find(FONT_FAMILY) != changed_properties.end() ||
  1457. changed_properties.find(FONT_CHARSET) != changed_properties.end() ||
  1458. changed_properties.find(FONT_WEIGHT) != changed_properties.end() ||
  1459. changed_properties.find(FONT_STYLE) != changed_properties.end() ||
  1460. changed_properties.find(FONT_SIZE) != changed_properties.end())
  1461. {
  1462. // Fetch the new font face.
  1463. FontFaceHandle* new_font_face_handle = ElementUtilities::GetFontFaceHandle(element_meta->computed_values);
  1464. // If this is different from our current font face, then we've got to nuke
  1465. // all our characters and tell our parent that we have to be re-laid out.
  1466. if (new_font_face_handle != font_face_handle)
  1467. {
  1468. if (font_face_handle)
  1469. font_face_handle->RemoveReference();
  1470. font_face_handle = new_font_face_handle;
  1471. }
  1472. else if (new_font_face_handle != NULL)
  1473. new_font_face_handle->RemoveReference();
  1474. }
  1475. // Update the position.
  1476. if (all_dirty ||
  1477. changed_properties.find(LEFT) != changed_properties.end() ||
  1478. changed_properties.find(RIGHT) != changed_properties.end() ||
  1479. changed_properties.find(TOP) != changed_properties.end() ||
  1480. changed_properties.find(BOTTOM) != changed_properties.end())
  1481. {
  1482. // TODO: This should happen during/after layout, as the containing box is not properly defined yet
  1483. UpdateOffset();
  1484. DirtyOffset();
  1485. }
  1486. // Update the z-index.
  1487. if (all_dirty ||
  1488. changed_properties.find(Z_INDEX) != changed_properties.end())
  1489. {
  1490. Style::ZIndex z_index_property = element_meta->computed_values.z_index;
  1491. if (z_index_property.type == Style::ZIndex::Auto)
  1492. {
  1493. if (local_stacking_context &&
  1494. !local_stacking_context_forced)
  1495. {
  1496. // We're no longer acting as a stacking context.
  1497. local_stacking_context = false;
  1498. stacking_context_dirty = false;
  1499. stacking_context.clear();
  1500. }
  1501. // If our old z-index was not zero, then we must dirty our stacking context so we'll be re-indexed.
  1502. if (z_index != 0)
  1503. {
  1504. z_index = 0;
  1505. DirtyStackingContext();
  1506. }
  1507. }
  1508. else
  1509. {
  1510. float new_z_index = z_index_property.value;
  1511. if (new_z_index != z_index)
  1512. {
  1513. z_index = new_z_index;
  1514. if (parent != NULL)
  1515. parent->DirtyStackingContext();
  1516. }
  1517. if (!local_stacking_context)
  1518. {
  1519. local_stacking_context = true;
  1520. stacking_context_dirty = true;
  1521. }
  1522. }
  1523. }
  1524. // Dirty the background if it's changed.
  1525. if (all_dirty ||
  1526. changed_properties.find(BACKGROUND_COLOR) != changed_properties.end() ||
  1527. changed_properties.find(OPACITY) != changed_properties.end() ||
  1528. changed_properties.find(IMAGE_COLOR) != changed_properties.end()) {
  1529. background->DirtyBackground();
  1530. decoration->DirtyDecorators(true);
  1531. }
  1532. // Dirty the border if it's changed.
  1533. if (all_dirty ||
  1534. changed_properties.find(BORDER_TOP_WIDTH) != changed_properties.end() ||
  1535. changed_properties.find(BORDER_RIGHT_WIDTH) != changed_properties.end() ||
  1536. changed_properties.find(BORDER_BOTTOM_WIDTH) != changed_properties.end() ||
  1537. changed_properties.find(BORDER_LEFT_WIDTH) != changed_properties.end() ||
  1538. changed_properties.find(BORDER_TOP_COLOR) != changed_properties.end() ||
  1539. changed_properties.find(BORDER_RIGHT_COLOR) != changed_properties.end() ||
  1540. changed_properties.find(BORDER_BOTTOM_COLOR) != changed_properties.end() ||
  1541. changed_properties.find(BORDER_LEFT_COLOR) != changed_properties.end() ||
  1542. changed_properties.find(OPACITY) != changed_properties.end())
  1543. border->DirtyBorder();
  1544. // Check for clipping state changes
  1545. if (all_dirty ||
  1546. changed_properties.find(CLIP) != changed_properties.end() ||
  1547. changed_properties.find(OVERFLOW_X) != changed_properties.end() ||
  1548. changed_properties.find(OVERFLOW_Y) != changed_properties.end())
  1549. {
  1550. clipping_state_dirty = true;
  1551. }
  1552. // Check for `perspective' and `perspective-origin' changes
  1553. if (all_dirty ||
  1554. changed_properties.find(PERSPECTIVE) != changed_properties.end() ||
  1555. changed_properties.find(PERSPECTIVE_ORIGIN_X) != changed_properties.end() ||
  1556. changed_properties.find(PERSPECTIVE_ORIGIN_Y) != changed_properties.end())
  1557. {
  1558. DirtyTransformState(true, false, false);
  1559. }
  1560. // Check for `transform' and `transform-origin' changes
  1561. if (all_dirty ||
  1562. changed_properties.find(TRANSFORM) != changed_properties.end() ||
  1563. changed_properties.find(TRANSFORM_ORIGIN_X) != changed_properties.end() ||
  1564. changed_properties.find(TRANSFORM_ORIGIN_Y) != changed_properties.end() ||
  1565. changed_properties.find(TRANSFORM_ORIGIN_Z) != changed_properties.end())
  1566. {
  1567. DirtyTransformState(false, true, false);
  1568. }
  1569. // Check for `animation' changes
  1570. if (all_dirty || changed_properties.find(ANIMATION) != changed_properties.end())
  1571. {
  1572. DirtyAnimation();
  1573. }
  1574. }
  1575. void Element::UpdateDirtyProperties(const DirtyPropertyList& dirty_properties)
  1576. {
  1577. if (dirty_properties.Empty())
  1578. return;
  1579. if(dirty_properties.AllDirty())
  1580. {
  1581. OnPropertyChange(StyleSheetSpecification::GetRegisteredProperties());
  1582. }
  1583. else if (dirty_properties.AnyInheritedDirty())
  1584. {
  1585. OnPropertyChange(StyleSheetSpecification::GetRegisteredInheritedProperties());
  1586. }
  1587. else
  1588. {
  1589. OnPropertyChange(dirty_properties.GetList());
  1590. }
  1591. // TODO: Add the following check back
  1592. //#ifdef ROCKET_DEBUG
  1593. // if (all_properties_dirty || !dirty_properties.empty())
  1594. // Log::Message(Log::LT_WARNING, "One or more properties were set during OnPropertyChange, these will only be evaluated on the next update call and should be avoided.");
  1595. //#endif
  1596. }
  1597. // Called when a child node has been added somewhere in the hierarchy
  1598. void Element::OnChildAdd(Element* child)
  1599. {
  1600. }
  1601. // Called when a child node has been removed somewhere in the hierarchy
  1602. void Element::OnChildRemove(Element* child)
  1603. {
  1604. }
  1605. // Forces a re-layout of this element, and any other children required.
  1606. void Element::DirtyLayout()
  1607. {
  1608. Element* document = GetOwnerDocument();
  1609. if (document != NULL)
  1610. document->DirtyLayout();
  1611. }
  1612. // Forces a re-layout of this element, and any other children required.
  1613. bool Element::IsLayoutDirty()
  1614. {
  1615. Element* document = GetOwnerDocument();
  1616. if (document != NULL)
  1617. return document->IsLayoutDirty();
  1618. return false;
  1619. }
  1620. // Forces a reevaluation of applicable font effects.
  1621. void Element::DirtyFont()
  1622. {
  1623. for (size_t i = 0; i < children.size(); ++i)
  1624. children[i]->DirtyFont();
  1625. }
  1626. void Element::OnReferenceDeactivate()
  1627. {
  1628. if (instancer)
  1629. {
  1630. instancer->ReleaseElement(this);
  1631. }
  1632. else
  1633. {
  1634. // Hopefully we can just delete ourselves.
  1635. //delete this;
  1636. Log::Message(Log::LT_WARNING, "Leak detected: element %s not instanced via Rocket Factory. Unable to release.", GetAddress().c_str());
  1637. }
  1638. }
  1639. void Element::ProcessEvent(Event& event)
  1640. {
  1641. if (event == MOUSEDOWN && IsPointWithinElement(Vector2f(event.GetParameter< float >("mouse_x", 0), event.GetParameter< float >("mouse_y", 0))) &&
  1642. event.GetParameter< int >("button", 0) == 0)
  1643. SetPseudoClass("active", true);
  1644. if (event == MOUSESCROLL)
  1645. {
  1646. if (GetScrollHeight() > GetClientHeight())
  1647. {
  1648. Style::Overflow overflow_property = element_meta->computed_values.overflow_y;
  1649. if (overflow_property == Style::Overflow::Auto ||
  1650. overflow_property == Style::Overflow::Scroll)
  1651. {
  1652. // Stop the propagation if the current element has scrollbars.
  1653. // This prevents scrolling in parent elements, which is often unintended. If instead desired behavior is
  1654. // to scroll in parent elements when reaching top/bottom, move StopPropagation inside the next if statement.
  1655. event.StopPropagation();
  1656. int wheel_delta = event.GetParameter< int >("wheel_delta", 0);
  1657. if ((wheel_delta < 0 && GetScrollTop() > 0) ||
  1658. (wheel_delta > 0 && GetScrollHeight() > GetScrollTop() + GetClientHeight()))
  1659. {
  1660. SetScrollTop(GetScrollTop() + wheel_delta * GetLineHeight());
  1661. }
  1662. }
  1663. }
  1664. return;
  1665. }
  1666. if (event.GetTargetElement() == this)
  1667. {
  1668. if (event == MOUSEOVER)
  1669. SetPseudoClass("hover", true);
  1670. else if (event == MOUSEOUT)
  1671. SetPseudoClass("hover", false);
  1672. else if (event == FOCUS)
  1673. SetPseudoClass(FOCUS, true);
  1674. else if (event == BLUR)
  1675. SetPseudoClass(FOCUS, false);
  1676. }
  1677. }
  1678. const Style::ComputedValues& Element::GetComputedValues() const
  1679. {
  1680. return element_meta->computed_values;
  1681. }
  1682. void Element::GetRML(String& content)
  1683. {
  1684. // First we start the open tag, add the attributes then close the open tag.
  1685. // Then comes the children in order, then we add our close tag.
  1686. content += "<";
  1687. content += tag;
  1688. for( auto& pair : attributes)
  1689. {
  1690. auto& name = pair.first;
  1691. auto& variant = pair.second;
  1692. String value;
  1693. if (variant.GetInto(value))
  1694. content += " " + name + "=\"" + value + "\"";
  1695. }
  1696. if (HasChildNodes())
  1697. {
  1698. content += ">";
  1699. GetInnerRML(content);
  1700. content += "</";
  1701. content += tag;
  1702. content += ">";
  1703. }
  1704. else
  1705. {
  1706. content += " />";
  1707. }
  1708. }
  1709. void Element::SetParent(Element* _parent)
  1710. {
  1711. // If there's an old parent, detach from it first.
  1712. if (parent &&
  1713. parent != _parent)
  1714. parent->RemoveChild(this);
  1715. // Save our parent
  1716. parent = _parent;
  1717. }
  1718. void Element::ReleaseDeletedElements()
  1719. {
  1720. for (size_t i = 0; i < active_children.size(); i++)
  1721. {
  1722. active_children[i]->ReleaseDeletedElements();
  1723. }
  1724. ReleaseElements(deleted_children);
  1725. active_children = children;
  1726. }
  1727. void Element::ReleaseElements(ElementList& released_elements)
  1728. {
  1729. // Remove deleted children from this element.
  1730. while (!released_elements.empty())
  1731. {
  1732. Element* element = released_elements.back();
  1733. released_elements.pop_back();
  1734. // If this element has been added back into our list, then we remove our previous oustanding reference on it
  1735. // and continue.
  1736. if (std::find(children.begin(), children.end(), element) != children.end())
  1737. {
  1738. element->RemoveReference();
  1739. continue;
  1740. }
  1741. // Set the parent to NULL unless it's been reparented already.
  1742. if (element->GetParentNode() == this)
  1743. element->parent = NULL;
  1744. element->RemoveReference();
  1745. }
  1746. }
  1747. void Element::DirtyOffset()
  1748. {
  1749. offset_dirty = true;
  1750. if(transform_state)
  1751. DirtyTransformState(true, true, false);
  1752. // Not strictly true ... ?
  1753. for (size_t i = 0; i < children.size(); i++)
  1754. children[i]->DirtyOffset();
  1755. }
  1756. void Element::UpdateOffset()
  1757. {
  1758. using namespace Style;
  1759. const auto& computed = element_meta->computed_values;
  1760. Position position_property = computed.position;
  1761. if (position_property == Position::Absolute ||
  1762. position_property == Position::Fixed)
  1763. {
  1764. if (offset_parent != NULL)
  1765. {
  1766. const Box& parent_box = offset_parent->GetBox();
  1767. Vector2f containing_block = parent_box.GetSize(Box::PADDING);
  1768. // If the element is anchored left, then the position is offset by that resolved value.
  1769. if (computed.left.type != Left::Auto)
  1770. relative_offset_base.x = parent_box.GetEdge(Box::BORDER, Box::LEFT) + (ResolveValue(computed.left, containing_block.x) + GetBox().GetEdge(Box::MARGIN, Box::LEFT));
  1771. // If the element is anchored right, then the position is set first so the element's right-most edge
  1772. // (including margins) will render up against the containing box's right-most content edge, and then
  1773. // offset by the resolved value.
  1774. else if (computed.right.type != Right::Auto)
  1775. relative_offset_base.x = containing_block.x + parent_box.GetEdge(Box::BORDER, Box::LEFT) - (ResolveValue(computed.right, containing_block.x) + GetBox().GetSize(Box::BORDER).x + GetBox().GetEdge(Box::MARGIN, Box::RIGHT));
  1776. // If the element is anchored top, then the position is offset by that resolved value.
  1777. if (computed.top.type != Top::Auto)
  1778. relative_offset_base.y = parent_box.GetEdge(Box::BORDER, Box::TOP) + (ResolveValue(computed.top, containing_block.y) + GetBox().GetEdge(Box::MARGIN, Box::TOP));
  1779. // If the element is anchored bottom, then the position is set first so the element's right-most edge
  1780. // (including margins) will render up against the containing box's right-most content edge, and then
  1781. // offset by the resolved value.
  1782. else if (computed.bottom.type != Bottom::Auto)
  1783. relative_offset_base.y = containing_block.y + parent_box.GetEdge(Box::BORDER, Box::TOP) - (ResolveValue(computed.bottom, containing_block.y) + GetBox().GetSize(Box::BORDER).y + GetBox().GetEdge(Box::MARGIN, Box::BOTTOM));
  1784. }
  1785. }
  1786. else if (position_property == Position::Relative)
  1787. {
  1788. if (offset_parent != NULL)
  1789. {
  1790. const Box& parent_box = offset_parent->GetBox();
  1791. Vector2f containing_block = parent_box.GetSize();
  1792. if (computed.left.type != Left::Auto)
  1793. relative_offset_position.x = ResolveValue(computed.left, containing_block.x);
  1794. else if (computed.right.type != Right::Auto)
  1795. relative_offset_position.x = -1 * ResolveValue(computed.right, containing_block.x);
  1796. else
  1797. relative_offset_position.x = 0;
  1798. if (computed.top.type != Top::Auto)
  1799. relative_offset_position.y = ResolveValue(computed.top, containing_block.y);
  1800. else if (computed.bottom.type != Bottom::Auto)
  1801. relative_offset_position.y = -1 * ResolveValue(computed.bottom, containing_block.y);
  1802. else
  1803. relative_offset_position.y = 0;
  1804. }
  1805. }
  1806. else
  1807. {
  1808. relative_offset_position.x = 0;
  1809. relative_offset_position.y = 0;
  1810. }
  1811. }
  1812. void Element::BuildLocalStackingContext()
  1813. {
  1814. stacking_context_dirty = false;
  1815. stacking_context.clear();
  1816. BuildStackingContext(&stacking_context);
  1817. std::stable_sort(stacking_context.begin(), stacking_context.end(), ElementSortZIndex());
  1818. }
  1819. void Element::BuildStackingContext(ElementList* new_stacking_context)
  1820. {
  1821. // Build the list of ordered children. Our child list is sorted within the stacking context so stacked elements
  1822. // will render in the right order; ie, positioned elements will render on top of inline elements, which will render
  1823. // on top of floated elements, which will render on top of block elements.
  1824. std::vector< std::pair< Element*, float > > ordered_children;
  1825. for (size_t i = 0; i < children.size(); ++i)
  1826. {
  1827. Element* child = children[i];
  1828. if (!child->IsVisible())
  1829. continue;
  1830. std::pair< Element*, float > ordered_child;
  1831. ordered_child.first = child;
  1832. if (child->GetPosition() != Style::Position::Static)
  1833. ordered_child.second = 3;
  1834. else if (child->GetFloat() != Style::Float::None)
  1835. ordered_child.second = 1;
  1836. else if (child->GetDisplay() == Style::Display::Block)
  1837. ordered_child.second = 0;
  1838. else
  1839. ordered_child.second = 2;
  1840. ordered_children.push_back(ordered_child);
  1841. }
  1842. // Sort the list!
  1843. std::stable_sort(ordered_children.begin(), ordered_children.end(), ElementSortZOrder());
  1844. // Add the list of ordered children into the stacking context in order.
  1845. for (size_t i = 0; i < ordered_children.size(); ++i)
  1846. {
  1847. new_stacking_context->push_back(ordered_children[i].first);
  1848. if (!ordered_children[i].first->local_stacking_context)
  1849. ordered_children[i].first->BuildStackingContext(new_stacking_context);
  1850. }
  1851. }
  1852. void Element::DirtyStackingContext()
  1853. {
  1854. // The first ancestor of ours that doesn't have an automatic z-index is the ancestor that is establishing our local
  1855. // stacking context.
  1856. Element* stacking_context_parent = this;
  1857. while (stacking_context_parent != NULL &&
  1858. !stacking_context_parent->local_stacking_context)
  1859. stacking_context_parent = stacking_context_parent->GetParentNode();
  1860. if (stacking_context_parent != NULL)
  1861. stacking_context_parent->stacking_context_dirty = true;
  1862. }
  1863. void Element::DirtyStructure()
  1864. {
  1865. // Clear the cached owner document
  1866. owner_document = NULL;
  1867. structure_dirty = true;
  1868. }
  1869. void Element::DirtyParentStructure()
  1870. {
  1871. owner_document = NULL;
  1872. parent_structure_dirty = true;
  1873. }
  1874. void Element::UpdateStructure()
  1875. {
  1876. if (parent_structure_dirty)
  1877. {
  1878. // If children depend on structured selectors, they may need to be updated
  1879. const ElementDefinition* element_definition = GetStyle()->GetDefinition();
  1880. if (element_definition != NULL && element_definition->IsStructurallyVolatile())
  1881. {
  1882. GetStyle()->DirtyDefinition();
  1883. }
  1884. }
  1885. if (structure_dirty || parent_structure_dirty)
  1886. {
  1887. for (size_t i = 0; i < children.size(); ++i)
  1888. children[i]->DirtyParentStructure();
  1889. structure_dirty = false;
  1890. parent_structure_dirty = false;
  1891. }
  1892. }
  1893. 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)
  1894. {
  1895. bool result = false;
  1896. auto it_animation = StartAnimation(property_name, start_value, num_iterations, alternate_direction, delay);
  1897. if (it_animation != animations.end())
  1898. {
  1899. result = it_animation->AddKey(duration, target_value, *this, tween, true);
  1900. if (!result)
  1901. animations.erase(it_animation);
  1902. }
  1903. return result;
  1904. }
  1905. bool Element::AddAnimationKey(const String & property_name, const Property & target_value, float duration, Tween tween)
  1906. {
  1907. ElementAnimation* animation = nullptr;
  1908. for (auto& existing_animation : animations) {
  1909. if (existing_animation.GetPropertyName() == property_name) {
  1910. animation = &existing_animation;
  1911. break;
  1912. }
  1913. }
  1914. if (!animation)
  1915. return false;
  1916. bool result = animation->AddKey(animation->GetDuration() + duration, target_value, *this, tween, true);
  1917. return result;
  1918. }
  1919. ElementAnimationList::iterator Element::StartAnimation(const String & property_name, const Property* start_value, int num_iterations, bool alternate_direction, float delay)
  1920. {
  1921. auto it = std::find_if(animations.begin(), animations.end(), [&](const ElementAnimation& el) { return el.GetPropertyName() == property_name; });
  1922. if (it == animations.end())
  1923. {
  1924. animations.emplace_back();
  1925. it = animations.end() - 1;
  1926. }
  1927. Property value;
  1928. if (start_value)
  1929. {
  1930. value = *start_value;
  1931. if (!value.definition)
  1932. if(auto default_value = GetProperty(property_name))
  1933. value.definition = default_value->definition;
  1934. }
  1935. else if (auto default_value = GetProperty(property_name))
  1936. {
  1937. value = *default_value;
  1938. }
  1939. if (value.definition)
  1940. {
  1941. double start_time = Clock::GetElapsedTime() + (double)delay;
  1942. *it = ElementAnimation{ property_name, value, start_time, 0.0f, num_iterations, alternate_direction, false };
  1943. }
  1944. else
  1945. {
  1946. animations.erase(it);
  1947. it = animations.end();
  1948. }
  1949. return it;
  1950. }
  1951. bool Element::AddAnimationKeyTime(const String & property_name, const Property* target_value, float time, Tween tween)
  1952. {
  1953. if (!target_value)
  1954. target_value = GetProperty(property_name);
  1955. if (!target_value)
  1956. return false;
  1957. ElementAnimation* animation = nullptr;
  1958. for (auto& existing_animation : animations) {
  1959. if (existing_animation.GetPropertyName() == property_name) {
  1960. animation = &existing_animation;
  1961. break;
  1962. }
  1963. }
  1964. if (!animation)
  1965. return false;
  1966. bool result = animation->AddKey(time, *target_value, *this, tween, true);
  1967. return result;
  1968. }
  1969. bool Element::StartTransition(const Transition & transition, const Property& start_value, const Property & target_value)
  1970. {
  1971. auto it = std::find_if(animations.begin(), animations.end(), [&](const ElementAnimation& el) { return el.GetPropertyName() == transition.name; });
  1972. if (it != animations.end() && !it->IsTransition())
  1973. return false;
  1974. float duration = transition.duration;
  1975. double start_time = Clock::GetElapsedTime() + (double)transition.delay;
  1976. if (it == animations.end())
  1977. {
  1978. // Add transition as new animation
  1979. animations.push_back(
  1980. ElementAnimation{ transition.name, start_value, start_time, 0.0f, 1, false, true }
  1981. );
  1982. it = (animations.end() - 1);
  1983. }
  1984. else
  1985. {
  1986. // Compress the duration based on the progress of the current animation
  1987. float f = it->GetInterpolationFactor();
  1988. f = 1.0f - (1.0f - f)*transition.reverse_adjustment_factor;
  1989. duration = duration * f;
  1990. // Replace old transition
  1991. *it = ElementAnimation{ transition.name, start_value, start_time, 0.0f, 1, false, true };
  1992. }
  1993. bool result = it->AddKey(duration, target_value, *this, transition.tween, true);
  1994. if (result)
  1995. SetProperty(transition.name, start_value);
  1996. else
  1997. animations.erase(it);
  1998. return result;
  1999. }
  2000. void Element::DirtyAnimation()
  2001. {
  2002. dirty_animation = true;
  2003. }
  2004. void Element::UpdateAnimation()
  2005. {
  2006. if (dirty_animation)
  2007. {
  2008. const auto& animation_list = element_meta->computed_values.animation;
  2009. StyleSheet* stylesheet = nullptr;
  2010. if (!animation_list.empty() && (stylesheet = GetStyleSheet()))
  2011. {
  2012. for (auto& animation : animation_list)
  2013. {
  2014. Keyframes* keyframes_ptr = stylesheet->GetKeyframes(animation.name);
  2015. if (keyframes_ptr && keyframes_ptr->blocks.size() >= 1 && !animation.paused)
  2016. {
  2017. auto& property_names = keyframes_ptr->property_names;
  2018. auto& blocks = keyframes_ptr->blocks;
  2019. bool has_from_key = (blocks[0].normalized_time == 0);
  2020. bool has_to_key = (blocks.back().normalized_time == 1);
  2021. // If the first key defines initial conditions for a given property, use those values, else, use this element's current values.
  2022. for (auto& property : property_names)
  2023. StartAnimation(property, (has_from_key ? blocks[0].properties.GetProperty(property) : nullptr), animation.num_iterations, animation.alternate, animation.delay);
  2024. // Need to skip the first and last keys if they set the initial and end conditions, respectively.
  2025. for (int i = (has_from_key ? 1 : 0); i < (int)blocks.size() + (has_to_key ? -1 : 0); i++)
  2026. {
  2027. // Add properties of current key to animation
  2028. float time = blocks[i].normalized_time * animation.duration;
  2029. for (auto& property : blocks[i].properties.GetProperties())
  2030. AddAnimationKeyTime(property.first, &property.second, time, animation.tween);
  2031. }
  2032. // If the last key defines end conditions for a given property, use those values, else, use this element's current values.
  2033. float time = animation.duration;
  2034. for (auto& property : property_names)
  2035. AddAnimationKeyTime(property, (has_to_key ? blocks.back().properties.GetProperty(property) : nullptr), time, animation.tween);
  2036. }
  2037. }
  2038. }
  2039. dirty_animation = false;
  2040. }
  2041. }
  2042. void Element::AdvanceAnimations()
  2043. {
  2044. if (!animations.empty())
  2045. {
  2046. double time = Clock::GetElapsedTime();
  2047. for (auto& animation : animations)
  2048. {
  2049. Property property = animation.UpdateAndGetProperty(time, *this);
  2050. if (property.unit != Property::UNKNOWN)
  2051. SetProperty(animation.GetPropertyName(), property);
  2052. }
  2053. auto it_completed = std::remove_if(animations.begin(), animations.end(), [](const ElementAnimation& animation) { return animation.IsComplete(); });
  2054. std::vector<Dictionary> dictionary_list;
  2055. std::vector<bool> is_transition;
  2056. dictionary_list.reserve(animations.end() - it_completed);
  2057. is_transition.reserve(animations.end() - it_completed);
  2058. for (auto it = it_completed; it != animations.end(); ++it)
  2059. {
  2060. dictionary_list.emplace_back();
  2061. dictionary_list.back().emplace("property", it->GetPropertyName());
  2062. is_transition.push_back(it->IsTransition());
  2063. }
  2064. // Need to erase elements before submitting event, as iterators might be invalidated when calling external code.
  2065. animations.erase(it_completed, animations.end());
  2066. for (size_t i = 0; i < dictionary_list.size(); i++)
  2067. DispatchEvent(is_transition[i] ? TRANSITIONEND : ANIMATIONEND, dictionary_list[i]);
  2068. }
  2069. }
  2070. void Element::DirtyTransformState(bool perspective_changed, bool transform_changed, bool parent_transform_changed)
  2071. {
  2072. for (size_t i = 0; i < children.size(); ++i)
  2073. {
  2074. children[i]->DirtyTransformState(false, false, transform_changed || parent_transform_changed);
  2075. }
  2076. if (perspective_changed)
  2077. {
  2078. this->transform_state_perspective_dirty = true;
  2079. }
  2080. if (transform_changed)
  2081. {
  2082. this->transform_state_transform_dirty = true;
  2083. }
  2084. if (parent_transform_changed)
  2085. {
  2086. this->transform_state_parent_transform_dirty = true;
  2087. }
  2088. }
  2089. void Element::UpdateTransformState()
  2090. {
  2091. if (!(transform_state_perspective_dirty || transform_state_transform_dirty || transform_state_parent_transform_dirty))
  2092. {
  2093. return;
  2094. }
  2095. const ComputedValues& computed = element_meta->computed_values;
  2096. if (!computed.transform && computed.perspective <= 0)
  2097. {
  2098. transform_state.reset();
  2099. transform_state_perspective_dirty = false;
  2100. transform_state_transform_dirty = false;
  2101. transform_state_parent_transform_dirty = false;
  2102. return;
  2103. }
  2104. if(transform_state_perspective_dirty || transform_state_transform_dirty)
  2105. {
  2106. Context *context = GetContext();
  2107. Vector2f pos = GetAbsoluteOffset(Box::BORDER);
  2108. Vector2f size = GetBox().GetSize(Box::BORDER);
  2109. if (transform_state_perspective_dirty)
  2110. {
  2111. bool have_perspective = false;
  2112. TransformState::Perspective perspective_value;
  2113. perspective_value.vanish = Vector2f(pos.x + size.x * 0.5f, pos.y + size.y * 0.5f);
  2114. if (computed.perspective > 0.0f)
  2115. {
  2116. have_perspective = true;
  2117. // Compute the perspective value
  2118. perspective_value.distance = computed.perspective;
  2119. // Compute the perspective origin, if necessary
  2120. if (computed.perspective_origin_x.type == Style::PerspectiveOrigin::Percentage)
  2121. perspective_value.vanish.x = pos.x + computed.perspective_origin_x.value * 0.01f * size.x;
  2122. else
  2123. perspective_value.vanish.x = pos.x + computed.perspective_origin_x.value;
  2124. if (computed.perspective_origin_y.type == Style::PerspectiveOrigin::Percentage)
  2125. perspective_value.vanish.y = pos.y + computed.perspective_origin_y.value * 0.01f * size.y;
  2126. else
  2127. perspective_value.vanish.y = pos.y + computed.perspective_origin_y.value;
  2128. }
  2129. if (have_perspective && context)
  2130. {
  2131. if (!transform_state)
  2132. transform_state.reset(new TransformState);
  2133. perspective_value.view_size = context->GetDimensions();
  2134. transform_state->SetPerspective(&perspective_value);
  2135. }
  2136. else if (transform_state)
  2137. {
  2138. transform_state->SetPerspective(nullptr);
  2139. }
  2140. transform_state_perspective_dirty = false;
  2141. }
  2142. if (transform_state_transform_dirty)
  2143. {
  2144. bool have_local_perspective = false;
  2145. TransformState::LocalPerspective local_perspective;
  2146. bool have_transform = false;
  2147. Matrix4f transform_value = Matrix4f::Identity();
  2148. Vector3f transform_origin(pos.x + size.x * 0.5f, pos.y + size.y * 0.5f, 0);
  2149. if (computed.transform)
  2150. {
  2151. int n = computed.transform->GetNumPrimitives();
  2152. for (int i = 0; i < n; ++i)
  2153. {
  2154. const Transforms::Primitive &primitive = computed.transform->GetPrimitive(i);
  2155. if (primitive.ResolvePerspective(local_perspective.distance, *this))
  2156. {
  2157. have_local_perspective = true;
  2158. }
  2159. Matrix4f matrix;
  2160. if (primitive.ResolveTransform(matrix, *this))
  2161. {
  2162. transform_value *= matrix;
  2163. have_transform = true;
  2164. }
  2165. }
  2166. // Compute the transform origin
  2167. if (computed.transform_origin_x.type == Style::TransformOrigin::Percentage)
  2168. transform_origin.x = pos.x + computed.transform_origin_x.value * size.x * 0.01f;
  2169. else
  2170. transform_origin.x = pos.x + computed.transform_origin_x.value;
  2171. if (computed.transform_origin_y.type == Style::TransformOrigin::Percentage)
  2172. transform_origin.y = pos.y + computed.transform_origin_y.value * size.y * 0.01f;
  2173. else
  2174. transform_origin.y = pos.y + computed.transform_origin_y.value;
  2175. transform_origin.z = computed.transform_origin_z;
  2176. }
  2177. if (have_local_perspective && context)
  2178. {
  2179. if (!transform_state)
  2180. transform_state.reset(new TransformState);
  2181. local_perspective.view_size = context->GetDimensions();
  2182. transform_state->SetLocalPerspective(&local_perspective);
  2183. }
  2184. else if(transform_state)
  2185. {
  2186. transform_state->SetLocalPerspective(nullptr);
  2187. }
  2188. if (have_transform)
  2189. {
  2190. // TODO: If we're using the global projection matrix
  2191. // (perspective < 0), then scale the coordinates from
  2192. // pixel space to 3D unit space.
  2193. // Transform the Rocket context so that the computed `transform_origin'
  2194. // lies at the coordinate system origin.
  2195. transform_value =
  2196. Matrix4f::Translate(transform_origin)
  2197. * transform_value
  2198. * Matrix4f::Translate(-transform_origin);
  2199. if (!transform_state)
  2200. transform_state.reset(new TransformState);
  2201. transform_state->SetTransform(&transform_value);
  2202. }
  2203. else if (transform_state)
  2204. {
  2205. transform_state->SetTransform(nullptr);
  2206. }
  2207. transform_state_transform_dirty = false;
  2208. }
  2209. }
  2210. if (transform_state_parent_transform_dirty)
  2211. {
  2212. // We need to clean up from the top-most to the bottom-most dirt.
  2213. if (parent)
  2214. {
  2215. parent->UpdateTransformState();
  2216. }
  2217. if (transform_state)
  2218. {
  2219. // Store the parent's new full transform as our parent transform
  2220. Element *node = nullptr;
  2221. Matrix4f parent_transform;
  2222. for (node = parent; node; node = node->parent)
  2223. {
  2224. if (node->GetTransformState() && node->GetTransformState()->GetRecursiveTransform(&parent_transform))
  2225. {
  2226. transform_state->SetParentRecursiveTransform(&parent_transform);
  2227. break;
  2228. }
  2229. }
  2230. if (!node)
  2231. {
  2232. transform_state->SetParentRecursiveTransform(nullptr);
  2233. }
  2234. }
  2235. transform_state_parent_transform_dirty = false;
  2236. }
  2237. // If we neither have a local perspective, nor a perspective nor a
  2238. // transform, we don't need to keep the large TransformState object
  2239. // around. GetEffectiveTransformState() will then recursively visit
  2240. // parents in order to find a non-trivial TransformState.
  2241. if (transform_state && !transform_state->GetLocalPerspective(nullptr) && !transform_state->GetPerspective(nullptr) && !transform_state->GetTransform(nullptr))
  2242. {
  2243. transform_state.reset();
  2244. }
  2245. }
  2246. }
  2247. }