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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llnotificationscripthandler.cpp
  3.  * @brief Notification Handler Class for Simple Notifications and 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 "llnotificationhandler.h"
  34. #include "lltoastnotifypanel.h"
  35. #include "llviewercontrol.h"
  36. #include "llviewerwindow.h"
  37. #include "llnotificationmanager.h"
  38. #include "llnotifications.h"
  39. #include "llscriptfloater.h"
  40. using namespace LLNotificationsUI;
  41. static const std::string SCRIPT_DIALOG ("ScriptDialog");
  42. static const std::string SCRIPT_DIALOG_GROUP ("ScriptDialogGroup");
  43. static const std::string SCRIPT_LOAD_URL ("LoadWebPage");
  44. //--------------------------------------------------------------------------
  45. LLScriptHandler::LLScriptHandler(e_notification_type type, const LLSD& id)
  46. {
  47. mType = type;
  48. // Getting a Channel for our notifications
  49. mChannel = LLChannelManager::getInstance()->createNotificationChannel();
  50. mChannel->setControlHovering(true);
  51. LLScreenChannel* channel = dynamic_cast<LLScreenChannel*>(mChannel);
  52. if(channel)
  53. channel->setOnRejectToastCallback(boost::bind(&LLScriptHandler::onRejectToast, this, _1));
  54. }
  55. //--------------------------------------------------------------------------
  56. LLScriptHandler::~LLScriptHandler()
  57. {
  58. }
  59. //--------------------------------------------------------------------------
  60. void LLScriptHandler::initChannel()
  61. {
  62. S32 channel_right_bound = gViewerWindow->getWorldViewRectScaled().mRight - gSavedSettings.getS32("NotificationChannelRightMargin"); 
  63. S32 channel_width = gSavedSettings.getS32("NotifyBoxWidth");
  64. mChannel->init(channel_right_bound - channel_width, channel_right_bound);
  65. }
  66. //--------------------------------------------------------------------------
  67. bool LLScriptHandler::processNotification(const LLSD& notify)
  68. {
  69. if(!mChannel)
  70. {
  71. return false;
  72. }
  73. LLNotificationPtr notification = LLNotifications::instance().find(notify["id"].asUUID());
  74. if(!notification)
  75. return false;
  76. // arrange a channel on a screen
  77. if(!mChannel->getVisible())
  78. {
  79. initChannel();
  80. }
  81. if(notify["sigtype"].asString() == "add" || notify["sigtype"].asString() == "change")
  82. {
  83. if (LLHandlerUtil::canLogToIM(notification))
  84. {
  85. LLHandlerUtil::logToIMP2P(notification);
  86. }
  87. if(SCRIPT_DIALOG == notification->getName() || SCRIPT_DIALOG_GROUP == notification->getName() || SCRIPT_LOAD_URL == notification->getName())
  88. {
  89. LLScriptFloaterManager::getInstance()->onAddNotification(notification->getID());
  90. }
  91. else
  92. {
  93. LLToastNotifyPanel* notify_box = new LLToastNotifyPanel(notification);
  94. LLToast::Params p;
  95. p.notif_id = notification->getID();
  96. p.notification = notification;
  97. p.panel = notify_box;
  98. p.on_delete_toast = boost::bind(&LLScriptHandler::onDeleteToast, this, _1);
  99. LLScreenChannel* channel = dynamic_cast<LLScreenChannel*>(mChannel);
  100. if(channel)
  101. {
  102. channel->addToast(p);
  103. }
  104. // send a signal to the counter manager
  105. mNewNotificationSignal();
  106. }
  107. }
  108. else if (notify["sigtype"].asString() == "delete")
  109. {
  110. if(SCRIPT_DIALOG == notification->getName() || SCRIPT_DIALOG_GROUP == notification->getName() || SCRIPT_LOAD_URL == notification->getName())
  111. {
  112. LLScriptFloaterManager::getInstance()->onRemoveNotification(notification->getID());
  113. }
  114. else
  115. {
  116. mChannel->killToastByNotificationID(notification->getID());
  117. }
  118. }
  119. return true;
  120. }
  121. //--------------------------------------------------------------------------
  122. void LLScriptHandler::onDeleteToast(LLToast* toast)
  123. {
  124. // send a signal to the counter manager
  125. mDelNotificationSignal();
  126. // send a signal to a listener to let him perform some action
  127. // in this case listener is a SysWellWindow and it will remove a corresponding item from its list
  128. mNotificationIDSignal(toast->getNotificationID());
  129. LLNotificationPtr notification = LLNotifications::getInstance()->find(toast->getNotificationID());
  130. if( notification && 
  131. (SCRIPT_DIALOG == notification->getName() || SCRIPT_DIALOG_GROUP == notification->getName()) )
  132. {
  133. LLScriptFloaterManager::getInstance()->onRemoveNotification(notification->getID());
  134. }
  135. }
  136. //--------------------------------------------------------------------------
  137. void LLScriptHandler::onRejectToast(LLUUID& id)
  138. {
  139. LLNotificationPtr notification = LLNotifications::instance().find(id);
  140. if (notification
  141. && LLNotificationManager::getInstance()->getHandlerForNotification(
  142. notification->getType()) == this)
  143. {
  144. LLNotifications::instance().cancel(notification);
  145. }
  146. }
  147. //--------------------------------------------------------------------------