/*
* This source file is part of RmlUi, the HTML/CSS Interface Middleware
*
* For the latest information, see http://github.com/mikke89/RmlUi
*
* Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
* Copyright (c) 2019 The RmlUi Team, and contributors
*
* 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 "../../../Include/RmlUi/Core/Elements/ElementFormControlSelect.h"
#include "../../../Include/RmlUi/Core/ElementText.h"
#include "../../../Include/RmlUi/Core/Event.h"
#include "../../../Include/RmlUi/Core/ElementUtilities.h"
#include "WidgetDropDown.h"
namespace Rml {
// Constructs a new ElementFormControlSelect.
ElementFormControlSelect::ElementFormControlSelect(const String& tag) : ElementFormControl(tag), widget(nullptr)
{
widget = new WidgetDropDown(this);
}
ElementFormControlSelect::~ElementFormControlSelect()
{
delete widget;
}
// Returns a string representation of the current value of the form control.
String ElementFormControlSelect::GetValue() const
{
return GetAttribute("value", String());
}
// Sets the current value of the form control.
void ElementFormControlSelect::SetValue(const String& value)
{
MoveChildren();
SetAttribute("value", value);
}
// Sets the index of the selection. If the new index lies outside of the bounds, it will be clamped.
void ElementFormControlSelect::SetSelection(int selection)
{
MoveChildren();
widget->SetSelection(widget->GetOption(selection));
}
// Returns the index of the currently selected item.
int ElementFormControlSelect::GetSelection() const
{
return widget->GetSelection();
}
// Returns one of the select control's option elements.
Element* ElementFormControlSelect::GetOption(int index)
{
MoveChildren();
return widget->GetOption(index);
}
// Returns the number of options in the select control.
int ElementFormControlSelect::GetNumOptions()
{
MoveChildren();
return widget->GetNumOptions();
}
// Adds a new option to the select control.
int ElementFormControlSelect::Add(const String& rml, const String& value, int before, bool selectable)
{
MoveChildren();
return widget->AddOption(rml, value, before, false, selectable);
}
int ElementFormControlSelect::Add(ElementPtr element, int before)
{
MoveChildren();
return widget->AddOption(std::move(element), before);
}
// Removes an option from the select control.
void ElementFormControlSelect::Remove(int index)
{
MoveChildren();
widget->RemoveOption(index);
}
// Removes all options from the select control.
void ElementFormControlSelect::RemoveAll()
{
MoveChildren();
widget->ClearOptions();
}
// Moves all children to be under control of the widget.
void ElementFormControlSelect::OnUpdate()
{
ElementFormControl::OnUpdate();
MoveChildren();
widget->OnUpdate();
}
// Updates the layout of the widget's elements.
void ElementFormControlSelect::OnRender()
{
ElementFormControl::OnRender();
widget->OnRender();
}
// Forces an internal layout.
void ElementFormControlSelect::OnLayout()
{
widget->OnLayout();
}
void ElementFormControlSelect::OnChildAdd(Element* child)
{
if (widget)
widget->OnChildAdd(child);
}
void ElementFormControlSelect::OnChildRemove(Element* child)
{
if (widget)
widget->OnChildRemove(child);
}
void ElementFormControlSelect::MoveChildren()
{
// Move any child elements into the widget (except for the three functional elements).
while (Element* raw_child = GetFirstChild())
{
ElementPtr child = RemoveChild(raw_child);
widget->AddOption(std::move(child), -1);
}
}
// Returns true to mark this element as replaced.
bool ElementFormControlSelect::GetIntrinsicDimensions(Vector2f& intrinsic_dimensions, float& /*ratio*/)
{
intrinsic_dimensions.x = 128;
intrinsic_dimensions.y = 16;
return true;
}
void ElementFormControlSelect::OnAttributeChange(const ElementAttributes& changed_attributes)
{
RMLUI_ASSERT(widget);
ElementFormControl::OnAttributeChange(changed_attributes);
auto it = changed_attributes.find("value");
if (it != changed_attributes.end())
widget->OnValueChange(it->second.Get());
}
} // namespace Rml