| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675 |
- /*
- * 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 "WidgetDropDown.h"
- #include "../../../Include/RmlUi/Core/ComputedValues.h"
- #include "../../../Include/RmlUi/Core/Context.h"
- #include "../../../Include/RmlUi/Core/ElementDocument.h"
- #include "../../../Include/RmlUi/Core/ElementUtilities.h"
- #include "../../../Include/RmlUi/Core/Elements/ElementFormControl.h"
- #include "../../../Include/RmlUi/Core/Event.h"
- #include "../../../Include/RmlUi/Core/Factory.h"
- #include "../../../Include/RmlUi/Core/Input.h"
- #include "../../../Include/RmlUi/Core/Math.h"
- #include "../../../Include/RmlUi/Core/Profiling.h"
- #include "../../../Include/RmlUi/Core/Property.h"
- #include "../DataModel.h"
- namespace Rml {
- WidgetDropDown::WidgetDropDown(ElementFormControl* element)
- {
- parent_element = element;
- // Create the button and selection elements.
- button_element = As<Element*>(parent_element->AppendChild(Factory::InstanceNode("*", "selectarrow"), false));
- value_element = As<Element*>(parent_element->AppendChild(Factory::InstanceNode("*", "selectvalue"), false));
- selection_element = As<Element*>(parent_element->AppendChild(Factory::InstanceNode("*", "selectbox"), false));
- value_element->SetProperty(PropertyId::OverflowX, Property(Style::Overflow::Hidden));
- value_element->SetProperty(PropertyId::OverflowY, Property(Style::Overflow::Hidden));
- selection_element->SetProperty(PropertyId::Visibility, Property(Style::Visibility::Hidden));
- selection_element->SetProperty(PropertyId::ZIndex, Property(1.0f, Unit::NUMBER));
- selection_element->SetProperty(PropertyId::Clip, Property(Style::Clip::Type::None));
- selection_element->SetProperty(PropertyId::OverflowY, Property(Style::Overflow::Auto));
- // Prevent scrolling in the parent document when the mouse is inside the selection box.
- selection_element->SetProperty(PropertyId::OverscrollBehavior, Property(Style::OverscrollBehavior::Contain));
- parent_element->AddEventListener(EventId::Click, this, true);
- parent_element->AddEventListener(EventId::Blur, this);
- parent_element->AddEventListener(EventId::Focus, this);
- parent_element->AddEventListener(EventId::Keydown, this, true);
- }
- WidgetDropDown::~WidgetDropDown()
- {
- // We shouldn't clear the options ourselves, as removing the element will automatically clear children.
- // However, we do need to remove events of children.
- const int num_options = selection_element->GetNumChildren();
- for (int i = 0; i < num_options; i++)
- selection_element->GetChild(i)->RemoveEventListener(EventId::Click, this);
- parent_element->RemoveEventListener(EventId::Click, this, true);
- parent_element->RemoveEventListener(EventId::Blur, this);
- parent_element->RemoveEventListener(EventId::Focus, this);
- parent_element->RemoveEventListener(EventId::Keydown, this, true);
- DetachScrollEvent();
- }
- void WidgetDropDown::OnUpdate()
- {
- if (selection_dirty)
- {
- // Find the best option element to select in the following priority:
- // 1. First option with 'selected' attribute.
- // 2. An option whose 'value' attribute matches the select 'value' attribute.
- // 3. The first option.
- // The select element's value may change as a result of this.
- const String select_value = parent_element->GetAttribute("value", String());
- Element* select_option = selection_element->GetFirstElementChild();
- const int num_options = selection_element->GetNumChildren();
- for (int i = 0; i < num_options; i++)
- {
- Element* option = selection_element->GetChild(i);
- if (option->HasAttribute("selected"))
- {
- select_option = option;
- break;
- }
- else if (!select_value.empty() && select_value == option->GetAttribute("value", String()))
- {
- select_option = option;
- }
- }
- if (select_option)
- SetSelection(select_option);
- selection_dirty = false;
- }
- if (value_rml_dirty)
- {
- String value_rml;
- const int selection = GetSelection();
- if (Element* option = selection_element->GetChild(selection))
- {
- option->GetInnerRML(value_rml);
- if (auto model = value_element->GetDataModel())
- model->CopyAliases(option, value_element);
- }
- else
- {
- if (auto model = value_element->GetDataModel())
- model->EraseAliases(value_element);
- value_rml = parent_element->GetValue();
- }
- value_element->SetInnerRML(value_rml);
- value_rml_dirty = false;
- value_layout_dirty = true;
- }
- }
- void WidgetDropDown::OnRender()
- {
- if (box_visible && box_layout_dirty)
- {
- // Layout the selection box.
- // The following procedure should ensure that the selection box is never (partly) outside of the context's window.
- // This is achieved by positioning the box either above or below the 'select' element, and possibly shrinking
- // the element's height.
- // We try to respect user values of 'height', 'min-height', and 'max-height'. However, when we need to shrink the box
- // we will override the 'height' property.
- const float initial_used_height = selection_element->GetBox().GetSize().y;
- const Vector2f initial_scroll_offset = {selection_element->GetScrollLeft(), selection_element->GetScrollTop()};
- // Previously set 'height' property from this procedure must be removed for the calculations below to work as intended.
- if (selection_element->GetLocalStyleProperties().count(PropertyId::Height) == 1)
- {
- selection_element->RemoveProperty(PropertyId::Height);
- selection_element->GetOwnerDocument()->UpdateDocument();
- }
- Box box;
- ElementUtilities::BuildBox(box, parent_element->GetBox().GetSize(), selection_element);
- // The user can use 'margin-left/top/bottom' to offset the box away from the 'select' element, respectively
- // horizontally, vertically when box below, and vertically when box above.
- const float offset_x = box.GetEdge(BoxArea::Margin, BoxEdge::Left);
- const float offset_y_below = parent_element->GetBox().GetSize(BoxArea::Border).y + box.GetEdge(BoxArea::Margin, BoxEdge::Top);
- const float offset_y_above = -box.GetEdge(BoxArea::Margin, BoxEdge::Bottom);
- float window_height = 100'000.f;
- if (Context* context = parent_element->GetContext())
- window_height = float(context->GetDimensions().y);
- const float absolute_y = parent_element->GetAbsoluteOffset(BoxArea::Border).y;
- const float height_below = window_height - absolute_y - offset_y_below;
- const float height_above = absolute_y + offset_y_above;
- // Format the selection box and retrieve the 'native' height occupied by all the options, while respecting
- // the 'min/max-height' properties.
- ElementUtilities::FormatElement(selection_element, parent_element->GetBox().GetSize(BoxArea::Border));
- const float content_height = selection_element->GetOffsetHeight();
- if (content_height < height_below)
- {
- // Position box below
- selection_element->SetOffset(Vector2f(offset_x, offset_y_below), parent_element);
- }
- else if (content_height < height_above)
- {
- // Position box above
- selection_element->SetOffset(Vector2f(offset_x, -content_height + offset_y_above), parent_element);
- }
- else
- {
- // Shrink box and position either below or above
- const float padding_border_size = box.GetSizeAcross(BoxDirection::Vertical, BoxArea::Border, BoxArea::Padding);
- float height = 0.f;
- float offset_y = 0.f;
- if (height_below > height_above)
- {
- // Position below
- height = height_below - padding_border_size;
- offset_y = offset_y_below;
- }
- else
- {
- // Position above
- height = height_above - padding_border_size;
- offset_y = offset_y_above - height_above;
- }
- // Set the height and re-format the selection box.
- // @performance: This causes a re-layout of the document since we're setting the height and then updating
- // the document. However, the re-layout is not really needed, since the document's layout is independent of
- // the selection element's size, and we do all the formatting for the element here. We really only call
- // `UpdateDocument` to update the properties. See also `RemoveProperty` for height above.
- selection_element->SetProperty(PropertyId::Height, Property(height, Unit::PX));
- selection_element->GetOwnerDocument()->UpdateDocument();
- ElementUtilities::FormatElement(selection_element, parent_element->GetBox().GetSize(BoxArea::Border));
- // Set the scroll offset back, since it may have been clamped during the first element formatting.
- selection_element->SetScrollLeft(initial_scroll_offset.x);
- selection_element->SetScrollTop(initial_scroll_offset.y);
- selection_element->SetOffset(Vector2f(offset_x, offset_y), parent_element);
- }
- const float new_used_height = selection_element->GetBox().GetSize().y;
- const bool should_scroll_into_view =
- (box_opened_since_last_format || value_changed_since_last_box_format || initial_used_height != new_used_height);
- const int selection = GetSelection();
- if (should_scroll_into_view && selection != -1)
- {
- ScrollIntoViewOptions scroll_options = {
- box_opened_since_last_format ? ScrollAlignment::Center : ScrollAlignment::Nearest,
- ScrollAlignment::Nearest,
- ScrollBehavior::Instant,
- ScrollParentage::Closest,
- };
- GetOption(selection)->ScrollIntoView(scroll_options);
- }
- box_opened_since_last_format = false;
- value_changed_since_last_box_format = false;
- box_layout_dirty = false;
- }
- if (value_layout_dirty)
- {
- ElementUtilities::FormatElement(value_element, parent_element->GetBox().GetSize(BoxArea::Border));
- value_element->SetOffset(parent_element->GetBox().GetPosition(BoxArea::Content), parent_element);
- value_layout_dirty = false;
- }
- }
- void WidgetDropDown::OnLayout()
- {
- RMLUI_ZoneScopedNC("DropDownLayout", 0x7FFF00);
- if (parent_element->IsDisabled())
- {
- // Propagate disabled state to selectvalue and selectarrow
- value_element->SetPseudoClass("disabled", true);
- button_element->SetPseudoClass("disabled", true);
- }
- // Layout the button box. The selection element layout is deferred until it is opened.
- ElementUtilities::PositionElement(button_element, Vector2f(0, 0), ElementUtilities::TOP_RIGHT);
- box_layout_dirty = true;
- value_layout_dirty = true;
- }
- void WidgetDropDown::OnValueChange(const String& value)
- {
- if (!lock_selection)
- {
- Element* select_option = nullptr;
- const int num_options = selection_element->GetNumChildren();
- for (int i = 0; i < num_options; i++)
- {
- Element* option = selection_element->GetChild(i);
- Variant* variant = option->GetAttribute("value");
- if (variant && variant->Get<String>() == value)
- {
- select_option = option;
- break;
- }
- }
- if (select_option && !select_option->HasAttribute("selected"))
- SetSelection(select_option);
- }
- Dictionary parameters;
- parameters["value"] = value;
- parent_element->DispatchEvent(EventId::Change, parameters);
- value_rml_dirty = true;
- value_changed_since_last_box_format = true;
- }
- void WidgetDropDown::SetSelection(Element* select_option, bool force)
- {
- const String old_value = parent_element->GetAttribute("value", String());
- const String new_value = select_option ? select_option->GetAttribute("value", String()) : String();
- bool newly_selected = false;
- const int num_options = selection_element->GetNumChildren();
- for (int i = 0; i < num_options; i++)
- {
- Element* option = selection_element->GetChild(i);
- if (select_option == option)
- {
- if (!option->IsPseudoClassSet("checked"))
- newly_selected = true;
- option->SetAttribute("selected", String());
- option->SetPseudoClass("checked", true);
- }
- else
- {
- option->RemoveAttribute("selected");
- option->SetPseudoClass("checked", false);
- }
- }
- if (force || newly_selected || (old_value != new_value))
- {
- lock_selection = true;
- parent_element->SetAttribute("value", new_value);
- lock_selection = false;
- }
- value_rml_dirty = true;
- }
- void WidgetDropDown::SeekSelection(bool seek_forward)
- {
- const int selected_option = GetSelection();
- const int num_options = selection_element->GetNumChildren();
- const int seek_direction = (seek_forward ? 1 : -1);
- for (int i = selected_option + seek_direction; i >= 0 && i < num_options; i += seek_direction)
- {
- Element* element = selection_element->GetChild(i);
- if (!element->HasAttribute("disabled") && element->IsVisible())
- {
- SetSelection(element);
- return;
- }
- }
- // No valid option found, leave selection unchanged.
- }
- int WidgetDropDown::GetSelection() const
- {
- const int num_options = selection_element->GetNumChildren();
- for (int i = 0; i < num_options; i++)
- {
- if (selection_element->GetChild(i)->HasAttribute("selected"))
- return i;
- }
- return -1;
- }
- int WidgetDropDown::AddOption(const String& rml, const String& option_value, int before, bool select, bool selectable)
- {
- ElementPtr element = As<ElementPtr>(Factory::InstanceNode("*", "option"));
- element->SetInnerRML(rml);
- element->SetAttribute("value", option_value);
- if (select)
- element->SetAttribute("selected", String());
- if (!selectable)
- element->SetAttribute("disabled", String());
- int result = AddOption(std::move(element), before);
- return result;
- }
- int WidgetDropDown::AddOption(ElementPtr element, int before)
- {
- if (element->GetTagName() != "option")
- {
- Log::Message(Log::LT_WARNING, "A child of '%s' must be of type 'option' but '%s' was given. See element '%s'.",
- parent_element->GetTagName().c_str(), element->GetTagName().c_str(), parent_element->GetAddress().c_str());
- return -1;
- }
- const int num_children_before = selection_element->GetNumChildren();
- int option_index;
- if (before < 0 || before >= num_children_before)
- {
- selection_element->AppendChild(std::move(element));
- option_index = num_children_before;
- }
- else
- {
- selection_element->InsertBefore(std::move(element), selection_element->GetChild(before));
- option_index = before;
- }
- return option_index;
- }
- void WidgetDropDown::RemoveOption(int index)
- {
- Element* element = selection_element->GetChild(index);
- if (!element)
- return;
- selection_element->RemoveChild(element);
- }
- void WidgetDropDown::ClearOptions()
- {
- while (Element* element = selection_element->GetLastElementChild())
- selection_element->RemoveChild(element);
- }
- Element* WidgetDropDown::GetOption(int index)
- {
- return selection_element->GetChild(index);
- }
- int WidgetDropDown::GetNumOptions() const
- {
- return selection_element->GetNumChildren();
- }
- void WidgetDropDown::OnChildAdd(Element* element)
- {
- // We have a special case for 'data-for' here, since that element must remain hidden.
- if (element->GetParentElement() != selection_element || element->HasAttribute("data-for") || element->GetTagName() != "option")
- return;
- // Force to block display. Register a click handler so we can be notified of selection.
- element->SetProperty(PropertyId::Display, Property(Style::Display::Block));
- element->SetProperty(PropertyId::Clip, Property(Style::Clip::Type::Auto));
- element->AddEventListener(EventId::Click, this);
- // Select the option if appropriate.
- if (element->HasAttribute("selected"))
- SetSelection(element, true);
- selection_dirty = true;
- box_layout_dirty = true;
- }
- void WidgetDropDown::OnChildRemove(Element* element)
- {
- if (element->GetParentElement() != selection_element)
- return;
- element->RemoveEventListener(EventId::Click, this);
- if (element->HasAttribute("selected"))
- SetSelection(nullptr);
- selection_dirty = true;
- box_layout_dirty = true;
- }
- void WidgetDropDown::AttachScrollEvent()
- {
- if (ElementDocument* document = parent_element->GetOwnerDocument())
- document->AddEventListener(EventId::Scroll, this, true);
- }
- void WidgetDropDown::DetachScrollEvent()
- {
- if (ElementDocument* document = parent_element->GetOwnerDocument())
- document->RemoveEventListener(EventId::Scroll, this, true);
- }
- void WidgetDropDown::ProcessEvent(Event& event)
- {
- if (parent_element->IsDisabled())
- return;
- // Process the button onclick
- switch (event.GetId())
- {
- case EventId::Click:
- {
- if (event.GetCurrentElement()->GetParentElement() == selection_element)
- {
- const int num_options = selection_element->GetNumChildren();
- // Find the element in the options and fire the selection event
- for (int i = 0; i < num_options; i++)
- {
- Element* current_element = event.GetCurrentElement();
- if (selection_element->GetChild(i) == current_element)
- {
- if (!event.GetCurrentElement()->HasAttribute("disabled"))
- {
- SetSelection(current_element);
- event.StopPropagation();
- HideSelectBox();
- parent_element->Focus();
- }
- }
- }
- }
- else
- {
- // We have to check that this event isn't targeted to an element
- // inside the selection box as we'll get all events coming from our
- // root level select element as well as the ones coming from options (which
- // get caught in the above if)
- Element* element = event.GetTargetElement();
- while (element && element != parent_element)
- {
- if (element == selection_element)
- return;
- element = element->GetParentElement();
- }
- if (selection_element->GetComputedValues().visibility() == Style::Visibility::Hidden)
- ShowSelectBox();
- else
- HideSelectBox();
- }
- }
- break;
- case EventId::Focus:
- {
- if (event.GetTargetElement() == parent_element)
- {
- value_element->SetPseudoClass("focus", true);
- button_element->SetPseudoClass("focus", true);
- }
- }
- break;
- case EventId::Blur:
- {
- if (event.GetTargetElement() == parent_element)
- {
- HideSelectBox();
- value_element->SetPseudoClass("focus", false);
- button_element->SetPseudoClass("focus", false);
- }
- }
- break;
- case EventId::Keydown:
- {
- Input::KeyIdentifier key_identifier = (Input::KeyIdentifier)event.GetParameter<int>("key_identifier", 0);
- auto HasVerticalNavigation = [this](PropertyId id) {
- if (const Property* p = parent_element->GetProperty(id))
- {
- if (p->unit != Unit::KEYWORD)
- return true;
- const Style::Nav nav = static_cast<Style::Nav>(p->Get<int>());
- if (nav == Style::Nav::Auto || nav == Style::Nav::Vertical)
- return true;
- }
- return false;
- };
- switch (key_identifier)
- {
- case Input::KI_UP:
- if (!box_visible && HasVerticalNavigation(PropertyId::NavUp))
- break;
- SeekSelection(false);
- event.StopPropagation();
- break;
- case Input::KI_DOWN:
- if (!box_visible && HasVerticalNavigation(PropertyId::NavDown))
- break;
- SeekSelection(true);
- event.StopPropagation();
- break;
- case Input::KI_RETURN:
- case Input::KI_NUMPADENTER:
- parent_element->Click();
- event.StopPropagation();
- break;
- default: break;
- }
- }
- break;
- case EventId::Scroll:
- {
- if (box_visible)
- {
- // Close the select box if we scroll outside the select box.
- bool scrolls_selection_box = false;
- for (Element* element = event.GetTargetElement(); element; element = element->GetParentElement())
- {
- if (element == selection_element)
- {
- scrolls_selection_box = true;
- break;
- }
- }
- if (!scrolls_selection_box)
- HideSelectBox();
- }
- }
- break;
- default: break;
- }
- }
- void WidgetDropDown::ShowSelectBox()
- {
- if (box_visible)
- return;
- selected_value_on_box_open = parent_element->GetAttribute<String>("value", "");
- selection_element->SetProperty(PropertyId::Visibility, Property(Style::Visibility::Visible));
- selection_element->SetPseudoClass("checked", true);
- value_element->SetPseudoClass("checked", true);
- button_element->SetPseudoClass("checked", true);
- box_layout_dirty = true;
- box_opened_since_last_format = true;
- AttachScrollEvent();
- box_visible = true;
- }
- void WidgetDropDown::HideSelectBox()
- {
- if (!box_visible)
- return;
- selection_element->SetProperty(PropertyId::Visibility, Property(Style::Visibility::Hidden));
- selection_element->RemoveProperty(PropertyId::Height);
- selection_element->SetPseudoClass("checked", false);
- value_element->SetPseudoClass("checked", false);
- button_element->SetPseudoClass("checked", false);
- DetachScrollEvent();
- box_visible = false;
- }
- void WidgetDropDown::CancelSelectBox()
- {
- if (!box_visible)
- return;
- if (parent_element->GetAttribute<String>("value", "") != selected_value_on_box_open)
- parent_element->SetAttribute("value", selected_value_on_box_open);
- HideSelectBox();
- }
- bool WidgetDropDown::IsSelectBoxVisible()
- {
- return box_visible;
- }
- } // namespace Rml
|