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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llinspecttoast.cpp
  3.  * @brief Toast inspector implementation.
  4.  *
  5.  * $LicenseInfo:firstyear=2003&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2003-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 "llinspecttoast.h"
  34. #include "llinspect.h"
  35. #include "llfloaterreg.h"
  36. #include "llscreenchannel.h"
  37. #include "llchannelmanager.h"
  38. #include "lltransientfloatermgr.h"
  39. using namespace LLNotificationsUI;
  40. /**
  41.  * Represents inspectable toast .
  42.  */
  43. class LLInspectToast: public LLInspect
  44. {
  45. public:
  46. LLInspectToast(const LLSD& notification_idl);
  47. virtual ~LLInspectToast();
  48. /*virtual*/ void onOpen(const LLSD& notification_id);
  49. private:
  50. void onToastDestroy(LLToast * toast);
  51. private:
  52. LLPanel* mPanel;
  53. LLScreenChannel* mScreenChannel;
  54. };
  55. LLInspectToast::LLInspectToast(const LLSD& notification_id) :
  56. LLInspect(LLSD()), mPanel(NULL)
  57. {
  58. LLScreenChannelBase* channel = LLChannelManager::getInstance()->findChannelByID(
  59. LLUUID(gSavedSettings.getString("NotificationChannelUUID")));
  60. mScreenChannel = dynamic_cast<LLScreenChannel*>(channel);
  61. if(NULL == mScreenChannel)
  62. {
  63. llwarns << "Could not get requested screen channel." << llendl;
  64. return;
  65. }
  66. LLTransientFloaterMgr::getInstance()->addControlView(this);
  67. }
  68. LLInspectToast::~LLInspectToast()
  69. {
  70. LLTransientFloaterMgr::getInstance()->removeControlView(this);
  71. }
  72. void LLInspectToast::onOpen(const LLSD& notification_id)
  73. {
  74. LLInspect::onOpen(notification_id);
  75. LLToast* toast = mScreenChannel->getToastByNotificationID(notification_id);
  76. if (toast == NULL)
  77. {
  78. llwarns << "Could not get requested toast  from screen channel." << llendl;
  79. return;
  80. }
  81. toast->setOnToastDestroyedCallback(boost::bind(&LLInspectToast::onToastDestroy, this, _1));
  82. LLPanel * panel = toast->getPanel();
  83. panel->setVisible(TRUE);
  84. panel->setMouseOpaque(FALSE);
  85. if(mPanel != NULL && mPanel->getParent() == this)
  86. {
  87. removeChild(mPanel);
  88. }
  89. addChild(panel);
  90. panel->setFocus(TRUE);
  91. mPanel = panel;
  92. LLRect panel_rect;
  93. panel_rect = panel->getRect();
  94. reshape(panel_rect.getWidth(), panel_rect.getHeight());
  95. LLUI::positionViewNearMouse(this);
  96. }
  97. void LLInspectToast::onToastDestroy(LLToast * toast)
  98. {
  99. closeFloater(false);
  100. }
  101. void LLNotificationsUI::registerFloater()
  102. {
  103. LLFloaterReg::add("inspect_toast", "inspect_toast.xml",
  104. &LLFloaterReg::build<LLInspectToast>);
  105. }