diff options
| author | AlexanderP ProductEngine <apaschenko@productengine.com> | 2012-05-14 16:03:39 +0300 | 
|---|---|---|
| committer | AlexanderP ProductEngine <apaschenko@productengine.com> | 2012-05-14 16:03:39 +0300 | 
| commit | 6cd68b321147136b2ad79fdbfeafdd2ffc39f1a3 (patch) | |
| tree | 2d43ee84cb1b6ffd052c38bed2dd38b5db257fa8 /indra/newview | |
| parent | df58153514f6b361c65efc5dd6d31d39f68603c0 (diff) | |
Formatting fixes
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llimfloater.cpp | 299 | ||||
| -rw-r--r-- | indra/newview/llimfloater.h | 35 | 
2 files changed, 171 insertions, 163 deletions
diff --git a/indra/newview/llimfloater.cpp b/indra/newview/llimfloater.cpp index 248e50eefa..cb489627fb 100644 --- a/indra/newview/llimfloater.cpp +++ b/indra/newview/llimfloater.cpp @@ -115,11 +115,11 @@ LLIMFloater::LLIMFloater(const LLUUID& session_id)  	mCommitCallbackRegistrar.add("IMSession.Menu.Action",  			boost::bind(&LLIMFloater::onIMSessionMenuItemClicked,  this, _2));  	mEnableCallbackRegistrar.add("IMSession.Menu.CompactExpandedModes.CheckItem", -			boost::bind(&LLIMFloater::onIMCompactExpandedMenuItemCheck,	this, _2)); +			boost::bind(&LLIMFloater::onIMCompactExpandedMenuItemCheck, this, _2));  	mEnableCallbackRegistrar.add("IMSession.Menu.ShowModes.CheckItem", -			boost::bind(&LLIMFloater::onIMShowModesMenuItemCheck,	this, _2)); +			boost::bind(&LLIMFloater::onIMShowModesMenuItemCheck,   this, _2));  	mEnableCallbackRegistrar.add("IMSession.Menu.ShowModes.Enable", -			boost::bind(&LLIMFloater::onIMShowModesMenuItemEnable,	this, _2)); +			boost::bind(&LLIMFloater::onIMShowModesMenuItemEnable,  this, _2));  }  bool LLIMFloater::onIMCompactExpandedMenuItemCheck(const LLSD& userdata) @@ -154,7 +154,8 @@ void LLIMFloater::onIMSessionMenuItemClicked(const LLSD& userdata)  		gSavedSettings.setBOOL("PlainTextChatHistory", item == "compact_view");  	}  	else -	{   bool prev_value = gSavedSettings.getBOOL(item); +	{ +		bool prev_value = gSavedSettings.getBOOL(item);  		gSavedSettings.setBOOL(item, !prev_value);  	} @@ -164,7 +165,7 @@ void LLIMFloater::onIMSessionMenuItemClicked(const LLSD& userdata)  void LLIMFloater::onFocusLost()  {  	LLIMModel::getInstance()->resetActiveSessionID(); -	 +  	LLChicletBar::getInstance()->getChicletPanel()->setChicletToggleState(mSessionID, false);  } @@ -205,8 +206,8 @@ void LLIMFloater::onClose(bool app_quitting)  }  /* static */ -void LLIMFloater::newIMCallback(const LLSD& data){ -	 +void LLIMFloater::newIMCallback(const LLSD& data) +{  	if (data["num_unread"].asInteger() > 0 || data["from_id"].asUUID().isNull())  	{  		LLUUID session_id = data["session_id"].asUUID(); @@ -214,7 +215,7 @@ void LLIMFloater::newIMCallback(const LLSD& data){  		LLIMFloater* floater = LLFloaterReg::findTypedInstance<LLIMFloater>("impanel", session_id);  		if (floater == NULL) return; -        // update if visible, otherwise will be updated when opened +		// update if visible, otherwise will be updated when opened  		if (floater->getVisible())  		{  			floater->updateMessages(); @@ -229,7 +230,7 @@ void LLIMFloater::onVisibilityChange(const LLSD& new_visibility)  	LLVoiceChannel* voice_channel = LLIMModel::getInstance()->getVoiceChannel(mSessionID);  	if (visible && voice_channel && -		voice_channel->getState() == LLVoiceChannel::STATE_CONNECTED) +			voice_channel->getState() == LLVoiceChannel::STATE_CONNECTED)  	{  		LLFloaterReg::showInstance("voice_call", mSessionID);  	} @@ -248,9 +249,9 @@ void LLIMFloater::onSendMsg( LLUICtrl* ctrl, void* userdata )  void LLIMFloater::sendMsg()  { -	if (!gAgent.isGodlike()  -		&& (mDialog == IM_NOTHING_SPECIAL) -		&& mOtherParticipantUUID.isNull()) +	if (!gAgent.isGodlike() +			&& (mDialog == IM_NOTHING_SPECIAL) +			&& mOtherParticipantUUID.isNull())  	{  		llinfos << "Cannot send IM to everyone unless you're a god." << llendl;  		return; @@ -259,16 +260,15 @@ void LLIMFloater::sendMsg()  	if (mInputEditor)  	{  		LLWString text = mInputEditor->getConvertedText(); -		if(!text.empty()) +		if (!text.empty())  		{  			// Truncate and convert to UTF8 for transport  			std::string utf8_text = wstring_to_utf8str(text);  			utf8_text = utf8str_truncate(utf8_text, MAX_MSG_BUF_SIZE - 1); -			 +  			if (mSessionInitialized)  			{ -				LLIMModel::sendMessage(utf8_text, mSessionID, -					mOtherParticipantUUID,mDialog); +				LLIMModel::sendMessage(utf8_text, mSessionID, mOtherParticipantUUID, mDialog);  			}  			else  			{ @@ -283,8 +283,6 @@ void LLIMFloater::sendMsg()  	}  } - -  LLIMFloater::~LLIMFloater()  {  	mVoiceChannelStateChangeConnection.disconnect(); @@ -299,7 +297,8 @@ LLIMFloater::~LLIMFloater()  //virtual  BOOL LLIMFloater::postBuild()  { -	const LLUUID& other_party_id = LLIMModel::getInstance()->getOtherParticipantID(mSessionID); +	const LLUUID& other_party_id = +			LLIMModel::getInstance()->getOtherParticipantID(mSessionID);  	if (other_party_id.notNull())  	{  		mOtherParticipantUUID = other_party_id; @@ -335,8 +334,8 @@ BOOL LLIMFloater::postBuild()  	mInputEditor->setEnableLineHistory(TRUE);  	LLFontGL* font = LLViewerChat::getChatFont(); -	mInputEditor->setFont(font);	 -	 +	mInputEditor->setFont(font); +  	mInputEditor->setFocusReceivedCallback( boost::bind(onInputEditorFocusReceived, _1, this) );  	mInputEditor->setFocusLostCallback( boost::bind(onInputEditorFocusLost, _1, this) );  	mInputEditor->setKeystrokeCallback( onInputEditorKeystroke, this ); @@ -346,7 +345,7 @@ BOOL LLIMFloater::postBuild()  	mInputEditor->setPassDelete( TRUE );  	childSetCommitCallback("chat_editor", onSendMsg, this); -	 +  	mChatHistory = getChild<LLChatHistory>("chat_history");  	setDocked(true); @@ -355,19 +354,19 @@ BOOL LLIMFloater::postBuild()  	// Disable input editor if session cannot accept text  	LLIMModel::LLIMSession* im_session = -		LLIMModel::instance().findIMSession(mSessionID); -	if( im_session && !im_session->mTextIMPossible ) +			LLIMModel::instance().findIMSession(mSessionID); +	if ( im_session && !im_session->mTextIMPossible )  	{  		mInputEditor->setEnabled(FALSE);  		mInputEditor->setLabel(LLTrans::getString("IM_unavailable_text_label"));  	} -	if ( im_session && im_session->isP2PSessionType()) +	if (im_session && im_session->isP2PSessionType())  	{  		// look up display name for window title  		LLAvatarNameCache::get(im_session->mOtherParticipantID, -							   boost::bind(&LLIMFloater::onAvatarNameCache, -										   this, _1, _2)); +				boost::bind(&LLIMFloater::onAvatarNameCache, +						this, _1, _2));  	}  	else  	{ @@ -382,7 +381,7 @@ BOOL LLIMFloater::postBuild()  	//*TODO if session is not initialized yet, add some sort of a warning message like "starting session...blablabla"  	//see LLFloaterIMPanel for how it is done (IB) -	if(isChatMultiTab()) +	if (isChatMultiTab())  	{  		return LLFloater::postBuild();  	} @@ -476,14 +475,14 @@ void LLIMFloater::onVoiceChannelStateChanged(  }  void LLIMFloater::updateSessionName(const std::string& ui_title, -									const std::string& ui_label) +		const std::string& ui_label)  {  	mInputEditor->setLabel(LLTrans::getString("IM_to_label") + " " + ui_label); -	setTitle(ui_title);	 +	setTitle(ui_title);  }  void LLIMFloater::onAvatarNameCache(const LLUUID& agent_id, -									const LLAvatarName& av_name) +		const LLAvatarName& av_name)  {  	// Use display name only for labels, as the extended name will be in the  	// floater title @@ -498,7 +497,7 @@ void LLIMFloater::draw()  	if ( mMeTyping )  	{  		// Time out if user hasn't typed for a while. -		if ( mTypingTimeoutTimer.getElapsedTimeF32() > LLAgent::TYPING_TIMEOUT_SECS ) +		if (mTypingTimeoutTimer.getElapsedTimeF32() > LLAgent::TYPING_TIMEOUT_SECS)  		{  			setTyping(false);  		} @@ -510,7 +509,7 @@ void LLIMFloater::draw()  // static  void* LLIMFloater::createPanelGroupControl(void* userdata)  { -	LLIMFloater *self = (LLIMFloater*)userdata; +	LLIMFloater *self = (LLIMFloater*) userdata;  	self->mControlPanel = new LLPanelGroupControlPanel(self->mSessionID);  	self->mControlPanel->setXMLFilename("panel_group_control_panel.xml");  	return self->mControlPanel; @@ -519,7 +518,7 @@ void* LLIMFloater::createPanelGroupControl(void* userdata)  // static  void* LLIMFloater::createPanelAdHocControl(void* userdata)  { -	LLIMFloater *self = (LLIMFloater*)userdata; +	LLIMFloater *self = (LLIMFloater*) userdata;  	self->mControlPanel = new LLPanelAdHocControlPanel(self->mSessionID);  	self->mControlPanel->setXMLFilename("panel_adhoc_control_panel.xml");  	return self->mControlPanel; @@ -554,14 +553,15 @@ LLIMFloater* LLIMFloater::show(const LLUUID& session_id)  {  	closeHiddenIMToasts(); -	if (!gIMMgr->hasSession(session_id)) return NULL; +	if (!gIMMgr->hasSession(session_id)) +		return NULL; -	if(!isChatMultiTab()) +	if (!isChatMultiTab())  	{  		//hide all  		LLFloaterReg::const_instance_list_t& inst_list = LLFloaterReg::getFloaterList("impanel");  		for (LLFloaterReg::const_instance_list_t::const_iterator iter = inst_list.begin(); -			 iter != inst_list.end(); ++iter) +				iter != inst_list.end(); ++iter)  		{  			LLIMFloater* floater = dynamic_cast<LLIMFloater*>(*iter);  			if (floater && floater->isDocked()) @@ -574,9 +574,10 @@ LLIMFloater* LLIMFloater::show(const LLUUID& session_id)  	bool exist = findInstance(session_id);  	LLIMFloater* floater = getInstance(session_id); -	if (!floater) return NULL; +	if (!floater) +		return NULL; -	if(isChatMultiTab()) +	if (isChatMultiTab())  	{  		LLIMFloaterContainer* floater_container = LLIMFloaterContainer::getInstance(); @@ -586,7 +587,7 @@ LLIMFloater* LLIMFloater::show(const LLUUID& session_id)  			//		LLTabContainer::eInsertionPoint i_pt = user_initiated ? LLTabContainer::RIGHT_OF_CURRENT : LLTabContainer::END;  			// TODO: mantipov: use LLTabContainer::RIGHT_OF_CURRENT if it exists  			LLTabContainer::eInsertionPoint i_pt = LLTabContainer::END; -			 +  			if (floater_container)  			{  				floater_container->addFloater(floater, TRUE, i_pt); @@ -629,16 +630,16 @@ void LLIMFloater::setDocked(bool docked, bool pop_on_undock)  {  	// update notification channel state  	LLNotificationsUI::LLScreenChannel* channel = static_cast<LLNotificationsUI::LLScreenChannel*> -		(LLNotificationsUI::LLChannelManager::getInstance()-> -											findChannelByID(LLUUID(gSavedSettings.getString("NotificationChannelUUID")))); -	 -	if(!isChatMultiTab()) +	    (LLNotificationsUI::LLChannelManager::getInstance()-> +	    		findChannelByID(LLUUID(gSavedSettings.getString("NotificationChannelUUID")))); + +	if (!isChatMultiTab())  	{  		LLTransientDockableFloater::setDocked(docked, pop_on_undock);  	}  	// update notification channel state -	if(channel) +	if (channel)  	{  		channel->updateShowToastsState();  		channel->redrawToasts(); @@ -648,12 +649,12 @@ void LLIMFloater::setDocked(bool docked, bool pop_on_undock)  void LLIMFloater::setVisible(BOOL visible)  {  	LLNotificationsUI::LLScreenChannel* channel = static_cast<LLNotificationsUI::LLScreenChannel*> -		(LLNotificationsUI::LLChannelManager::getInstance()-> -											findChannelByID(LLUUID(gSavedSettings.getString("NotificationChannelUUID")))); +	    (LLNotificationsUI::LLChannelManager::getInstance()-> +	    		findChannelByID(LLUUID(gSavedSettings.getString("NotificationChannelUUID"))));  	LLTransientDockableFloater::setVisible(visible);  	// update notification channel state -	if(channel) +	if (channel)  	{  		channel->updateShowToastsState();  		channel->redrawToasts(); @@ -674,10 +675,10 @@ void LLIMFloater::setVisible(BOOL visible)  		}  	} -	if(!visible) +	if (!visible)  	{  		LLIMChiclet* chiclet = LLChicletBar::getInstance()->getChicletPanel()->findChiclet<LLIMChiclet>(mSessionID); -		if(chiclet) +		if (chiclet)  		{  			chiclet->setToggleState(false);  		} @@ -686,13 +687,14 @@ void LLIMFloater::setVisible(BOOL visible)  BOOL LLIMFloater::getVisible()  { -	if(isChatMultiTab()) +	if (isChatMultiTab())  	{ -		LLIMFloaterContainer* im_container = LLIMFloaterContainer::getInstance(); -		 +		LLIMFloaterContainer* im_container = +				LLIMFloaterContainer::getInstance(); +  		// Treat inactive floater as invisible.  		bool is_active = im_container->getActiveFloater() == this; -	 +  		//torn off floater is always inactive  		if (!is_active && getHost() != im_container)  		{ @@ -700,7 +702,8 @@ BOOL LLIMFloater::getVisible()  		}  		// getVisible() returns TRUE when Tabbed IM window is minimized. -		return is_active && !im_container->isMinimized() && im_container->getVisible(); +		return is_active && !im_container->isMinimized() +				&& im_container->getVisible();  	}  	else  	{ @@ -711,9 +714,10 @@ BOOL LLIMFloater::getVisible()  //static  bool LLIMFloater::toggle(const LLUUID& session_id)  { -	if(!isChatMultiTab()) +	if (!isChatMultiTab())  	{ -		LLIMFloater* floater = LLFloaterReg::findTypedInstance<LLIMFloater>("impanel", session_id); +		LLIMFloater* floater = LLFloaterReg::findTypedInstance<LLIMFloater>( +				"impanel", session_id);  		if (floater && floater->getVisible() && floater->hasFocus())  		{  			// clicking on chiclet to close floater just hides it to maintain existing @@ -721,7 +725,7 @@ bool LLIMFloater::toggle(const LLUUID& session_id)  			floater->setVisible(false);  			return false;  		} -		else if(floater && (!floater->isDocked() || floater->getVisible() && !floater->hasFocus())) +		else if (floater && (!floater->isDocked() || floater->getVisible() && !floater->hasFocus()))  		{  			floater->setVisible(TRUE);  			floater->setFocus(TRUE); @@ -763,16 +767,15 @@ void LLIMFloater::sessionInitReplyReceived(const LLUUID& im_session_id)  	//*TODO here we should remove "starting session..." warning message if we added it in postBuild() (IB) -  	//need to send delayed messaged collected while waiting for session initialization -	if (!mQueuedMsgsForInit.size()) return; +	if (!mQueuedMsgsForInit.size()) +		return;  	LLSD::array_iterator iter; -	for ( iter = mQueuedMsgsForInit.beginArray(); -		iter != mQueuedMsgsForInit.endArray(); -		++iter) +	for (iter = mQueuedMsgsForInit.beginArray(); +			iter != mQueuedMsgsForInit.endArray(); ++iter)  	{  		LLIMModel::sendMessage(iter->asString(), mSessionID, -			mOtherParticipantUUID, mDialog); +				mOtherParticipantUUID, mDialog);  	}  } @@ -785,11 +788,11 @@ void LLIMFloater::updateMessages()  	// we shouldn't reset unread message counters if IM floater doesn't have focus  	if (hasFocus())  	{ -		LLIMModel::instance().getMessages(mSessionID, messages, mLastMessageIndex+1); +		LLIMModel::instance().getMessages(mSessionID, messages, mLastMessageIndex + 1);  	}  	else  	{ -		LLIMModel::instance().getMessagesSilently(mSessionID, messages, mLastMessageIndex+1); +		LLIMModel::instance().getMessagesSilently(mSessionID, messages, mLastMessageIndex + 1);  	}  	if (messages.size()) @@ -798,8 +801,7 @@ void LLIMFloater::updateMessages()  		LLSD chat_args;  		chat_args["use_plain_text_chat_history"] = use_plain_text_chat_history;  		chat_args["show_time"] = gSavedSettings.getBOOL("IMShowTime"); -		chat_args["show_names_for_p2p_conv"] = -				(!is_p2p_chat) || gSavedSettings.getBOOL("IMShowNamesForP2PConv"); +		chat_args["show_names_for_p2p_conv"] = (!is_p2p_chat) || gSavedSettings.getBOOL("IMShowNamesForP2PConv");  		std::ostringstream message;  		std::list<LLSD>::const_reverse_iterator iter = messages.rbegin(); @@ -830,8 +832,8 @@ void LLIMFloater::updateMessages()  				{  					// remove embedded notification from channel  					LLNotificationsUI::LLScreenChannel* channel = static_cast<LLNotificationsUI::LLScreenChannel*> -							(LLNotificationsUI::LLChannelManager::getInstance()-> -																findChannelByID(LLUUID(gSavedSettings.getString("NotificationChannelUUID")))); +					    (LLNotificationsUI::LLChannelManager::getInstance()-> +					    		findChannelByID(LLUUID(gSavedSettings.getString("NotificationChannelUUID"))));  					if (getVisible())  					{  						// toast will be automatically closed since it is not storable toast @@ -849,7 +851,7 @@ void LLIMFloater::updateMessages()  			{  				chat.mText = message;  			} -			 +  			mChatHistory->appendMessage(chat, chat_args);  			mLastMessageIndex = msg["index"].asInteger(); @@ -857,16 +859,16 @@ void LLIMFloater::updateMessages()  			if (chat.mNotifId.notNull() && LLNotificationsUtil::find(chat.mNotifId) != NULL)  			{  				if (++iter == iter_end) -				{ -					break; -				} -				else -				{ -					mLastMessageIndex++; -				} -			} -		} -	} +			    { +				    break; +			    } +			    else +			    { +				    mLastMessageIndex++; +			    } +		    } +	    } +    }  }  void LLIMFloater::reloadMessages() @@ -877,15 +879,15 @@ void LLIMFloater::reloadMessages()  }  // static -void LLIMFloater::onInputEditorFocusReceived( LLFocusableElement* caller, void* userdata ) +void LLIMFloater::onInputEditorFocusReceived(LLFocusableElement* caller, void* userdata)  { -	LLIMFloater* self= (LLIMFloater*) userdata; +	LLIMFloater* self = (LLIMFloater*) userdata;  	// Allow enabling the LLIMFloater input editor only if session can accept text  	LLIMModel::LLIMSession* im_session = -		LLIMModel::instance().findIMSession(self->mSessionID); +			LLIMModel::instance().findIMSession(self->mSessionID);  	//TODO: While disabled lllineeditor can receive focus we need to check if it is enabled (EK) -	if( im_session && im_session->mTextIMPossible && self->mInputEditor->getEnabled()) +	if (im_session && im_session->mTextIMPossible && self->mInputEditor->getEnabled())  	{  		//in disconnected state IM input editor should be disabled  		self->mInputEditor->setEnabled(!gDisconnected); @@ -902,7 +904,7 @@ void LLIMFloater::onInputEditorFocusLost(LLFocusableElement* caller, void* userd  // static  void LLIMFloater::onInputEditorKeystroke(LLLineEditor* caller, void* userdata)  { -	LLIMFloater* self = (LLIMFloater*)userdata; +	LLIMFloater* self = (LLIMFloater*) userdata;  	std::string text = self->mInputEditor->getText();  	if (!text.empty())  	{ @@ -917,13 +919,13 @@ void LLIMFloater::onInputEditorKeystroke(LLLineEditor* caller, void* userdata)  void LLIMFloater::setTyping(bool typing)  { -	if ( typing ) +	if (typing)  	{  		// Started or proceeded typing, reset the typing timeout timer  		mTypingTimeoutTimer.reset();  	} -	if ( mMeTyping != typing ) +	if (mMeTyping != typing)  	{  		// Typing state is changed  		mMeTyping = typing; @@ -935,21 +937,23 @@ void LLIMFloater::setTyping(bool typing)  	// Don't want to send typing indicators to multiple people, potentially too  	// much network traffic. Only send in person-to-person IMs. -	if ( mShouldSendTypingState && mDialog == IM_NOTHING_SPECIAL ) +	if (mShouldSendTypingState && mDialog == IM_NOTHING_SPECIAL)  	{ -		if ( mMeTyping ) +		if (mMeTyping)  		{ -			if ( mTypingTimer.getElapsedTimeF32() > 1.f ) +			if (mTypingTimer.getElapsedTimeF32() > 1.f)  			{  				// Still typing, send 'start typing' notification -				LLIMModel::instance().sendTypingState(mSessionID, mOtherParticipantUUID, TRUE); +				LLIMModel::instance().sendTypingState(mSessionID, +						mOtherParticipantUUID, TRUE);  				mShouldSendTypingState = false;  			}  		}  		else  		{  			// Send 'stop typing' notification immediately -			LLIMModel::instance().sendTypingState(mSessionID, mOtherParticipantUUID, FALSE); +			LLIMModel::instance().sendTypingState(mSessionID, +					mOtherParticipantUUID, FALSE);  			mShouldSendTypingState = false;  		}  	} @@ -962,7 +966,7 @@ void LLIMFloater::setTyping(bool typing)  void LLIMFloater::processIMTyping(const LLIMInfo* im_info, BOOL typing)  { -	if ( typing ) +	if (typing)  	{  		// other user started typing  		addTypingIndicator(im_info); @@ -976,9 +980,10 @@ void LLIMFloater::processIMTyping(const LLIMInfo* im_info, BOOL typing)  void LLIMFloater::processAgentListUpdates(const LLSD& body)  { -	if ( !body.isMap() ) return; +	if (!body.isMap()) +		return; -	if ( body.has("agent_updates") && body["agent_updates"].isMap() ) +	if (body.has("agent_updates") && body["agent_updates"].isMap())  	{  		LLSD agent_data = body["agent_updates"].get(gAgentID.asString());  		if (agent_data.isMap() && agent_data.has("info")) @@ -987,7 +992,7 @@ void LLIMFloater::processAgentListUpdates(const LLSD& body)  			if (agent_info.has("mutes"))  			{ -				BOOL moderator_muted_text = agent_info["mutes"]["text"].asBoolean();  +				BOOL moderator_muted_text = agent_info["mutes"]["text"].asBoolean();  				mInputEditor->setEnabled(!moderator_muted_text);  				std::string label;  				if (moderator_muted_text) @@ -1008,7 +1013,7 @@ void LLIMFloater::processChatHistoryStyleUpdate(const LLSD& newvalue)  	LLFontGL* font = LLViewerChat::getChatFont();  	LLFloaterReg::const_instance_list_t& inst_list = LLFloaterReg::getFloaterList("impanel");  	for (LLFloaterReg::const_instance_list_t::const_iterator iter = inst_list.begin(); -		 iter != inst_list.end(); ++iter) +			iter != inst_list.end(); ++iter)  	{  		LLIMFloater* floater = dynamic_cast<LLIMFloater*>(*iter);  		if (floater) @@ -1022,15 +1027,16 @@ void LLIMFloater::processChatHistoryStyleUpdate(const LLSD& newvalue)  void LLIMFloater::processSessionUpdate(const LLSD& session_update)  {  	// *TODO : verify following code when moderated mode will be implemented -	if ( false && session_update.has("moderated_mode") && -		 session_update["moderated_mode"].has("voice") ) +	if (false && session_update.has("moderated_mode") && +			session_update["moderated_mode"].has("voice"))  	{  		BOOL voice_moderated = session_update["moderated_mode"]["voice"];  		const std::string session_label = LLIMModel::instance().getName(mSessionID);  		if (voice_moderated)  		{ -			setTitle(session_label + std::string(" ") + LLTrans::getString("IM_moderated_chat_label")); +			setTitle(session_label + std::string(" ") +							+ LLTrans::getString("IM_moderated_chat_label"));  		}  		else  		{ @@ -1044,15 +1050,14 @@ void LLIMFloater::processSessionUpdate(const LLSD& session_update)  }  BOOL LLIMFloater::handleDragAndDrop(S32 x, S32 y, MASK mask, -						   BOOL drop, EDragAndDropType cargo_type, -						   void *cargo_data, EAcceptance *accept, -						   std::string& tooltip_msg) +		BOOL drop, EDragAndDropType cargo_type, +		void *cargo_data, EAcceptance *accept, +		std::string& tooltip_msg)  { -  	if (mDialog == IM_NOTHING_SPECIAL)  	{  		LLToolDragAndDrop::handleGiveDragAndDrop(mOtherParticipantUUID, mSessionID, drop, -												 cargo_type, cargo_data, accept); +				cargo_type, cargo_data, accept);  	}  	// handle case for dropping calling cards (and folders of calling cards) onto invitation panel for invites @@ -1062,14 +1067,14 @@ BOOL LLIMFloater::handleDragAndDrop(S32 x, S32 y, MASK mask,  		if (cargo_type == DAD_CALLINGCARD)  		{ -			if (dropCallingCard((LLInventoryItem*)cargo_data, drop)) +			if (dropCallingCard((LLInventoryItem*) cargo_data, drop))  			{  				*accept = ACCEPT_YES_MULTI;  			}  		}  		else if (cargo_type == DAD_CATEGORY)  		{ -			if (dropCategory((LLInventoryCategory*)cargo_data, drop)) +			if (dropCategory((LLInventoryCategory*) cargo_data, drop))  			{  				*accept = ACCEPT_YES_MULTI;  			} @@ -1081,9 +1086,9 @@ BOOL LLIMFloater::handleDragAndDrop(S32 x, S32 y, MASK mask,  BOOL LLIMFloater::dropCallingCard(LLInventoryItem* item, BOOL drop)  {  	BOOL rv = isInviteAllowed(); -	if(rv && item && item->getCreatorUUID().notNull()) +	if (rv && item && item->getCreatorUUID().notNull())  	{ -		if(drop) +		if (drop)  		{  			uuid_vec_t ids;  			ids.push_back(item->getCreatorUUID()); @@ -1101,26 +1106,26 @@ BOOL LLIMFloater::dropCallingCard(LLInventoryItem* item, BOOL drop)  BOOL LLIMFloater::dropCategory(LLInventoryCategory* category, BOOL drop)  {  	BOOL rv = isInviteAllowed(); -	if(rv && category) +	if (rv && category)  	{  		LLInventoryModel::cat_array_t cats;  		LLInventoryModel::item_array_t items;  		LLUniqueBuddyCollector buddies;  		gInventory.collectDescendentsIf(category->getUUID(), -										cats, -										items, -										LLInventoryModel::EXCLUDE_TRASH, -										buddies); +				cats, +				items, +				LLInventoryModel::EXCLUDE_TRASH, +				buddies);  		S32 count = items.count(); -		if(count == 0) +		if (count == 0)  		{  			rv = FALSE;  		} -		else if(drop) +		else if (drop)  		{  			uuid_vec_t ids;  			ids.reserve(count); -			for(S32 i = 0; i < count; ++i) +			for (S32 i = 0; i < count; ++i)  			{  				ids.push_back(items.get(i)->getCreatorUUID());  			} @@ -1132,12 +1137,11 @@ BOOL LLIMFloater::dropCategory(LLInventoryCategory* category, BOOL drop)  BOOL LLIMFloater::isInviteAllowed() const  { - -	return ( (IM_SESSION_CONFERENCE_START == mDialog) -			 || (IM_SESSION_INVITE == mDialog) ); +	return ((IM_SESSION_CONFERENCE_START == mDialog) +			|| (IM_SESSION_INVITE == mDialog));  } -class LLSessionInviteResponder : public LLHTTPClient::Responder +class LLSessionInviteResponder: public LLHTTPClient::Responder  {  public:  	LLSessionInviteResponder(const LLUUID& session_id) @@ -1165,7 +1169,7 @@ BOOL LLIMFloater::inviteToSession(const uuid_vec_t& ids)  	S32 count = ids.size(); -	if( isInviteAllowed() && (count > 0) ) +	if (isInviteAllowed() && (count > 0))  	{  		llinfos << "LLIMFloater::inviteToSession() - inviting participants" << llendl; @@ -1182,10 +1186,9 @@ BOOL LLIMFloater::inviteToSession(const uuid_vec_t& ids)  		data["method"] = "invite";  		data["session-id"] = mSessionID;  		LLHTTPClient::post( -			url, -			data, -			new LLSessionInviteResponder( -					mSessionID)); +				url, +				data, +				new LLSessionInviteResponder(mSessionID));  	}  	else  	{ @@ -1202,17 +1205,17 @@ BOOL LLIMFloater::inviteToSession(const uuid_vec_t& ids)  void LLIMFloater::addTypingIndicator(const LLIMInfo* im_info)  {  	// We may have lost a "stop-typing" packet, don't add it twice -	if ( im_info && !mOtherTyping ) +	if (im_info && !mOtherTyping)  	{  		mOtherTyping = true;  		// Save and set new title  		mSavedTitle = getTitle(); -		setTitle (mTypingStart); +		setTitle(mTypingStart);  		// Update speaker  		LLIMSpeakerMgr* speaker_mgr = LLIMModel::getInstance()->getSpeakerManager(mSessionID); -		if ( speaker_mgr ) +		if (speaker_mgr)  		{  			speaker_mgr->setSpeakerTyping(im_info->mFromID, TRUE);  		} @@ -1221,18 +1224,18 @@ void LLIMFloater::addTypingIndicator(const LLIMInfo* im_info)  void LLIMFloater::removeTypingIndicator(const LLIMInfo* im_info)  { -	if ( mOtherTyping ) +	if (mOtherTyping)  	{  		mOtherTyping = false;  		// Revert the title to saved one  		setTitle(mSavedTitle); -		if ( im_info ) +		if (im_info)  		{  			// Update speaker  			LLIMSpeakerMgr* speaker_mgr = LLIMModel::getInstance()->getSpeakerManager(mSessionID); -			if ( speaker_mgr ) +			if (speaker_mgr)  			{  				speaker_mgr->setSpeakerTyping(im_info->mFromID, FALSE);  			} @@ -1253,7 +1256,8 @@ void LLIMFloater::closeHiddenIMToasts()  		}  	}; -	LLNotificationsUI::LLScreenChannel* channel = LLNotificationsUI::LLChannelManager::getNotificationScreenChannel(); +	LLNotificationsUI::LLScreenChannel* channel = +			LLNotificationsUI::LLChannelManager::getNotificationScreenChannel();  	if (channel != NULL)  	{  		channel->closeHiddenToasts(IMToastMatcher()); @@ -1295,28 +1299,34 @@ void LLIMFloater::initIMFloater()  void LLIMFloater::sRemoveTypingIndicator(const LLSD& data)  {  	LLUUID session_id = data["session_id"]; -	if (session_id.isNull()) return; +	if (session_id.isNull()) +		return;  	LLUUID from_id = data["from_id"]; -	if (gAgentID == from_id || LLUUID::null == from_id) return; +	if (gAgentID == from_id || LLUUID::null == from_id) +		return;  	LLIMFloater* floater = LLIMFloater::findInstance(session_id); -	if (!floater) return; +	if (!floater) +		return; -	if (IM_NOTHING_SPECIAL != floater->mDialog) return; +	if (IM_NOTHING_SPECIAL != floater->mDialog) +		return;  	floater->removeTypingIndicator();  } -void LLIMFloater::onIMChicletCreated( const LLUUID& session_id ) +void LLIMFloater::onIMChicletCreated(const LLUUID& session_id)  {  	if (isChatMultiTab())  	{  		LLIMFloaterContainer* im_box = LLIMFloaterContainer::getInstance(); -		if (!im_box) return; +		if (!im_box) +			return; -		if (LLIMFloater::findInstance(session_id)) return; +		if (LLIMFloater::findInstance(session_id)) +			return;  		LLIMFloater* new_tab = LLIMFloater::getInstance(session_id); @@ -1325,11 +1335,11 @@ void LLIMFloater::onIMChicletCreated( const LLUUID& session_id )  } -void	LLIMFloater::onClickCloseBtn() +void LLIMFloater::onClickCloseBtn()  {  	LLIMModel::LLIMSession* session = LLIMModel::instance().findIMSession( -				mSessionID); +			mSessionID);  	if (session == NULL)  	{ @@ -1342,7 +1352,8 @@ void	LLIMFloater::onClickCloseBtn()  	LLVoiceChannel* voice_channel = LLIMModel::getInstance()->getVoiceChannel(mSessionID); -	if (is_call_with_chat && voice_channel != NULL && voice_channel->isActive()) +	if (is_call_with_chat && voice_channel != NULL +			&& voice_channel->isActive())  	{  		LLSD payload;  		payload["session_id"] = mSessionID; diff --git a/indra/newview/llimfloater.h b/indra/newview/llimfloater.h index 40b3fff8f4..60b392952f 100644 --- a/indra/newview/llimfloater.h +++ b/indra/newview/llimfloater.h @@ -84,7 +84,7 @@ public:  	// get new messages from LLIMModel  	void updateMessages();  	void reloadMessages(); -	static void onSendMsg( LLUICtrl*, void*); +	static void onSendMsg(LLUICtrl*, void*);  	void sendMsg();  	// callback for LLIMModel on new messages @@ -111,9 +111,9 @@ public:  	static void processChatHistoryStyleUpdate(const LLSD& newvalue);  	BOOL handleDragAndDrop(S32 x, S32 y, MASK mask, -							   BOOL drop, EDragAndDropType cargo_type, -							   void *cargo_data, EAcceptance *accept, -							   std::string& tooltip_msg); +			BOOL drop, EDragAndDropType cargo_type, +			void *cargo_data, EAcceptance *accept, +			std::string& tooltip_msg);  	/**  	 * Returns true if chat is displayed in multi tabbed floater @@ -131,10 +131,8 @@ public:  	virtual LLTransientFloaterMgr::ETransientGroup getGroup() { return LLTransientFloaterMgr::IM; }  protected: -	/* virtual */ -	void	onClickCloseBtn(); - -	/*virtual*/ void	updateTitleButtons(); +	/* virtual */ void onClickCloseBtn(); +	/* virtual */ void updateTitleButtons();  private:  	// process focus events to set a currently active session @@ -143,24 +141,23 @@ private:  	// Update the window title, input field help text, etc.  	void updateSessionName(const std::string& ui_title, const std::string& ui_label); -	 +  	// For display name lookups for IM window titles  	void onAvatarNameCache(const LLUUID& agent_id, const LLAvatarName& av_name); -	 +  	BOOL dropCallingCard(LLInventoryItem* item, BOOL drop);  	BOOL dropCategory(LLInventoryCategory* category, BOOL drop);  	BOOL isInviteAllowed() const;  	BOOL inviteToSession(const uuid_vec_t& agent_ids); -	 -	static void		onInputEditorFocusReceived( LLFocusableElement* caller, void* userdata ); -	static void		onInputEditorFocusLost(LLFocusableElement* caller, void* userdata); -	static void		onInputEditorKeystroke(LLLineEditor* caller, void* userdata); -	void			setTyping(bool typing); -	void			onSlide(); -	static void*	createPanelIMControl(void* userdata); -	static void*	createPanelGroupControl(void* userdata); -	static void* 	createPanelAdHocControl(void* userdata); + +	static void onInputEditorFocusReceived( LLFocusableElement* caller,void* userdata ); +	static void onInputEditorFocusLost(LLFocusableElement* caller, void* userdata); +	static void onInputEditorKeystroke(LLLineEditor* caller, void* userdata); +	void setTyping(bool typing); +	void onSlide(); +	static void* createPanelGroupControl(void* userdata); +	static void* createPanelAdHocControl(void* userdata);  	bool onIMCompactExpandedMenuItemCheck(const LLSD& userdata);  	bool onIMShowModesMenuItemCheck(const LLSD& userdata);  | 
