diff options
| author | Leyla Farazha <leyla@lindenlab.com> | 2010-02-12 12:05:51 -0800 | 
|---|---|---|
| committer | Leyla Farazha <leyla@lindenlab.com> | 2010-02-12 12:05:51 -0800 | 
| commit | 426aca61d3c00d57d7066fb1ca5a7be8d138542e (patch) | |
| tree | 8ab65d462f97bbd3ab5104c8b4d3ea497866e77a | |
| parent | c61cb61ecc6beca1560a93cdad4ed1bc055c57f9 (diff) | |
| parent | 01d462482189abe18a52c293315ab536287b599a (diff) | |
Merge
50 files changed, 556 insertions, 255 deletions
| diff --git a/indra/llui/lldockablefloater.cpp b/indra/llui/lldockablefloater.cpp index 57baf28dab..a94f0206a6 100644 --- a/indra/llui/lldockablefloater.cpp +++ b/indra/llui/lldockablefloater.cpp @@ -223,10 +223,10 @@ void LLDockableFloater::draw()  	LLFloater::draw();  } -void LLDockableFloater::setDockControl(LLDockControl* dockControl) +void LLDockableFloater::setDockControl(LLDockControl* dockControl, bool docked /* = true */)  {  	mDockControl.reset(dockControl); -	setDocked(mDockControl.get() != NULL && mDockControl.get()->isDockVisible()); +	setDocked(docked && mDockControl.get() != NULL && mDockControl.get()->isDockVisible());  }  const LLUIImagePtr& LLDockableFloater::getDockTongue() diff --git a/indra/llui/lldockablefloater.h b/indra/llui/lldockablefloater.h index 2b1ce99ae2..4d747390af 100644 --- a/indra/llui/lldockablefloater.h +++ b/indra/llui/lldockablefloater.h @@ -127,7 +127,7 @@ private:  	void resetInstance();  protected: -	void setDockControl(LLDockControl* dockControl); +	void setDockControl(LLDockControl* dockControl, bool docked = true);  	const LLUIImagePtr& getDockTongue();  private: diff --git a/indra/llui/llsearcheditor.cpp b/indra/llui/llsearcheditor.cpp index 6fa99df82e..491eeeab54 100644 --- a/indra/llui/llsearcheditor.cpp +++ b/indra/llui/llsearcheditor.cpp @@ -60,6 +60,7 @@ LLSearchEditor::LLSearchEditor(const LLSearchEditor::Params& p)  	line_editor_params.keystroke_callback(boost::bind(&LLSearchEditor::handleKeystroke, this));  	mSearchEditor = LLUICtrlFactory::create<LLLineEditor>(line_editor_params); +	mSearchEditor->setPassDelete(TRUE);  	addChild(mSearchEditor);  	if (p.search_button_visible) @@ -79,10 +80,12 @@ LLSearchEditor::LLSearchEditor(const LLSearchEditor::Params& p)  	if (p.clear_button_visible)  	{  		// Set up clear button. -		S32 clr_btn_width = getRect().getHeight(); // button is square, and as tall as search editor -		LLRect clear_btn_rect(getRect().getWidth() - clr_btn_width, getRect().getHeight(), getRect().getWidth(), 0);  		LLButton::Params clr_btn_params(p.clear_button);  		clr_btn_params.name(std::string("clear button")); +		S32 clr_btn_top = clr_btn_params.rect.bottom + clr_btn_params.rect.height; +		S32 clr_btn_right = getRect().getWidth() - clr_btn_params.pad_right; +		S32 clr_btn_left = clr_btn_right - clr_btn_params.rect.width; +		LLRect clear_btn_rect(clr_btn_left, clr_btn_top, clr_btn_right, p.clear_button.rect.bottom);  		clr_btn_params.rect(clear_btn_rect) ;  		clr_btn_params.follows.flags(FOLLOWS_RIGHT|FOLLOWS_TOP);  		clr_btn_params.tab_stop(false); diff --git a/indra/lscript/lscript_compile/lscript_tree.cpp b/indra/lscript/lscript_compile/lscript_tree.cpp index 3b8bbbe805..4ba41db2fc 100644 --- a/indra/lscript/lscript_compile/lscript_tree.cpp +++ b/indra/lscript/lscript_compile/lscript_tree.cpp @@ -10626,6 +10626,8 @@ LLScriptScript::LLScriptScript(LLScritpGlobalStorage *globals,  		}  		temp = temp->mNextp;  	} + +	mClassName[0] = '\0';  }  void LLScriptScript::setBytecodeDest(const char* dst_filename) diff --git a/indra/lscript/lscript_compile/lscript_tree.h b/indra/lscript/lscript_compile/lscript_tree.h index a667e1eb5b..7de9606dfc 100644 --- a/indra/lscript/lscript_compile/lscript_tree.h +++ b/indra/lscript/lscript_compile/lscript_tree.h @@ -1876,7 +1876,7 @@ class LLScriptStateChange : public LLScriptStatement  {  public:  	LLScriptStateChange(S32 line, S32 col, LLScriptIdentifier *identifier) -		: LLScriptStatement(line, col, LSSMT_STATE_CHANGE), mIdentifier(identifier) +		: LLScriptStatement(line, col, LSSMT_STATE_CHANGE), mIdentifier(identifier), mReturnType(LST_NULL)  	{  	} @@ -2210,7 +2210,7 @@ class LLScriptState : public LLScriptFilePosition  {  public:  	LLScriptState(S32 line, S32 col, LSCRIPTStateType type, LLScriptIdentifier *identifier, LLScriptEventHandler *event) -		: LLScriptFilePosition(line, col), mType(type), mIdentifier(identifier), mEvent(event), mNextp(NULL) +		: LLScriptFilePosition(line, col), mType(type), mIdentifier(identifier), mEvent(event), mNextp(NULL), mStateScope(NULL)  	{  	} diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp index 59f61dfdfb..3675be16e9 100644 --- a/indra/newview/llagent.cpp +++ b/indra/newview/llagent.cpp @@ -5027,9 +5027,9 @@ void LLAgent::buildFullnameAndTitle(std::string& name) const  	}  } -BOOL LLAgent::isInGroup(const LLUUID& group_id) const +BOOL LLAgent::isInGroup(const LLUUID& group_id, BOOL ignore_god_mode /* FALSE */) const  { -	if (isGodlike()) +	if (!ignore_god_mode && isGodlike())  		return true;  	S32 count = mGroups.count(); diff --git a/indra/newview/llagent.h b/indra/newview/llagent.h index beede7fbe3..1573fd7131 100644 --- a/indra/newview/llagent.h +++ b/indra/newview/llagent.h @@ -982,7 +982,7 @@ private:  	//--------------------------------------------------------------------  public:  	// Checks against all groups in the entire agent group list. -	BOOL 			isInGroup(const LLUUID& group_id) const; +	BOOL 			isInGroup(const LLUUID& group_id, BOOL ingnore_God_mod = FALSE) const;  protected:  	// Only used for building titles.  	BOOL			isGroupMember() const 		{ return !mGroupID.isNull(); }  diff --git a/indra/newview/llagentwearables.cpp b/indra/newview/llagentwearables.cpp index 6078620e87..68ee9cd612 100644 --- a/indra/newview/llagentwearables.cpp +++ b/indra/newview/llagentwearables.cpp @@ -299,6 +299,10 @@ void LLAgentWearables::addWearableToAgentInventoryCallback::fire(const LLUUID& i  	{  		gAgentWearables.makeNewOutfitDone(mType, mIndex);  	} +	if (mTodo & CALL_WEARITEM) +	{ +		LLAppearanceManager::instance().addCOFItemLink(inv_item, true); +	}  }  void LLAgentWearables::addWearabletoAgentInventoryDone(const S32 type, @@ -510,7 +514,7 @@ void LLAgentWearables::saveWearableAs(const EWearableType type,  			type,  			index,  			new_wearable, -			addWearableToAgentInventoryCallback::CALL_UPDATE); +			addWearableToAgentInventoryCallback::CALL_WEARITEM);  	LLUUID category_id;  	if (save_in_lost_and_found)  	{ @@ -1601,31 +1605,32 @@ void LLAgentWearables::setWearableOutfit(const LLInventoryItem::item_array_t& it  		LLWearable* new_wearable = wearables[i];  		LLPointer<LLInventoryItem> new_item = items[i]; -		const EWearableType type = new_wearable->getType(); -		wearables_to_remove[type] = FALSE; - -		// MULTI_WEARABLE: using 0th -		LLWearable* old_wearable = getWearable(type, 0); -		if (old_wearable) +		llassert(new_wearable); +		if (new_wearable)  		{ -			const LLUUID& old_item_id = getWearableItemID(type, 0); -			if ((old_wearable->getAssetID() == new_wearable->getAssetID()) && -				(old_item_id == new_item->getUUID())) -			{ -				lldebugs << "No change to wearable asset and item: " << LLWearableDictionary::getInstance()->getWearableEntry(type) << llendl; -				continue; -			} +			const EWearableType type = new_wearable->getType(); +			wearables_to_remove[type] = FALSE; -			// Assumes existing wearables are not dirty. -			if (old_wearable->isDirty()) +			// MULTI_WEARABLE: using 0th +			LLWearable* old_wearable = getWearable(type, 0); +			if (old_wearable)  			{ -				llassert(0); -				continue; +				const LLUUID& old_item_id = getWearableItemID(type, 0); +				if ((old_wearable->getAssetID() == new_wearable->getAssetID()) && +				    (old_item_id == new_item->getUUID())) +				{ +					lldebugs << "No change to wearable asset and item: " << LLWearableDictionary::getInstance()->getWearableEntry(type) << llendl; +					continue; +				} +				 +				// Assumes existing wearables are not dirty. +				if (old_wearable->isDirty()) +				{ +					llassert(0); +					continue; +				}  			} -		} -		if (new_wearable) -		{  			new_wearable->setItemID(new_item->getUUID());  			setWearable(type,0,new_wearable);  		} @@ -2147,6 +2152,8 @@ void LLAgentWearables::updateServer()  void LLAgentWearables::populateMyOutfitsFolder(void)  {	 +	llinfos << "starting outfit populate" << llendl; +  	LLLibraryOutfitsFetch* outfits = new LLLibraryOutfitsFetch();  	// Get the complete information on the items in the inventory and  diff --git a/indra/newview/llagentwearables.h b/indra/newview/llagentwearables.h index b4f58674af..858540a5f5 100644 --- a/indra/newview/llagentwearables.h +++ b/indra/newview/llagentwearables.h @@ -244,7 +244,8 @@ private:  			CALL_UPDATE = 1,  			CALL_RECOVERDONE = 2,  			CALL_CREATESTANDARDDONE = 4, -			CALL_MAKENEWOUTFITDONE = 8 +			CALL_MAKENEWOUTFITDONE = 8, +			CALL_WEARITEM = 16  		};  		// MULTI-WEARABLE: index is an EWearableType - more confusing usage. diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index 018e9a92a0..eb4a47664b 100644 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -113,6 +113,8 @@ public:  protected:  	~LLWearInventoryCategoryCallback()  	{ +		llinfos << "done all inventory callbacks" << llendl; +		  		// Is the destructor called by ordinary dereference, or because the app's shutting down?  		// If the inventory callback manager goes away, we're shutting down, no longer want the callback.  		if( LLInventoryCallbackManager::is_instantiated() ) @@ -150,12 +152,15 @@ protected:  void LLOutfitObserver::done()  { +	llinfos << "done 2nd stage fetch" << llendl;  	gInventory.removeObserver(this);  	doOnIdle(boost::bind(&LLOutfitObserver::doWearCategory,this));  }  void LLOutfitObserver::doWearCategory()  { +	llinfos << "starting" << llendl; +	  	// We now have an outfit ready to be copied to agent inventory. Do  	// it, and wear that outfit normally.  	if(mCopyItems) @@ -244,6 +249,8 @@ void LLOutfitFetch::done()  	// What we do here is get the complete information on the items in  	// the library, and set up an observer that will wait for that to  	// happen. +	llinfos << "done first stage fetch" << llendl; +	  	LLInventoryModel::cat_array_t cat_array;  	LLInventoryModel::item_array_t item_array;  	gInventory.collectDescendents(mCompleteFolders.front(), @@ -304,6 +311,8 @@ public:  	virtual ~LLUpdateAppearanceOnDestroy()  	{ +		llinfos << "done update appearance on destroy" << llendl; +  		if (!LLApp::isExiting())  		{  			LLAppearanceManager::instance().updateAppearanceFromCOF(); @@ -312,6 +321,7 @@ public:  	/* virtual */ void fire(const LLUUID& inv_item)  	{ +		llinfos << "callback fired" << llendl;  		mFireCount++;  	}  private: @@ -708,6 +718,8 @@ void LLAppearanceManager::linkAll(const LLUUID& category,  void LLAppearanceManager::updateCOF(const LLUUID& category, bool append)  { +	llinfos << "starting" << llendl; +  	const LLUUID cof = getCOF();  	// Deactivate currently active gestures in the COF, if replacing outfit @@ -765,6 +777,7 @@ void LLAppearanceManager::updateCOF(const LLUUID& category, bool append)  	gInventory.notifyObservers();  	// Create links to new COF contents. +	llinfos << "creating LLUpdateAppearanceOnDestroy" << llendl;  	LLPointer<LLInventoryCallback> link_waiter = new LLUpdateAppearanceOnDestroy;  	linkAll(cof, body_items, link_waiter); @@ -777,6 +790,7 @@ void LLAppearanceManager::updateCOF(const LLUUID& category, bool append)  	{  		createBaseOutfitLink(category, link_waiter);  	} +	llinfos << "waiting for LLUpdateAppearanceOnDestroy" << llendl;  }  void LLAppearanceManager::updatePanelOutfitName(const std::string& name) @@ -848,6 +862,8 @@ void LLAppearanceManager::updateAppearanceFromCOF()  {  	// update dirty flag to see if the state of the COF matches  	// the saved outfit stored as a folder link +	llinfos << "starting" << llendl; +  	updateIsDirty();  	dumpCat(getCOF(),"COF, start"); @@ -978,8 +994,9 @@ void LLAppearanceManager::wearInventoryCategory(LLInventoryCategory* category, b  {  	if(!category) return; -	lldebugs << "wearInventoryCategory( " << category->getName() +	llinfos << "wearInventoryCategory( " << category->getName()  			 << " )" << llendl; +  	// What we do here is get the complete information on the items in  	// the inventory, and set up an observer that will wait for that to  	// happen. @@ -1008,7 +1025,8 @@ void LLAppearanceManager::wearInventoryCategoryOnAvatar( LLInventoryCategory* ca  	// this up front to avoid having to deal with the case of multiple  	// wearables being dirty.  	if(!category) return; -	lldebugs << "wearInventoryCategoryOnAvatar( " << category->getName() + +	llinfos << "wearInventoryCategoryOnAvatar( " << category->getName()  			 << " )" << llendl;  	if( gFloaterCustomize ) @@ -1285,6 +1303,23 @@ void LLAppearanceManager::updateIsDirty()  	}  } +void LLAppearanceManager::onFirstFullyVisible() +{ +	// If this is the very first time the user has logged into viewer2+ (from a legacy viewer, or new account) +	// then auto-populate outfits from the library into the My Outfits folder. + +	llinfos << "avatar fully visible" << llendl; + +	static bool check_populate_my_outfits = true; +	if (check_populate_my_outfits &&  +		(LLInventoryModel::getIsFirstTimeInViewer2()  +		 || gSavedSettings.getBOOL("MyOutfitsAutofill"))) +	{ +		gAgentWearables.populateMyOutfitsFolder(); +	} +	check_populate_my_outfits = false; +} +  //#define DUMP_CAT_VERBOSE  void LLAppearanceManager::dumpCat(const LLUUID& cat_id, const std::string& msg) diff --git a/indra/newview/llappearancemgr.h b/indra/newview/llappearancemgr.h index 5fdff45735..28b51ee0f6 100644 --- a/indra/newview/llappearancemgr.h +++ b/indra/newview/llappearancemgr.h @@ -113,6 +113,9 @@ public:  	// should only be necessary to do on initial login.  	void updateIsDirty(); +	// Called when self avatar is first fully visible. +	void onFirstFullyVisible(); +	  protected:  	LLAppearanceManager();  	~LLAppearanceManager(); diff --git a/indra/newview/llcallfloater.cpp b/indra/newview/llcallfloater.cpp index 0aaaa8e705..76e058a1c3 100644 --- a/indra/newview/llcallfloater.cpp +++ b/indra/newview/llcallfloater.cpp @@ -304,7 +304,9 @@ void LLCallFloater::updateSession()  	updateAgentModeratorState();  	//show floater for voice calls & only in CONNECTED to voice channel state -	if (!is_local_chat && LLVoiceChannel::STATE_CONNECTED == voice_channel->getState()) +	if (!is_local_chat && +	    voice_channel && +	    LLVoiceChannel::STATE_CONNECTED == voice_channel->getState())  	{  		LLIMFloater* im_floater = LLIMFloater::findInstance(session_id);  		bool show_me = !(im_floater && im_floater->getVisible()); @@ -333,6 +335,7 @@ void LLCallFloater::refreshParticipantList()  	{  		mParticipants = new LLParticipantList(mSpeakerManager, mAvatarList, true, mVoiceType != VC_GROUP_CHAT && mVoiceType != VC_AD_HOC_CHAT);  		mParticipants->setValidateSpeakerCallback(boost::bind(&LLCallFloater::validateSpeaker, this, _1)); +		mParticipants->setSortOrder(LLParticipantList::E_SORT_BY_RECENT_SPEAKERS);  		if (LLLocalSpeakerMgr::getInstance() == mSpeakerManager)  		{ diff --git a/indra/newview/llcallingcard.cpp b/indra/newview/llcallingcard.cpp index 996139fccc..c3bda26aac 100644 --- a/indra/newview/llcallingcard.cpp +++ b/indra/newview/llcallingcard.cpp @@ -63,6 +63,7 @@  #include "llviewerobjectlist.h"  #include "llviewerwindow.h"  #include "llvoavatar.h" +#include "llavataractions.h"  ///----------------------------------------------------------------------------  /// Local function declarations, constants, enums, and typedefs @@ -711,7 +712,21 @@ void LLAvatarTracker::processNotify(LLMessageSystem* msg, bool online)  		if(notify)  		{  			// Popup a notify box with online status of this agent -			LLNotificationPtr notification = LLNotificationsUtil::add(online ? "FriendOnline" : "FriendOffline", args); +			LLNotificationPtr notification; + +			if (online) +			{ +				notification = +					LLNotificationsUtil::add("FriendOnline", +											 args, +											 LLSD().with("respond_on_mousedown", TRUE), +											 boost::bind(&LLAvatarActions::startIM, agent_id)); +			} +			else +			{ +				notification = +					LLNotificationsUtil::add("FriendOffline", args); +			}  			// If there's an open IM session with this agent, send a notification there too.  			LLUUID session_id = LLIMMgr::computeSessionID(IM_NOTHING_SPECIAL, agent_id); diff --git a/indra/newview/llchathistory.cpp b/indra/newview/llchathistory.cpp index 7a5d8be84a..9368d9cb7c 100644 --- a/indra/newview/llchathistory.cpp +++ b/indra/newview/llchathistory.cpp @@ -259,7 +259,9 @@ public:  		mSessionID = chat.mSessionID;  		mSourceType = chat.mSourceType;  		gCacheName->get(mAvatarID, FALSE, boost::bind(&LLChatHistoryHeader::nameUpdatedCallback, this, _1, _2, _3, _4)); -		if(chat.mFromID.isNull()) + +		//*TODO overly defensive thing, source type should be maintained out there +		if(chat.mFromID.isNull() || chat.mFromName == SYSTEM_FROM)  		{  			mSourceType = CHAT_SOURCE_SYSTEM;  		} @@ -269,17 +271,13 @@ public:  		userName->setReadOnlyColor(style_params.readonly_color());  		userName->setColor(style_params.color()); -		if(!chat.mFromName.empty()) -		{ -			userName->setValue(chat.mFromName); -			mFrom = chat.mFromName; -		} -		else +		userName->setValue(chat.mFromName); +		if (chat.mFromName.empty() || CHAT_SOURCE_SYSTEM == mSourceType)  		{ -			std::string SL = LLTrans::getString("SECOND_LIFE"); -			userName->setValue(SL); +			userName->setValue(LLTrans::getString("SECOND_LIFE"));  		} +  		mMinUserNameWidth = style_params.font()->getWidth(userName->getWText().c_str()) + PADDING;  		setTimeField(chat); @@ -289,20 +287,17 @@ public:  		if(mSourceType != CHAT_SOURCE_AGENT)  			icon->setDrawTooltip(false); -		if(!chat.mFromID.isNull()) +		switch (mSourceType)  		{ -			if(mSourceType != CHAT_SOURCE_AGENT) -				icon->setValue(LLSD("OBJECT_Icon")); -			else +			case CHAT_SOURCE_AGENT:  				icon->setValue(chat.mFromID); - -			 -		} -		else if (userName->getValue().asString()==LLTrans::getString("SECOND_LIFE")) -		{ -			icon->setValue(LLSD("SL_Logo")); +				break; +			case CHAT_SOURCE_OBJECT: +				icon->setValue(LLSD("OBJECT_Icon")); +				break; +			case CHAT_SOURCE_SYSTEM: +				icon->setValue(LLSD("SL_Logo"));  		} -  	}  	/*virtual*/ void draw() diff --git a/indra/newview/llface.cpp b/indra/newview/llface.cpp index c0a3eb1316..80acc71a41 100644 --- a/indra/newview/llface.cpp +++ b/indra/newview/llface.cpp @@ -182,6 +182,7 @@ void LLFace::init(LLDrawable* drawablep, LLViewerObject* objp)  	mAtlasInfop = NULL ;  	mUsingAtlas  = FALSE ; +	mHasMedia = FALSE ;  } @@ -1348,11 +1349,12 @@ const F32 LEAST_IMPORTANCE_FOR_LARGE_IMAGE = 0.3f ;  F32 LLFace::getTextureVirtualSize()  {  	F32 radius; -	F32 cos_angle_to_view_dir; -	mPixelArea = calcPixelArea(cos_angle_to_view_dir, radius); +	F32 cos_angle_to_view_dir;	 +	BOOL in_frustum = calcPixelArea(cos_angle_to_view_dir, radius); -	if (mPixelArea < 0.0001f) +	if (mPixelArea < 0.0001f || !in_frustum)  	{ +		setVirtualSize(0.f) ;  		return 0.f;  	} @@ -1389,30 +1391,36 @@ F32 LLFace::getTextureVirtualSize()  		}  	} +	setVirtualSize(face_area) ; +  	return face_area;  } -F32 LLFace::calcPixelArea(F32& cos_angle_to_view_dir, F32& radius) +BOOL LLFace::calcPixelArea(F32& cos_angle_to_view_dir, F32& radius)  {  	//get area of circle around face  	LLVector3 center = getPositionAgent();  	LLVector3 size = (mExtents[1] - mExtents[0]) * 0.5f;	  	LLViewerCamera* camera = LLViewerCamera::getInstance(); -	//if has media, check if the face is out of the view frustum. -	BOOL has_media = hasMedia() ; -	if(has_media && !camera->AABBInFrustum(center, size))  -	{ -		mImportanceToCamera = 0.f ; -		return 0.f ; -	} -  	F32 size_squared = size.lengthSquared() ;  	LLVector3 lookAt = center - camera->getOrigin(); -	F32 dist = lookAt.normVec() ; -	cos_angle_to_view_dir = lookAt * camera->getXAxis() ;	 -	if(has_media) +	F32 dist = lookAt.normVec() ;	 + +	//get area of circle around node +	F32 app_angle = atanf(fsqrtf(size_squared) / dist); +	radius = app_angle*LLDrawable::sCurPixelAngle; +	mPixelArea = radius*radius * 3.14159f; +	cos_angle_to_view_dir = lookAt * camera->getXAxis() ; + +	//if has media, check if the face is out of the view frustum.	 +	if(hasMedia())  	{ +		if(!camera->AABBInFrustum(center, size))  +		{ +			mImportanceToCamera = 0.f ; +			return false ; +		}  		if(cos_angle_to_view_dir > camera->getCosHalfFov()) //the center is within the view frustum  		{  			cos_angle_to_view_dir = 1.0f ; @@ -1426,11 +1434,6 @@ F32 LLFace::calcPixelArea(F32& cos_angle_to_view_dir, F32& radius)  		}  	} -	//get area of circle around node -	F32 app_angle = atanf(fsqrtf(size_squared) / dist); -	radius = app_angle*LLDrawable::sCurPixelAngle; -	F32 face_area = radius*radius * 3.14159f; -  	if(dist < mBoundingSphereRadius) //camera is very close  	{  		cos_angle_to_view_dir = 1.0f ; @@ -1441,7 +1444,7 @@ F32 LLFace::calcPixelArea(F32& cos_angle_to_view_dir, F32& radius)  		mImportanceToCamera = LLFace::calcImportanceToCamera(cos_angle_to_view_dir, dist) ;  	} -	return face_area ; +	return true ;  }  //the projection of the face partially overlaps with the screen diff --git a/indra/newview/llface.h b/indra/newview/llface.h index bf658dc00c..67dd97e6f7 100644 --- a/indra/newview/llface.h +++ b/indra/newview/llface.h @@ -211,7 +211,7 @@ public:  private:	  	F32         adjustPartialOverlapPixelArea(F32 cos_angle_to_view_dir, F32 radius ); -	F32         calcPixelArea(F32& cos_angle_to_view_dir, F32& radius) ; +	BOOL        calcPixelArea(F32& cos_angle_to_view_dir, F32& radius) ;  public:  	static F32  calcImportanceToCamera(F32 to_view_dir, F32 dist); diff --git a/indra/newview/llfloatergesture.cpp b/indra/newview/llfloatergesture.cpp index 90617a337a..9c1ac2631d 100644 --- a/indra/newview/llfloatergesture.cpp +++ b/indra/newview/llfloatergesture.cpp @@ -203,12 +203,12 @@ BOOL LLFloaterGesture::postBuild()  	gInventory.addObserver(this);  	fetchDescendents(folders); -	buildGestureList(); -	 -	mGestureList->setFocus(TRUE); -  	if (mGestureList)  	{ +		buildGestureList(); +	 +		mGestureList->setFocus(TRUE); +  		const BOOL ascending = TRUE;  		mGestureList->sortByColumn(std::string("name"), ascending);  		mGestureList->selectFirstItem(); @@ -223,10 +223,10 @@ BOOL LLFloaterGesture::postBuild()  void LLFloaterGesture::refreshAll()  { -	buildGestureList(); -  	if (!mGestureList) return; +	buildGestureList(); +  	if (mSelectedID.isNull())  	{  		mGestureList->selectFirstItem(); diff --git a/indra/newview/llfloaterwater.cpp b/indra/newview/llfloaterwater.cpp index 66a1f6701f..1bbee2625c 100644 --- a/indra/newview/llfloaterwater.cpp +++ b/indra/newview/llfloaterwater.cpp @@ -574,12 +574,10 @@ bool LLFloaterWater::deleteAlertCallback(const LLSD& notification, const LLSD& r  		LLComboBox* combo_box = getChild<LLComboBox>("WaterPresetsCombo");  		LLFloaterDayCycle* day_cycle = LLFloaterReg::findTypedInstance<LLFloaterDayCycle>("env_day_cycle");  		LLComboBox* key_combo = NULL; -		LLMultiSliderCtrl* mult_sldr = NULL;  		if (day_cycle)   		{  			key_combo = day_cycle->getChild<LLComboBox>("WaterKeyPresets"); -			mult_sldr = day_cycle->getChild<LLMultiSliderCtrl>("WaterDayCycleKeys");  		}  		std::string name = combo_box->getSelectedValue().asString(); diff --git a/indra/newview/llfloaterwindlight.cpp b/indra/newview/llfloaterwindlight.cpp index ea6fda7303..c1b15c578c 100644 --- a/indra/newview/llfloaterwindlight.cpp +++ b/indra/newview/llfloaterwindlight.cpp @@ -749,12 +749,10 @@ bool LLFloaterWindLight::deleteAlertCallback(const LLSD& notification, const LLS  		LLComboBox* combo_box = getChild<LLComboBox>("WLPresetsCombo");  		LLFloaterDayCycle* day_cycle = LLFloaterReg::findTypedInstance<LLFloaterDayCycle>("env_day_cycle");  		LLComboBox* key_combo = NULL; -		LLMultiSliderCtrl* mult_sldr = NULL;  		if (day_cycle)   		{  			key_combo = day_cycle->getChild<LLComboBox>("WLKeyPresets"); -			mult_sldr = day_cycle->getChild<LLMultiSliderCtrl>("WLDayCycleKeys");  		}  		std::string name(combo_box->getSelectedValue().asString()); diff --git a/indra/newview/llimfloater.cpp b/indra/newview/llimfloater.cpp index 53cdfcc9b2..94b540a7e1 100644 --- a/indra/newview/llimfloater.cpp +++ b/indra/newview/llimfloater.cpp @@ -271,6 +271,7 @@ BOOL LLIMFloater::postBuild()  	mInputEditor->setCommitOnFocusLost( FALSE );  	mInputEditor->setRevertOnEsc( FALSE );  	mInputEditor->setReplaceNewlinesWithSpaces( FALSE ); +	mInputEditor->setPassDelete( TRUE );  	std::string session_name(LLIMModel::instance().getName(mSessionID)); diff --git a/indra/newview/llimfloatercontainer.cpp b/indra/newview/llimfloatercontainer.cpp index 7162386d08..49521b5987 100644 --- a/indra/newview/llimfloatercontainer.cpp +++ b/indra/newview/llimfloatercontainer.cpp @@ -93,7 +93,7 @@ void LLIMFloaterContainer::addFloater(LLFloater* floaterp,  	LLIconCtrl* icon = 0; -	if(gAgent.isInGroup(session_id)) +	if(gAgent.isInGroup(session_id, TRUE))  	{  		LLGroupIconCtrl::Params icon_params = LLUICtrlFactory::instance().getDefaultParams<LLGroupIconCtrl>();  		icon_params.group_id = session_id; diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 5a6c6ebbee..77e3012d26 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -256,12 +256,12 @@ void LLIMModel::LLIMSession::onVoiceChannelStateChanged(const LLVoiceChannel::ES  			{  			case LLVoiceChannel::STATE_CALL_STARTED :  				message = other_avatar_name + " " + started_call; -				LLIMModel::getInstance()->addMessageSilently(mSessionID, SYSTEM_FROM, LLUUID::null, message); +				LLIMModel::getInstance()->addMessage(mSessionID, SYSTEM_FROM, LLUUID::null, message);  				break;  			case LLVoiceChannel::STATE_CONNECTED :  				message = you + " " + joined_call; -				LLIMModel::getInstance()->addMessageSilently(mSessionID, SYSTEM_FROM, LLUUID::null, message); +				LLIMModel::getInstance()->addMessage(mSessionID, SYSTEM_FROM, LLUUID::null, message);  			default:  				break;  			} @@ -272,11 +272,11 @@ void LLIMModel::LLIMSession::onVoiceChannelStateChanged(const LLVoiceChannel::ES  			{  			case LLVoiceChannel::STATE_CALL_STARTED :  				message = you + " " + started_call; -				LLIMModel::getInstance()->addMessageSilently(mSessionID, SYSTEM_FROM, LLUUID::null, message); +				LLIMModel::getInstance()->addMessage(mSessionID, SYSTEM_FROM, LLUUID::null, message);  				break;  			case LLVoiceChannel::STATE_CONNECTED :  				message = other_avatar_name + " " + joined_call; -				LLIMModel::getInstance()->addMessageSilently(mSessionID, SYSTEM_FROM, LLUUID::null, message); +				LLIMModel::getInstance()->addMessage(mSessionID, SYSTEM_FROM, LLUUID::null, message);  			default:  				break;  			} @@ -291,7 +291,7 @@ void LLIMModel::LLIMSession::onVoiceChannelStateChanged(const LLVoiceChannel::ES  			{  			case LLVoiceChannel::STATE_CONNECTED :  				message = you + " " + joined_call; -				LLIMModel::getInstance()->addMessageSilently(mSessionID, SYSTEM_FROM, LLUUID::null, message); +				LLIMModel::getInstance()->addMessage(mSessionID, SYSTEM_FROM, LLUUID::null, message);  			default:  				break;  			} @@ -302,7 +302,7 @@ void LLIMModel::LLIMSession::onVoiceChannelStateChanged(const LLVoiceChannel::ES  			{  			case LLVoiceChannel::STATE_CALL_STARTED :  				message = you + " " + started_call; -				LLIMModel::getInstance()->addMessageSilently(mSessionID, SYSTEM_FROM, LLUUID::null, message); +				LLIMModel::getInstance()->addMessage(mSessionID, SYSTEM_FROM, LLUUID::null, message);  				break;  			default:  				break; diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index da95eaefca..019a4b22c3 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -2434,7 +2434,10 @@ void LLFolderBridge::pasteFromClipboard()  					//we have to update inventory locally too  					LLViewerInventoryItem* viitem = dynamic_cast<LLViewerInventoryItem*>(item);  					llassert(viitem); -					changeItemParent(model, viitem, parent_id, FALSE); +					if (viitem) +					{ +						changeItemParent(model, viitem, parent_id, FALSE); +					}  				}  				else  				{ diff --git a/indra/newview/llinventoryfunctions.cpp b/indra/newview/llinventoryfunctions.cpp index 33623539e9..3553137f53 100644 --- a/indra/newview/llinventoryfunctions.cpp +++ b/indra/newview/llinventoryfunctions.cpp @@ -195,6 +195,62 @@ void LLOpenFoldersWithSelection::doFolder(LLFolderViewFolder* folder)  	}  } +static void assign_clothing_bodypart_icon(EInventoryIcon &idx, U32 attachment_point) +{ +	const EWearableType wearable_type = EWearableType(LLInventoryItem::II_FLAGS_WEARABLES_MASK & attachment_point); +	switch(wearable_type) +	{ +		case WT_SHAPE: +			idx = BODYPART_SHAPE_ICON_NAME; +			break; +		case WT_SKIN: +			idx = BODYPART_SKIN_ICON_NAME; +			break; +		case WT_HAIR: +			idx = BODYPART_HAIR_ICON_NAME; +			break; +		case WT_EYES: +			idx = BODYPART_EYES_ICON_NAME; +			break; +		case WT_SHIRT: +			idx = CLOTHING_SHIRT_ICON_NAME; +			break; +		case WT_PANTS: +			idx = CLOTHING_PANTS_ICON_NAME; +			break; +		case WT_SHOES: +			idx = CLOTHING_SHOES_ICON_NAME; +			break; +		case WT_SOCKS: +			idx = CLOTHING_SOCKS_ICON_NAME; +			break; +		case WT_JACKET: +			idx = CLOTHING_JACKET_ICON_NAME; +			break; +		case WT_GLOVES: +			idx = CLOTHING_GLOVES_ICON_NAME; +			break; +		case WT_UNDERSHIRT: +			idx = CLOTHING_UNDERSHIRT_ICON_NAME; +			break; +		case WT_UNDERPANTS: +			idx = CLOTHING_UNDERPANTS_ICON_NAME; +			break; +		case WT_SKIRT: +			idx = CLOTHING_SKIRT_ICON_NAME; +			break; +		case WT_ALPHA: +			idx = CLOTHING_ALPHA_ICON_NAME; +			break; +		case WT_TATTOO: +			idx = CLOTHING_TATTOO_ICON_NAME; +			break; +		default: +			break; +	} +} +										   +  const std::string& get_item_icon_name(LLAssetType::EType asset_type,  							 LLInventoryType::EType inventory_type,  							 U32 attachment_point, @@ -249,62 +305,11 @@ const std::string& get_item_icon_name(LLAssetType::EType asset_type,  		break;  	case LLAssetType::AT_CLOTHING:  		idx = CLOTHING_ICON_NAME; -	case LLAssetType::AT_BODYPART : -		if(LLAssetType::AT_BODYPART == asset_type) -		{ -			idx = BODYPART_ICON_NAME; -		} -		switch(LLInventoryItem::II_FLAGS_WEARABLES_MASK & attachment_point) -		{ -		case WT_SHAPE: -			idx = BODYPART_SHAPE_ICON_NAME; -			break; -		case WT_SKIN: -			idx = BODYPART_SKIN_ICON_NAME; -			break; -		case WT_HAIR: -			idx = BODYPART_HAIR_ICON_NAME; -			break; -		case WT_EYES: -			idx = BODYPART_EYES_ICON_NAME; -			break; -		case WT_SHIRT: -			idx = CLOTHING_SHIRT_ICON_NAME; -			break; -		case WT_PANTS: -			idx = CLOTHING_PANTS_ICON_NAME; -			break; -		case WT_SHOES: -			idx = CLOTHING_SHOES_ICON_NAME; -			break; -		case WT_SOCKS: -			idx = CLOTHING_SOCKS_ICON_NAME; -			break; -		case WT_JACKET: -			idx = CLOTHING_JACKET_ICON_NAME; -			break; -		case WT_GLOVES: -			idx = CLOTHING_GLOVES_ICON_NAME; -			break; -		case WT_UNDERSHIRT: -			idx = CLOTHING_UNDERSHIRT_ICON_NAME; -			break; -		case WT_UNDERPANTS: -			idx = CLOTHING_UNDERPANTS_ICON_NAME; -			break; -		case WT_SKIRT: -			idx = CLOTHING_SKIRT_ICON_NAME; -			break; -		case WT_ALPHA: -			idx = CLOTHING_ALPHA_ICON_NAME; -			break; -		case WT_TATTOO: -			idx = CLOTHING_TATTOO_ICON_NAME; -			break; -		default: -			// no-op, go with choice above -			break; -		} +		assign_clothing_bodypart_icon(idx, attachment_point); +		break; +	case LLAssetType::AT_BODYPART: +		idx = BODYPART_ICON_NAME; +		assign_clothing_bodypart_icon(idx, attachment_point);  		break;  	case LLAssetType::AT_NOTECARD:  		idx = NOTECARD_ICON_NAME; diff --git a/indra/newview/llnotificationalerthandler.cpp b/indra/newview/llnotificationalerthandler.cpp index 52de8355e9..60e41b64ac 100644 --- a/indra/newview/llnotificationalerthandler.cpp +++ b/indra/newview/llnotificationalerthandler.cpp @@ -36,6 +36,7 @@  #include "llnotificationhandler.h"  #include "llnotifications.h" +#include "llprogressview.h"  #include "lltoastnotifypanel.h"  #include "llviewercontrol.h"  #include "llviewerwindow.h" @@ -116,6 +117,11 @@ bool LLAlertHandler::processNotification(const LLSD& notify)  		p.is_modal = mIsModal;  		p.on_delete_toast = boost::bind(&LLAlertHandler::onDeleteToast, this, _1); +		// Show alert in middle of progress view (during teleport) (EXT-1093) +		LLProgressView* progress = gViewerWindow->getProgressView(); +		LLRect rc = progress && progress->getVisible() ? progress->getRect() : gViewerWindow->getWorldViewRectScaled(); +		mChannel->updatePositionAndSize(rc, rc); +  		LLScreenChannel* channel = dynamic_cast<LLScreenChannel*>(mChannel);  		if(channel)  			channel->addToast(p); diff --git a/indra/newview/llpanelgroupinvite.cpp b/indra/newview/llpanelgroupinvite.cpp index 06a682c905..05261a65de 100644 --- a/indra/newview/llpanelgroupinvite.cpp +++ b/indra/newview/llpanelgroupinvite.cpp @@ -36,6 +36,7 @@  #include "llagent.h"  #include "llfloateravatarpicker.h"  #include "llbutton.h" +#include "llcallingcard.h"  #include "llcombobox.h"  #include "llgroupactions.h"  #include "llgroupmgr.h" @@ -405,16 +406,13 @@ void LLPanelGroupInvite::addUsers(std::vector<LLUUID>& agent_ids)  	{  		LLUUID agent_id = agent_ids[i];  		LLViewerObject* dest = gObjectList.findObject(agent_id); +		std::string fullname;  		if(dest && dest->isAvatar())  		{ -			std::string fullname; -			LLSD args;  			LLNameValue* nvfirst = dest->getNVPair("FirstName");  			LLNameValue* nvlast = dest->getNVPair("LastName");  			if(nvfirst && nvlast)  			{ -				args["FIRST"] = std::string(nvfirst->getString()); -				args["LAST"] = std::string(nvlast->getString());  				fullname = std::string(nvfirst->getString()) + " " + std::string(nvlast->getString());  			}  			if (!fullname.empty()) @@ -427,10 +425,44 @@ void LLPanelGroupInvite::addUsers(std::vector<LLUUID>& agent_ids)  				names.push_back("(Unknown)");  			}  		} +		else +		{ +			//looks like user try to invite offline friend +			//for offline avatar_id gObjectList.findObject() will return null +			//so we need to do this additional search in avatar tracker, see EXT-4732 +			if (LLAvatarTracker::instance().isBuddy(agent_id)) +			{ +				if (!gCacheName->getFullName(agent_id, fullname)) +				{ +					// actually it should happen, just in case +					gCacheName->get(LLUUID(agent_id), false, boost::bind( +							&LLPanelGroupInvite::addUserCallback, this, _1, _2, +							_3)); +					// for this special case! +					//when there is no cached name we should remove resident from agent_ids list to avoid breaking of sequence +					// removed id will be added in callback +					agent_ids.erase(agent_ids.begin() + i); +				} +				else +				{ +					names.push_back(fullname); +				} +			} +		}  	}  	mImplementation->addUsers(names, agent_ids);  } +void LLPanelGroupInvite::addUserCallback(const LLUUID& id, const std::string& first_name, const std::string& last_name) +{ +	std::vector<std::string> names; +	std::vector<LLUUID> agent_ids; +	std::string full_name = first_name + " " + last_name; +	agent_ids.push_back(id); +	names.push_back(first_name + " " + last_name); + +	mImplementation->addUsers(names, agent_ids); +}  void LLPanelGroupInvite::draw()  {  	LLPanel::draw(); diff --git a/indra/newview/llpanelgroupinvite.h b/indra/newview/llpanelgroupinvite.h index 37135b488a..b095dd2395 100644 --- a/indra/newview/llpanelgroupinvite.h +++ b/indra/newview/llpanelgroupinvite.h @@ -43,6 +43,10 @@ public:  	~LLPanelGroupInvite();  	void addUsers(std::vector<LLUUID>& agent_ids); +	/** +	 * this callback is being used to add a user whose fullname isn't been loaded before invoking of addUsers(). +	 */   +	void addUserCallback(const LLUUID& id, const std::string& first_name, const std::string& last_name);  	void clear();  	void update(); diff --git a/indra/newview/llscriptfloater.cpp b/indra/newview/llscriptfloater.cpp index a81ec61263..d452ef2228 100644 --- a/indra/newview/llscriptfloater.cpp +++ b/indra/newview/llscriptfloater.cpp @@ -67,6 +67,7 @@ LLUUID notification_id_to_object_id(const LLUUID& notification_id)  LLScriptFloater::LLScriptFloater(const LLSD& key)  : LLDockableFloater(NULL, true, key)  , mScriptForm(NULL) +, mSaveFloaterPosition(false)  {  	setMouseDownCallback(boost::bind(&LLScriptFloater::onMouseDown, this));  	setOverlapsScreenChannel(true); @@ -105,27 +106,29 @@ LLScriptFloater* LLScriptFloater::show(const LLUUID& notification_id)  	LLScriptFloater* floater = LLFloaterReg::getTypedInstance<LLScriptFloater>("script_floater", notification_id);  	floater->setNotificationId(notification_id);  	floater->createForm(notification_id); -	LLFloaterReg::showTypedInstance<LLScriptFloater>("script_floater", notification_id, TRUE); -	if (floater->getDockControl() == NULL) +	if(LLScriptFloaterManager::OBJ_SCRIPT == LLScriptFloaterManager::getObjectType(notification_id))  	{ -		LLChiclet* chiclet = LLBottomTray::getInstance()->getChicletPanel()->findChiclet<LLChiclet>(notification_id); -		if (chiclet == NULL) -		{ -			llerror("Dock chiclet for LLScriptFloater doesn't exist", 0); -		} -		else -		{ -			LLBottomTray::getInstance()->getChicletPanel()->scrollToChiclet(chiclet); -		} - -		floater->setDockControl(new LLDockControl(chiclet, floater, floater->getDockTongue(), -			LLDockControl::TOP,  boost::bind(&LLScriptFloater::getAllowedRect, floater, _1))); +		floater->setSavePosition(true); +		floater->restorePosition(); +	} +	else +	{ +		floater->dockToChiclet(true);  	} +	LLFloaterReg::showTypedInstance<LLScriptFloater>("script_floater", notification_id, TRUE); +  	return floater;  } +void LLScriptFloater::setNotificationId(const LLUUID& id) +{ +	mNotificationId = id; +	// Lets save object id now while notification exists +	mObjectId = notification_id_to_object_id(id); +} +  void LLScriptFloater::getAllowedRect(LLRect& rect)  {  	rect = gViewerWindow->getWorldViewRectRaw(); @@ -162,6 +165,8 @@ void LLScriptFloater::createForm(const LLUUID& notification_id)  void LLScriptFloater::onClose(bool app_quitting)  { +	savePosition(); +  	if(getNotificationId().notNull())  	{  		LLScriptFloaterManager::getInstance()->onRemoveNotification(getNotificationId()); @@ -172,6 +177,8 @@ void LLScriptFloater::setDocked(bool docked, bool pop_on_undock /* = true */)  {  	LLDockableFloater::setDocked(docked, pop_on_undock); +	savePosition(); +  	hideToastsIfNeeded();  } @@ -208,6 +215,33 @@ void LLScriptFloater::onMouseDown()  	}  } +void LLScriptFloater::savePosition() +{ +	if(getSavePosition() && mObjectId.notNull()) +	{ +		LLScriptFloaterManager::FloaterPositionInfo fpi = {getRect(), isDocked()}; +		LLScriptFloaterManager::getInstance()->saveFloaterPosition(mObjectId, fpi); +	} +} + +void LLScriptFloater::restorePosition() +{ +	LLScriptFloaterManager::FloaterPositionInfo fpi; +	if(LLScriptFloaterManager::getInstance()->getFloaterPosition(mObjectId, fpi)) +	{ +		dockToChiclet(fpi.mDockState); +		if(!fpi.mDockState) +		{ +			// Un-docked floater is opened in 0,0, now move it to saved position +			translate(fpi.mRect.mLeft - getRect().mLeft, fpi.mRect.mTop - getRect().mTop); +		} +	} +	else +	{ +		dockToChiclet(true); +	} +} +  void LLScriptFloater::onFocusLost()  {  	if(getNotificationId().notNull()) @@ -225,6 +259,33 @@ void LLScriptFloater::onFocusReceived()  	}  } +void LLScriptFloater::dockToChiclet(bool dock) +{ +	if (getDockControl() == NULL) +	{ +		LLChiclet* chiclet = LLBottomTray::getInstance()->getChicletPanel()->findChiclet<LLChiclet>(getNotificationId()); +		if (chiclet == NULL) +		{ +			llwarns << "Dock chiclet for LLScriptFloater doesn't exist" << llendl; +			return; +		} +		else +		{ +			LLBottomTray::getInstance()->getChicletPanel()->scrollToChiclet(chiclet); +		} + +		// Stop saving position while we dock floater +		bool save = getSavePosition(); +		setSavePosition(false); + +		setDockControl(new LLDockControl(chiclet, this, getDockTongue(), +			LLDockControl::TOP,  boost::bind(&LLScriptFloater::getAllowedRect, this, _1)), dock); + +		// Restore saving +		setSavePosition(save); +	} +} +  void LLScriptFloater::hideToastsIfNeeded()  {  	using namespace LLNotificationsUI; @@ -326,6 +387,7 @@ void LLScriptFloaterManager::onRemoveNotification(const LLUUID& notification_id)  	LLScriptFloater* floater = LLFloaterReg::findTypedInstance<LLScriptFloater>("script_floater", notification_id);  	if(floater)  	{ +		floater->savePosition();  		floater->setNotificationId(LLUUID::null);  		floater->closeFloater();  	} @@ -445,4 +507,27 @@ LLScriptFloaterManager::script_notification_map_t::const_iterator LLScriptFloate  	return mNotifications.end();  } +void LLScriptFloaterManager::saveFloaterPosition(const LLUUID& object_id, const FloaterPositionInfo& fpi) +{ +	if(object_id.notNull()) +	{ +		LLScriptFloaterManager::getInstance()->mFloaterPositions[object_id] = fpi; +	} +	else +	{ +		llwarns << "Invalid object id" << llendl; +	} +} + +bool LLScriptFloaterManager::getFloaterPosition(const LLUUID& object_id, FloaterPositionInfo& fpi) +{ +	floater_position_map_t::const_iterator it = mFloaterPositions.find(object_id); +	if(LLScriptFloaterManager::getInstance()->mFloaterPositions.end() != it) +	{ +		fpi = it->second; +		return true; +	} +	return false; +} +  // EOF diff --git a/indra/newview/llscriptfloater.h b/indra/newview/llscriptfloater.h index f7efff83f9..ec3ec4b540 100644 --- a/indra/newview/llscriptfloater.h +++ b/indra/newview/llscriptfloater.h @@ -84,16 +84,21 @@ public:  	static std::string getObjectName(const LLUUID& notification_id); -	/** -	* Callback for notification toast buttons. -	*/ -	static void onToastButtonClick(const LLSD¬ification, const LLSD&response); -  	typedef boost::signals2::signal<void(const LLSD&)> object_signal_t;  	boost::signals2::connection addNewObjectCallback(const object_signal_t::slot_type& cb) { return mNewObjectSignal.connect(cb); }  	boost::signals2::connection addToggleObjectFloaterCallback(const object_signal_t::slot_type& cb) { return mToggleFloaterSignal.connect(cb); } +	struct FloaterPositionInfo +	{ +		LLRect mRect; +		bool mDockState; +	}; + +	void saveFloaterPosition(const LLUUID& object_id, const FloaterPositionInfo& fpi); + +	bool getFloaterPosition(const LLUUID& object_id, FloaterPositionInfo& fpi); +  protected:  	typedef std::map<std::string, EObjectType> object_type_map; @@ -111,6 +116,11 @@ private:  	object_signal_t mNewObjectSignal;  	object_signal_t mToggleFloaterSignal; + +	// <object_id, floater position> +	typedef std::map<LLUUID, FloaterPositionInfo> floater_position_map_t; + +	floater_position_map_t mFloaterPositions;  };  /** @@ -141,7 +151,7 @@ public:  	const LLUUID& getNotificationId() { return mNotificationId; } -	void setNotificationId(const LLUUID& id) { mNotificationId = id; } +	void setNotificationId(const LLUUID& id);  	/**  	 * Close notification if script floater is closed. @@ -158,6 +168,14 @@ public:  	 */  	/*virtual*/ void setVisible(BOOL visible); +	bool getSavePosition() { return mSaveFloaterPosition; } + +	void setSavePosition(bool save) { mSaveFloaterPosition = save; } + +	void savePosition(); + +	void restorePosition(); +  protected:  	/** @@ -181,9 +199,13 @@ protected:  	/*virtual*/ void onFocusReceived(); +	void dockToChiclet(bool dock); +  private:  	LLToastNotifyPanel* mScriptForm;  	LLUUID mNotificationId; +	LLUUID mObjectId; +	bool mSaveFloaterPosition;  };  #endif //LL_SCRIPTFLOATER_H diff --git a/indra/newview/llsearchcombobox.cpp b/indra/newview/llsearchcombobox.cpp index 93a70b6471..a130878176 100644 --- a/indra/newview/llsearchcombobox.cpp +++ b/indra/newview/llsearchcombobox.cpp @@ -78,6 +78,7 @@ LLSearchComboBox::LLSearchComboBox(const Params&p)  	button_params.click_callback.function(boost::bind(&LLSearchComboBox::onSelectionCommit, this));  	mSearchButton = LLUICtrlFactory::create<LLButton>(button_params);  	mTextEntry->addChild(mSearchButton); +	mTextEntry->setPassDelete(TRUE);  	setButtonVisible(p.dropdown_button_visible);  	mTextEntry->setCommitCallback(boost::bind(&LLComboBox::onTextCommit, this, _2)); diff --git a/indra/newview/llslurl.cpp b/indra/newview/llslurl.cpp index 3343ee88bd..e4773f99c5 100644 --- a/indra/newview/llslurl.cpp +++ b/indra/newview/llslurl.cpp @@ -40,6 +40,12 @@ const std::string LLSLURL::PREFIX_SL_HELP		= "secondlife://app.";  const std::string LLSLURL::PREFIX_SL			= "sl://";  const std::string LLSLURL::PREFIX_SECONDLIFE	= "secondlife://";  const std::string LLSLURL::PREFIX_SLURL_OLD		= "http://slurl.com/secondlife/"; + +// For DnD - even though www.slurl.com redirects to slurl.com in a browser, you can copy and drag +// text with www.slurl.com or a link explicitly pointing at www.slurl.com so testing for this +// version is required also. +const std::string LLSLURL::PREFIX_SLURL_WWW		= "http://www.slurl.com/secondlife/"; +  const std::string LLSLURL::PREFIX_SLURL			= "http://maps.secondlife.com/secondlife/";  const std::string LLSLURL::APP_TOKEN = "app/"; @@ -68,7 +74,10 @@ std::string LLSLURL::stripProtocol(const std::string& url)  	{  		stripped.erase(0, PREFIX_SLURL_OLD.length());  	} - +	else if (matchPrefix(stripped, PREFIX_SLURL_WWW)) +	{ +		stripped.erase(0, PREFIX_SLURL_WWW.length()); +	}  	return stripped;  } @@ -81,6 +90,7 @@ bool LLSLURL::isSLURL(const std::string& url)  	if (matchPrefix(url, PREFIX_SECONDLIFE))	return true;  	if (matchPrefix(url, PREFIX_SLURL))			return true;  	if (matchPrefix(url, PREFIX_SLURL_OLD))		return true; +	if (matchPrefix(url, PREFIX_SLURL_WWW))		return true;  	return false;  } @@ -91,6 +101,7 @@ bool LLSLURL::isSLURLCommand(const std::string& url)  	if (matchPrefix(url, PREFIX_SL + APP_TOKEN) ||  		matchPrefix(url, PREFIX_SECONDLIFE + "/" + APP_TOKEN) ||  		matchPrefix(url, PREFIX_SLURL + APP_TOKEN) || +		matchPrefix(url, PREFIX_SLURL_WWW + APP_TOKEN) ||  		matchPrefix(url, PREFIX_SLURL_OLD + APP_TOKEN) )  	{  		return true; diff --git a/indra/newview/llslurl.h b/indra/newview/llslurl.h index 21b32ce409..6a695e84f3 100644 --- a/indra/newview/llslurl.h +++ b/indra/newview/llslurl.h @@ -51,6 +51,7 @@ public:  	static const std::string PREFIX_SECONDLIFE;  	static const std::string PREFIX_SLURL;  	static const std::string PREFIX_SLURL_OLD; +	static const std::string PREFIX_SLURL_WWW;  	static const std::string APP_TOKEN; diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 63f5883a70..136989166f 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -1891,17 +1891,6 @@ bool idle_startup()  			}  		} -		// If this is the very first time the user has logged into viewer2+ (from a legacy viewer, or new account) -		// then auto-populate outfits from the library into the My Outfits folder. -		static bool check_populate_my_outfits = true; -		if (check_populate_my_outfits &&  -			(LLInventoryModel::getIsFirstTimeInViewer2()  -			 || gSavedSettings.getBOOL("MyOutfitsAutofill"))) -		{ -			gAgentWearables.populateMyOutfitsFolder(); -		} -		check_populate_my_outfits = false; -  		return TRUE;  	} @@ -2544,6 +2533,8 @@ bool callback_choose_gender(const LLSD& notification, const LLSD& response)  void LLStartUp::loadInitialOutfit( const std::string& outfit_folder_name,  								   const std::string& gender_name )  { +	llinfos << "starting" << llendl; +  	// Not going through the processAgentInitialWearables path, so need to set this here.  	LLAppearanceManager::instance().setAttachmentInvLinkEnable(true);  	// Initiate creation of COF, since we're also bypassing that. diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp index 4a61130785..6dcf4bc798 100644 --- a/indra/newview/lltexturefetch.cpp +++ b/indra/newview/lltexturefetch.cpp @@ -982,7 +982,12 @@ bool LLTextureFetchWorker::doWork(S32 param)  		}  		if (mLoadedDiscard < 0)  		{ -			llerrs << "Decode entered with invalid mLoadedDiscard. ID = " << mID << llendl; +			//llerrs << "Decode entered with invalid mLoadedDiscard. ID = " << mID << llendl; + +			//abort, don't decode +			mState = DONE; +			setPriority(LLWorkerThread::PRIORITY_LOW | mWorkPriority); +			return true;  		}  		setPriority(LLWorkerThread::PRIORITY_LOW | mWorkPriority); // Set priority first since Responder may change it  		mRawImage = NULL; diff --git a/indra/newview/lltoastnotifypanel.cpp b/indra/newview/lltoastnotifypanel.cpp index 4d741456c4..980b51337f 100644 --- a/indra/newview/lltoastnotifypanel.cpp +++ b/indra/newview/lltoastnotifypanel.cpp @@ -294,6 +294,15 @@ void LLToastNotifyPanel::adjustPanelForTipNotice()  	mControlPanel->setVisible(FALSE);  	reshape(getRect().getWidth(), mInfoPanel->getRect().getHeight()); + +	if (mNotification->getPayload().has("respond_on_mousedown") +		&& mNotification->getPayload()["respond_on_mousedown"] ) +	{ +		mInfoPanel->setMouseDownCallback( +			boost::bind(&LLNotification::respond, +						mNotification, +						mNotification->getResponseTemplate())); +	}  }  // static diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp index af89df448d..b15a9a9e99 100644 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -2555,7 +2555,7 @@ void handle_object_inspect()  		key["task"] = "task";  		LLSideTray::getInstance()->showPanel("sidepanel_inventory", key);  	} - +	  	/*  	// Old floater properties  	LLFloaterReg::showInstance("inspect", LLSD()); @@ -5599,6 +5599,19 @@ void handle_buy_currency()  	LLFloaterBuyCurrency::buyCurrency();  } +class LLFloaterVisible : public view_listener_t +{ +	bool handleEvent(const LLSD& userdata) +	{ +		std::string floater_name = userdata.asString(); +		bool new_value = false; +		{ +			new_value = LLFloaterReg::instanceVisible(floater_name); +		} +		return new_value; +	} +}; +  class LLShowHelp : public view_listener_t  {  	bool handleEvent(const LLSD& userdata) @@ -8030,6 +8043,7 @@ void initialize_menus()  	enable.add("EnableEdit", boost::bind(&enable_object_edit));  	enable.add("VisibleBuild", boost::bind(&enable_object_build)); +	view_listener_t::addMenu(new LLFloaterVisible(), "FloaterVisible");  	view_listener_t::addMenu(new LLShowSidetrayPanel(), "ShowSidetrayPanel");  	view_listener_t::addMenu(new LLSidetrayPanelVisible(), "SidetrayPanelVisible");  	view_listener_t::addMenu(new LLSomethingSelected(), "SomethingSelected"); diff --git a/indra/newview/llviewerobjectlist.h b/indra/newview/llviewerobjectlist.h index ace5c5038e..2858081dc9 100644 --- a/indra/newview/llviewerobjectlist.h +++ b/indra/newview/llviewerobjectlist.h @@ -233,6 +233,10 @@ public:  extern LLViewerObjectList gObjectList;  // Inlines +/** + * Note: + * it will return NULL for offline avatar_id  + */  inline LLViewerObject *LLViewerObjectList::findObject(const LLUUID &id)  {  	std::map<LLUUID, LLPointer<LLViewerObject> >::iterator iter = mUUIDObjectMap.find(id); diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index 984f003411..b66f58d853 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -1519,12 +1519,12 @@ F32 LLViewerFetchedTexture::calcDecodePriority()  		}  		else if (!isJustBound() && mCachedRawImageReady)  		{ -			if(mBoostLevel < BOOST_HIGH) -			{ -				// We haven't rendered this in a while, de-prioritize it -				desired_discard += 2; -			} -			else +			//if(mBoostLevel < BOOST_HIGH) +			//{ +			//	// We haven't rendered this in a while, de-prioritize it +			//	desired_discard += 2; +			//} +			//else  			{  				// We haven't rendered this in the last half second, and we have a cached raw image, leave the desired discard as-is  				desired_discard = cur_discard; @@ -2342,14 +2342,8 @@ void LLViewerFetchedTexture::setCachedRawImage()  			{  				--i ;  			} -			//if(mForSculpt) -			//{ -			//	mRawImage->scaleDownWithoutBlending(w >> i, h >> i) ; -			//} -			//else -			{ -				mRawImage->scale(w >> i, h >> i) ; -			} +			 +			mRawImage->scale(w >> i, h >> i) ;  		}  		mCachedRawImage = mRawImage ;  		mCachedRawDiscardLevel = mRawDiscardLevel + i ;			 @@ -2699,7 +2693,7 @@ void LLViewerLODTexture::processTextureStats()  		}  		else  		{ -			if(isLargeImage() && !isJustBound() && mAdditionalDecodePriority < 1.0f) +			if(isLargeImage() && !isJustBound() && mAdditionalDecodePriority < 0.3f)  			{  				//if is a big image and not being used recently, nor close to the view point, do not load hi-res data.  				mMaxVirtualSize = llmin(mMaxVirtualSize, (F32)LLViewerTexture::sMinLargeImageSize) ; @@ -2885,12 +2879,11 @@ LLViewerMediaTexture::~LLViewerMediaTexture()  void LLViewerMediaTexture::reinit(BOOL usemipmaps /* = TRUE */)  { -	mGLTexturep = NULL ; -	init(false); +	llassert(mGLTexturep.notNull()) ; +  	mUseMipMaps = usemipmaps ;  	getLastReferencedTimer()->reset() ; - -	generateGLTexture() ; +	mGLTexturep->setUseMipMaps(mUseMipMaps) ;  	mGLTexturep->setNeedsAlphaAndPickMask(FALSE) ;  } diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index 698b6be98b..7a6a48d1b3 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -2538,6 +2538,17 @@ void LLVOAvatar::idleUpdateLoadingEffect()  	// update visibility when avatar is partially loaded  	if (updateIsFullyLoaded()) // changed?  	{ +		if (isFullyLoaded() && isSelf()) +		{ +			llinfos << "self isFullyLoaded" << llendl; + +			static bool first_fully_visible = true; +			if (first_fully_visible) +			{ +				first_fully_visible = false; +				LLAppearanceManager::instance().onFirstFullyVisible(); +			} +		}  		if (isFullyLoaded())  		{  			deleteParticleSource(); diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index bfe38c14ba..fa00396c34 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -679,6 +679,7 @@ void LLVOVolume::updateTextureVirtualSize()  			vsize = area;  			imagep->setBoostLevel(LLViewerTexture::BOOST_HUD);   			face->setPixelArea(area); // treat as full screen +			face->setVirtualSize(vsize);  		}  		else  		{ @@ -695,8 +696,7 @@ void LLVOVolume::updateTextureVirtualSize()  				gPipeline.markRebuild(mDrawable, LLDrawable::REBUILD_TCOORD, FALSE);  			}  		} -		 -		face->setVirtualSize(vsize); +				  		if (gPipeline.hasRenderDebugMask(LLPipeline::RENDER_DEBUG_TEXTURE_AREA))  		{  			if (vsize < min_vsize) min_vsize = vsize; diff --git a/indra/newview/skins/default/textures/textures.xml b/indra/newview/skins/default/textures/textures.xml index 18d1779702..0065d824d2 100644 --- a/indra/newview/skins/default/textures/textures.xml +++ b/indra/newview/skins/default/textures/textures.xml @@ -633,8 +633,8 @@ with the same filename but different name    <texture name="Unread_Msg" file_name="bottomtray/Unread_Msg.png" preload="false" />    <texture name="Unread_IM" file_name="bottomtray/Unread_IM.png" preload="false" /> -  <texture name="WellButton_Lit" file_name="bottomtray/WellButton_Lit.png"  preload="true" scale.left="4" scale.top="19" scale.right="28" scale.bottom="4" /> -  <texture name="WellButton_Lit_Selected" file_name="bottomtray/WellButton_Lit_Selected.png" preload="true" scale.left="4" scale.top="19" scale.right="28" scale.bottom="4" /> +    <texture name="Volume_Background" file_name="windows/Volume_Background.png" preload="false" +           scale.left="6" scale.top="33" scale.right="63" scale.bottom="10" />    <texture name="VoicePTT_Lvl1" file_name="bottomtray/VoicePTT_Lvl1.png" preload="false" />    <texture name="VoicePTT_Lvl2" file_name="bottomtray/VoicePTT_Lvl2.png" preload="false" /> @@ -642,6 +642,9 @@ with the same filename but different name    <texture name="VoicePTT_Off" file_name="bottomtray/VoicePTT_Off.png" preload="false" />    <texture name="VoicePTT_On" file_name="bottomtray/VoicePTT_On.png" preload="false" /> +  <texture name="WellButton_Lit" file_name="bottomtray/WellButton_Lit.png"  preload="true" scale.left="4" scale.top="19" scale.right="28" scale.bottom="4" /> +  <texture name="WellButton_Lit_Selected" file_name="bottomtray/WellButton_Lit_Selected.png" preload="true" scale.left="4" scale.top="19" scale.right="28" scale.bottom="4" /> +    <texture name="WebBasedMediaBackground" file_name="windows/WebBasedMediaBackground.png" preload="false" />    <texture name="Widget_DownArrow" file_name="icons/Widget_DownArrow.png" preload="true" /> diff --git a/indra/newview/skins/default/textures/windows/Volume_Background.png b/indra/newview/skins/default/textures/windows/Volume_Background.pngBinary files differ new file mode 100644 index 0000000000..43aaa441f5 --- /dev/null +++ b/indra/newview/skins/default/textures/windows/Volume_Background.png diff --git a/indra/newview/skins/default/xui/en/floater_about_land.xml b/indra/newview/skins/default/xui/en/floater_about_land.xml index 44c9284b36..593bbe4b5e 100644 --- a/indra/newview/skins/default/xui/en/floater_about_land.xml +++ b/indra/newview/skins/default/xui/en/floater_about_land.xml @@ -369,7 +369,7 @@ Leyla Linden               </text>               layout="topleft"               left_delta="0"               name="Sell with landowners objects in parcel." -             top_pad="-3" +             top_pad="-2"               width="186">                  Objects included in sale              </text> diff --git a/indra/newview/skins/default/xui/en/menu_viewer.xml b/indra/newview/skins/default/xui/en/menu_viewer.xml index 95ce6d6ff4..07a366da7f 100644 --- a/indra/newview/skins/default/xui/en/menu_viewer.xml +++ b/indra/newview/skins/default/xui/en/menu_viewer.xml @@ -55,34 +55,42 @@          </menu_item_call>          <menu_item_check           label="My Inventory" -         layout="topleft"           name="Inventory" -         shortcut="control|I"> +         layout="topleft" +         shortcut="control|shift|I" +		 visible="false">              <menu_item_check.on_check -             function="SidetrayPanelVisible" -             parameter="sidepanel_inventory" /> +             function="Floater.Visible" +             parameter="inventory" />              <menu_item_check.on_click -             function="ShowSidetrayPanel" -             parameter="sidepanel_inventory" /> +             function="Floater.Toggle" +             parameter="inventory" />          </menu_item_check> -        <menu_item_call -         label="Show Inventory in Side Tray" +        <menu_item_check +         label="My Inventory"           name="ShowSidetrayInventory" +         layout="topleft"           shortcut="control|I" -         visible="false"> -            <menu_item_call.on_click +		 visible="true"> +            <menu_item_check.on_check +             function="SidetrayPanelVisible" +             parameter="sidepanel_inventory" /> +            <menu_item_check.on_click               function="ShowSidetrayPanel"               parameter="sidepanel_inventory" /> -        </menu_item_call> -        <menu_item_call +        </menu_item_check> +        <menu_item_check           label="My Gestures"           layout="topleft"           name="Gestures"           shortcut="control|G"> -            <menu_item_call.on_click +            <menu_item_check.on_check +             function="Floater.Visible" +             parameter="gestures" /> +            <menu_item_check.on_click               function="Floater.Toggle"               parameter="gestures" /> -        </menu_item_call> +        </menu_item_check>          <menu           label="My Status"           layout="topleft" diff --git a/indra/newview/skins/default/xui/en/panel_group_notices.xml b/indra/newview/skins/default/xui/en/panel_group_notices.xml index 1f16aea2ef..5f46ad7860 100644 --- a/indra/newview/skins/default/xui/en/panel_group_notices.xml +++ b/indra/newview/skins/default/xui/en/panel_group_notices.xml @@ -159,7 +159,6 @@ Maximum 200 per group daily           left_pad="3"           max_length="511"           name="create_message" -         text_type="ascii"           top_delta="0"           width="220"           word_wrap="true" /> diff --git a/indra/newview/skins/default/xui/en/panel_preferences_chat.xml b/indra/newview/skins/default/xui/en/panel_preferences_chat.xml index 433dfc17fe..2e81139ef2 100644 --- a/indra/newview/skins/default/xui/en/panel_preferences_chat.xml +++ b/indra/newview/skins/default/xui/en/panel_preferences_chat.xml @@ -9,13 +9,22 @@   name="chat"   top="1"   width="517"> -    <radio_group +  <text +   follows="left|top" +   layout="topleft" +   left="30" +   height="12" +   width="120" +   top="10"> +    Font size: +  </text> +  <radio_group       height="30"       layout="topleft" -     left="30" -	 control_name="ChatFontSize" +     left="40" +	   control_name="ChatFontSize"       name="chat_font_size" -     top="10" +     top_pad="0"       width="440">          <radio_item           height="16" @@ -45,12 +54,24 @@           top_delta="0"           width="125" />      </radio_group> + +    <text +      follows="left|top" +      layout="topleft" +      left="30" +      height="12" +      top_pad="10"  +      width="120" +      > +    Font colors: +    </text>   +        <color_swatch       can_apply_immediately="true"       follows="left|top"       height="47"       layout="topleft" -     left="30" +     left="40"       name="user"       top_pad="10"       width="44" > @@ -79,7 +100,7 @@       follows="left|top"       height="47"       layout="topleft" -     left="180" +     left="190"       name="agent"       top_pad="-17"       width="44" > @@ -110,7 +131,7 @@       height="47"       label_width="60"       layout="topleft" -     left="350" +     left="360"       name="im"       top_pad="-17"       width="44"> @@ -141,7 +162,7 @@       height="47"       label_width="44"       layout="topleft" -     left="30" +     left="40"       name="system"       top_pad="40"       width="44" > @@ -171,7 +192,7 @@       follows="left|top"       height="47"       layout="topleft" -     left="180" +     left="190"       name="script_error"       top_pad="-17"       width="44"> @@ -201,7 +222,7 @@       follows="left|top"       height="47"       layout="topleft" -     left="350" +     left="360"       name="objects"       top_pad="-17"       width="44" > @@ -231,7 +252,7 @@       follows="left|top"       height="47"       layout="topleft" -     left="30" +     left="40"       name="owner"       top_pad="40"       width="44" > @@ -261,7 +282,7 @@       follows="left|top"       height="47"       layout="topleft" -     left="180" +     left="190"       name="links"       top_pad="-17"       width="44" > @@ -314,6 +335,8 @@       top_pad="5"       width="400" />      <text +     follows="left|top" +     layout="topleft"       left="30"       height="20"       width="120" @@ -321,17 +344,20 @@       Show IMs in:      </text>      <text -	 left_pad="6" -	 height="20" -	 width="100" -	 text_color="White_25" -	 > +     follows="left|top" +     layout="topleft" +     top_delta="0"  +     left="120"  +  	 height="20" +	   width="100" +     text_color="White_25" +	  >        (requires restart)        </text>      <radio_group       height="30"       layout="topleft" -     left="30" +     left="40"       control_name="ChatWindow"       name="chat_window"       top_pad="0" diff --git a/indra/newview/skins/default/xui/en/panel_volume_pulldown.xml b/indra/newview/skins/default/xui/en/panel_volume_pulldown.xml index 60d4a7e00b..55ab95bfe9 100644 --- a/indra/newview/skins/default/xui/en/panel_volume_pulldown.xml +++ b/indra/newview/skins/default/xui/en/panel_volume_pulldown.xml @@ -4,7 +4,7 @@   background_visible="false"   border_visible="false"   border="false" - chrome="true"  + chrome="true"   follows="bottom"   height="150"   layout="topleft" @@ -13,7 +13,7 @@    <!-- floater background image -->    <icon     height="150" -   image_name="Inspector_Background" +   image_name="Volume_Background"     layout="topleft"     left="0"     name="normal_background" diff --git a/indra/newview/skins/default/xui/en/widgets/filter_editor.xml b/indra/newview/skins/default/xui/en/widgets/filter_editor.xml index 1228f6be3d..0720621f0b 100644 --- a/indra/newview/skins/default/xui/en/widgets/filter_editor.xml +++ b/indra/newview/skins/default/xui/en/widgets/filter_editor.xml @@ -16,6 +16,6 @@  	  image_unselected="Search"  	  image_selected="Search" />    <clear_button label="" -   image_unselected="Icon_Close_Foreground" -   image_selected="Icon_Close_Press" /> +   image_unselected="Icon_Close_Toast" +   image_selected="Icon_Close_Toast" />  </filter_editor> diff --git a/indra/newview/skins/default/xui/en/widgets/search_editor.xml b/indra/newview/skins/default/xui/en/widgets/search_editor.xml index 1616e4c3f7..a9a760b3a4 100644 --- a/indra/newview/skins/default/xui/en/widgets/search_editor.xml +++ b/indra/newview/skins/default/xui/en/widgets/search_editor.xml @@ -15,7 +15,11 @@      height="13"   	  image_unselected="Search"  	  image_selected="Search" /> -  <clear_button  +  <clear_button +   bottom="4" +   height="16"     image_unselected="Icon_Close_Foreground" -   image_selected="Icon_Close_Press" /> +   image_selected="Icon_Close_Press" +   pad_right="4" +   width="16" />  </search_editor> diff --git a/install.xml b/install.xml index 1e8fa70d46..2461ac8786 100644 --- a/install.xml +++ b/install.xml @@ -962,9 +962,9 @@ anguage Infrstructure (CLI) international standard</string>            <key>windows</key>            <map>              <key>md5sum</key> -            <string>df0f751818dddb566d55499286c727a8</string> +            <string>1e9798dc424a6f6c2bea50649bbcc7ae</string>              <key>url</key> -            <uri>http://viewer-source-downloads.s3.amazonaws.com/install_pkgs/llqtwebkit-windows-qt4.6-20100208.tar.bz2</uri> +            <uri>http://viewer-source-downloads.s3.amazonaws.com/install_pkgs/llqtwebkit-windows-qt4.6-20100210.tar.bz2</uri>            </map>          </map>        </map> | 
