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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llpanelavatartag.cpp
  3.  * @brief Avatar tag panel
  4.  *
  5.  * $LicenseInfo:firstyear=2009&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2009-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 "llpanelavatartag.h"
  34. #include "lluictrlfactory.h"
  35. #include "llavatariconctrl.h"
  36. #include "lltextbox.h"
  37. LLPanelAvatarTag::LLPanelAvatarTag(const LLUUID& key, const std::string im_time)
  38. : LLPanel()
  39. , mAvatarId(LLUUID::null)
  40. // , mFadeTimer()
  41. {
  42. LLUICtrlFactory::getInstance()->buildPanel(this, "panel_avatar_tag.xml");
  43. setLeftButtonClickCallback(boost::bind(&LLPanelAvatarTag::onClick, this));
  44. setAvatarId(key);
  45. setTime(im_time);
  46. }
  47. LLPanelAvatarTag::~LLPanelAvatarTag()
  48. {
  49. // Name callbacks will be automatically disconnected since LLPanel is trackable
  50. }
  51. BOOL LLPanelAvatarTag::postBuild()
  52. {
  53. mIcon = getChild<LLAvatarIconCtrl>("avatar_tag_icon");
  54. mName = getChild<LLTextBox>("sender_tag_name");
  55. mTime = getChild<LLTextBox>("tag_time");
  56. return TRUE;
  57. }
  58. void LLPanelAvatarTag::draw()
  59. {
  60. }
  61. void LLPanelAvatarTag::setName(const std::string& name)
  62. {
  63. if (mName)
  64. mName->setText(name);
  65. }
  66. void LLPanelAvatarTag::setTime(const std::string& time)
  67. {
  68. if (mTime)
  69. mTime->setText(time);
  70. }
  71. void LLPanelAvatarTag::setAvatarId(const LLUUID& avatar_id)
  72. {
  73. mAvatarId = avatar_id;
  74. if (mIcon)
  75. {
  76. mIcon->setValue(avatar_id);
  77. }
  78. setName(std::string(mIcon->getFirstName()+ " "+ mIcon->getLastName()));
  79. }
  80. boost::signals2::connection LLPanelAvatarTag::setLeftButtonClickCallback(
  81.   const commit_callback_t& cb)
  82. {
  83. return setCommitCallback(cb);
  84. }
  85. BOOL LLPanelAvatarTag::handleMouseDown(S32 x, S32 y, MASK mask)
  86. {
  87. onCommit();
  88. return TRUE;
  89. }
  90. void LLPanelAvatarTag::onClick()
  91. {
  92. // Do the on click stuff.
  93. }