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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llnamebox.cpp
  3.  * @brief A text display widget
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-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 "llnamebox.h"
  34. #include "llerror.h"
  35. #include "llfontgl.h"
  36. #include "llui.h"
  37. #include "llviewercontrol.h"
  38. #include "lluuid.h"
  39. #include "llcachename.h"
  40. // statics
  41. std::set<LLNameBox*> LLNameBox::sInstances;
  42. static LLDefaultChildRegistry::Register<LLNameBox> r("name_box");
  43. LLNameBox::LLNameBox(const Params& p)
  44. : LLTextBox(p)
  45. {
  46. mNameID = LLUUID::null;
  47. mLink = p.link;
  48. mInitialValue = p.initial_value().asString();
  49. LLNameBox::sInstances.insert(this);
  50. setText(LLStringUtil::null);
  51. }
  52. LLNameBox::~LLNameBox()
  53. {
  54. LLNameBox::sInstances.erase(this);
  55. }
  56. void LLNameBox::setNameID(const LLUUID& name_id, BOOL is_group)
  57. {
  58. mNameID = name_id;
  59. std::string name;
  60. BOOL got_name = FALSE;
  61. if (!is_group)
  62. {
  63. got_name = gCacheName->getFullName(name_id, name);
  64. }
  65. else
  66. {
  67. got_name = gCacheName->getGroupName(name_id, name);
  68. }
  69. // Got the name already? Set it.
  70. // Otherwise it will be set later in refresh().
  71. if (got_name)
  72. setName(name, is_group);
  73. else
  74. setText(mInitialValue);
  75. }
  76. void LLNameBox::refresh(const LLUUID& id, const std::string& firstname,
  77. const std::string& lastname, BOOL is_group)
  78. {
  79. if (id == mNameID)
  80. {
  81. std::string name;
  82. if (!is_group)
  83. {
  84. name = firstname + " " + lastname;
  85. }
  86. else
  87. {
  88. name = firstname;
  89. }
  90. setName(name, is_group);
  91. }
  92. }
  93. void LLNameBox::refreshAll(const LLUUID& id, const std::string& firstname,
  94.    const std::string& lastname, BOOL is_group)
  95. {
  96. std::set<LLNameBox*>::iterator it;
  97. for (it = LLNameBox::sInstances.begin();
  98.  it != LLNameBox::sInstances.end();
  99.  ++it)
  100. {
  101. LLNameBox* box = *it;
  102. box->refresh(id, firstname, lastname, is_group);
  103. }
  104. }
  105. void LLNameBox::setName(const std::string& name, BOOL is_group)
  106. {
  107. if (mLink)
  108. {
  109. std::string url;
  110. if (is_group)
  111. url = "[secondlife:///app/group/" + LLURI::escape(name) + "/about " + name + "]";
  112. else
  113. url = "[secondlife:///app/agent/" + mNameID.asString() + "/about " + name + "]";
  114. setText(url);
  115. }
  116. else
  117. {
  118. setText(name);
  119. }
  120. }