123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344 |
- //-----------------------------------------------------------------------------
- // Copyright (c) 2013 GarageGames, LLC
- //
- // 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 "platform/menus/popupMenu.h"
- #include "platformWin32/platformWin32.h"
- #include "platformWin32/winWindow.h"
- #include "memory/safeDelete.h"
- //////////////////////////////////////////////////////////////////////////
- // Platform Menu Data
- //////////////////////////////////////////////////////////////////////////
- struct PlatformPopupMenuData
- {
- static U32 mLastPopupMenuID;
- static const U32 PopupMenuIDRange;
- HMENU mMenu;
- U32 mMenuID;
- U32 mLastID;
- PlatformPopupMenuData()
- {
- mMenu = NULL;
- mMenuID = mLastPopupMenuID++;
- mLastID = 0;
- }
- ~PlatformPopupMenuData()
- {
- if(mMenu)
- DestroyMenu(mMenu);
- }
- };
- U32 PlatformPopupMenuData::mLastPopupMenuID = 0;
- const U32 PlatformPopupMenuData::PopupMenuIDRange = 100;
- void PopupMenu::createPlatformPopupMenuData()
- {
- mData = new PlatformPopupMenuData;
- }
- void PopupMenu::deletePlatformPopupMenuData()
- {
- SAFE_DELETE(mData);
- }
- void PopupMenu::createPlatformMenu()
- {
- mData->mMenu = mIsPopup ? CreatePopupMenu() : CreateMenu();
- }
- //////////////////////////////////////////////////////////////////////////
- // Public Methods
- //////////////////////////////////////////////////////////////////////////
- S32 PopupMenu::insertItem(S32 pos, const char *title, const char* accelerator)
- {
- MENUITEMINFOA mi;
- mi.cbSize = sizeof(mi);
- mi.fMask = MIIM_ID|MIIM_TYPE;
- mi.wID = (mData->mMenuID * PlatformPopupMenuData::PopupMenuIDRange) + mData->mLastID + 1;
- mData->mLastID++;
- if(title && *title)
- mi.fType = MFT_STRING;
- else
- mi.fType = MFT_SEPARATOR;
- char buf[1024];
- dSprintf(buf, sizeof(buf), "%s\t%s", title, accelerator);
- mi.dwTypeData = (LPSTR)buf;
- if(InsertMenuItemA(mData->mMenu, pos, TRUE, &mi))
- {
- DrawMenuBar(winState.appWindow);
- return mi.wID;
- }
- return -1;
- }
- S32 PopupMenu::insertSubMenu(S32 pos, const char *title, PopupMenu *submenu)
- {
- for(S32 i = 0;i < mSubmenus->size();i++)
- {
- if(submenu == (*mSubmenus)[i])
- {
- Con::errorf("PopupMenu::insertSubMenu - Attempting to add submenu twice");
- return -1;
- }
- }
- MENUITEMINFOA mi;
- mi.cbSize = sizeof(mi);
- mi.fMask = MIIM_ID|MIIM_TYPE|MIIM_SUBMENU|MIIM_DATA;
- mi.wID = (mData->mMenuID * PlatformPopupMenuData::PopupMenuIDRange) + mData->mLastID + 1;
- if(title && *title)
- mi.fType = MFT_STRING;
- else
- mi.fType = MFT_SEPARATOR;
- mi.dwTypeData = (LPSTR)title;
- mi.hSubMenu = submenu->mData->mMenu;
- mi.dwItemData = (ULONG_PTR)submenu;
- if(InsertMenuItemA(mData->mMenu, pos, TRUE, &mi))
- {
- mSubmenus->addObject(submenu);
-
- DrawMenuBar(winState.appWindow);
- return mi.wID;
- }
- return -1;
- }
- void PopupMenu::removeItem(S32 itemPos)
- {
- MENUITEMINFOA mi;
- mi.cbSize = sizeof(mi);
- mi.fMask = MIIM_DATA;
- if(GetMenuItemInfoA(mData->mMenu, itemPos, TRUE, &mi))
- {
- if(mi.fMask & MIIM_DATA)
- {
- PopupMenu *mnu = (PopupMenu *)mi.dwItemData;
- if (mnu)
- mSubmenus->removeObject(mnu);
- }
- }
- RemoveMenu(mData->mMenu, itemPos, MF_BYPOSITION);
- DrawMenuBar(winState.appWindow);
- }
- //////////////////////////////////////////////////////////////////////////
- void PopupMenu::enableItem(S32 pos, bool enable)
- {
- U32 flags = enable ? MF_ENABLED : MF_GRAYED;
- EnableMenuItem(mData->mMenu, pos, MF_BYPOSITION|flags);
- }
- void PopupMenu::checkItem(S32 pos, bool checked)
- {
- // U32 flags = checked ? MF_CHECKED : MF_UNCHECKED;
- // CheckMenuItem(mData->mMenu, pos, MF_BYPOSITION|flags);
- MENUITEMINFOA mi;
- mi.cbSize = sizeof(mi);
- mi.fMask = MIIM_STATE;
- mi.fState = checked ? MFS_CHECKED : MFS_UNCHECKED;
- SetMenuItemInfoA(mData->mMenu, pos, TRUE, &mi);
- }
- void PopupMenu::checkRadioItem(S32 firstPos, S32 lastPos, S32 checkPos)
- {
- CheckMenuRadioItem(mData->mMenu, firstPos, lastPos, checkPos, MF_BYPOSITION);
- }
- bool PopupMenu::isItemChecked(S32 pos)
- {
- MENUITEMINFOA mi;
- mi.cbSize = sizeof(mi);
- mi.fMask = MIIM_STATE;
- if(GetMenuItemInfoA(mData->mMenu, pos, TRUE, &mi) && (mi.fState & MFS_CHECKED))
- return true;
- return false;
- }
- //////////////////////////////////////////////////////////////////////////
- bool PopupMenu::canHandleID(U32 iD)
- {
- for(S32 i = 0;i < mSubmenus->size();i++)
- {
- PopupMenu *subM = dynamic_cast<PopupMenu *>((*mSubmenus)[i]);
- if(subM == NULL)
- continue;
- if(subM->canHandleID(iD))
- return true;
- }
- if(iD >= mData->mMenuID * PlatformPopupMenuData::PopupMenuIDRange &&
- iD < (mData->mMenuID+1) * PlatformPopupMenuData::PopupMenuIDRange)
- {
- return true;
- }
- return false;
- }
- bool PopupMenu::handleSelect(U32 command, const char *text /* = NULL */)
- {
- // [tom, 8/20/2006] Pass off to a sub menu if it's for them
- for(S32 i = 0;i < mSubmenus->size();i++)
- {
- PopupMenu *subM = dynamic_cast<PopupMenu *>((*mSubmenus)[i]);
- if(subM == NULL)
- continue;
- if(subM->canHandleID(command))
- {
- return subM->handleSelect(command, text);
- }
- }
- // [tom, 8/21/2006] Cheesey hack to find the position based on ID
- char buf[512];
- MENUITEMINFOA mi;
- mi.cbSize = sizeof(mi);
- mi.dwTypeData = NULL;
- S32 numItems = GetMenuItemCount(mData->mMenu);
- S32 pos = -1;
- for(S32 i = 0;i < numItems;i++)
- {
- mi.fMask = MIIM_ID|MIIM_STRING|MIIM_STATE;
- if(GetMenuItemInfoA(mData->mMenu, i, TRUE, &mi))
- {
- if(mi.wID == command)
- {
- if(text == NULL)
- {
- mi.dwTypeData = buf;
- mi.cch++;
- GetMenuItemInfoA(mData->mMenu, i, TRUE, &mi);
-
- // [tom, 5/11/2007] Don't do anything if the menu item is disabled
- if(mi.fState & MFS_DISABLED)
- return false;
- text = StringTable->insert(mi.dwTypeData);
- }
- pos = i;
- break;
- }
- }
- }
- if(pos == -1)
- {
- Con::errorf("PopupMenu::handleSelect - Could not find menu item position for ID %d ... this shouldn't happen!", command);
- return false;
- }
- // [tom, 8/20/2006] Wasn't handled by a submenu, pass off to script
- return dAtob(Con::executef(this, 4, "onSelectItem", Con::getIntArg(pos), text ? text : ""));
- }
- //////////////////////////////////////////////////////////////////////////
- void PopupMenu::showPopup(S32 x /* = -1 */, S32 y /* = -1 */)
- {
- POINT p;
- if(x == -1 && y == -1)
- GetCursorPos(&p);
- else
- {
- p.x = x;
- p.y = y;
- ClientToScreen(winState.appWindow, &p);
- }
- winState.renderThreadBlocked = true;
- U32 opt = (int)TrackPopupMenu(mData->mMenu, TPM_NONOTIFY|TPM_RETURNCMD, p.x, p.y, 0, winState.appWindow, NULL);
- if(opt > 0)
- handleSelect(opt, NULL);
- winState.renderThreadBlocked = false;
- }
- //////////////////////////////////////////////////////////////////////////
- void PopupMenu::attachToMenuBar(S32 pos, const char *title)
- {
- if(winState.appMenu == NULL)
- {
- CreateWin32MenuBar();
- }
- MENUITEMINFOA mii;
- mii.cbSize = sizeof(MENUITEMINFOA);
- mii.fMask = MIIM_STRING|MIIM_DATA;
- mii.dwTypeData = (LPSTR)title;
- mii.fMask |= MIIM_ID;
- mii.wID = mData->mMenuID;
- mii.fMask |= MIIM_SUBMENU;
- mii.hSubMenu = mData->mMenu;
- mii.dwItemData = (ULONG_PTR)this;
- InsertMenuItemA(winState.appMenu, pos, TRUE, &mii);
- DrawMenuBar(winState.appWindow);
- }
- void PopupMenu::removeFromMenuBar()
- {
- // [tom, 8/21/2006] Find us on the menu bar (lame)
- S32 numItems = GetMenuItemCount(winState.appMenu);
- S32 pos = -1;
- for(S32 i = 0;i < numItems;i++)
- {
- MENUITEMINFOA mi;
- mi.cbSize = sizeof(mi);
- mi.fMask = MIIM_DATA;
- if(GetMenuItemInfoA(winState.appMenu, i, TRUE, &mi))
- {
- if(mi.fMask & MIIM_DATA)
- {
- PopupMenu *mnu = (PopupMenu *)mi.dwItemData;
- if(mnu == this)
- {
- pos = i;
- break;
- }
- }
- }
- }
- if(pos == -1)
- return;
- RemoveMenu(winState.appMenu, pos, MF_BYPOSITION);
- DrawMenuBar(winState.appWindow);
- }
|