1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
|
/*
* This source file is part of libRocket, the HTML/CSS Interface Middleware
*
* For the latest information, see http://www.librocket.com
*
* Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
*/
#include "ElementInfo.h"
#include "../../Include/Rocket/Core/Property.h"
#include "../../Include/Rocket/Core/Factory.h"
#include "../../Include/Rocket/Core/StyleSheet.h"
#include "Geometry.h"
#include "CommonSource.h"
#include "InfoSource.h"
#include <map>
namespace Rocket {
namespace Debugger {
ElementInfo::ElementInfo(const Core::String& tag) : Core::ElementDocument(tag)
{
hover_element = NULL;
source_element = NULL;
}
ElementInfo::~ElementInfo()
{
}
// Initialises the info element.
bool ElementInfo::Initialise()
{
SetInnerRML(info_rml);
SetId("rkt-debug-info");
Core::StyleSheet* style_sheet = Core::Factory::InstanceStyleSheetString(Core::String(common_rcss) + Core::String(info_rcss));
if (style_sheet == NULL)
return false;
SetStyleSheet(style_sheet);
style_sheet->RemoveReference();
return true;
}
// Clears the element references.
void ElementInfo::Reset()
{
hover_element = NULL;
SetSourceElement(NULL);
}
// Called when an element is destroyed.
void ElementInfo::OnElementDestroy(Core::Element* element)
{
if (hover_element == element)
hover_element = NULL;
if (source_element == element)
source_element = NULL;
}
void ElementInfo::RenderHoverElement()
{
if (hover_element)
{
for (int i = 0; i < hover_element->GetNumBoxes(); i++)
{
// Render the content area.
const Core::Box element_box = hover_element->GetBox(i);
Geometry::RenderOutline(hover_element->GetAbsoluteOffset(Core::Box::BORDER) + element_box.GetPosition(Core::Box::BORDER), element_box.GetSize(Core::Box::BORDER), Core::Colourb(255, 0, 0, 255), 1);
}
}
}
void ElementInfo::RenderSourceElement()
{
if (source_element)
{
for (int i = 0; i < source_element->GetNumBoxes(); i++)
{
const Core::Box element_box = source_element->GetBox(i);
// Content area:
Geometry::RenderBox(source_element->GetAbsoluteOffset(Core::Box::BORDER) + element_box.GetPosition(Core::Box::CONTENT), element_box.GetSize(), Core::Colourb(158, 214, 237, 128));
// Padding area:
Geometry::RenderBox(source_element->GetAbsoluteOffset(Core::Box::BORDER) + element_box.GetPosition(Core::Box::PADDING), element_box.GetSize(Core::Box::PADDING), source_element->GetAbsoluteOffset(Core::Box::BORDER) + element_box.GetPosition(Core::Box::CONTENT), element_box.GetSize(), Core::Colourb(135, 122, 214, 128));
// Border area:
Geometry::RenderBox(source_element->GetAbsoluteOffset(Core::Box::BORDER) + element_box.GetPosition(Core::Box::BORDER), element_box.GetSize(Core::Box::BORDER), source_element->GetAbsoluteOffset(Core::Box::BORDER) + element_box.GetPosition(Core::Box::PADDING), element_box.GetSize(Core::Box::PADDING), Core::Colourb(133, 133, 133, 128));
// Border area:
Geometry::RenderBox(source_element->GetAbsoluteOffset(Core::Box::BORDER) + element_box.GetPosition(Core::Box::MARGIN), element_box.GetSize(Core::Box::MARGIN), source_element->GetAbsoluteOffset(Core::Box::BORDER) + element_box.GetPosition(Core::Box::BORDER), element_box.GetSize(Core::Box::BORDER), Core::Colourb(240, 255, 131, 128));
}
}
}
void ElementInfo::ProcessEvent(Core::Event& event)
{
Core::ElementDocument::ProcessEvent(event);
// Only process events if we're visible
if (IsVisible())
{
if (event == "click")
{
Core::Element* target_element = event.GetTargetElement();
// Deal with clicks on our own elements differently.
if (target_element->GetOwnerDocument() == this)
{
// If it's a pane title, then we need to toggle the visibility of its sibling (the contents pane underneath it).
if (target_element->GetTagName() == "h2")
{
Core::Element* panel = target_element->GetNextSibling();
if (panel->IsVisible())
panel->SetProperty("display", "none");
else
panel->SetProperty("display", "block");
event.StopPropagation();
}
else if (event.GetTargetElement()->GetId() == "close_button")
{
if (IsVisible())
SetProperty("visibility", "hidden");
}
// Check if the id is in the form "a %d" or "c %d" - these are the ancestor or child labels.
else
{
int element_index;
if (sscanf(target_element->GetId().CString(), "a %d", &element_index) == 1)
{
Core::Element* new_source_element = source_element;
for (int i = 0; i < element_index; i++)
{
if (new_source_element != NULL)
new_source_element = new_source_element->GetParentNode();
}
SetSourceElement(new_source_element);
}
else if (sscanf(target_element->GetId().CString(), "c %d", &element_index) == 1)
{
if (source_element != NULL)
SetSourceElement(source_element->GetChild(element_index));
}
event.StopPropagation();
}
}
// Otherwise we just want to focus on the clicked element (unless it's on a debug element)
else if (target_element->GetOwnerDocument() != NULL && !IsDebuggerElement(target_element))
{
Core::Element* new_source_element = target_element;
if (new_source_element != source_element)
{
SetSourceElement(new_source_element);
event.StopPropagation();
}
}
}
else if (event == "mouseover")
{
Core::Element* target_element = event.GetTargetElement();
// Deal with clicks on our own elements differently.
Core::ElementDocument* owner_document = target_element->GetOwnerDocument();
if (owner_document == this)
{
// Check if the id is in the form "a %d" or "c %d" - these are the ancestor or child labels.
int element_index;
if (sscanf(target_element->GetId().CString(), "a %d", &element_index) == 1)
{
hover_element = source_element;
for (int i = 0; i < element_index; i++)
{
if (hover_element != NULL)
hover_element = hover_element->GetParentNode();
}
}
else if (sscanf(target_element->GetId().CString(), "c %d", &element_index) == 1)
{
if (source_element != NULL)
hover_element = source_element->GetChild(element_index);
}
}
// Otherwise we just want to focus on the clicked element (unless it's on a debug element)
else if (owner_document != NULL && owner_document->GetId().Find("rkt-debug-") != 0)
{
hover_element = target_element;
}
}
}
}
void ElementInfo::SetSourceElement(Core::Element* new_source_element)
{
source_element = new_source_element;
UpdateSourceElement();
}
void ElementInfo::UpdateSourceElement()
{
// Set the title:
Core::Element* title_content = GetElementById("title-content");
if (title_content != NULL)
{
if (source_element != NULL)
title_content->SetInnerRML(source_element->GetTagName());
else
title_content->SetInnerRML("Element Information");
}
// Set the attributes:
Core::Element* attributes_content = GetElementById("attributes-content");
if (attributes_content)
{
int index = 0;
Core::String name;
Core::String value;
Core::String attributes;
if (source_element != NULL)
{
while (source_element->IterateAttributes(index, name, value))
attributes.Append(Core::String(name.Length() + value.Length() + 32, "%s: <em>%s</em><br />", name.CString(), value.CString()));
}
if (attributes.Empty())
{
while (attributes_content->HasChildNodes())
attributes_content->RemoveChild(attributes_content->GetChild(0));
}
else
attributes_content->SetInnerRML(attributes);
}
// Set the properties:
Core::Element* properties_content = GetElementById("properties-content");
if (properties_content)
{
Core::String properties;
if (source_element != NULL)
BuildElementPropertiesRML(properties, source_element, source_element);
if (properties.Empty())
{
while (properties_content->HasChildNodes())
properties_content->RemoveChild(properties_content->GetChild(0));
}
else
properties_content->SetInnerRML(properties);
}
// Set the position:
Core::Element* position_content = GetElementById("position-content");
if (position_content)
{
// left, top, width, height.
if (source_element != NULL)
{
Core::Vector2f element_offset = source_element->GetRelativeOffset(Core::Box::BORDER);
Core::Vector2f element_size = source_element->GetBox().GetSize(Core::Box::BORDER);
Core::String positions;
positions.Append(Core::String(64, "left: <em>%.0fpx</em><br />", element_offset.x));
positions.Append(Core::String(64, "top: <em>%.0fpx</em><br />", element_offset.y));
positions.Append(Core::String(64, "width: <em>%.0fpx</em><br />", element_size.x));
positions.Append(Core::String(64, "height: <em>%.0fpx</em><br />", element_size.y));
position_content->SetInnerRML(positions);
}
else
{
while (position_content->HasChildNodes())
position_content->RemoveChild(position_content->GetFirstChild());
}
}
// Set the ancestors:
Core::Element* ancestors_content = GetElementById("ancestors-content");
if (ancestors_content)
{
Core::String ancestors;
Core::Element* element_ancestor = NULL;
if (source_element != NULL)
element_ancestor = source_element->GetParentNode();
int ancestor_depth = 1;
while (element_ancestor)
{
Core::String ancestor_name = element_ancestor->GetTagName();
const Core::String ancestor_id = element_ancestor->GetId();
if (!ancestor_id.Empty())
{
ancestor_name += "#";
ancestor_name += ancestor_id;
}
ancestors.Append(Core::String(ancestor_name.Length() + 32, "<p id=\"a %d\">%s</p>", ancestor_depth, ancestor_name.CString()));
element_ancestor = element_ancestor->GetParentNode();
ancestor_depth++;
}
if (ancestors.Empty())
{
while (ancestors_content->HasChildNodes())
ancestors_content->RemoveChild(ancestors_content->GetFirstChild());
}
else
ancestors_content->SetInnerRML(ancestors);
}
// Set the children:
Core::Element* children_content = GetElementById("children-content");
if (children_content)
{
Core::String children;
if (source_element != NULL)
{
for (int i = 0; i < source_element->GetNumChildren(); i++)
{
Core::Element* child = source_element->GetChild(i);
// If this is a debugger document, do not show it.
if (IsDebuggerElement(child))
continue;
Core::String child_name = child->GetTagName();
const Core::String child_id = child->GetId();
if (!child_id.Empty())
{
child_name += "#";
child_name += child_id;
}
children.Append(Core::String(child_name.Length() + 32, "<p id=\"c %d\">%s</p>", i, child_name.CString()));
}
}
if (children.Empty())
{
while (children_content->HasChildNodes())
children_content->RemoveChild(children_content->GetChild(0));
}
else
children_content->SetInnerRML(children);
}
}
void ElementInfo::BuildElementPropertiesRML(Core::String& property_rml, Core::Element* element, Core::Element* primary_element)
{
NamedPropertyMap property_map;
int property_index = 0;
Core::String property_name;
Core::PseudoClassList property_pseudo_classes;
const Core::Property* property;
while (element->IterateProperties(property_index, property_pseudo_classes, property_name, property))
{
// Check that this property isn't overridden or just not inherited.
if (primary_element->GetProperty(property_name) != property)
continue;
NamedPropertyMap::iterator i = property_map.find(property_pseudo_classes);
if (i == property_map.end())
property_map[property_pseudo_classes] = NamedPropertyList(1, NamedProperty(property_name, property));
else
{
// Find a place in this list of properties to insert the new one.
NamedPropertyList& properties = (*i).second;
NamedPropertyList::iterator insert_iterator = properties.begin();
while (insert_iterator != properties.end())
{
int source_cmp = strcasecmp((*insert_iterator).second->source.CString(), property->source.CString());
if (source_cmp > 0 ||
(source_cmp == 0 && (*insert_iterator).second->source_line_number >= property->source_line_number))
break;
++insert_iterator;
}
(*i).second.insert(insert_iterator, NamedProperty(property_name, property));
}
}
if (!property_map.empty())
{
// Print the 'inherited from ...' header if we're not the primary element.
if (element != primary_element)
property_rml += Core::String(element->GetTagName().Length() + 32, "<h3>inherited from %s</h3>", element->GetTagName().CString());
NamedPropertyMap::iterator base_properties = property_map.find(Core::PseudoClassList());
if (base_properties != property_map.end())
BuildPropertiesRML(property_rml, (*base_properties).second);
for (NamedPropertyMap::iterator i = property_map.begin(); i != property_map.end(); ++i)
{
// Skip the base property list, we've already printed it.
if (i == base_properties)
continue;
// Print the pseudo-class header.
property_rml.Append("<h3>");
for (Core::PseudoClassList::const_iterator j = (*i).first.begin(); j != (*i).first.end(); ++j)
{
property_rml.Append(" :");
property_rml.Append(*j);
}
property_rml.Append("</h3>");
BuildPropertiesRML(property_rml, (*i).second);
}
}
if (element->GetParentNode() != NULL)
BuildElementPropertiesRML(property_rml, element->GetParentNode(), primary_element);
}
void ElementInfo::BuildPropertiesRML(Core::String& property_rml, const NamedPropertyList& properties)
{
Core::String last_source;
int last_source_line = -1;
for (size_t i = 0; i < properties.size(); ++i)
{
if (i == 0 ||
last_source != properties[i].second->source ||
last_source_line != properties[i].second->source_line_number)
{
last_source = properties[i].second->source;
last_source_line = properties[i].second->source_line_number;
property_rml.Append("<h4>");
if (last_source.Empty() &&
last_source_line == 0)
property_rml.Append("<em>inline</em>");
else
property_rml.Append(Core::String(last_source.Length() + 32, "<em>%s</em>: %d", last_source.CString(), last_source_line));
property_rml.Append("</h4>");
}
BuildPropertyRML(property_rml, properties[i].first, properties[i].second);
}
}
void ElementInfo::BuildPropertyRML(Core::String& property_rml, const Core::String& name, const Core::Property* property)
{
Core::String property_value = property->ToString();
RemoveTrailingZeroes(property_value);
property_rml += Core::String(name.Length() + property_value.Length() + 32, "%s: <em>%s;</em><br />", name.CString(), property_value.CString());
}
void ElementInfo::RemoveTrailingZeroes(Core::String& string)
{
if (string.Empty())
{
return;
}
// First, check for a decimal point. No point, no chance of trailing zeroes!
size_t decimal_point_position = string.Find(".");
if (decimal_point_position != Core::String::npos)
{
// Ok, so now we start at the back of the string and find the first
// numeral. If the character we find is a zero, then we start counting
// back till we find something that isn't a zero or a decimal point -
// and then remove all that we've counted.
size_t last_zero = string.Length() - 1;
while ((string[last_zero] < '0' || string[last_zero] > '9') && string[last_zero] != '.')
{
if (last_zero == 0)
{
return;
}
if (string[last_zero] == '.')
{
break;
}
last_zero--;
}
if (!(string[last_zero] == '0' || string[last_zero] == '.'))
{
return;
}
// Now find the first character that isn't a zero (unless we're just
// chopping off the dangling decimal point)
size_t first_zero = last_zero;
if (string[last_zero] == '0')
{
while (first_zero > 0 && string[first_zero - 1] == '0')
{
first_zero--;
}
// Check for a preceeding decimal point - if it's all zeroes until the
// decimal, then we should remove it too.
if (string[first_zero - 1] == '.')
{
first_zero--;
}
}
// Now remove everything between first_zero and last_zero, inclusive.
if (last_zero > first_zero)
string.Erase(first_zero, (last_zero - first_zero) + 1);
}
}
bool ElementInfo::IsDebuggerElement(Core::Element* element)
{
return element->GetOwnerDocument()->GetId().Find("rkt-debug-") == 0;
}
}
}
|