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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llavatariconctrl.h
  3.  * @brief LLAvatarIconCtrl base class
  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. #ifndef LL_LLAVATARICONCTRL_H
  33. #define LL_LLAVATARICONCTRL_H
  34. #include "lliconctrl.h"
  35. #include "llavatarpropertiesprocessor.h"
  36. #include "llviewermenu.h"
  37. class LLAvatarIconIDCache: public LLSingleton<LLAvatarIconIDCache>
  38. {
  39. public:
  40. struct LLAvatarIconIDCacheItem
  41. {
  42. LLUUID icon_id;
  43. LLDate cached_time;
  44. bool expired();
  45. };
  46. LLAvatarIconIDCache():mFilename("avatar_icons_cache.txt")
  47. {
  48. }
  49. void load ();
  50. void save ();
  51. LLUUID* get (const LLUUID& id);
  52. void add (const LLUUID& avatar_id,const LLUUID& icon_id);
  53. void remove (const LLUUID& id);
  54. protected:
  55. std::string mFilename;
  56. std::map<LLUUID,LLAvatarIconIDCacheItem> mCache;//we cache only LLUID and time
  57. };
  58. class LLAvatarIconCtrl
  59. : public LLIconCtrl, public LLAvatarPropertiesObserver
  60. {
  61. public:
  62. struct Params : public LLInitParam::Block<Params, LLIconCtrl::Params>
  63. {
  64. Optional <LLUUID> avatar_id;
  65. Optional <bool> draw_tooltip;
  66. Optional <std::string> default_icon_name;
  67. Params();
  68. };
  69. protected:
  70. LLAvatarIconCtrl(const Params&);
  71. friend class LLUICtrlFactory;
  72. public:
  73. virtual ~LLAvatarIconCtrl();
  74. virtual void setValue(const LLSD& value);
  75. // LLAvatarPropertiesProcessor observer trigger
  76. virtual void processProperties(void* data, EAvatarProcessorType type);
  77. void nameUpdatedCallback(
  78. const LLUUID& id,
  79. const std::string& first,
  80. const std::string& last,
  81. BOOL is_group);
  82. const LLUUID& getAvatarId() const { return mAvatarId; }
  83. const std::string& getFirstName() const { return mFirstName; }
  84. const std::string& getLastName() const { return mLastName; }
  85. void setDrawTooltip(bool value) { mDrawTooltip = value;}
  86. protected:
  87. LLUUID mAvatarId;
  88. std::string mFirstName;
  89. std::string mLastName;
  90. bool mDrawTooltip;
  91. std::string mDefaultIconName;
  92. bool updateFromCache();
  93. };
  94. #endif  // LL_LLAVATARICONCTRL_H