llnotificationtiphandler.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:6k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llnotificationtiphandler.cpp
  3.  * @brief Notification Handler Class for Notification Tips
  4.  *
  5.  * $LicenseInfo:firstyear=2000&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2000-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #include "llviewerprecompiledheaders.h" // must be first include
  33. #include "llfloaterreg.h"
  34. #include "llnearbychat.h"
  35. #include "llnotificationhandler.h"
  36. #include "llnotifications.h"
  37. #include "lltoastnotifypanel.h"
  38. #include "llviewercontrol.h"
  39. #include "llviewerwindow.h"
  40. using namespace LLNotificationsUI;
  41. class LLOnalineStatusToast : public LLToastPanel
  42. {
  43. public:
  44. struct Params
  45. {
  46. LLNotificationPtr notification;
  47. LLUUID avatar_id;
  48. std::string message;
  49. Params() {}
  50. };
  51. LLOnalineStatusToast(Params& p) : LLToastPanel(p.notification)
  52. {
  53. LLUICtrlFactory::getInstance()->buildPanel(this, "panel_online_status.xml");
  54. childSetValue("avatar_icon", p.avatar_id);
  55. childSetValue("message", p.message);
  56. if (p.notification->getPayload().has("respond_on_mousedown") 
  57. && p.notification->getPayload()["respond_on_mousedown"] )
  58. {
  59. setMouseDownCallback(boost::bind(&LLNotification::respond, p.notification, 
  60. p.notification->getResponseTemplate()));
  61. }
  62. // set line max count to 2 in case of a very long name
  63. snapToMessageHeight(getChild<LLTextBox>("message"), 2);
  64. }
  65. };
  66. //--------------------------------------------------------------------------
  67. LLTipHandler::LLTipHandler(e_notification_type type, const LLSD& id)
  68. {
  69. mType = type;
  70. // Getting a Channel for our notifications
  71. mChannel = LLChannelManager::getInstance()->createNotificationChannel();
  72. }
  73. //--------------------------------------------------------------------------
  74. LLTipHandler::~LLTipHandler()
  75. {
  76. }
  77. //--------------------------------------------------------------------------
  78. void LLTipHandler::initChannel()
  79. {
  80. S32 channel_right_bound = gViewerWindow->getWorldViewRectScaled().mRight - gSavedSettings.getS32("NotificationChannelRightMargin"); 
  81. S32 channel_width = gSavedSettings.getS32("NotifyBoxWidth");
  82. mChannel->init(channel_right_bound - channel_width, channel_right_bound);
  83. }
  84. //--------------------------------------------------------------------------
  85. bool LLTipHandler::processNotification(const LLSD& notify)
  86. {
  87. if(!mChannel)
  88. {
  89. return false;
  90. }
  91. LLNotificationPtr notification = LLNotifications::instance().find(notify["id"].asUUID());
  92. if(!notification)
  93. return false;
  94. // arrange a channel on a screen
  95. if(!mChannel->getVisible())
  96. {
  97. initChannel();
  98. }
  99. if(notify["sigtype"].asString() == "add" || notify["sigtype"].asString() == "change")
  100. {
  101. // archive message in nearby chat
  102. if (LLHandlerUtil::canLogToNearbyChat(notification))
  103. {
  104. LLHandlerUtil::logToNearbyChat(notification, CHAT_SOURCE_SYSTEM);
  105. // don't show toast if Nearby Chat is opened
  106. LLNearbyChat* nearby_chat = LLFloaterReg::getTypedInstance<
  107. LLNearbyChat>("nearby_chat", LLSD());
  108. if (nearby_chat->getVisible())
  109. {
  110. return true;
  111. }
  112. }
  113. const std::string name = notification->getSubstitutions()["NAME"];
  114. LLUUID from_id = notification->getPayload()["from_id"];
  115. if (LLHandlerUtil::canLogToIM(notification))
  116. {
  117. LLHandlerUtil::logToIM(IM_NOTHING_SPECIAL, name, name,
  118. notification->getMessage(), from_id, from_id);
  119. }
  120. if (LLHandlerUtil::canSpawnIMSession(notification))
  121. {
  122. LLHandlerUtil::spawnIMSession(name, from_id);
  123. }
  124. LLToastPanel* notify_box = NULL;
  125. if("FriendOffline" == notification->getName() || "FriendOnline" == notification->getName())
  126. {
  127. LLOnalineStatusToast::Params p;
  128. p.notification = notification;
  129. p.message = notification->getMessage();
  130. p.avatar_id = notification->getPayload()["FROM_ID"];
  131. notify_box = new LLOnalineStatusToast(p);
  132. }
  133. else
  134. {
  135. notify_box = new LLToastNotifyPanel(notification);
  136. }
  137. LLToast::Params p;
  138. p.notif_id = notification->getID();
  139. p.notification = notification;
  140. p.lifetime_secs = gSavedSettings.getS32("NotificationTipToastLifeTime");
  141. p.panel = notify_box;
  142. p.is_tip = true;
  143. p.can_be_stored = false;
  144. LLScreenChannel* channel = dynamic_cast<LLScreenChannel*>(mChannel);
  145. if(channel)
  146. channel->addToast(p);
  147. }
  148. else if (notify["sigtype"].asString() == "delete")
  149. {
  150. mChannel->killToastByNotificationID(notification->getID());
  151. }
  152. return true;
  153. }
  154. //--------------------------------------------------------------------------
  155. void LLTipHandler::onDeleteToast(LLToast* toast)
  156. {
  157. }
  158. //--------------------------------------------------------------------------