| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- //
- // Copyright (c) 2008-2014 the Urho3D project.
- //
- // 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.
- //
- #pragma once
- #include "UIElement.h"
- namespace Urho3D
- {
- class Button;
- class Slider;
- /// Scroll bar %UI element with forward and back buttons.
- class URHO3D_API ScrollBar : public UIElement
- {
- OBJECT(ScrollBar);
-
- public:
- /// Construct.
- ScrollBar(Context* context);
- /// Destruct.
- virtual ~ScrollBar();
- /// Register object factory.
- static void RegisterObject(Context* context);
-
- /// Apply attribute changes that can not be applied immediately.
- virtual void ApplyAttributes();
- /// React to resize.
- virtual void OnResize();
- /// React to editable status change.
- virtual void OnSetEditable();
-
- /// Set orientation type.
- void SetOrientation(Orientation orientation);
- /// Set slider range maximum value (minimum value is always 0.)
- void SetRange(float range);
- /// Set slider current value.
- void SetValue(float value);
- /// Change slider current value by a delta.
- void ChangeValue(float delta);
- /// Set button scroll step.
- void SetScrollStep(float step);
- /// Set button step factor, can be used to adjust the step for constant pixel size.
- void SetStepFactor(float factor);
- /// Scroll back one step.
- void StepBack();
- /// Scroll forward one step.
- void StepForward();
-
- /// Return scrollbar orientation.
- Orientation GetOrientation() const;
- /// Return slider range.
- float GetRange() const;
- /// Return slider current value.
- float GetValue() const;
- /// Return button scroll step.
- float GetScrollStep() const { return scrollStep_; }
- /// Return button step factor.
- float GetStepFactor() const { return stepFactor_; }
- /// Return scroll step multiplied by factor.
- float GetEffectiveScrollStep() const;
- /// Return back button element.
- Button* GetBackButton() const { return backButton_; }
- /// Return forward button element.
- Button* GetForwardButton() const { return forwardButton_; }
- /// Return slider element.
- Slider* GetSlider() const { return slider_; }
-
- protected:
- /// Filter implicit attributes in serialization process.
- virtual bool FilterImplicitAttributes(XMLElement& dest) const;
- /// Filter implicit attributes in serialization process for internal button.
- bool FilterButtonImplicitAttributes(XMLElement& dest, const String& name) const;
- /// Back button.
- SharedPtr<Button> backButton_;
- /// Forward button.
- SharedPtr<Button> forwardButton_;
- /// Slider.
- SharedPtr<Slider> slider_;
- /// Scroll step.
- float scrollStep_;
- /// Step factor.
- float stepFactor_;
- /// Left button image rect.
- IntRect leftRect_;
- /// Right button image rect.
- IntRect rightRect_;
- /// Up button image rect.
- IntRect upRect_;
- /// Down button image rect.
- IntRect downRect_;
-
- private:
- /// Handle back button pressed.
- void HandleBackButtonPressed(StringHash eventType, VariantMap& eventData);
- /// Handle forward button pressed.
- void HandleForwardButtonPressed(StringHash eventType, VariantMap& eventData);
- /// Handle slider movement.
- void HandleSliderChanged(StringHash eventType, VariantMap& eventData);
- /// Handle slider touch and click on "paging" area.
- void HandleSliderPaged(StringHash eventType, VariantMap& eventData);
- };
- }
|