1173 lines
33 KiB
C++
1173 lines
33 KiB
C++
/**
|
|
* @file llfloaterproperties.cpp
|
|
* @brief A floater which shows an inventory item's properties.
|
|
*
|
|
* $LicenseInfo:firstyear=2002&license=viewergpl$
|
|
*
|
|
* Copyright (c) 2002-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 "llfloaterproperties.h"
|
|
|
|
#include <algorithm>
|
|
#include <functional>
|
|
#include "llcachename.h"
|
|
#include "lldbstrings.h"
|
|
#include "llinventory.h"
|
|
#include "llinventorydefines.h"
|
|
|
|
#include "llagent.h"
|
|
#include "llbutton.h"
|
|
#include "llcheckboxctrl.h"
|
|
#include "llfloateravatarinfo.h"
|
|
#include "llfloatergroupinfo.h"
|
|
#include "llinventorymodel.h"
|
|
#include "lllineeditor.h"
|
|
#include "llradiogroup.h"
|
|
#include "llresmgr.h"
|
|
#include "roles_constants.h"
|
|
#include "llselectmgr.h"
|
|
#include "lltextbox.h"
|
|
#include "lluiconstants.h"
|
|
#include "llviewerinventory.h"
|
|
#include "llviewerobjectlist.h"
|
|
#include "llviewerregion.h"
|
|
#include "llviewercontrol.h"
|
|
|
|
#include "lluictrlfactory.h"
|
|
|
|
#include "hippogridmanager.h"
|
|
|
|
// <edit>
|
|
#include "llclipboard.h"
|
|
// </edit>
|
|
|
|
// [RLVa:KB]
|
|
#include "rlvhandler.h"
|
|
// [/RLVa:KB]
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
// Class LLPropertiesObserver
|
|
//
|
|
// helper class to watch the inventory.
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
// Ugh. This can't be a singleton because it needs to remove itself
|
|
// from the inventory observer list when destroyed, which could
|
|
// happen after gInventory has already been destroyed if a singleton.
|
|
// Instead, do our own ref counting and create / destroy it as needed
|
|
class LLPropertiesObserver : public LLInventoryObserver
|
|
{
|
|
public:
|
|
LLPropertiesObserver()
|
|
{
|
|
gInventory.addObserver(this);
|
|
}
|
|
virtual ~LLPropertiesObserver()
|
|
{
|
|
gInventory.removeObserver(this);
|
|
}
|
|
virtual void changed(U32 mask);
|
|
};
|
|
|
|
void LLPropertiesObserver::changed(U32 mask)
|
|
{
|
|
// if there's a change we're interested in.
|
|
if((mask & (LLInventoryObserver::LABEL | LLInventoryObserver::INTERNAL | LLInventoryObserver::REMOVE)) != 0)
|
|
{
|
|
LLFloaterProperties::dirtyAll();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
///----------------------------------------------------------------------------
|
|
/// Class LLFloaterProperties
|
|
///----------------------------------------------------------------------------
|
|
|
|
// static
|
|
LLFloaterProperties::instance_map LLFloaterProperties::sInstances;
|
|
LLPropertiesObserver* LLFloaterProperties::sPropertiesObserver = NULL;
|
|
S32 LLFloaterProperties::sPropertiesObserverCount = 0;
|
|
|
|
// static
|
|
LLFloaterProperties* LLFloaterProperties::find(const LLUUID& item_id,
|
|
const LLUUID& object_id)
|
|
{
|
|
// for simplicity's sake, we key the properties window with a
|
|
// single uuid. However, the items are keyed by item and object
|
|
// (obj == null -> agent inventory). So, we xor the two ids, and
|
|
// use that as a lookup key
|
|
instance_map::iterator it = sInstances.find(item_id ^ object_id);
|
|
if(it != sInstances.end())
|
|
{
|
|
return (*it).second;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
// static
|
|
LLFloaterProperties* LLFloaterProperties::show(const LLUUID& item_id,
|
|
const LLUUID& object_id)
|
|
{
|
|
LLFloaterProperties* instance = find(item_id, object_id);
|
|
if(instance)
|
|
{
|
|
if (LLFloater::getFloaterHost() && LLFloater::getFloaterHost() != instance->getHost())
|
|
{
|
|
// this properties window is being opened in a new context
|
|
// needs to be rehosted
|
|
LLFloater::getFloaterHost()->addFloater(instance, TRUE);
|
|
}
|
|
|
|
instance->refresh();
|
|
instance->open(); /* Flawfinder: ignore */
|
|
}
|
|
return instance;
|
|
}
|
|
|
|
void LLFloaterProperties::dirtyAll()
|
|
{
|
|
// ...this is more clear. Possibly more correct, because the
|
|
// refresh method may delete the object.
|
|
for(instance_map::iterator it = sInstances.begin(); it!=sInstances.end(); )
|
|
{
|
|
(*it++).second->dirty();
|
|
}
|
|
}
|
|
|
|
// Default constructor
|
|
LLFloaterProperties::LLFloaterProperties(const std::string& name, const LLRect& rect, const std::string& title, const LLUUID& item_id, const LLUUID& object_id) :
|
|
LLFloater(name, rect, title),
|
|
mItemID(item_id),
|
|
mObjectID(object_id),
|
|
mDirty(TRUE)
|
|
// <edit>
|
|
, mExpanded(FALSE)
|
|
// </edit>
|
|
{
|
|
LLUICtrlFactory::getInstance()->buildFloater(this,"floater_inventory_item_properties.xml");
|
|
|
|
if (!sPropertiesObserver)
|
|
{
|
|
sPropertiesObserver = new LLPropertiesObserver;
|
|
}
|
|
sPropertiesObserverCount++;
|
|
|
|
childSetTextArg("TextPrice", "[CURRENCY]", gHippoGridManager->getConnectedGrid()->getCurrencySymbol());
|
|
|
|
// add the object to the static structure
|
|
LLUUID key = mItemID ^ mObjectID;
|
|
sInstances.insert(instance_map::value_type(key, this));
|
|
// build the UI
|
|
// item name & description
|
|
childSetPrevalidate("LabelItemName",&LLLineEditor::prevalidatePrintableNotPipe);
|
|
childSetCommitCallback("LabelItemName",onCommitName,this);
|
|
childSetPrevalidate("LabelItemDesc",&LLLineEditor::prevalidatePrintableNotPipe);
|
|
childSetCommitCallback("LabelItemDesc", onCommitDescription, this);
|
|
// Creator information
|
|
childSetAction("BtnCreator",onClickCreator,this);
|
|
// owner information
|
|
childSetAction("BtnOwner",onClickOwner,this);
|
|
// acquired date
|
|
// owner permissions
|
|
// Permissions debug text
|
|
// group permissions
|
|
childSetCommitCallback("CheckGroupCopy",&onCommitPermissions, this);
|
|
childSetCommitCallback("CheckGroupMod",&onCommitPermissions, this);
|
|
childSetCommitCallback("CheckGroupMove",&onCommitPermissions, this);
|
|
// everyone permissions
|
|
childSetCommitCallback("CheckEveryoneCopy",&onCommitPermissions, this);
|
|
childSetCommitCallback("CheckEveryoneMove",&onCommitPermissions, this);
|
|
// next owner permissions
|
|
childSetCommitCallback("CheckNextOwnerModify",&onCommitPermissions, this);
|
|
childSetCommitCallback("CheckNextOwnerCopy",&onCommitPermissions, this);
|
|
childSetCommitCallback("CheckNextOwnerTransfer",&onCommitPermissions, this);
|
|
// Mark for sale or not, and sale info
|
|
childSetCommitCallback("CheckPurchase",&onCommitSaleInfo, this);
|
|
childSetCommitCallback("RadioSaleType",&onCommitSaleType, this);
|
|
// "Price" label for edit
|
|
childSetCommitCallback("EditPrice",&onCommitSaleInfo, this);
|
|
// <edit>
|
|
childSetAction("more_btn", &onClickMore, this);
|
|
childSetAction("less_btn", &onClickLess, this);
|
|
childSetAction("copy_btn", &onClickCopy, this);
|
|
childSetAction("update_btn", &onClickUpdate, this);
|
|
setExpanded(mExpanded);
|
|
// </edit>
|
|
// The UI has been built, now fill in all the values
|
|
refresh();
|
|
}
|
|
|
|
// Destroys the object
|
|
LLFloaterProperties::~LLFloaterProperties()
|
|
{
|
|
// clean up the static data.
|
|
instance_map::iterator it = sInstances.find(mItemID ^ mObjectID);
|
|
if(it != sInstances.end())
|
|
{
|
|
sInstances.erase(it);
|
|
}
|
|
sPropertiesObserverCount--;
|
|
if (!sPropertiesObserverCount)
|
|
{
|
|
delete sPropertiesObserver;
|
|
sPropertiesObserver = NULL;
|
|
}
|
|
}
|
|
|
|
void LLFloaterProperties::refresh()
|
|
{
|
|
LLInventoryItem* item = findItem();
|
|
if(item)
|
|
{
|
|
refreshFromItem(item);
|
|
}
|
|
else
|
|
{
|
|
//RN: it is possible that the container object is in the middle of an inventory refresh
|
|
// causing findItem() to fail, so just temporarily disable everything
|
|
|
|
mDirty = TRUE;
|
|
|
|
const char* enableNames[]={
|
|
"LabelItemName",
|
|
"LabelItemDesc",
|
|
"LabelCreatorName",
|
|
"BtnCreator",
|
|
"LabelOwnerName",
|
|
"BtnOwner",
|
|
"CheckOwnerModify",
|
|
"CheckOwnerCopy",
|
|
"CheckOwnerTransfer",
|
|
"CheckGroupCopy",
|
|
"CheckGroupMod",
|
|
"CheckGroupMove",
|
|
"CheckEveryoneCopy",
|
|
"CheckEveryoneMove",
|
|
"CheckNextOwnerModify",
|
|
"CheckNextOwnerCopy",
|
|
"CheckNextOwnerTransfer",
|
|
"CheckPurchase",
|
|
"RadioSaleType",
|
|
"EditPrice"
|
|
};
|
|
for(size_t t=0; t<LL_ARRAY_SIZE(enableNames); ++t)
|
|
{
|
|
childSetEnabled(enableNames[t],false);
|
|
}
|
|
const char* hideNames[]={
|
|
"BaseMaskDebug",
|
|
"OwnerMaskDebug",
|
|
"GroupMaskDebug",
|
|
"EveryoneMaskDebug",
|
|
"NextMaskDebug"
|
|
};
|
|
for(size_t t=0; t<LL_ARRAY_SIZE(hideNames); ++t)
|
|
{
|
|
childSetVisible(hideNames[t],false);
|
|
}
|
|
}
|
|
}
|
|
|
|
void LLFloaterProperties::draw()
|
|
{
|
|
if (mDirty)
|
|
{
|
|
// RN: clear dirty first because refresh can set dirty to TRUE
|
|
mDirty = FALSE;
|
|
refresh();
|
|
}
|
|
|
|
LLFloater::draw();
|
|
}
|
|
|
|
void LLFloaterProperties::refreshFromItem(LLInventoryItem* item)
|
|
{
|
|
// <edit>
|
|
childSetText("EditItemID", item->getUUID().asString());
|
|
childSetText("EditFolderID", item->getParentUUID().asString());
|
|
childSetText("EditGroup", item->getPermissions().getGroup().asString());
|
|
childSetText("EditAssetID", item->getAssetUUID().asString());
|
|
|
|
std::string type_str = LLAssetType::lookup(item->getType());
|
|
if(type_str.c_str() == NULL) type_str = llformat("%d", item->getType());
|
|
childSetText("EditType", type_str);
|
|
|
|
std::string invtype_str = LLInventoryType::lookup(item->getInventoryType());
|
|
if(invtype_str.c_str() == NULL) invtype_str = llformat("%d", item->getInventoryType());
|
|
childSetText("EditInvType", invtype_str);
|
|
childSetText("EditFlags", llformat("%d", item->getFlags()));
|
|
|
|
std::ostringstream strm;
|
|
item->exportLegacyStream(strm, TRUE);
|
|
std::string str(strm.str());
|
|
LLStringUtil::replaceTabsWithSpaces(str, 4);
|
|
childSetText("item_text", str);
|
|
// </edit>
|
|
|
|
////////////////////////
|
|
// PERMISSIONS LOOKUP //
|
|
////////////////////////
|
|
|
|
// do not enable the UI for incomplete items.
|
|
LLViewerInventoryItem* i = (LLViewerInventoryItem*)item;
|
|
BOOL is_complete = i->isComplete();
|
|
|
|
const LLPermissions& perm = item->getPermissions();
|
|
BOOL can_agent_manipulate = gAgent.allowOperation(PERM_OWNER, perm,
|
|
GP_OBJECT_MANIPULATE);
|
|
BOOL can_agent_sell = gAgent.allowOperation(PERM_OWNER, perm,
|
|
GP_OBJECT_SET_SALE);
|
|
BOOL is_link = i->getIsLinkType();
|
|
|
|
// You need permission to modify the object to modify an inventory
|
|
// item in it.
|
|
LLViewerObject* object = NULL;
|
|
if(!mObjectID.isNull()) object = gObjectList.findObject(mObjectID);
|
|
BOOL is_obj_modify = TRUE;
|
|
if(object)
|
|
{
|
|
is_obj_modify = object->permOwnerModify();
|
|
}
|
|
|
|
//////////////////////
|
|
// ITEM NAME & DESC //
|
|
//////////////////////
|
|
BOOL is_modifiable = gAgent.allowOperation(PERM_MODIFY, perm,
|
|
GP_OBJECT_MANIPULATE)
|
|
&& is_obj_modify && is_complete;
|
|
|
|
childSetEnabled("LabelItemNameTitle",TRUE);
|
|
childSetEnabled("LabelItemName",is_modifiable);
|
|
childSetText("LabelItemName",item->getName());
|
|
childSetEnabled("LabelItemDescTitle",TRUE);
|
|
childSetEnabled("LabelItemDesc",is_modifiable);
|
|
childSetVisible("IconLocked",!is_modifiable);
|
|
childSetText("LabelItemDesc",item->getDescription());
|
|
|
|
//////////////////
|
|
// CREATOR NAME //
|
|
//////////////////
|
|
if(!gCacheName) return;
|
|
if(!gAgent.getRegion()) return;
|
|
|
|
if (item->getCreatorUUID().notNull())
|
|
{
|
|
std::string name;
|
|
gCacheName->getFullName(item->getCreatorUUID(), name);
|
|
childSetEnabled("BtnCreator",TRUE);
|
|
childSetEnabled("LabelCreatorTitle",TRUE);
|
|
childSetEnabled("LabelCreatorName",TRUE);
|
|
childSetText("LabelCreatorName",name);
|
|
}
|
|
else
|
|
{
|
|
childSetEnabled("BtnCreator",FALSE);
|
|
childSetEnabled("LabelCreatorTitle",FALSE);
|
|
childSetEnabled("LabelCreatorName",FALSE);
|
|
childSetText("LabelCreatorName",getString("unknown"));
|
|
}
|
|
|
|
////////////////
|
|
// OWNER NAME //
|
|
////////////////
|
|
if(perm.isOwned())
|
|
{
|
|
std::string name;
|
|
if (perm.isGroupOwned())
|
|
{
|
|
gCacheName->getGroupName(perm.getGroup(), name);
|
|
}
|
|
else
|
|
{
|
|
gCacheName->getFullName(perm.getOwner(), name);
|
|
// [RLVa:KB] - Checked: 2009-07-08 (RLVa-1.0.0e)
|
|
if (gRlvHandler.hasBehaviour(RLV_BHVR_SHOWNAMES))
|
|
{
|
|
name = RlvStrings::getAnonym(name);
|
|
}
|
|
// [/RLVa:KB]
|
|
}
|
|
//childSetEnabled("BtnOwner",TRUE);
|
|
// [RLVa:KB] - Checked: 2009-07-08 (RLVa-1.0.0e) | Added: RLVa-1.0.0e
|
|
childSetEnabled("BtnOwner", !gRlvHandler.hasBehaviour(RLV_BHVR_SHOWNAMES));
|
|
// [/RLVa:KB]
|
|
childSetEnabled("LabelOwnerTitle",TRUE);
|
|
childSetEnabled("LabelOwnerName",TRUE);
|
|
childSetText("LabelOwnerName",name);
|
|
}
|
|
else
|
|
{
|
|
childSetEnabled("BtnOwner",FALSE);
|
|
childSetEnabled("LabelOwnerTitle",FALSE);
|
|
childSetEnabled("LabelOwnerName",FALSE);
|
|
childSetText("LabelOwnerName",getString("public"));
|
|
}
|
|
|
|
//////////////////
|
|
// ACQUIRE DATE //
|
|
//////////////////
|
|
|
|
// *TODO: Localize / translate this
|
|
time_t time_utc = item->getCreationDate();
|
|
if (0 == time_utc)
|
|
{
|
|
childSetText("LabelAcquiredDate",getString("unknown"));
|
|
}
|
|
else
|
|
{
|
|
std::string timestr;
|
|
timeToFormattedString(time_utc, gSavedSettings.getString("TimestampFormat"), timestr);
|
|
childSetText("LabelAcquiredDate", timestr);
|
|
}
|
|
|
|
///////////////////////
|
|
// OWNER PERMISSIONS //
|
|
///////////////////////
|
|
if(can_agent_manipulate)
|
|
{
|
|
childSetText("OwnerLabel",getString("you_can"));
|
|
}
|
|
else
|
|
{
|
|
childSetText("OwnerLabel",getString("owner_can"));
|
|
}
|
|
|
|
U32 base_mask = perm.getMaskBase();
|
|
U32 owner_mask = perm.getMaskOwner();
|
|
U32 group_mask = perm.getMaskGroup();
|
|
U32 everyone_mask = perm.getMaskEveryone();
|
|
U32 next_owner_mask = perm.getMaskNextOwner();
|
|
|
|
childSetEnabled("OwnerLabel",TRUE);
|
|
childSetEnabled("CheckOwnerModify",FALSE);
|
|
childSetValue("CheckOwnerModify",LLSD((BOOL)(owner_mask & PERM_MODIFY)));
|
|
childSetEnabled("CheckOwnerCopy",FALSE);
|
|
childSetValue("CheckOwnerCopy",LLSD((BOOL)(owner_mask & PERM_COPY)));
|
|
childSetEnabled("CheckOwnerTransfer",FALSE);
|
|
childSetValue("CheckOwnerTransfer",LLSD((BOOL)(owner_mask & PERM_TRANSFER)));
|
|
|
|
///////////////////////
|
|
// DEBUG PERMISSIONS //
|
|
///////////////////////
|
|
|
|
if( gSavedSettings.getBOOL("DebugPermissions") )
|
|
{
|
|
BOOL slam_perm = FALSE;
|
|
BOOL overwrite_group = FALSE;
|
|
BOOL overwrite_everyone = FALSE;
|
|
|
|
if (item->getType() == LLAssetType::AT_OBJECT)
|
|
{
|
|
U32 flags = item->getFlags();
|
|
slam_perm = flags & LLInventoryItemFlags::II_FLAGS_OBJECT_SLAM_PERM;
|
|
overwrite_everyone = flags & LLInventoryItemFlags::II_FLAGS_OBJECT_PERM_OVERWRITE_EVERYONE;
|
|
overwrite_group = flags & LLInventoryItemFlags::II_FLAGS_OBJECT_PERM_OVERWRITE_GROUP;
|
|
}
|
|
|
|
std::string perm_string;
|
|
|
|
perm_string = "B: ";
|
|
perm_string += mask_to_string(base_mask);
|
|
childSetText("BaseMaskDebug",perm_string);
|
|
childSetVisible("BaseMaskDebug",TRUE);
|
|
|
|
perm_string = "O: ";
|
|
perm_string += mask_to_string(owner_mask);
|
|
childSetText("OwnerMaskDebug",perm_string);
|
|
childSetVisible("OwnerMaskDebug",TRUE);
|
|
|
|
perm_string = "G";
|
|
perm_string += overwrite_group ? "*: " : ": ";
|
|
perm_string += mask_to_string(group_mask);
|
|
childSetText("GroupMaskDebug",perm_string);
|
|
childSetVisible("GroupMaskDebug",TRUE);
|
|
|
|
perm_string = "E";
|
|
perm_string += overwrite_everyone ? "*: " : ": ";
|
|
perm_string += mask_to_string(everyone_mask);
|
|
childSetText("EveryoneMaskDebug",perm_string);
|
|
childSetVisible("EveryoneMaskDebug",TRUE);
|
|
|
|
perm_string = "N";
|
|
perm_string += slam_perm ? "*: " : ": ";
|
|
perm_string += mask_to_string(next_owner_mask);
|
|
childSetText("NextMaskDebug",perm_string);
|
|
childSetVisible("NextMaskDebug",TRUE);
|
|
}
|
|
else
|
|
{
|
|
childSetVisible("BaseMaskDebug",FALSE);
|
|
childSetVisible("OwnerMaskDebug",FALSE);
|
|
childSetVisible("GroupMaskDebug",FALSE);
|
|
childSetVisible("EveryoneMaskDebug",FALSE);
|
|
childSetVisible("NextMaskDebug",FALSE);
|
|
}
|
|
|
|
/////////////
|
|
// SHARING //
|
|
/////////////
|
|
|
|
// Check for ability to change values.
|
|
if (!is_link && is_obj_modify && can_agent_manipulate)
|
|
{
|
|
childSetEnabled("GroupLabel", true);
|
|
childSetEnabled("CheckGroupCopy",owner_mask & PERM_TRANSFER);
|
|
childSetEnabled("CheckGroupMod", owner_mask & PERM_MODIFY);
|
|
childSetEnabled("CheckGroupMove", true);
|
|
childSetEnabled("EveryoneLabel", true);
|
|
childSetEnabled("CheckEveryoneCopy",(owner_mask & PERM_COPY) && (owner_mask & PERM_TRANSFER));
|
|
childSetEnabled("CheckEveryoneMove",true);
|
|
}
|
|
else
|
|
{
|
|
childSetEnabled("GroupLabel", false);
|
|
childSetEnabled("CheckGroupCopy", false);
|
|
childSetEnabled("CheckGroupMod", false);
|
|
childSetEnabled("CheckGroupMove", false);
|
|
childSetEnabled("EveryoneLabel", false);
|
|
childSetEnabled("CheckEveryoneCopy",FALSE);
|
|
childSetEnabled("CheckEveryoneMove",false);
|
|
}
|
|
|
|
// Set values.
|
|
BOOL is_group_copy = (group_mask & PERM_COPY) ? TRUE : FALSE;
|
|
BOOL is_group_modify = (group_mask & PERM_MODIFY) ? TRUE : FALSE;
|
|
BOOL is_group_move = (group_mask & PERM_MOVE) ? TRUE : FALSE;
|
|
|
|
childSetValue("CheckGroupCopy", is_group_copy);
|
|
childSetValue("CheckGroupMod", is_group_modify);
|
|
childSetValue("CheckGroupMove", is_group_move);
|
|
|
|
childSetValue("CheckEveryoneCopy",LLSD((BOOL)(everyone_mask & PERM_COPY)));
|
|
childSetValue("CheckEveryoneMove",LLSD((BOOL)(everyone_mask & PERM_MOVE)));
|
|
|
|
///////////////
|
|
// SALE INFO //
|
|
///////////////
|
|
|
|
const LLSaleInfo& sale_info = item->getSaleInfo();
|
|
BOOL is_for_sale = sale_info.isForSale();
|
|
// Check for ability to change values.
|
|
if (is_obj_modify && can_agent_sell
|
|
&& gAgent.allowOperation(PERM_TRANSFER, perm, GP_OBJECT_MANIPULATE))
|
|
{
|
|
childSetEnabled("SaleLabel",is_complete);
|
|
childSetEnabled("CheckPurchase",is_complete);
|
|
|
|
childSetEnabled("NextOwnerLabel",TRUE);
|
|
childSetEnabled("CheckNextOwnerModify",base_mask & PERM_MODIFY);
|
|
childSetEnabled("CheckNextOwnerCopy",base_mask & PERM_COPY);
|
|
childSetEnabled("CheckNextOwnerTransfer",next_owner_mask & PERM_COPY);
|
|
|
|
childSetEnabled("RadioSaleType",is_complete && is_for_sale);
|
|
childSetEnabled("TextPrice",is_complete && is_for_sale);
|
|
childSetEnabled("EditPrice",is_complete && is_for_sale);
|
|
}
|
|
else
|
|
{
|
|
childSetEnabled("SaleLabel",FALSE);
|
|
childSetEnabled("CheckPurchase",FALSE);
|
|
|
|
childSetEnabled("NextOwnerLabel",FALSE);
|
|
childSetEnabled("CheckNextOwnerModify",FALSE);
|
|
childSetEnabled("CheckNextOwnerCopy",FALSE);
|
|
childSetEnabled("CheckNextOwnerTransfer",FALSE);
|
|
|
|
childSetEnabled("RadioSaleType",FALSE);
|
|
childSetEnabled("TextPrice",FALSE);
|
|
childSetEnabled("EditPrice",FALSE);
|
|
}
|
|
|
|
// Set values.
|
|
childSetValue("CheckPurchase", is_for_sale);
|
|
childSetValue("CheckNextOwnerModify",LLSD(BOOL(next_owner_mask & PERM_MODIFY)));
|
|
childSetValue("CheckNextOwnerCopy",LLSD(BOOL(next_owner_mask & PERM_COPY)));
|
|
childSetValue("CheckNextOwnerTransfer",LLSD(BOOL(next_owner_mask & PERM_TRANSFER)));
|
|
|
|
LLRadioGroup* radioSaleType = getChild<LLRadioGroup>("RadioSaleType");
|
|
if (is_for_sale)
|
|
{
|
|
radioSaleType->setSelectedIndex((S32)sale_info.getSaleType() - 1);
|
|
S32 numerical_price;
|
|
numerical_price = sale_info.getSalePrice();
|
|
childSetText("EditPrice",llformat("%d",numerical_price));
|
|
}
|
|
else
|
|
{
|
|
radioSaleType->setSelectedIndex(-1);
|
|
childSetText("EditPrice",llformat("%d",0));
|
|
}
|
|
}
|
|
|
|
// static
|
|
void LLFloaterProperties::onClickCreator(void* data)
|
|
{
|
|
LLFloaterProperties* self = (LLFloaterProperties*)data;
|
|
if(!self) return;
|
|
LLInventoryItem* item = self->findItem();
|
|
if(!item) return;
|
|
if(!item->getCreatorUUID().isNull())
|
|
{
|
|
LLFloaterAvatarInfo::showFromObject(item->getCreatorUUID());
|
|
}
|
|
}
|
|
|
|
// static
|
|
void LLFloaterProperties::onClickOwner(void* data)
|
|
{
|
|
LLFloaterProperties* self = (LLFloaterProperties*)data;
|
|
if(!self) return;
|
|
LLInventoryItem* item = self->findItem();
|
|
if(!item) return;
|
|
if(item->getPermissions().isGroupOwned())
|
|
{
|
|
LLFloaterGroupInfo::showFromUUID(item->getPermissions().getGroup());
|
|
}
|
|
else
|
|
{
|
|
// if(!item->getPermissions().getOwner().isNull())
|
|
// [RLVa:KB] - Checked: 2009-07-08 (RLVa-1.0.0e)
|
|
if ( (!item->getPermissions().getOwner().isNull()) && (!gRlvHandler.hasBehaviour(RLV_BHVR_SHOWNAMES)) )
|
|
// [/RLVa:KB]
|
|
{
|
|
LLFloaterAvatarInfo::showFromObject(item->getPermissions().getOwner());
|
|
}
|
|
}
|
|
}
|
|
|
|
// static
|
|
void LLFloaterProperties::onCommitName(LLUICtrl* ctrl, void* data)
|
|
{
|
|
//llinfos << "LLFloaterProperties::onCommitName()" << llendl;
|
|
LLFloaterProperties* self = (LLFloaterProperties*)data;
|
|
if(!self)
|
|
{
|
|
return;
|
|
}
|
|
LLViewerInventoryItem* item = (LLViewerInventoryItem*)self->findItem();
|
|
if(!item)
|
|
{
|
|
return;
|
|
}
|
|
LLLineEditor* labelItemName = self->getChild<LLLineEditor>("LabelItemName");
|
|
|
|
if(labelItemName&&
|
|
(item->getName() != labelItemName->getText()) &&
|
|
(gAgent.allowOperation(PERM_MODIFY, item->getPermissions(), GP_OBJECT_MANIPULATE)) )
|
|
{
|
|
LLPointer<LLViewerInventoryItem> new_item = new LLViewerInventoryItem(item);
|
|
new_item->rename(labelItemName->getText());
|
|
if(self->mObjectID.isNull())
|
|
{
|
|
new_item->updateServer(FALSE);
|
|
gInventory.updateItem(new_item);
|
|
gInventory.notifyObservers();
|
|
}
|
|
else
|
|
{
|
|
LLViewerObject* object = gObjectList.findObject(self->mObjectID);
|
|
if(object)
|
|
{
|
|
object->updateInventory(
|
|
new_item,
|
|
TASK_INVENTORY_ITEM_KEY,
|
|
false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// static
|
|
void LLFloaterProperties::onCommitDescription(LLUICtrl* ctrl, void* data)
|
|
{
|
|
//llinfos << "LLFloaterProperties::onCommitDescription()" << llendl;
|
|
LLFloaterProperties* self = (LLFloaterProperties*)data;
|
|
if(!self) return;
|
|
LLViewerInventoryItem* item = (LLViewerInventoryItem*)self->findItem();
|
|
if(!item) return;
|
|
|
|
LLLineEditor* labelItemDesc = self->getChild<LLLineEditor>("LabelItemDesc");
|
|
if(!labelItemDesc)
|
|
{
|
|
return;
|
|
}
|
|
if((item->getDescription() != labelItemDesc->getText()) &&
|
|
(gAgent.allowOperation(PERM_MODIFY, item->getPermissions(), GP_OBJECT_MANIPULATE)))
|
|
{
|
|
LLPointer<LLViewerInventoryItem> new_item = new LLViewerInventoryItem(item);
|
|
|
|
new_item->setDescription(labelItemDesc->getText());
|
|
if(self->mObjectID.isNull())
|
|
{
|
|
new_item->updateServer(FALSE);
|
|
gInventory.updateItem(new_item);
|
|
gInventory.notifyObservers();
|
|
}
|
|
else
|
|
{
|
|
LLViewerObject* object = gObjectList.findObject(self->mObjectID);
|
|
if(object)
|
|
{
|
|
object->updateInventory(
|
|
new_item,
|
|
TASK_INVENTORY_ITEM_KEY,
|
|
false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// static
|
|
void LLFloaterProperties::onCommitPermissions(LLUICtrl* ctrl, void* data)
|
|
{
|
|
//llinfos << "LLFloaterProperties::onCommitPermissions()" << llendl;
|
|
LLFloaterProperties* self = (LLFloaterProperties*)data;
|
|
if(!self) return;
|
|
LLViewerInventoryItem* item = (LLViewerInventoryItem*)self->findItem();
|
|
if(!item) return;
|
|
LLPermissions perm(item->getPermissions());
|
|
|
|
|
|
LLCheckBoxCtrl* CheckGroupCopy = self->getChild<LLCheckBoxCtrl>("CheckGroupCopy");
|
|
if(CheckGroupCopy)
|
|
{
|
|
perm.setGroupBits(gAgent.getID(), gAgent.getGroupID(),
|
|
CheckGroupCopy->get(), PERM_COPY);
|
|
}
|
|
LLCheckBoxCtrl* CheckGroupMod = self->getChild<LLCheckBoxCtrl>("CheckGroupMod");
|
|
if(CheckGroupMod)
|
|
{
|
|
perm.setGroupBits(gAgent.getID(), gAgent.getGroupID(),
|
|
CheckGroupMod->get(), PERM_MODIFY);
|
|
}
|
|
LLCheckBoxCtrl* CheckGroupMove = self->getChild<LLCheckBoxCtrl>("CheckGroupMove");
|
|
if(CheckGroupMove)
|
|
{
|
|
perm.setGroupBits(gAgent.getID(), gAgent.getGroupID(),
|
|
CheckGroupMove->get(), PERM_MOVE);
|
|
}
|
|
|
|
LLCheckBoxCtrl* CheckEveryoneMove = self->getChild<LLCheckBoxCtrl>("CheckEveryoneMove");
|
|
if(CheckEveryoneMove)
|
|
{
|
|
perm.setEveryoneBits(gAgent.getID(), gAgent.getGroupID(),
|
|
CheckEveryoneMove->get(), PERM_MOVE);
|
|
}
|
|
LLCheckBoxCtrl* CheckEveryoneCopy = self->getChild<LLCheckBoxCtrl>("CheckEveryoneCopy");
|
|
if(CheckEveryoneCopy)
|
|
{
|
|
perm.setEveryoneBits(gAgent.getID(), gAgent.getGroupID(),
|
|
CheckEveryoneCopy->get(), PERM_COPY);
|
|
}
|
|
|
|
LLCheckBoxCtrl* CheckNextOwnerModify = self->getChild<LLCheckBoxCtrl>("CheckNextOwnerModify");
|
|
if(CheckNextOwnerModify)
|
|
{
|
|
perm.setNextOwnerBits(gAgent.getID(), gAgent.getGroupID(),
|
|
CheckNextOwnerModify->get(), PERM_MODIFY);
|
|
}
|
|
LLCheckBoxCtrl* CheckNextOwnerCopy = self->getChild<LLCheckBoxCtrl>("CheckNextOwnerCopy");
|
|
if(CheckNextOwnerCopy)
|
|
{
|
|
perm.setNextOwnerBits(gAgent.getID(), gAgent.getGroupID(),
|
|
CheckNextOwnerCopy->get(), PERM_COPY);
|
|
}
|
|
LLCheckBoxCtrl* CheckNextOwnerTransfer = self->getChild<LLCheckBoxCtrl>("CheckNextOwnerTransfer");
|
|
if(CheckNextOwnerTransfer)
|
|
{
|
|
perm.setNextOwnerBits(gAgent.getID(), gAgent.getGroupID(),
|
|
CheckNextOwnerTransfer->get(), PERM_TRANSFER);
|
|
}
|
|
if(perm != item->getPermissions()
|
|
&& item->isComplete())
|
|
{
|
|
LLPointer<LLViewerInventoryItem> new_item = new LLViewerInventoryItem(item);
|
|
new_item->setPermissions(perm);
|
|
U32 flags = new_item->getFlags();
|
|
// If next owner permissions have changed (and this is an object)
|
|
// then set the slam permissions flag so that they are applied on rez.
|
|
if((perm.getMaskNextOwner()!=item->getPermissions().getMaskNextOwner())
|
|
&& (item->getType() == LLAssetType::AT_OBJECT))
|
|
{
|
|
flags |= LLInventoryItemFlags::II_FLAGS_OBJECT_SLAM_PERM;
|
|
}
|
|
// If everyone permissions have changed (and this is an object)
|
|
// then set the overwrite everyone permissions flag so they
|
|
// are applied on rez.
|
|
if ((perm.getMaskEveryone()!=item->getPermissions().getMaskEveryone())
|
|
&& (item->getType() == LLAssetType::AT_OBJECT))
|
|
{
|
|
flags |= LLInventoryItemFlags::II_FLAGS_OBJECT_PERM_OVERWRITE_EVERYONE;
|
|
}
|
|
// If group permissions have changed (and this is an object)
|
|
// then set the overwrite group permissions flag so they
|
|
// are applied on rez.
|
|
if ((perm.getMaskGroup()!=item->getPermissions().getMaskGroup())
|
|
&& (item->getType() == LLAssetType::AT_OBJECT))
|
|
{
|
|
flags |= LLInventoryItemFlags::II_FLAGS_OBJECT_PERM_OVERWRITE_GROUP;
|
|
}
|
|
new_item->setFlags(flags);
|
|
if(self->mObjectID.isNull())
|
|
{
|
|
new_item->updateServer(FALSE);
|
|
gInventory.updateItem(new_item);
|
|
gInventory.notifyObservers();
|
|
}
|
|
else
|
|
{
|
|
LLViewerObject* object = gObjectList.findObject(self->mObjectID);
|
|
if(object)
|
|
{
|
|
object->updateInventory(
|
|
new_item,
|
|
TASK_INVENTORY_ITEM_KEY,
|
|
false);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// need to make sure we don't just follow the click
|
|
self->refresh();
|
|
}
|
|
}
|
|
|
|
// static
|
|
void LLFloaterProperties::onCommitSaleInfo(LLUICtrl* ctrl, void* data)
|
|
{
|
|
//llinfos << "LLFloaterProperties::onCommitSaleInfo()" << llendl;
|
|
LLFloaterProperties* self = (LLFloaterProperties*)data;
|
|
if(!self) return;
|
|
self->updateSaleInfo();
|
|
}
|
|
|
|
// static
|
|
void LLFloaterProperties::onCommitSaleType(LLUICtrl* ctrl, void* data)
|
|
{
|
|
//llinfos << "LLFloaterProperties::onCommitSaleType()" << llendl;
|
|
LLFloaterProperties* self = (LLFloaterProperties*)data;
|
|
if(!self) return;
|
|
self->updateSaleInfo();
|
|
}
|
|
|
|
void LLFloaterProperties::updateSaleInfo()
|
|
{
|
|
LLViewerInventoryItem* item = (LLViewerInventoryItem*)findItem();
|
|
if(!item) return;
|
|
LLSaleInfo sale_info(item->getSaleInfo());
|
|
if(!gAgent.allowOperation(PERM_TRANSFER, item->getPermissions(), GP_OBJECT_SET_SALE))
|
|
{
|
|
childSetValue("CheckPurchase",LLSD((BOOL)FALSE));
|
|
}
|
|
|
|
if((BOOL)childGetValue("CheckPurchase"))
|
|
{
|
|
// turn on sale info
|
|
LLSaleInfo::EForSale sale_type = LLSaleInfo::FS_COPY;
|
|
|
|
LLRadioGroup* RadioSaleType = getChild<LLRadioGroup>("RadioSaleType");
|
|
if(RadioSaleType)
|
|
{
|
|
switch (RadioSaleType->getSelectedIndex())
|
|
{
|
|
case 0:
|
|
sale_type = LLSaleInfo::FS_ORIGINAL;
|
|
break;
|
|
case 1:
|
|
sale_type = LLSaleInfo::FS_COPY;
|
|
break;
|
|
case 2:
|
|
sale_type = LLSaleInfo::FS_CONTENTS;
|
|
break;
|
|
default:
|
|
sale_type = LLSaleInfo::FS_COPY;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (sale_type == LLSaleInfo::FS_COPY
|
|
&& !gAgent.allowOperation(PERM_COPY, item->getPermissions(),
|
|
GP_OBJECT_SET_SALE))
|
|
{
|
|
sale_type = LLSaleInfo::FS_ORIGINAL;
|
|
}
|
|
|
|
LLLineEditor* EditPrice = getChild<LLLineEditor>("EditPrice");
|
|
|
|
S32 price = -1;
|
|
if(EditPrice)
|
|
{
|
|
price = atoi(EditPrice->getText().c_str());
|
|
}
|
|
// Invalid data - turn off the sale
|
|
if (price < 0)
|
|
{
|
|
sale_type = LLSaleInfo::FS_NOT;
|
|
price = 0;
|
|
}
|
|
|
|
sale_info.setSaleType(sale_type);
|
|
sale_info.setSalePrice(price);
|
|
}
|
|
else
|
|
{
|
|
sale_info.setSaleType(LLSaleInfo::FS_NOT);
|
|
}
|
|
if(sale_info != item->getSaleInfo()
|
|
&& item->isComplete())
|
|
{
|
|
LLPointer<LLViewerInventoryItem> new_item = new LLViewerInventoryItem(item);
|
|
|
|
// Force an update on the sale price at rez
|
|
if (item->getType() == LLAssetType::AT_OBJECT)
|
|
{
|
|
U32 flags = new_item->getFlags();
|
|
flags |= LLInventoryItemFlags::II_FLAGS_OBJECT_SLAM_SALE;
|
|
new_item->setFlags(flags);
|
|
}
|
|
|
|
new_item->setSaleInfo(sale_info);
|
|
if(mObjectID.isNull())
|
|
{
|
|
// This is in the agent's inventory.
|
|
new_item->updateServer(FALSE);
|
|
gInventory.updateItem(new_item);
|
|
gInventory.notifyObservers();
|
|
}
|
|
else
|
|
{
|
|
// This is in an object's contents.
|
|
LLViewerObject* object = gObjectList.findObject(mObjectID);
|
|
if(object)
|
|
{
|
|
object->updateInventory(
|
|
new_item,
|
|
TASK_INVENTORY_ITEM_KEY,
|
|
false);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// need to make sure we don't just follow the click
|
|
refresh();
|
|
}
|
|
}
|
|
|
|
LLInventoryItem* LLFloaterProperties::findItem() const
|
|
{
|
|
LLInventoryItem* item = NULL;
|
|
if(mObjectID.isNull())
|
|
{
|
|
// it is in agent inventory
|
|
item = gInventory.getItem(mItemID);
|
|
}
|
|
else
|
|
{
|
|
LLViewerObject* object = gObjectList.findObject(mObjectID);
|
|
if(object)
|
|
{
|
|
item = (LLInventoryItem*)object->getInventoryObject(mItemID);
|
|
}
|
|
}
|
|
return item;
|
|
}
|
|
|
|
void LLFloaterProperties::closeByID(const LLUUID& item_id, const LLUUID &object_id)
|
|
{
|
|
LLFloaterProperties* floaterp = find(item_id, object_id);
|
|
|
|
if (floaterp)
|
|
{
|
|
floaterp->close();
|
|
}
|
|
}
|
|
|
|
// <edit>
|
|
void LLFloaterProperties::onClickMore(void* user_data)
|
|
{
|
|
LLFloaterProperties* floaterp = (LLFloaterProperties*)user_data;
|
|
if(floaterp)
|
|
{
|
|
LLMultiProperties* host = (LLMultiProperties*)floaterp->getHost();
|
|
if(host)
|
|
host->setExpanded(TRUE);
|
|
else
|
|
floaterp->setExpanded(TRUE);
|
|
}
|
|
}
|
|
|
|
void LLFloaterProperties::onClickLess(void* user_data)
|
|
{
|
|
LLFloaterProperties* floaterp = (LLFloaterProperties*)user_data;
|
|
if(floaterp)
|
|
{
|
|
LLMultiProperties* host = (LLMultiProperties*)floaterp->getHost();
|
|
if(host)
|
|
host->setExpanded(FALSE);
|
|
else
|
|
floaterp->setExpanded(FALSE);
|
|
}
|
|
}
|
|
|
|
void LLFloaterProperties::setExpanded(BOOL expanded)
|
|
{
|
|
mExpanded = expanded;
|
|
LLRect rect = getRect();
|
|
if(expanded)
|
|
rect.setOriginAndSize(rect.mLeft, rect.mBottom, 800, rect.getHeight());
|
|
else
|
|
rect.setOriginAndSize(rect.mLeft, rect.mBottom, 350, rect.getHeight());
|
|
setRect(rect);
|
|
childSetVisible("more_btn", !mExpanded);
|
|
childSetVisible("less_btn", mExpanded);
|
|
childSetVisible("item_text", mExpanded);
|
|
childSetVisible("copy_btn", mExpanded);
|
|
childSetVisible("update_btn", mExpanded);
|
|
if(getHost())
|
|
setCanTearOff(!expanded); // idk why it comes out ugly if expanded
|
|
}
|
|
|
|
// static
|
|
void LLFloaterProperties::onClickCopy(void* user_data)
|
|
{
|
|
LLFloaterProperties* floaterp = (LLFloaterProperties*)user_data;
|
|
if(floaterp)
|
|
{
|
|
LLViewerInventoryItem* item = (LLViewerInventoryItem*)floaterp->findItem();
|
|
if(item)
|
|
{
|
|
std::string str(floaterp->childGetValue("item_text").asString());
|
|
std::string::size_type pos;
|
|
while((pos = str.find(" ")) != std::string::npos)
|
|
{
|
|
str.replace(pos, 4, "\t");
|
|
}
|
|
|
|
std::istringstream strm(str);
|
|
LLViewerInventoryItem* temp = new LLViewerInventoryItem();
|
|
temp->importLegacyStream(strm);
|
|
std::ostringstream strm2;
|
|
temp->exportLegacyStream(strm2, TRUE);
|
|
LLWString wstr(utf8str_to_wstring(strm2.str()));
|
|
|
|
gClipboard.copyFromSubstring(wstr, 0, wstr.length());
|
|
|
|
//delete temp;
|
|
}
|
|
}
|
|
}
|
|
|
|
// static
|
|
void LLFloaterProperties::onClickUpdate(void* user_data)
|
|
{
|
|
LLFloaterProperties* floaterp = (LLFloaterProperties*)user_data;
|
|
if(floaterp)
|
|
{
|
|
LLViewerInventoryItem* item = (LLViewerInventoryItem*)floaterp->findItem();
|
|
if(item)
|
|
{
|
|
std::string str(floaterp->childGetValue("item_text").asString());
|
|
std::string::size_type pos;
|
|
while((pos = str.find(" ")) != std::string::npos)
|
|
{
|
|
str.replace(pos, 4, "\t");
|
|
}
|
|
|
|
std::istringstream strm(str);
|
|
item->importLegacyStream(strm);
|
|
|
|
if(floaterp->mObjectID.isNull())
|
|
{
|
|
// This is in the agent's inventory.
|
|
item->updateServer(FALSE);
|
|
gInventory.updateItem(item);
|
|
gInventory.notifyObservers();
|
|
|
|
item->setComplete(FALSE);
|
|
item->fetchFromServer();
|
|
}
|
|
else
|
|
{
|
|
// This is in an object's contents.
|
|
LLViewerObject* object = gObjectList.findObject(floaterp->mObjectID);
|
|
if(object)
|
|
{
|
|
object->updateInventory(
|
|
item,
|
|
TASK_INVENTORY_ITEM_KEY,
|
|
false);
|
|
object->fetchInventoryFromServer();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// </edit>
|
|
|
|
///----------------------------------------------------------------------------
|
|
/// LLMultiProperties
|
|
///----------------------------------------------------------------------------
|
|
|
|
LLMultiProperties::LLMultiProperties(const LLRect &rect) : LLMultiFloater(std::string("Properties"), rect)
|
|
// <edit>
|
|
, mExpanded(FALSE)
|
|
// </edit>
|
|
{
|
|
}
|
|
|
|
void LLMultiProperties::setExpanded(BOOL expanded)
|
|
{
|
|
mExpanded = expanded;
|
|
LLRect rect = getRect();
|
|
LLRect tab_rect = mTabContainer->getRect();
|
|
if(expanded)
|
|
{
|
|
rect.setOriginAndSize(rect.mLeft, rect.mBottom, 800, rect.getHeight());
|
|
tab_rect.setOriginAndSize(tab_rect.mLeft, tab_rect.mBottom, 800, tab_rect.getHeight());
|
|
}
|
|
else
|
|
{
|
|
rect.setOriginAndSize(rect.mLeft, rect.mBottom, 350, rect.getHeight());
|
|
tab_rect.setOriginAndSize(tab_rect.mLeft, tab_rect.mBottom, 350, tab_rect.getHeight());
|
|
}
|
|
setRect(rect);
|
|
mTabContainer->setRect(tab_rect);
|
|
for (S32 i = 0; i < mTabContainer->getTabCount(); i++)
|
|
{
|
|
LLFloaterProperties* floaterp = (LLFloaterProperties*)mTabContainer->getPanelByIndex(i);
|
|
floaterp->setExpanded(expanded);
|
|
}
|
|
}
|
|
|
|
///----------------------------------------------------------------------------
|
|
/// Local function definitions
|
|
///----------------------------------------------------------------------------
|