Skip to content
Snippets Groups Projects
Commit f8299e28 authored by Sergei Litovchuk's avatar Sergei Litovchuk
Browse files

Fixed low bug (EXT-5136) Add the "Map" item to the people context menu.

--HG--
branch : product-engine
parent 56578ae0
No related branches found
No related tags found
No related merge requests found
...@@ -50,6 +50,7 @@ ...@@ -50,6 +50,7 @@
#include "llfloatergroups.h" #include "llfloatergroups.h"
#include "llfloaterreg.h" #include "llfloaterreg.h"
#include "llfloaterpay.h" #include "llfloaterpay.h"
#include "llfloaterworldmap.h"
#include "llinventorymodel.h" // for gInventory.findCategoryUUIDForType #include "llinventorymodel.h" // for gInventory.findCategoryUUIDForType
#include "llimview.h" // for gIMMgr #include "llimview.h" // for gIMMgr
#include "llmutelist.h" #include "llmutelist.h"
...@@ -316,6 +317,20 @@ void LLAvatarActions::showProfile(const LLUUID& id) ...@@ -316,6 +317,20 @@ void LLAvatarActions::showProfile(const LLUUID& id)
} }
} }
// static
void LLAvatarActions::showOnMap(const LLUUID& id)
{
std::string name;
if (!gCacheName->getFullName(id, name))
{
gCacheName->get(id, FALSE, boost::bind(&LLAvatarActions::showOnMap, id));
return;
}
gFloaterWorldMap->trackAvatar(id, name);
LLFloaterReg::showInstance("world_map");
}
// static // static
void LLAvatarActions::pay(const LLUUID& id) void LLAvatarActions::pay(const LLUUID& id)
{ {
......
...@@ -98,6 +98,11 @@ class LLAvatarActions ...@@ -98,6 +98,11 @@ class LLAvatarActions
*/ */
static void showProfile(const LLUUID& id); static void showProfile(const LLUUID& id);
/**
* Show avatar on world map.
*/
static void showOnMap(const LLUUID& id);
/** /**
* Give money to the avatar. * Give money to the avatar.
*/ */
......
...@@ -48,7 +48,6 @@ ...@@ -48,7 +48,6 @@
#include "llscrollcontainer.h" #include "llscrollcontainer.h"
#include "llavatariconctrl.h" #include "llavatariconctrl.h"
#include "llweb.h" #include "llweb.h"
#include "llfloaterworldmap.h"
#include "llfloaterreg.h" #include "llfloaterreg.h"
#include "llnotificationsutil.h" #include "llnotificationsutil.h"
#include "llvoiceclient.h" #include "llvoiceclient.h"
...@@ -449,10 +448,7 @@ void LLPanelProfileTab::scrollToTop() ...@@ -449,10 +448,7 @@ void LLPanelProfileTab::scrollToTop()
void LLPanelProfileTab::onMapButtonClick() void LLPanelProfileTab::onMapButtonClick()
{ {
std::string name; LLAvatarActions::showOnMap(getAvatarId());
gCacheName->getFullName(getAvatarId(), name);
gFloaterWorldMap->trackAvatar(getAvatarId(), name);
LLFloaterReg::showInstance("world_map");
} }
void LLPanelProfileTab::updateButtons() void LLPanelProfileTab::updateButtons()
......
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
#include "llpanelpeoplemenus.h" #include "llpanelpeoplemenus.h"
// newview // newview
#include "llagent.h"
#include "llagentdata.h" // for gAgentID #include "llagentdata.h" // for gAgentID
#include "llavataractions.h" #include "llavataractions.h"
#include "llviewermenu.h" // for gMenuHolder #include "llviewermenu.h" // for gMenuHolder
...@@ -125,7 +126,7 @@ LLContextMenu* NearbyMenu::createMenu() ...@@ -125,7 +126,7 @@ LLContextMenu* NearbyMenu::createMenu()
registrar.add("Avatar.IM", boost::bind(&LLAvatarActions::startIM, id)); registrar.add("Avatar.IM", boost::bind(&LLAvatarActions::startIM, id));
registrar.add("Avatar.Call", boost::bind(&LLAvatarActions::startCall, id)); registrar.add("Avatar.Call", boost::bind(&LLAvatarActions::startCall, id));
registrar.add("Avatar.OfferTeleport", boost::bind(&NearbyMenu::offerTeleport, this)); registrar.add("Avatar.OfferTeleport", boost::bind(&NearbyMenu::offerTeleport, this));
registrar.add("Avatar.ShowOnMap", boost::bind(&LLAvatarActions::startIM, id)); // *TODO: unimplemented registrar.add("Avatar.ShowOnMap", boost::bind(&LLAvatarActions::showOnMap, id));
registrar.add("Avatar.Share", boost::bind(&LLAvatarActions::share, id)); registrar.add("Avatar.Share", boost::bind(&LLAvatarActions::share, id));
registrar.add("Avatar.Pay", boost::bind(&LLAvatarActions::pay, id)); registrar.add("Avatar.Pay", boost::bind(&LLAvatarActions::pay, id));
registrar.add("Avatar.BlockUnblock", boost::bind(&LLAvatarActions::toggleBlock, id)); registrar.add("Avatar.BlockUnblock", boost::bind(&LLAvatarActions::toggleBlock, id));
...@@ -218,6 +219,13 @@ bool NearbyMenu::enableContextMenuItem(const LLSD& userdata) ...@@ -218,6 +219,13 @@ bool NearbyMenu::enableContextMenuItem(const LLSD& userdata)
{ {
return LLAvatarActions::canCall(); return LLAvatarActions::canCall();
} }
else if (item == std::string("can_show_on_map"))
{
const LLUUID& id = mUUIDs.front();
return (LLAvatarTracker::instance().isBuddyOnline(id) && is_agent_mappable(id))
|| gAgent.isGodlike();
}
return false; return false;
} }
......
...@@ -46,6 +46,16 @@ ...@@ -46,6 +46,16 @@
function="Avatar.EnableItem" function="Avatar.EnableItem"
parameter="can_call" /> parameter="can_call" />
</menu_item_call> </menu_item_call>
<menu_item_call
label="Map"
layout="topleft"
name="Map">
<menu_item_call.on_click
function="Avatar.ShowOnMap" />
<menu_item_call.on_enable
function="Avatar.EnableItem"
parameter="can_show_on_map" />
</menu_item_call>
<menu_item_call <menu_item_call
label="Share" label="Share"
layout="topleft" layout="topleft"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment