| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481 |
- #include "BsGUIDropDownMenu.h"
- #include "BsGUIPanel.h"
- #include "BsGUILayoutY.h"
- #include "BsGUILayoutX.h"
- #include "BsGUITexture.h"
- #include "BsGUILabel.h"
- #include "BsGUIButton.h"
- #include "BsGUISpace.h"
- #include "BsGUIContent.h"
- #include "BsGUISkin.h"
- #include "BsViewport.h"
- #include "BsGUIListBox.h"
- #include "BsGUIDropDownBoxManager.h"
- #include "BsSceneObject.h"
- #include "BsGUIDropDownHitBox.h"
- #include "BsGUIDropDownContent.h"
- #include "BsDebug.h"
- using namespace std::placeholders;
- namespace BansheeEngine
- {
- const UINT32 GUIDropDownMenu::DROP_DOWN_BOX_WIDTH = 250;
- GUIDropDownDataEntry GUIDropDownDataEntry::separator()
- {
- GUIDropDownDataEntry data;
- data.mType = Type::Separator;
- data.mCallback = nullptr;
- return data;
- }
- GUIDropDownDataEntry GUIDropDownDataEntry::button(const WString& label, std::function<void()> callback, const WString& shortcutTag)
- {
- GUIDropDownDataEntry data;
- data.mLabel = label;
- data.mType = Type::Entry;
- data.mCallback = callback;
- data.mShortcutTag = shortcutTag;
- return data;
- }
- GUIDropDownDataEntry GUIDropDownDataEntry::subMenu(const WString& label, const GUIDropDownData& data)
- {
- GUIDropDownDataEntry dataEntry;
- dataEntry.mLabel = label;
- dataEntry.mType = Type::SubMenu;
- dataEntry.mChildData = data;
- return dataEntry;
- }
- GUIDropDownMenu::GUIDropDownMenu(const HSceneObject& parent, Viewport* target, const DropDownAreaPlacement& placement,
- const GUIDropDownData& dropDownData, const HGUISkin& skin, GUIDropDownType type)
- :GUIWidget(parent, target), mRootMenu(nullptr), mFrontHitBox(nullptr), mCaptureHitBox(nullptr), mBackHitBox(nullptr)
- {
- String stylePrefix = "";
- switch(type)
- {
- case GUIDropDownType::ContextMenu:
- stylePrefix = "ContextMenu";
- break;
- case GUIDropDownType::ListBox:
- stylePrefix = "ListBox";
- break;
- case GUIDropDownType::MenuBar:
- stylePrefix = "MenuBar";
- break;
- }
- mScrollUpStyle = stylePrefix + "ScrollUpBtn";
- mScrollDownStyle = stylePrefix + "ScrollDownBtn";
- mBackgroundStyle = stylePrefix + "Frame";
- mContentStyle = stylePrefix + "Content";
- mScrollUpBtnArrow = skin->getStyle(stylePrefix + "ScrollUpBtnArrow")->normal.texture;
- mScrollDownBtnArrow = skin->getStyle(stylePrefix + "ScrollDownBtnArrow")->normal.texture;
- setDepth(0); // Needs to be in front of everything
- setSkin(skin);
- mFrontHitBox = GUIDropDownHitBox::create(false, false);
- mFrontHitBox->onFocusLost.connect(std::bind(&GUIDropDownMenu::dropDownFocusLost, this));
- mFrontHitBox->setFocus(true);
- GUILayoutData hitboxLayoutData = mFrontHitBox->_getLayoutData();
- hitboxLayoutData.setWidgetDepth(0);
- hitboxLayoutData.setPanelDepth(std::numeric_limits<INT16>::min());
- mFrontHitBox->_setLayoutData(hitboxLayoutData);
- mFrontHitBox->_changeParentWidget(this);
- mFrontHitBox->_markContentAsDirty();
- mBackHitBox = GUIDropDownHitBox::create(false, true);
- GUILayoutData backHitboxLayoutData = mBackHitBox->_getLayoutData();
- backHitboxLayoutData.setWidgetDepth(0);
- backHitboxLayoutData.setPanelDepth(std::numeric_limits<INT16>::max());
- mBackHitBox->_setLayoutData(backHitboxLayoutData);
- mBackHitBox->_changeParentWidget(this);
- mBackHitBox->_markContentAsDirty();
- mCaptureHitBox = GUIDropDownHitBox::create(true, false);
- mCaptureHitBox->setBounds(Rect2I(0, 0, target->getWidth(), target->getHeight()));
- GUILayoutData captureHitboxLayoutData = mCaptureHitBox->_getLayoutData();
- captureHitboxLayoutData.setWidgetDepth(0);
- captureHitboxLayoutData.setPanelDepth(std::numeric_limits<INT16>::max());
- mCaptureHitBox->_setLayoutData(captureHitboxLayoutData);
- mCaptureHitBox->_changeParentWidget(this);
- mCaptureHitBox->_markContentAsDirty();
- Rect2I availableBounds(target->getX(), target->getY(), target->getWidth(), target->getHeight());
- mRootMenu = bs_new<DropDownSubMenu>(this, nullptr, placement, availableBounds, dropDownData, type, 0);
- }
- GUIDropDownMenu::~GUIDropDownMenu()
- {
- }
- void GUIDropDownMenu::onDestroyed()
- {
- GUIElement::destroy(mFrontHitBox);
- GUIElement::destroy(mBackHitBox);
- GUIElement::destroy(mCaptureHitBox);
- bs_delete(mRootMenu);
- GUIWidget::onDestroyed();
- }
- void GUIDropDownMenu::dropDownFocusLost()
- {
- mRootMenu->closeSubMenu();
- GUIDropDownBoxManager::instance().closeDropDownBox();
- }
- void GUIDropDownMenu::notifySubMenuOpened(DropDownSubMenu* subMenu)
- {
- Vector<Rect2I> bounds;
- while(subMenu != nullptr)
- {
- bounds.push_back(subMenu->getVisibleBounds());
- subMenu = subMenu->mSubMenu;
- }
- mFrontHitBox->setBounds(bounds);
- mBackHitBox->setBounds(bounds);
- }
- void GUIDropDownMenu::notifySubMenuClosed(DropDownSubMenu* subMenu)
- {
- Vector<Rect2I> bounds;
- while(subMenu != nullptr)
- {
- bounds.push_back(subMenu->getVisibleBounds());
- subMenu = subMenu->mSubMenu;
- }
- mFrontHitBox->setBounds(bounds);
- mBackHitBox->setBounds(bounds);
- }
- GUIDropDownMenu::DropDownSubMenu::DropDownSubMenu(GUIDropDownMenu* owner, DropDownSubMenu* parent, const DropDownAreaPlacement& placement,
- const Rect2I& availableBounds, const GUIDropDownData& dropDownData, GUIDropDownType type, UINT32 depthOffset)
- :mOwner(owner), mParent(parent), mPage(0), mBackgroundFrame(nullptr), mBackgroundPanel(nullptr), mContentPanel(nullptr),
- mContentLayout(nullptr), mScrollUpBtn(nullptr), mScrollDownBtn(nullptr), x(0), y(0), width(0), height(0),
- mType(type), mSubMenu(nullptr), mData(dropDownData), mOpenedUpward(false), mDepthOffset(depthOffset), mContent(nullptr)
- {
- mAvailableBounds = availableBounds;
- const GUIElementStyle* scrollUpStyle = mOwner->getSkin().getStyle(mOwner->mScrollUpStyle);
- const GUIElementStyle* scrollDownStyle = mOwner->getSkin().getStyle(mOwner->mScrollDownStyle);
- const GUIElementStyle* backgroundStyle = mOwner->getSkin().getStyle(mOwner->mBackgroundStyle);
- // Create content GUI element
- mContent = GUIDropDownContent::create(this, dropDownData, mOwner->mContentStyle);
- mContent->setKeyboardFocus(true);
- // Content area
- mContentPanel = mOwner->getPanel()->addNewElement<GUIPanel>();
- mContentPanel->setWidth(width);
- mContentPanel->setHeight(height);
- mContentPanel->setDepthRange(100 - depthOffset * 2 - 1);
- // Background frame
- mBackgroundPanel = mOwner->getPanel()->addNewElement<GUIPanel>();
- mBackgroundPanel->setWidth(width);
- mBackgroundPanel->setHeight(height);
- mBackgroundPanel->setDepthRange(100 - depthOffset * 2);
- GUILayout* backgroundLayout = mBackgroundPanel->addNewElement<GUILayoutX>();
- mBackgroundFrame = GUITexture::create(GUIImageScaleMode::StretchToFit, mOwner->mBackgroundStyle);
- backgroundLayout->addElement(mBackgroundFrame);
- mContentLayout = mContentPanel->addNewElement<GUILayoutY>();
- mContentLayout->addElement(mContent); // Note: It's important this is added to the layout before we
- // use it for size calculations, in order for its skin to be assigned
- UINT32 helperElementHeight = scrollUpStyle->height + scrollDownStyle->height +
- backgroundStyle->margins.top + backgroundStyle->margins.bottom;
- UINT32 maxNeededHeight = helperElementHeight;
- UINT32 numElements = (UINT32)dropDownData.entries.size();
- for (UINT32 i = 0; i < numElements; i++)
- maxNeededHeight += mContent->getElementHeight(i);
- DropDownAreaPlacement::HorzDir horzDir;
- DropDownAreaPlacement::VertDir vertDir;
- Rect2I placementBounds = placement.getOptimalBounds(DROP_DOWN_BOX_WIDTH, maxNeededHeight, availableBounds, horzDir, vertDir);
- mOpenedUpward = vertDir == DropDownAreaPlacement::VertDir::Up;
- UINT32 actualY = placementBounds.y;
- if (mOpenedUpward)
- y = placementBounds.y + placementBounds.height;
- else
- y = placementBounds.y;
- x = placementBounds.x;
- width = placementBounds.width;
- height = placementBounds.height;
- mContentPanel->setPosition(x, actualY);
- mBackgroundPanel->setPosition(x, actualY);
- updateGUIElements();
- mOwner->notifySubMenuOpened(this);
- }
- GUIDropDownMenu::DropDownSubMenu::~DropDownSubMenu()
- {
- closeSubMenu();
- mOwner->notifySubMenuClosed(this);
- GUIElement::destroy(mContent);
- if (mScrollUpBtn != nullptr)
- GUIElement::destroy(mScrollUpBtn);
- if (mScrollDownBtn != nullptr)
- GUIElement::destroy(mScrollDownBtn);
- GUIElement::destroy(mBackgroundFrame);
- GUILayout::destroy(mBackgroundPanel);
- GUILayout::destroy(mContentPanel);
- }
- Vector<GUIDropDownMenu::DropDownSubMenu::PageInfo> GUIDropDownMenu::DropDownSubMenu::getPageInfos() const
- {
- const GUIElementStyle* scrollUpStyle = mOwner->getSkin().getStyle(mOwner->mScrollUpStyle);
- const GUIElementStyle* scrollDownStyle = mOwner->getSkin().getStyle(mOwner->mScrollDownStyle);
- const GUIElementStyle* backgroundStyle = mOwner->getSkin().getStyle(mOwner->mBackgroundStyle);
- INT32 numElements = (INT32)mData.entries.size();
- PageInfo curPageInfo;
- curPageInfo.start = 0;
- curPageInfo.end = 0;
- curPageInfo.idx = 0;
- curPageInfo.height = backgroundStyle->margins.top + backgroundStyle->margins.bottom;
-
- Vector<PageInfo> pageInfos;
- for (INT32 i = 0; i < numElements; i++)
- {
- curPageInfo.height += mContent->getElementHeight((UINT32)i);
- curPageInfo.end++;
- if (curPageInfo.height > height)
- {
- curPageInfo.height += scrollDownStyle->height;
- // Remove last few elements until we fit again
- while (curPageInfo.height > height && i >= 0)
- {
- curPageInfo.height -= mContent->getElementHeight((UINT32)i);
- curPageInfo.end--;
- i--;
- }
- // Nothing fits, break out of infinite loop
- if (curPageInfo.start >= curPageInfo.end)
- break;
- pageInfos.push_back(curPageInfo);
- curPageInfo.start = curPageInfo.end;
- curPageInfo.height = backgroundStyle->margins.top + backgroundStyle->margins.bottom;
- curPageInfo.height += scrollUpStyle->height;
- curPageInfo.idx++;
- }
- }
- if (curPageInfo.start < curPageInfo.end)
- pageInfos.push_back(curPageInfo);
- return pageInfos;
- }
- void GUIDropDownMenu::DropDownSubMenu::updateGUIElements()
- {
- // Remove all elements from content layout
- while(mContentLayout->getNumChildren() > 0)
- mContentLayout->removeElementAt(mContentLayout->getNumChildren() - 1);
- mContentLayout->addElement(mContent); // Note: Needs to be added first so that size calculations have proper skin to work with
- const GUIElementStyle* scrollUpStyle = mOwner->getSkin().getStyle(mOwner->mScrollUpStyle);
- const GUIElementStyle* scrollDownStyle = mOwner->getSkin().getStyle(mOwner->mScrollDownStyle);
- const GUIElementStyle* backgroundStyle = mOwner->getSkin().getStyle(mOwner->mBackgroundStyle);
- // Determine if we need scroll up and/or down buttons, number of visible elements and actual height
- bool needsScrollUp = mPage > 0;
- UINT32 pageStart = 0, pageEnd = 0;
- UINT32 pageHeight = 0;
- Vector<PageInfo> pageInfos = getPageInfos();
- if (pageInfos.size() > mPage)
- {
- pageStart = pageInfos[mPage].start;
- pageEnd = pageInfos[mPage].end;
- pageHeight = pageInfos[mPage].height;
- }
- UINT32 numElements = (UINT32)mData.entries.size();
- bool needsScrollDown = pageEnd != numElements;
- // Add scroll up button
- if(needsScrollUp)
- {
- if(mScrollUpBtn == nullptr)
- {
- mScrollUpBtn = GUIButton::create(GUIContent(HString(L""), mOwner->mScrollUpBtnArrow), mOwner->mScrollUpStyle);
- mScrollUpBtn->onClick.connect(std::bind(&DropDownSubMenu::scrollUp, this));
- }
- mContentLayout->insertElement(0, mScrollUpBtn);
- }
- else
- {
- if(mScrollUpBtn != nullptr)
- {
- GUIElement::destroy(mScrollUpBtn);
- mScrollUpBtn = nullptr;
- }
- }
- mContent->setRange(pageStart, pageEnd);
- // Add scroll down button
- if(needsScrollDown)
- {
- if(mScrollDownBtn == nullptr)
- {
- mScrollDownBtn = GUIButton::create(GUIContent(HString(L""), mOwner->mScrollDownBtnArrow), mOwner->mScrollDownStyle);
- mScrollDownBtn->onClick.connect(std::bind(&DropDownSubMenu::scrollDown, this));
- }
- mContentLayout->addElement(mScrollDownBtn);
- }
- else
- {
- if(mScrollDownBtn != nullptr)
- {
- GUIElement::destroy(mScrollDownBtn);
- mScrollDownBtn = nullptr;
- }
- }
-
- // Resize and reposition areas
- INT32 actualY = y;
- if(mOpenedUpward)
- actualY -= (INT32)pageHeight;
- mBackgroundPanel->setWidth(width);
- mBackgroundPanel->setHeight(pageHeight);
- mBackgroundPanel->setPosition(x, actualY);
- mVisibleBounds = Rect2I(x, actualY, width, pageHeight);
- UINT32 contentWidth = (UINT32)std::max(0, (INT32)width - (INT32)backgroundStyle->margins.left - (INT32)backgroundStyle->margins.right);
- UINT32 contentHeight = (UINT32)std::max(0, (INT32)pageHeight - (INT32)backgroundStyle->margins.top - (INT32)backgroundStyle->margins.bottom);
- mContentPanel->setWidth(contentWidth);
- mContentPanel->setHeight(contentHeight);
- mContentPanel->setPosition(x + backgroundStyle->margins.left, actualY + backgroundStyle->margins.top);
- }
- void GUIDropDownMenu::DropDownSubMenu::scrollDown()
- {
- mPage++;
- if (mPage == (UINT32)getPageInfos().size())
- mPage = 0;
- updateGUIElements();
- closeSubMenu();
- }
- void GUIDropDownMenu::DropDownSubMenu::scrollUp()
- {
- if (mPage > 0)
- mPage--;
- else
- mPage = (UINT32)getPageInfos().size() - 1;
- updateGUIElements();
- closeSubMenu();
- }
- void GUIDropDownMenu::DropDownSubMenu::scrollToTop()
- {
- mPage = 0;
- updateGUIElements();
- closeSubMenu();
- }
- void GUIDropDownMenu::DropDownSubMenu::scrollToBottom()
- {
- mPage = (UINT32)(getPageInfos().size() - 1);
- updateGUIElements();
- closeSubMenu();
- }
- void GUIDropDownMenu::DropDownSubMenu::closeSubMenu()
- {
- if(mSubMenu != nullptr)
- {
- bs_delete(mSubMenu);
- mSubMenu = nullptr;
- mContent->setKeyboardFocus(true);
- }
- }
- void GUIDropDownMenu::DropDownSubMenu::elementActivated(UINT32 idx, const Rect2I& bounds)
- {
- closeSubMenu();
- if (!mData.entries[idx].isSubMenu())
- {
- auto callback = mData.entries[idx].getCallback();
- if (callback != nullptr)
- callback();
- GUIDropDownBoxManager::instance().closeDropDownBox();
- }
- else
- {
- mContent->setKeyboardFocus(false);
- mSubMenu = bs_new<DropDownSubMenu>(mOwner, this, DropDownAreaPlacement::aroundBoundsVert(bounds),
- mAvailableBounds, mData.entries[idx].getSubMenuData(), mType, mDepthOffset + 1);
- }
- }
- void GUIDropDownMenu::DropDownSubMenu::close()
- {
- if (mParent != nullptr)
- mParent->closeSubMenu();
- else // We're the last sub-menu, close the whole thing
- GUIDropDownBoxManager::instance().closeDropDownBox();
- }
- void GUIDropDownMenu::DropDownSubMenu::elementSelected(UINT32 idx)
- {
- closeSubMenu();
- }
- }
|