| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- /*
- * 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 "WidgetSliderInput.h"
- #include "../../Include/RmlUi/Core/Math.h"
- #include "../../Include/RmlUi/Core/Element.h"
- #include "../../Include/RmlUi/Core/Profiling.h"
- namespace Rml {
- namespace Controls {
- WidgetSliderInput::WidgetSliderInput(ElementFormControl* parent) : WidgetSlider(parent)
- {
- value = 0;
- min_value = 0;
- max_value = 100;
- step = 1;
- }
- WidgetSliderInput::~WidgetSliderInput()
- {
- }
- void WidgetSliderInput::SetValue(float target_value)
- {
- float num_steps = (target_value - min_value) / step;
- float new_value = min_value + Rml::Core::Math::RoundFloat(num_steps) * step;
- if(new_value != value)
- SetBarPosition(SetValueInternal(new_value));
- }
- float WidgetSliderInput::GetValue() const
- {
- return value;
- }
- // Sets the minimum value of the slider.
- void WidgetSliderInput::SetMinValue(float _min_value)
- {
- min_value = _min_value;
- }
- // Sets the maximum value of the slider.
- void WidgetSliderInput::SetMaxValue(float _max_value)
- {
- max_value = _max_value;
- }
- // Sets the slider's value increment.
- void WidgetSliderInput::SetStep(float _step)
- {
- // Can't have a zero step!
- if (_step == 0)
- return;
- step = _step;
- }
- // Formats the slider's elements.
- void WidgetSliderInput::FormatElements()
- {
- RMLUI_ZoneScopedNC("RangeOnResize", 0x228044);
- Rml::Core::Vector2f box = GetParent()->GetBox().GetSize();
- WidgetSlider::FormatElements(box, GetOrientation() == VERTICAL ? box.y : box.x);
- }
- // Called when the slider's bar position is set or dragged.
- float WidgetSliderInput::OnBarChange(float bar_position)
- {
- float new_value = min_value + bar_position * (max_value - min_value);
- int num_steps = Rml::Core::Math::RoundToInteger((new_value - value) / step);
- return SetValueInternal(value + num_steps * step);
- }
- // Called when the slider is incremented by one 'line'.
- float WidgetSliderInput::OnLineIncrement()
- {
- return SetValueInternal(value + step);
- }
- // Called when the slider is decremented by one 'line'.
- float WidgetSliderInput::OnLineDecrement()
- {
- return SetValueInternal(value - step);
- }
- // Clamps the new value, sets it on the slider.
- float WidgetSliderInput::SetValueInternal(float new_value)
- {
- if (min_value < max_value)
- {
- value = Rml::Core::Math::Clamp(new_value, min_value, max_value);
- }
- else if (min_value > max_value)
- {
- value = Rml::Core::Math::Clamp(new_value, max_value, min_value);
- }
- else
- {
- value = min_value;
- return 0;
- }
- Rml::Core::Dictionary parameters;
- parameters["value"] = value;
- GetParent()->DispatchEvent(Core::EventId::Change, parameters);
- // TODO: This might not be the safest approach as this will call SetValue(),
- // thus, a slight mismatch will result in infinite recursion.
- GetParent()->SetAttribute("value", value);
- return (value - min_value) / (max_value - min_value);
- }
- }
- }
|