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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llfloatergroupinvite.cpp
  3.  * @brief Floater to invite new members into a group.
  4.  *
  5.  * $LicenseInfo:firstyear=2006&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2006-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"
  33. #include "llfloatergroupinvite.h"
  34. #include "llpanelgroupinvite.h"
  35. #include "lltrans.h"
  36. #include "lldraghandle.h"
  37. class LLFloaterGroupInvite::impl
  38. {
  39. public:
  40. impl(const LLUUID& group_id);
  41. ~impl();
  42. static void closeFloater(void* data);
  43. public:
  44. LLUUID mGroupID;
  45. LLPanelGroupInvite* mInvitePanelp;
  46. static std::map<LLUUID, LLFloaterGroupInvite*> sInstances;
  47. };
  48. //
  49. // Globals
  50. //
  51. std::map<LLUUID, LLFloaterGroupInvite*> LLFloaterGroupInvite::impl::sInstances;
  52. LLFloaterGroupInvite::impl::impl(const LLUUID& group_id) :
  53. mGroupID(group_id),
  54. mInvitePanelp(NULL)
  55. {
  56. }
  57. LLFloaterGroupInvite::impl::~impl()
  58. {
  59. }
  60. //static
  61. void LLFloaterGroupInvite::impl::closeFloater(void* data)
  62. {
  63. LLFloaterGroupInvite* floaterp = (LLFloaterGroupInvite*) data;
  64. if ( floaterp ) floaterp->closeFloater();
  65. }
  66. //-----------------------------------------------------------------------------
  67. // Implementation
  68. //-----------------------------------------------------------------------------
  69. LLFloaterGroupInvite::LLFloaterGroupInvite(const LLUUID& group_id)
  70. : LLFloater(group_id)
  71. {
  72. S32 floater_header_size = getHeaderHeight();
  73. LLRect contents;
  74. mImpl = new impl(group_id);
  75. mImpl->mInvitePanelp = new LLPanelGroupInvite(group_id);
  76. contents = mImpl->mInvitePanelp->getRect();
  77. contents.mTop -= floater_header_size;
  78. setTitle (mImpl->mInvitePanelp->getString("GroupInvitation"));
  79. mImpl->mInvitePanelp->setCloseCallback(impl::closeFloater, this);
  80. mImpl->mInvitePanelp->setRect(contents);
  81. addChild(mImpl->mInvitePanelp);
  82. }
  83. // virtual
  84. LLFloaterGroupInvite::~LLFloaterGroupInvite()
  85. {
  86. if (mImpl->mGroupID.notNull())
  87. {
  88. impl::sInstances.erase(mImpl->mGroupID);
  89. }
  90. delete mImpl->mInvitePanelp;
  91. delete mImpl;
  92. }
  93. // static
  94. void LLFloaterGroupInvite::showForGroup(const LLUUID& group_id, std::vector<LLUUID> *agent_ids)
  95. {
  96. const LLFloater::Params& floater_params = LLFloater::getDefaultParams();
  97. S32 floater_header_size = floater_params.header_height;
  98. LLRect contents;
  99. // Make sure group_id isn't null
  100. if (group_id.isNull())
  101. {
  102. llwarns << "LLFloaterGroupInvite::showForGroup with null group_id!" << llendl;
  103. return;
  104. }
  105. // If we don't have a floater for this group, create one.
  106. LLFloaterGroupInvite *fgi = get_if_there(impl::sInstances,
  107.  group_id,
  108.  (LLFloaterGroupInvite*)NULL);
  109. if (!fgi)
  110. {
  111. fgi = new LLFloaterGroupInvite(group_id);
  112. contents = fgi->mImpl->mInvitePanelp->getRect();
  113. contents.mTop += floater_header_size;
  114. fgi->setRect(contents);
  115. fgi->getDragHandle()->setRect(contents);
  116. fgi->getDragHandle()->setTitle(fgi->mImpl->mInvitePanelp->getString("GroupInvitation"));
  117. impl::sInstances[group_id] = fgi;
  118. fgi->mImpl->mInvitePanelp->clear();
  119. }
  120. if (agent_ids != NULL)
  121. {
  122. fgi->mImpl->mInvitePanelp->addUsers(*agent_ids);
  123. }
  124. fgi->center();
  125. fgi->openFloater();
  126. fgi->mImpl->mInvitePanelp->update();
  127. }