| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- /*
- * 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-2023 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/ElementUtilities.h"
- #include "../../../Include/RmlUi/Core/Event.h"
- #include "WidgetDropDown.h"
- namespace Rml {
- ElementFormControlSelect::ElementFormControlSelect(const String& tag) : ElementFormControl(tag), widget(nullptr)
- {
- widget = new WidgetDropDown(this);
- }
- ElementFormControlSelect::~ElementFormControlSelect()
- {
- delete widget;
- }
- String ElementFormControlSelect::GetValue() const
- {
- return GetAttribute("value", String());
- }
- void ElementFormControlSelect::SetValue(const String& value)
- {
- MoveChildren();
- SetAttribute("value", value);
- }
- void ElementFormControlSelect::SetSelection(int selection)
- {
- MoveChildren();
- widget->SetSelection(widget->GetOption(selection));
- }
- int ElementFormControlSelect::GetSelection() const
- {
- return widget->GetSelection();
- }
- Element* ElementFormControlSelect::GetOption(int index)
- {
- MoveChildren();
- return widget->GetOption(index);
- }
- int ElementFormControlSelect::GetNumOptions()
- {
- MoveChildren();
- return widget->GetNumOptions();
- }
- 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);
- }
- void ElementFormControlSelect::Remove(int index)
- {
- MoveChildren();
- widget->RemoveOption(index);
- }
- void ElementFormControlSelect::RemoveAll()
- {
- MoveChildren();
- widget->ClearOptions();
- }
- void ElementFormControlSelect::ShowSelectBox()
- {
- widget->ShowSelectBox();
- }
- void ElementFormControlSelect::HideSelectBox()
- {
- widget->HideSelectBox();
- }
- void ElementFormControlSelect::CancelSelectBox()
- {
- widget->CancelSelectBox();
- }
- bool ElementFormControlSelect::IsSelectBoxVisible()
- {
- return widget->IsSelectBoxVisible();
- }
- void ElementFormControlSelect::OnUpdate()
- {
- ElementFormControl::OnUpdate();
- MoveChildren();
- widget->OnUpdate();
- }
- void ElementFormControlSelect::OnRender()
- {
- ElementFormControl::OnRender();
- widget->OnRender();
- }
- 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 = GetFirstElementChild())
- {
- ElementPtr child = As<ElementPtr>(RemoveChild(raw_child));
- widget->AddOption(std::move(child), -1);
- }
- }
- 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<String>());
- }
- } // namespace Rml
|