The entire list should no longer lock up when changing friend rights for just some people Visual changes: Muted people's names in friends list are now displayed in the muted color (this still needs testing) The collapse and expand button now uses icons instead of < and > characters. Complex stuff devs may read: Remove pointless classes, definitions, and functions. Replace static callbacks with bound ones. Cleanup commented stuff Fix styling and spacing stuffs Comment out unexecuted code paths Optimizes updating uncached names so full refresh is not required, just a single name update. Comment out unused voice stuff, since SIP buddylist was removed in Voice Update. Switch to Params for list building~
1016 lines
32 KiB
C++
1016 lines
32 KiB
C++
/**
|
|
* @file llfloaterfriends.cpp
|
|
* @author Phoenix
|
|
* @date 2005-01-13
|
|
* @brief Implementation of the friends floater
|
|
*
|
|
* $LicenseInfo:firstyear=2005&license=viewergpl$
|
|
*
|
|
* Copyright (c) 2005-2009, Linden Research, Inc.
|
|
*
|
|
* Second Life Viewer Source Code
|
|
* The source code in this file ("Source Code") is provided by Linden Lab
|
|
* to you under the terms of the GNU General Public License, version 2.0
|
|
* ("GPL"), unless you have obtained a separate licensing agreement
|
|
* ("Other License"), formally executed by you and Linden Lab. Terms of
|
|
* the GPL can be found in doc/GPL-license.txt in this distribution, or
|
|
* online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
|
|
*
|
|
* There are special exceptions to the terms and conditions of the GPL as
|
|
* it is applied to this Source Code. View the full text of the exception
|
|
* in the file doc/FLOSS-exception.txt in this software distribution, or
|
|
* online at
|
|
* http://secondlifegrid.net/programs/open_source/licensing/flossexception
|
|
*
|
|
* By copying, modifying or distributing this software, you acknowledge
|
|
* that you have read and understood your obligations described above,
|
|
* and agree to abide by those obligations.
|
|
*
|
|
* ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
|
|
* WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
|
|
* COMPLETENESS OR PERFORMANCE.
|
|
* $/LicenseInfo$
|
|
*/
|
|
|
|
|
|
#include "llviewerprecompiledheaders.h"
|
|
|
|
#include "llfloaterfriends.h"
|
|
|
|
#include "llsdutil_math.h"
|
|
#include "llagent.h"
|
|
#include "llavataractions.h"
|
|
#include "llavatarnamecache.h"
|
|
#include "llbutton.h"
|
|
#include "lldir.h"
|
|
#include "lleventtimer.h"
|
|
#include "llfiltereditor.h"
|
|
#include "llfloateravatarpicker.h"
|
|
#include "llnotificationsutil.h"
|
|
#include "llscrolllistcolumn.h"
|
|
#include "llscrolllistctrl.h"
|
|
#include "llscrolllistitem.h"
|
|
#include "llsdserialize.h"
|
|
#include "lltextbox.h"
|
|
#include "lluictrlfactory.h"
|
|
#include "llviewerwindow.h"
|
|
//#include "llvoiceclient.h"
|
|
|
|
#include "statemachine/aifilepicker.h"
|
|
|
|
#include "hippogridmanager.h"
|
|
|
|
// <dogmode> stuff for Contact groups
|
|
//#include "ascentfloatercontactgroups.h"
|
|
//#include "llchat.h"
|
|
//#include "llfloaterchat.h"
|
|
|
|
// simple class to observe the calling cards.
|
|
class LLLocalFriendsObserver : public LLFriendObserver, public LLEventTimer
|
|
{
|
|
LOG_CLASS(LLLocalFriendsObserver);
|
|
public:
|
|
LLLocalFriendsObserver(LLPanelFriends* floater)
|
|
: mFloater(floater), LLEventTimer(0.5)
|
|
{
|
|
mEventTimer.stop();
|
|
LLAvatarTracker::instance().addObserver(this);
|
|
// For notification when SIP online status changes.
|
|
//LLVoiceClient::getInstance()->addObserver(this);
|
|
}
|
|
/*virtual*/ ~LLLocalFriendsObserver()
|
|
{
|
|
//LLVoiceClient::getInstance()->removeObserver(this);
|
|
LLAvatarTracker::instance().removeObserver(this);
|
|
}
|
|
/*virtual*/ void changed(U32 mask)
|
|
{
|
|
// events can arrive quickly in bulk - we need not process EVERY one of them -
|
|
// so we wait a short while to let others pile-in, and process them in aggregate.
|
|
mEventTimer.start();
|
|
|
|
// save-up all the mask-bits which have come-in
|
|
mMask |= mask;
|
|
}
|
|
/*virtual*/ BOOL tick()
|
|
{
|
|
//mFloater->populateContactGroupSelect();
|
|
mFloater->updateFriends(mMask);
|
|
|
|
mEventTimer.stop();
|
|
mMask = 0;
|
|
|
|
return false;
|
|
}
|
|
|
|
protected:
|
|
LLPanelFriends* mFloater;
|
|
U32 mMask;
|
|
};
|
|
|
|
LLPanelFriends::LLPanelFriends() :
|
|
mObserver(NULL),
|
|
mNumOnline(0)
|
|
{
|
|
mObserver = new LLLocalFriendsObserver(this);
|
|
}
|
|
|
|
LLPanelFriends::~LLPanelFriends()
|
|
{
|
|
delete mObserver;
|
|
}
|
|
|
|
void LLPanelFriends::updateFriends(U32 changed_mask)
|
|
{
|
|
LLUUID selected_id;
|
|
|
|
const uuid_vec_t selected_friends = mFriendsList->getSelectedIDs();
|
|
if (changed_mask & (LLFriendObserver::ADD | LLFriendObserver::REMOVE | LLFriendObserver::ONLINE | LLFriendObserver::POWERS))
|
|
{
|
|
refreshNames(changed_mask);
|
|
}
|
|
if (!selected_friends.empty())
|
|
{
|
|
// only non-null if friends was already found. This may fail,
|
|
// but we don't really care here, because refreshUI() will
|
|
// clean up the interface.
|
|
mFriendsList->setCurrentByID(selected_id);
|
|
for(uuid_vec_t::const_iterator itr = selected_friends.begin(); itr != selected_friends.end(); ++itr)
|
|
{
|
|
mFriendsList->setSelectedByValue(*itr, true);
|
|
}
|
|
}
|
|
|
|
refreshUI();
|
|
}
|
|
|
|
// <dogmode>
|
|
// Contact search and group system.
|
|
// 09/05/2010 - Charley Levenque
|
|
/*std::string LLPanelFriends::cleanFileName(std::string filename)
|
|
{
|
|
std::string invalidChars = "\"\'\\/?*:<>|";
|
|
S32 position = filename.find_first_of(invalidChars);
|
|
while (position != filename.npos)
|
|
{
|
|
filename[position] = '_';
|
|
position = filename.find_first_of(invalidChars, position);
|
|
}
|
|
return filename;
|
|
}*/
|
|
|
|
/*void LLPanelFriends::populateContactGroupSelect()
|
|
{
|
|
if (LLComboBox* combo = findChild<LLComboBox>("buddy_group_combobox"))
|
|
{
|
|
combo->removeall();
|
|
combo->add("All", ADD_BOTTOM);
|
|
|
|
LLSD groups = gSavedPerAccountSettings.getLLSD("AscentContactGroups");
|
|
|
|
S32 count = groups["ASC_MASTER_GROUP_LIST"].size();
|
|
S32 index;
|
|
for (index = 0; index < count; index++)
|
|
{
|
|
combo->addSimpleElement(groups["ASC_MASTER_GROUP_LIST"][index].asString(), ADD_BOTTOM);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
LLFloaterChat::addChat("Null combo");
|
|
}
|
|
}*/
|
|
|
|
/*void LLPanelFriends::setContactGroup(const std::string& contact_grp)
|
|
{
|
|
LLFloaterChat::addChat("Group set to " + contact_grp);
|
|
refreshNames(LLFriendObserver::ADD);
|
|
refreshUI();
|
|
categorizeContacts();
|
|
}*/
|
|
|
|
/*void LLPanelFriends::categorizeContacts()
|
|
{
|
|
LLSD contact_groups = gSavedPerAccountSettings.getLLSD("AscentContactGroups");
|
|
std::string group_name = "All";
|
|
|
|
if (LLComboBox* combo = findChild<LLComboBox>("buddy_group_combobox"))
|
|
{
|
|
group_name = combo->getValue().asString();
|
|
|
|
if (group_name != "All")
|
|
{
|
|
std::vector<LLScrollListItem*> vFriends = mFriendsList->getAllData(); // all of it.
|
|
for (std::vector<LLScrollListItem*>::iterator itr = vFriends.begin(); itr != vFriends.end(); ++itr)
|
|
{
|
|
bool show_entry = false;//contact_groups[group_name].has((*itr)->getUUID().asString());
|
|
|
|
for(S32 i = 0, count = contact_groups[group_name].size(); i < count; ++i)
|
|
{
|
|
if (contact_groups[group_name][i].asString() == (*itr)->getUUID().asString())
|
|
{
|
|
show_entry = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!show_entry)
|
|
{
|
|
LLFloaterChat::addChat("False: contact_groups['" + group_name + "'].has('" + (*itr)->getUUID().asString() + "');");
|
|
mFriendsList->deleteItems((*itr)->getValue());
|
|
}
|
|
else
|
|
{
|
|
LLFloaterChat::addChat("True: contact_groups['" + group_name + "'].has('" + (*itr)->getUUID().asString() + "');");
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
LLFloaterChat::addChat("Group set to all.");
|
|
}
|
|
|
|
refreshUI();
|
|
}
|
|
else
|
|
{
|
|
LLFloaterChat::addChat("Null combo.");
|
|
}
|
|
}*/
|
|
|
|
void LLPanelFriends::filterContacts(const std::string& search_name)
|
|
{
|
|
std::string friend_name;
|
|
|
|
if (!search_name.empty() /*&& search_name != mLastContactSearch*/)
|
|
{
|
|
if (search_name.find(mLastContactSearch) == std::string::npos)
|
|
{
|
|
refreshNames(LLFriendObserver::ADD);
|
|
}
|
|
|
|
//llinfos << "search_name = " << search_name <<llendl;
|
|
|
|
std::vector<LLScrollListItem*> vFriends = mFriendsList->getAllData(); // all of it.
|
|
for (std::vector<LLScrollListItem*>::iterator itr = vFriends.begin(); itr != vFriends.end(); ++itr)
|
|
{
|
|
friend_name = utf8str_tolower((*itr)->getColumn(LIST_FRIEND_NAME)->getValue().asString());
|
|
bool show_entry = (friend_name.find(utf8str_tolower(search_name)) != std::string::npos);
|
|
//llinfos << "friend_name = " << friend_name << (show_entry ? " (shown)" : "") <<llendl;
|
|
if (!show_entry)
|
|
{
|
|
mFriendsList->deleteItems((*itr)->getValue());
|
|
}
|
|
}
|
|
|
|
mFriendsList->updateLayout();
|
|
refreshUI();
|
|
}
|
|
//else if (!search_name.empty() && search_name != mLastContactSearch) refreshNames(LLFriendObserver::ADD); // Singu Note: Why was this here? This would never happen
|
|
mLastContactSearch = search_name;
|
|
}
|
|
// --
|
|
|
|
// virtual
|
|
BOOL LLPanelFriends::postBuild()
|
|
{
|
|
mFriendsList = getChild<LLScrollListCtrl>("friend_list");
|
|
mFriendsList->setCommitOnSelectionChange(true);
|
|
/* Singu TODO: Update to C++11 and make everything cleaner here
|
|
auto single_selection(boost::bind(&LLScrollListCtrl::getCurrentID, mFriendsList));
|
|
auto selection(boost::bind(&LLScrollListCtrl::getSelectedIDs, mFriendsList));
|
|
*/
|
|
mFriendsList->setCommitCallback(boost::bind(&LLPanelFriends::onSelectName, this));
|
|
//getChild<LLUICtrl>("buddy_group_combobox")->setCommitCallback(boost::bind(&LLPanelFriends::setContactGroup, this, _2));
|
|
mFriendsList->setDoubleClickCallback(boost::bind(LLAvatarActions::startIM, boost::bind(&LLScrollListCtrl::getCurrentID, mFriendsList)));
|
|
|
|
// <dogmode>
|
|
// Contact search and group system.
|
|
// 09/05/2010 - Charley Levenque
|
|
if (LLFilterEditor* contact = getChild<LLFilterEditor>("buddy_search_lineedit"))
|
|
{
|
|
contact->setCommitCallback(boost::bind(&LLPanelFriends::filterContacts, this, _2));
|
|
}
|
|
|
|
getChild<LLTextBox>("s_num")->setValue("0");
|
|
getChild<LLTextBox>("f_num")->setValue(llformat("%d", mFriendsList->getItemCount()));
|
|
|
|
U32 changed_mask = LLFriendObserver::ADD | LLFriendObserver::REMOVE | LLFriendObserver::ONLINE;
|
|
refreshNames(changed_mask);
|
|
|
|
getChild<LLUICtrl>("im_btn")->setCommitCallback(boost::bind(&LLPanelFriends::onClickIM, this, boost::bind(&LLScrollListCtrl::getSelectedIDs, mFriendsList)));
|
|
//getChild<LLUICtrl>("assign_btn")->setCommitCallback(boost::bind(ASFloaterContactGroups::show, boost::bind(&LLScrollListCtrl::getSelectedIDs, mFriendsList)));
|
|
getChild<LLUICtrl>("profile_btn")->setCommitCallback(boost::bind(LLAvatarActions::showProfiles, boost::bind(&LLScrollListCtrl::getSelectedIDs, mFriendsList), false));
|
|
getChild<LLUICtrl>("offer_teleport_btn")->setCommitCallback(boost::bind(static_cast<void(*)(const uuid_vec_t&)>(LLAvatarActions::offerTeleport), boost::bind(&LLScrollListCtrl::getSelectedIDs, mFriendsList)));
|
|
getChild<LLUICtrl>("pay_btn")->setCommitCallback(boost::bind(LLAvatarActions::pay, boost::bind(&LLScrollListCtrl::getCurrentID, mFriendsList)));
|
|
getChild<LLUICtrl>("add_btn")->setCommitCallback(boost::bind(&LLPanelFriends::onClickAddFriend, this));
|
|
getChild<LLUICtrl>("remove_btn")->setCommitCallback(boost::bind(LLAvatarActions::removeFriendsDialog, boost::bind(&LLScrollListCtrl::getSelectedIDs, mFriendsList)));
|
|
//getChild<LLUICtrl>("export_btn")->setCommitCallback(boost::bind(&LLPanelFriends::onClickExport, this)); Making Dummy View -HgB
|
|
//getChild<LLUICtrl>("import_btn")->setCommitCallback(boost::bind(&LLPanelFriends::onClickImport, this)); Making Dummy View -HgB
|
|
|
|
setDefaultBtn("im_btn");
|
|
|
|
updateFriends(LLFriendObserver::ADD);
|
|
refreshUI();
|
|
|
|
// primary sort = online status, secondary sort = name
|
|
mFriendsList->sortByColumn(std::string("friend_name"), true);
|
|
mFriendsList->sortByColumn(std::string("icon_online_status"), false);
|
|
|
|
if (LLControlVariable* ctrl = gSavedSettings.getControl("ContactListCollapsed"))
|
|
{
|
|
updateColumns(ctrl->getValue());
|
|
ctrl->getSignal()->connect(boost::bind(&LLPanelFriends::updateColumns, this, _2));
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static const S32& friend_name_system()
|
|
{
|
|
static const LLCachedControl<S32> name_system("FriendNameSystem", 0);
|
|
return name_system;
|
|
}
|
|
|
|
static void update_friend_item(LLScrollListItem* item, const LLAvatarName& avname)
|
|
{
|
|
std::string name;
|
|
LLAvatarNameCache::getPNSName(avname, name, friend_name_system());
|
|
item->getColumn(1)->setValue(name);
|
|
}
|
|
|
|
void LLPanelFriends::addFriend(const LLUUID& agent_id)
|
|
{
|
|
const LLRelationship* relation_info = LLAvatarTracker::instance().getBuddyInfo(agent_id);
|
|
if (!relation_info) return;
|
|
|
|
//bool isOnlineSIP = LLVoiceClient::getInstance()->isOnlineSIP(agent_id);
|
|
bool isOnline = relation_info->isOnline();
|
|
|
|
std::string fullname;
|
|
bool have_name = LLAvatarNameCache::getPNSName(agent_id, fullname, friend_name_system());
|
|
if (!have_name) gCacheName->getFullName(agent_id, fullname);
|
|
|
|
LLScrollListItem::Params element;
|
|
element.value = agent_id;
|
|
LLScrollListCell::Params friend_column;
|
|
friend_column.column("friend_name").value(fullname).font("SANSSERIF");
|
|
static const LLCachedControl<LLColor4> sDefaultColor(gColors, "DefaultListText");
|
|
static const LLCachedControl<LLColor4> sMutedColor("AscentMutedColor");
|
|
friend_column.color(LLAvatarActions::isBlocked(agent_id) ? sMutedColor : sDefaultColor);
|
|
element.columns.add(friend_column);
|
|
|
|
LLScrollListCell::Params cell;
|
|
cell.column("icon_online_status").type("icon");
|
|
|
|
if (isOnline)
|
|
{
|
|
++mNumOnline;
|
|
friend_column.font_style("BOLD");
|
|
cell.value("icon_avatar_online.tga");
|
|
}
|
|
/*else if(isOnlineSIP)
|
|
{
|
|
++mNumOnline;
|
|
friend_column.font_style("BOLD");
|
|
cell.value("slim_icon_16_viewer.tga");
|
|
}*/
|
|
|
|
// Add the online indicator, then the names
|
|
element.columns.add(cell);
|
|
element.columns.add(friend_column);
|
|
|
|
cell.font_style("NORMAL").type("checkbox") // Ready cell for the extended info
|
|
|
|
.column("icon_visible_online")
|
|
.value(relation_info->isRightGrantedTo(LLRelationship::GRANT_ONLINE_STATUS));
|
|
element.columns.add(cell);
|
|
|
|
cell.column("icon_visible_map")
|
|
.value(relation_info->isRightGrantedTo(LLRelationship::GRANT_MAP_LOCATION));
|
|
element.columns.add(cell);
|
|
|
|
cell.column("icon_edit_mine")
|
|
.value(relation_info->isRightGrantedTo(LLRelationship::GRANT_MODIFY_OBJECTS));
|
|
element.columns.add(cell);
|
|
|
|
cell.enabled(false) // These next cells are disabled.
|
|
|
|
.column("icon_visible_online_theirs")
|
|
.value(relation_info->isRightGrantedFrom(LLRelationship::GRANT_ONLINE_STATUS));
|
|
element.columns.add(cell);
|
|
|
|
cell.column("icon_visible_map_theirs")
|
|
.value(relation_info->isRightGrantedFrom(LLRelationship::GRANT_MAP_LOCATION));
|
|
element.columns.add(cell);
|
|
|
|
cell.column("icon_edit_theirs")
|
|
.value(relation_info->isRightGrantedFrom(LLRelationship::GRANT_MODIFY_OBJECTS));
|
|
element.columns.add(cell);
|
|
|
|
cell.type("text") // This is for sort, not display.
|
|
.column("friend_last_update_generation")
|
|
.value(have_name ? relation_info->getChangeSerialNum() : -1);
|
|
element.columns.add(cell);
|
|
|
|
LLScrollListItem* item(mFriendsList->addRow(element));
|
|
if (!have_name) LLAvatarNameCache::get(agent_id, boost::bind(update_friend_item, item, _2));
|
|
}
|
|
|
|
// propagate actual relationship to UI.
|
|
// Does not resort the UI list because it can be called frequently. JC
|
|
void LLPanelFriends::updateFriendItem(const LLUUID& agent_id, const LLRelationship* info)
|
|
{
|
|
if (!info) return;
|
|
LLScrollListItem* itemp = mFriendsList->getItem(agent_id);
|
|
if (!itemp) return;
|
|
|
|
//bool isOnlineSIP = LLVoiceClient::getInstance()->isOnlineSIP(itemp->getUUID());
|
|
bool isOnline = info->isOnline();
|
|
|
|
std::string fullname;
|
|
if (LLAvatarNameCache::getPNSName(agent_id, fullname, friend_name_system()))
|
|
{
|
|
itemp->getColumn(LIST_FRIEND_UPDATE_GEN)->setValue(info->getChangeSerialNum());
|
|
}
|
|
else
|
|
{
|
|
gCacheName->getFullName(agent_id, fullname);
|
|
LLAvatarNameCache::get(agent_id, boost::bind(update_friend_item, itemp, _2));
|
|
itemp->getColumn(LIST_FRIEND_UPDATE_GEN)->setValue(-1);
|
|
}
|
|
|
|
// Name of the status icon to use
|
|
std::string statusIcon;
|
|
|
|
if (isOnline)
|
|
{
|
|
++mNumOnline;
|
|
statusIcon = "icon_avatar_online.tga";
|
|
}
|
|
/*else if (isOnlineSIP)
|
|
{
|
|
++mNumOnline;
|
|
statusIcon = "slim_icon_16_viewer.tga";
|
|
}*/
|
|
else
|
|
{
|
|
--mNumOnline;
|
|
}
|
|
|
|
itemp->getColumn(LIST_ONLINE_STATUS)->setValue(statusIcon);
|
|
|
|
itemp->getColumn(LIST_FRIEND_NAME)->setValue(fullname);
|
|
// render name of online friends in bold text
|
|
static_cast<LLScrollListText*>(itemp->getColumn(LIST_FRIEND_NAME))->setFontStyle(isOnline /*|| isOnlineSIP*/ ? LLFontGL::BOLD : LLFontGL::NORMAL);
|
|
itemp->getColumn(LIST_VISIBLE_ONLINE)->setValue(info->isRightGrantedTo(LLRelationship::GRANT_ONLINE_STATUS));
|
|
itemp->getColumn(LIST_VISIBLE_MAP)->setValue(info->isRightGrantedTo(LLRelationship::GRANT_MAP_LOCATION));
|
|
itemp->getColumn(LIST_EDIT_MINE)->setValue(info->isRightGrantedTo(LLRelationship::GRANT_MODIFY_OBJECTS));
|
|
//Notes in the original code imply this may not always work. Good to know. -HgB
|
|
itemp->getColumn(LIST_VISIBLE_ONLINE_THEIRS)->setValue(info->isRightGrantedFrom(LLRelationship::GRANT_ONLINE_STATUS));
|
|
|
|
|
|
itemp->getColumn(LIST_VISIBLE_MAP_THEIRS)->setValue(info->isRightGrantedFrom(LLRelationship::GRANT_MAP_LOCATION));
|
|
itemp->getColumn(LIST_EDIT_THEIRS)->setValue(info->isRightGrantedFrom(LLRelationship::GRANT_MODIFY_OBJECTS));
|
|
|
|
// enable this item, in case it was disabled after user input
|
|
itemp->setEnabled(true);
|
|
|
|
mFriendsList->setNeedsSort();
|
|
|
|
// Do not resort, this function can be called frequently.
|
|
}
|
|
|
|
void LLPanelFriends::refreshRightsChangeList()
|
|
{
|
|
const uuid_vec_t friends = mFriendsList->getSelectedIDs();
|
|
|
|
size_t num_selected = friends.size();
|
|
bool can_offer_teleport = num_selected;
|
|
|
|
/* if (LLTextBox* processing_label = getChild<LLTextBox>("process_rights_label"))
|
|
{
|
|
processing_label->setVisible(true);
|
|
// ignore selection for now
|
|
friends.clear();
|
|
num_selected = 0;
|
|
} Making Dummy View -HgB */
|
|
for(uuid_vec_t::const_iterator itr = friends.begin(); itr != friends.end(); ++itr)
|
|
{
|
|
if (const LLRelationship* friend_status = LLAvatarTracker::instance().getBuddyInfo(*itr))
|
|
{
|
|
if (!friend_status->isOnline())
|
|
can_offer_teleport = false;
|
|
}
|
|
else // missing buddy info, don't allow any operations
|
|
{
|
|
can_offer_teleport = false;
|
|
}
|
|
}
|
|
|
|
//Stuff for the online/total/select counts.
|
|
getChild<LLTextBox>("s_num")->setValue(llformat("%d", num_selected));
|
|
getChild<LLTextBox>("f_num")->setValue(llformat("%d / %d", mNumOnline, mFriendsList->getItemCount()));
|
|
|
|
if (!num_selected) // nothing selected
|
|
{
|
|
getChildView("im_btn")->setEnabled(false);
|
|
//getChildView("assign_btn")->setEnabled(false);
|
|
getChildView("offer_teleport_btn")->setEnabled(false);
|
|
}
|
|
else // we have at least one friend selected...
|
|
{
|
|
getChildView("im_btn")->setEnabled(true);
|
|
//getChildView("assign_btn")->setEnabled(num_selected == 1);
|
|
getChildView("offer_teleport_btn")->setEnabled(can_offer_teleport);
|
|
}
|
|
}
|
|
|
|
struct SortFriendsByID
|
|
{
|
|
bool operator() (const LLScrollListItem* const a, const LLScrollListItem* const b) const
|
|
{
|
|
return a->getValue().asUUID() < b->getValue().asUUID();
|
|
}
|
|
};
|
|
|
|
void LLPanelFriends::refreshNames(U32 changed_mask)
|
|
{
|
|
const uuid_vec_t selected_ids = mFriendsList->getSelectedIDs();
|
|
S32 pos = mFriendsList->getScrollPos();
|
|
|
|
// get all buddies we know about
|
|
LLAvatarTracker::buddy_map_t all_buddies;
|
|
LLAvatarTracker::instance().copyBuddyList(all_buddies);
|
|
|
|
if (changed_mask & (LLFriendObserver::ADD | LLFriendObserver::REMOVE))
|
|
{
|
|
refreshNamesSync(all_buddies);
|
|
}
|
|
|
|
if (changed_mask & LLFriendObserver::ONLINE)
|
|
{
|
|
refreshNamesPresence(all_buddies);
|
|
}
|
|
|
|
// Changed item in place, need to request sort and update columns
|
|
// because we might have changed data in a column on which the user
|
|
// has already sorted. JC
|
|
mFriendsList->updateSort();
|
|
|
|
// re-select items
|
|
mFriendsList->selectMultiple(selected_ids);
|
|
mFriendsList->setScrollPos(pos);
|
|
}
|
|
|
|
void LLPanelFriends::refreshNamesSync(const LLAvatarTracker::buddy_map_t& all_buddies)
|
|
{
|
|
mNumOnline = 0;
|
|
mFriendsList->deleteAllItems();
|
|
|
|
for(LLAvatarTracker::buddy_map_t::const_iterator buddy_it = all_buddies.begin(); buddy_it != all_buddies.end(); ++buddy_it)
|
|
{
|
|
addFriend(buddy_it->first);
|
|
}
|
|
}
|
|
|
|
void LLPanelFriends::refreshNamesPresence(const LLAvatarTracker::buddy_map_t& all_buddies)
|
|
{
|
|
std::vector<LLScrollListItem*> items = mFriendsList->getAllData();
|
|
std::sort(items.begin(), items.end(), SortFriendsByID());
|
|
|
|
LLAvatarTracker::buddy_map_t::const_iterator buddy_it = all_buddies.begin();
|
|
std::vector<LLScrollListItem*>::const_iterator item_it = items.begin();
|
|
|
|
while(item_it != items.end() && buddy_it != all_buddies.end())
|
|
{
|
|
const LLUUID& buddy_uuid = buddy_it->first;
|
|
const LLUUID& item_uuid = (*item_it)->getValue().asUUID();
|
|
if (item_uuid == buddy_uuid)
|
|
{
|
|
const LLRelationship* info = buddy_it->second;
|
|
if (!info)
|
|
{
|
|
++item_it;
|
|
continue;
|
|
}
|
|
|
|
S32 last_change_generation = (*item_it)->getColumn(LIST_FRIEND_UPDATE_GEN)->getValue().asInteger();
|
|
if (last_change_generation < info->getChangeSerialNum())
|
|
{
|
|
// update existing item in UI
|
|
updateFriendItem(buddy_it->first, info);
|
|
}
|
|
|
|
++buddy_it;
|
|
++item_it;
|
|
}
|
|
else if (item_uuid < buddy_uuid)
|
|
{
|
|
++item_it;
|
|
}
|
|
else //if(item_uuid > buddy_uuid)
|
|
{
|
|
++buddy_it;
|
|
}
|
|
}
|
|
}
|
|
|
|
// meal disk
|
|
void LLPanelFriends::refreshUI()
|
|
{
|
|
bool single_selected = false;
|
|
bool multiple_selected = false;
|
|
size_t num_selected = mFriendsList->getAllSelected().size();
|
|
if (num_selected)
|
|
{
|
|
single_selected = true;
|
|
if (num_selected > 1)
|
|
{
|
|
multiple_selected = true;
|
|
}
|
|
}
|
|
|
|
//Options that can only be performed with one friend selected
|
|
getChildView("pay_btn")->setEnabled(single_selected && !multiple_selected);
|
|
//getChildView("assign_btn")->setEnabled(single_selected && !multiple_selected);
|
|
|
|
//Options that can be performed with multiple friends selected
|
|
//(single_selected will always be true in this situations)
|
|
getChildView("profile_btn")->setEnabled(single_selected);
|
|
getChildView("remove_btn")->setEnabled(single_selected);
|
|
getChildView("im_btn")->setEnabled(single_selected);
|
|
//getChildView("friend_rights")->setEnabled(single_selected); Making Dummy View -HgB
|
|
|
|
refreshRightsChangeList();
|
|
}
|
|
|
|
void LLPanelFriends::onSelectName()
|
|
{
|
|
refreshUI();
|
|
// check to see if rights have changed
|
|
applyRightsToFriends();
|
|
}
|
|
|
|
void LLPanelFriends::updateColumns(bool collapsed)
|
|
{
|
|
//llinfos << "Refreshing UI" << llendl;
|
|
S32 width = collapsed ? 0 : 22;
|
|
LLScrollListColumn* column = mFriendsList->getColumn(5);
|
|
mFriendsList->updateStaticColumnWidth(column, width);
|
|
column->setWidth(width);
|
|
column = mFriendsList->getColumn(6);
|
|
mFriendsList->updateStaticColumnWidth(column, width);
|
|
column->setWidth(width);
|
|
column = mFriendsList->getColumn(7);
|
|
mFriendsList->updateStaticColumnWidth(column, width);
|
|
column->setWidth(width);
|
|
mFriendsList->updateLayout();
|
|
if (!collapsed) updateFriends(LLFriendObserver::ADD);
|
|
}
|
|
|
|
void LLPanelFriends::onClickIM(const uuid_vec_t& ids)
|
|
{
|
|
//llinfos << "LLPanelFriends::onClickIM()" << llendl;
|
|
if (!ids.empty())
|
|
ids.size() == 1 ? LLAvatarActions::startIM(ids[0]) : LLAvatarActions::startConference(ids);
|
|
}
|
|
|
|
// static
|
|
void LLPanelFriends::onPickAvatar(const uuid_vec_t& ids, const std::vector<LLAvatarName>& names)
|
|
{
|
|
if (names.empty() || ids.empty()) return;
|
|
LLAvatarActions::requestFriendshipDialog(ids[0], names[0].getCompleteName());
|
|
}
|
|
|
|
void LLPanelFriends::onClickAddFriend()
|
|
{
|
|
if (LLFloater* root_floater = gFloaterView->getParentFloater(this))
|
|
root_floater->addDependentFloater(LLFloaterAvatarPicker::show(boost::bind(&LLPanelFriends::onPickAvatar, _1, _2), false, true));
|
|
}
|
|
|
|
/* Singu Note: We don't currently use these.
|
|
void LLPanelFriends::onClickExport()
|
|
{
|
|
std::string agn;
|
|
gAgent.getName(agn);
|
|
AIFilePicker* filepicker = AIFilePicker::create();
|
|
filepicker->open(agn + ".friendlist", FFSAVE_ALL);
|
|
filepicker->run(boost::bind(&LLPanelFriends::onClickExport_continued, this, filepicker));
|
|
}
|
|
|
|
void LLPanelFriends::onClickExport_continued(AIFilePicker* filepicker)
|
|
{
|
|
if(!filepicker->hasFilename()) return;
|
|
|
|
const std::string filename(filepicker->getFilename());
|
|
std::vector<LLScrollListItem*> selected = mFriendsList->getAllData();
|
|
|
|
LLSD llsd;
|
|
for(std::vector<LLScrollListItem*>::const_iterator itr = selected.begin(); itr != selected.end(); ++itr)
|
|
{
|
|
const LLScrollListItem* it(*itr);
|
|
LLSD& fraind = llsd[it->getUUID().asString()];
|
|
fraind["name"] = it->getColumn(LIST_FRIEND_NAME)->getValue().asString();
|
|
fraind["see_online"] = it->getColumn(LIST_VISIBLE_ONLINE)->getValue().asBoolean();
|
|
fraind["can_map"] = it->getColumn(LIST_VISIBLE_MAP)->getValue().asBoolean();
|
|
fraind["can_mod"] = it->getColumn(LIST_EDIT_MINE)->getValue().asBoolean();
|
|
}
|
|
|
|
llsd["GRID"] = gHippoGridManager->getConnectedGrid()->getLoginUri();
|
|
|
|
llofstream export_file;
|
|
export_file.open(filename);
|
|
LLSDSerialize::toPrettyXML(llsd, export_file);
|
|
export_file.close();
|
|
}
|
|
|
|
|
|
void LLPanelFriends::onClickImport(void* user_data)
|
|
{
|
|
AIFilePicker* filepicker = AIFilePicker::create();
|
|
filepicker->open();
|
|
filepicker->run(boost::bind(&LLPanelFriends::onClickImport_filepicker_continued, filepicker));
|
|
}
|
|
|
|
//THIS CODE IS DESIGNED SO THAT EXP/IMP BETWEEN GRIDS WILL FAIL
|
|
//because assuming someone having the same name on another grid is the same person is generally a bad idea
|
|
//i might add the option to query the user as to intelligently detecting matching names on a alternative grid
|
|
// jcool410
|
|
void LLPanelFriends::onClickImport_filepicker_continued(AIFilePicker* filepicker)
|
|
{
|
|
if (!filepicker->hasFilename())
|
|
return;
|
|
|
|
std::string filename = filepicker->getFilename();
|
|
llifstream importer(filename);
|
|
LLSD data;
|
|
LLSDSerialize::fromXMLDocument(data, importer);
|
|
if(data.has("GRID"))
|
|
{
|
|
std::string grid = gHippoGridManager->getConnectedGrid()->getLoginUri();
|
|
if (grid != data["GRID"])return;
|
|
data.erase("GRID");
|
|
}
|
|
|
|
#if LL_WINDOWS
|
|
std::string file = filename.substr(filename.find_last_of("\\")+1);
|
|
#else
|
|
std::string file = filename.substr(filename.find_last_of("/")+1);
|
|
#endif
|
|
|
|
std::string importstate = gDirUtilp->getExpandedFilename(LL_PATH_PER_SL_ACCOUNT, "friendimportstate.dat");
|
|
|
|
llifstream stateload(importstate);
|
|
LLSD importstatellsd;
|
|
LLSDSerialize::fromXMLDocument(importstatellsd, stateload);
|
|
|
|
static bool merging;
|
|
|
|
LLSD newdata;
|
|
|
|
for(LLSD::map_const_iterator iter = data.beginMap(); iter != data.endMap(); ++iter)
|
|
{//first= var second = val
|
|
LLSD content = iter->second;
|
|
if (!content.has("name")) continue;
|
|
if (!content.has("see_online")) continue;
|
|
if (!content.has("can_map")) continue;
|
|
if (!content.has("can_mod")) continue;
|
|
|
|
LLUUID agent_id = LLUUID(iter->first);
|
|
if(merging && importstatellsd.has(agent_id.asString()))continue;//dont need to request what we've already requested from another list import and have not got a reply yet
|
|
|
|
std::string agent_name = content["name"];
|
|
if(!LLAvatarActions::isFriend(agent_id))//dont need to request what we have
|
|
{
|
|
if(merging)importstatellsd[agent_id.asString()] = content;//MERGEEEE
|
|
LLAvatarActions::requestFriendship(agent_id, agent_name, "Imported from "+file);
|
|
newdata[iter->first] = iter->second;
|
|
}
|
|
}
|
|
|
|
if(!merging)
|
|
{
|
|
merging = true;//this hack is to support importing multiple account lists without spamming users but considering LLs fail in forcing silent declines
|
|
importstatellsd = newdata;
|
|
}
|
|
|
|
llofstream export_file;
|
|
export_file.open(importstate);
|
|
LLSDSerialize::toPrettyXML(importstatellsd, export_file);
|
|
export_file.close();
|
|
}
|
|
|
|
void LLPanelFriends::FriendImportState(LLUUID id, bool accepted)
|
|
{
|
|
std::string importstate = gDirUtilp->getExpandedFilename(LL_PATH_PER_SL_ACCOUNT, "friendimportstate.dat");
|
|
if(LLFile::isfile(importstate))
|
|
{
|
|
llifstream importer(importstate);
|
|
LLSD data;
|
|
LLSDSerialize::fromXMLDocument(data, importer);
|
|
|
|
if(!data.has(id.asString()))return;
|
|
|
|
LLSD user = data[id.asString()];
|
|
if(accepted)
|
|
{
|
|
S32 rights = 0;
|
|
if (user["can_map"].asBoolean()) rights |= LLRelationship::GRANT_MAP_LOCATION;
|
|
if (user["can_mod"].asBoolean()) rights |= LLRelationship::GRANT_MODIFY_OBJECTS;
|
|
if (user["see_online"].asBoolean()) rights |= LLRelationship::GRANT_ONLINE_STATUS;
|
|
if (LLAvatarActions::isFriend(id)) //is this legit shit yo
|
|
{
|
|
const LLRelationship* friend_status = LLAvatarTracker::instance().getBuddyInfo(id);
|
|
if(friend_status)
|
|
{
|
|
S32 tr = friend_status->getRightsGrantedTo();
|
|
if(tr != rights)
|
|
{
|
|
LLMessageSystem* msg = gMessageSystem;
|
|
msg->newMessageFast(_PREHASH_GrantUserRights);
|
|
msg->nextBlockFast(_PREHASH_AgentData);
|
|
msg->addUUID(_PREHASH_AgentID, gAgentID);
|
|
msg->addUUID(_PREHASH_SessionID, gAgentSessionID);
|
|
msg->nextBlockFast(_PREHASH_Rights);
|
|
msg->addUUID(_PREHASH_AgentRelated, id);
|
|
msg->addS32(_PREHASH_RelatedRights, rights);
|
|
gAgent.sendReliableMessage();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
data.erase(id.asString());//if they declined then we need to forget about it, if they accepted it is done
|
|
|
|
llofstream export_file;
|
|
export_file.open(importstate);
|
|
LLSDSerialize::toPrettyXML(data, export_file);
|
|
export_file.close();
|
|
}
|
|
}
|
|
*/
|
|
|
|
void LLPanelFriends::confirmModifyRights(rights_map_t& rights, EGrantRevoke command)
|
|
{
|
|
if (rights.empty()) return;
|
|
|
|
// for single friend, show their name
|
|
if (rights.size() == 1)
|
|
{
|
|
LLSD args;
|
|
std::string fullname;
|
|
if (LLAvatarNameCache::getPNSName(rights.begin()->first, fullname, friend_name_system()))
|
|
args["NAME"] = fullname;
|
|
|
|
LLNotificationsUtil::add(command == GRANT ? "GrantModifyRights" : "RevokeModifyRights",
|
|
args, LLSD(),
|
|
boost::bind(&LLPanelFriends::modifyRightsConfirmation, this, _1, _2, rights));
|
|
}
|
|
else
|
|
{
|
|
LLNotificationsUtil::add(command == GRANT ? "GrantModifyRightsMultiple" : "RevokeModifyRightsMultiple",
|
|
LLSD(), LLSD(),
|
|
boost::bind(&LLPanelFriends::modifyRightsConfirmation, this, _1, _2, rights));
|
|
}
|
|
}
|
|
|
|
bool LLPanelFriends::modifyRightsConfirmation(const LLSD& notification, const LLSD& response, rights_map_t rights)
|
|
{
|
|
S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
|
|
if(0 == option)
|
|
{
|
|
sendRightsGrant(rights);
|
|
}
|
|
else
|
|
{
|
|
// need to resync view with model, since user cancelled operation
|
|
for (rights_map_t::iterator rights_it = rights.begin(); rights_it != rights.end(); ++rights_it)
|
|
{
|
|
const LLRelationship* info = LLAvatarTracker::instance().getBuddyInfo(rights_it->first);
|
|
updateFriendItem(rights_it->first, info);
|
|
}
|
|
}
|
|
refreshUI();
|
|
|
|
return false;
|
|
}
|
|
|
|
void LLPanelFriends::applyRightsToFriends()
|
|
{
|
|
bool rights_changed = false;
|
|
|
|
// store modify rights separately for confirmation
|
|
rights_map_t rights_updates;
|
|
|
|
bool need_confirmation = false;
|
|
EGrantRevoke confirmation_type = GRANT;
|
|
|
|
// this assumes that changes only happened to selected items
|
|
std::vector<LLScrollListItem*> selected = mFriendsList->getAllSelected();
|
|
for(std::vector<LLScrollListItem*>::iterator itr = selected.begin(); itr != selected.end(); ++itr)
|
|
{
|
|
LLUUID id = (*itr)->getValue();
|
|
const LLRelationship* buddy_relationship = LLAvatarTracker::instance().getBuddyInfo(id);
|
|
if (!buddy_relationship) continue;
|
|
|
|
bool show_online_staus = (*itr)->getColumn(LIST_VISIBLE_ONLINE)->getValue().asBoolean();
|
|
bool show_map_location = (*itr)->getColumn(LIST_VISIBLE_MAP)->getValue().asBoolean();
|
|
bool allow_modify_objects = (*itr)->getColumn(LIST_EDIT_MINE)->getValue().asBoolean();
|
|
|
|
S32 rights = buddy_relationship->getRightsGrantedTo();
|
|
if (buddy_relationship->isRightGrantedTo(LLRelationship::GRANT_ONLINE_STATUS) != show_online_staus)
|
|
{
|
|
rights_changed = true;
|
|
if (show_online_staus)
|
|
{
|
|
rights |= LLRelationship::GRANT_ONLINE_STATUS;
|
|
}
|
|
else
|
|
{
|
|
// ONLINE_STATUS necessary for MAP_LOCATION
|
|
rights &= ~LLRelationship::GRANT_ONLINE_STATUS;
|
|
rights &= ~LLRelationship::GRANT_MAP_LOCATION;
|
|
// propagate rights constraint to UI
|
|
(*itr)->getColumn(LIST_VISIBLE_MAP)->setValue(false);
|
|
mFriendsList->setNeedsSortColumn(LIST_VISIBLE_MAP);
|
|
}
|
|
}
|
|
if (buddy_relationship->isRightGrantedTo(LLRelationship::GRANT_MAP_LOCATION) != show_map_location)
|
|
{
|
|
rights_changed = true;
|
|
if (show_map_location)
|
|
{
|
|
// ONLINE_STATUS necessary for MAP_LOCATION
|
|
rights |= LLRelationship::GRANT_MAP_LOCATION;
|
|
rights |= LLRelationship::GRANT_ONLINE_STATUS;
|
|
(*itr)->getColumn(LIST_VISIBLE_ONLINE)->setValue(true);
|
|
mFriendsList->setNeedsSortColumn(LIST_VISIBLE_ONLINE);
|
|
}
|
|
else
|
|
{
|
|
rights &= ~LLRelationship::GRANT_MAP_LOCATION;
|
|
}
|
|
}
|
|
|
|
// now check for change in modify object rights, which requires confirmation
|
|
if (buddy_relationship->isRightGrantedTo(LLRelationship::GRANT_MODIFY_OBJECTS) != allow_modify_objects)
|
|
{
|
|
rights_changed = true;
|
|
need_confirmation = true;
|
|
|
|
if (allow_modify_objects)
|
|
{
|
|
rights |= LLRelationship::GRANT_MODIFY_OBJECTS;
|
|
confirmation_type = GRANT;
|
|
}
|
|
else
|
|
{
|
|
rights &= ~LLRelationship::GRANT_MODIFY_OBJECTS;
|
|
confirmation_type = REVOKE;
|
|
}
|
|
}
|
|
|
|
if (rights_changed)
|
|
{
|
|
rights_updates.insert(std::make_pair(id, rights));
|
|
// disable these ui elements until response from server
|
|
// to avoid race conditions
|
|
(*itr)->setEnabled(false);
|
|
}
|
|
}
|
|
|
|
// separately confirm grant and revoke of modify rights
|
|
if (need_confirmation)
|
|
{
|
|
confirmModifyRights(rights_updates, confirmation_type);
|
|
}
|
|
else
|
|
{
|
|
sendRightsGrant(rights_updates);
|
|
}
|
|
}
|
|
|
|
void LLPanelFriends::sendRightsGrant(rights_map_t& ids)
|
|
{
|
|
if (ids.empty()) return;
|
|
|
|
LLMessageSystem* msg = gMessageSystem;
|
|
|
|
// setup message header
|
|
msg->newMessageFast(_PREHASH_GrantUserRights);
|
|
msg->nextBlockFast(_PREHASH_AgentData);
|
|
msg->addUUID(_PREHASH_AgentID, gAgentID);
|
|
msg->addUUID(_PREHASH_SessionID, gAgentSessionID);
|
|
|
|
rights_map_t::iterator id_it;
|
|
rights_map_t::iterator end_it = ids.end();
|
|
for(id_it = ids.begin(); id_it != end_it; ++id_it)
|
|
{
|
|
msg->nextBlockFast(_PREHASH_Rights);
|
|
msg->addUUID(_PREHASH_AgentRelated, id_it->first);
|
|
msg->addS32(_PREHASH_RelatedRights, id_it->second);
|
|
}
|
|
|
|
gAgent.sendReliableMessage();
|
|
}
|