| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- //
- // Copyright (c) 2008-2017 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 "../UI/Button.h"
- namespace Urho3D
- {
- /// %Menu %UI element that optionally shows a popup.
- class URHO3D_API Menu : public Button
- {
- URHO3D_OBJECT(Menu, Button);
- using UIElement::LoadXML;
- public:
- /// Construct.
- Menu(Context* context);
- /// Destruct.
- virtual ~Menu();
- /// Register object factory.
- static void RegisterObject(Context* context);
- /// Load from XML data with style. Return true if successful.
- virtual bool LoadXML(const XMLElement& source, XMLFile* styleFile, bool setInstanceDefault = false);
- /// Save as XML data. Return true if successful.
- virtual bool SaveXML(XMLElement& dest) const;
- /// Perform UI element update.
- virtual void Update(float timeStep);
- /// React to mouse hover.
- virtual void OnHover(const IntVector2& position, const IntVector2& screenPosition, int buttons, int qualifiers, Cursor* cursor);
- /// React to the popup being shown.
- virtual void OnShowPopup();
- /// React to the popup being hidden.
- virtual void OnHidePopup() { }
- /// Set popup element to show on selection.
- void SetPopup(UIElement* element);
- /// Set popup element offset.
- void SetPopupOffset(const IntVector2& offset);
- /// Set popup element offset.
- void SetPopupOffset(int x, int y);
- /// Force the popup to show or hide.
- void ShowPopup(bool enable);
- /// Set accelerator key (set zero key code to disable.)
- void SetAccelerator(int key, int qualifiers);
- /// Return popup element.
- UIElement* GetPopup() const { return popup_; }
- /// Return popup element offset.
- const IntVector2& GetPopupOffset() const { return popupOffset_; }
- /// Return whether popup is open.
- bool GetShowPopup() const { return showPopup_; }
- /// Return accelerator key code, 0 if disabled.
- int GetAcceleratorKey() const { return acceleratorKey_; }
- /// Return accelerator qualifiers.
- int GetAcceleratorQualifiers() const { return acceleratorQualifiers_; }
- protected:
- /// Filter implicit attributes in serialization process.
- virtual bool FilterPopupImplicitAttributes(XMLElement& dest) const;
- /// Popup element.
- SharedPtr<UIElement> popup_;
- /// Popup element offset.
- IntVector2 popupOffset_;
- /// Show popup flag.
- bool showPopup_;
- /// Accelerator key code.
- int acceleratorKey_;
- /// Accelerator qualifiers.
- int acceleratorQualifiers_;
- private:
- /// Handle press and release for selection and toggling popup visibility.
- void HandlePressedReleased(StringHash eventType, VariantMap& eventData);
- /// Handle global focus change to check for hiding the popup.
- void HandleFocusChanged(StringHash eventType, VariantMap& eventData);
- /// Handle keypress for checking accelerator.
- void HandleKeyDown(StringHash eventType, VariantMap& eventData);
- /// Auto popup flag.
- bool autoPopup_;
- };
- }
|