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
|
/*
* 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 "precompiled.h"
#include "ElementHandle.h"
#include "../../Include/Rocket/Core/ElementDocument.h"
#include "../../Include/Rocket/Core/ElementUtilities.h"
#include "../../Include/Rocket/Core/Property.h"
#include "../../Include/Rocket/Core/Event.h"
namespace Rocket {
namespace Core {
ElementHandle::ElementHandle(const String& tag) : Element(tag), drag_start(0, 0)
{
// Make sure we can be dragged!
SetProperty(DRAG, DRAG);
move_target = NULL;
size_target = NULL;
initialised = false;
}
ElementHandle::~ElementHandle()
{
}
void ElementHandle::OnAttributeChange(const PropertyNameList& changed_attributes)
{
Element::OnAttributeChange(changed_attributes);
// Reset initialised state if the move or size targets have changed.
if (changed_attributes.find("move_target") != changed_attributes.end() ||
changed_attributes.find("size_target") != changed_attributes.end())
{
initialised = false;
move_target = NULL;
size_target = NULL;
}
}
void ElementHandle::ProcessEvent(Event& event)
{
Element::ProcessEvent(event);
if (event.GetTargetElement() == this)
{
// Lazy initialisation.
if (!initialised && GetOwnerDocument())
{
String move_target_name = GetAttribute<String>("move_target", "");
if (!move_target_name.Empty())
move_target = GetElementById(move_target_name);
String size_target_name = GetAttribute<String>("size_target", "");
if (!size_target_name.Empty())
size_target = GetElementById(size_target_name);
initialised = true;
}
if (event == DRAGSTART)
{
// Store the drag starting position
drag_start.x = event.GetParameter< int >("mouse_x", 0);
drag_start.y = event.GetParameter< int >("mouse_y", 0);
// Store current element position and size
if (move_target)
{
move_original_position.x = move_target->GetOffsetLeft();
move_original_position.y = move_target->GetOffsetTop();
}
if (size_target)
size_original_size = size_target->GetBox().GetSize(Box::CONTENT);
}
else if (event == DRAG)
{
// Work out the delta
int x = event.GetParameter< int >("mouse_x", 0) - drag_start.x;
int y = event.GetParameter< int >("mouse_y", 0) - drag_start.y;
// Update the move and size objects
if (move_target)
{
move_target->SetProperty(LEFT, Property(Math::RealToInteger(move_original_position.x + x), Property::PX));
move_target->SetProperty(TOP, Property(Math::RealToInteger(move_original_position.y + y), Property::PX));
}
if (size_target)
{
const Property *margin_top, *margin_bottom, *margin_left, *margin_right;
size_target->GetMarginProperties(&margin_top, &margin_bottom, &margin_left, &margin_right);
// Check if we have auto-margins; if so, they have to be set to the current margins.
if (margin_top->unit == Property::KEYWORD)
size_target->SetProperty(MARGIN_TOP, Property((float) Math::RealToInteger(size_target->GetBox().GetEdge(Box::MARGIN, Box::TOP)), Property::PX));
if (margin_right->unit == Property::KEYWORD)
size_target->SetProperty(MARGIN_RIGHT, Property((float) Math::RealToInteger(size_target->GetBox().GetEdge(Box::MARGIN, Box::RIGHT)), Property::PX));
if (margin_bottom->unit == Property::KEYWORD)
size_target->SetProperty(MARGIN_BOTTOM, Property((float) Math::RealToInteger(size_target->GetBox().GetEdge(Box::MARGIN, Box::BOTTOM)), Property::PX));
if (margin_left->unit == Property::KEYWORD)
size_target->SetProperty(MARGIN_LEFT, Property((float) Math::RealToInteger(size_target->GetBox().GetEdge(Box::MARGIN, Box::LEFT)), Property::PX));
int new_x = Math::RealToInteger(size_original_size.x + x);
int new_y = Math::RealToInteger(size_original_size.y + y);
size_target->SetProperty(WIDTH, Property(Math::Max< float >((float) new_x, 0), Property::PX));
size_target->SetProperty(HEIGHT, Property(Math::Max< float >((float) new_y, 0), Property::PX));
}
Dictionary parameters;
parameters.Set("handle_x", x);
parameters.Set("handle_y", y);
DispatchEvent("handledrag", parameters);
}
}
}
}
}
|