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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llfloaterfriends.h
  3.  * @author Phoenix
  4.  * @date 2005-01-13
  5.  * @brief Declaration of class for displaying the local agent's friends.
  6.  *
  7.  * $LicenseInfo:firstyear=2005&license=viewergpl$
  8.  * 
  9.  * Copyright (c) 2005-2010, Linden Research, Inc.
  10.  * 
  11.  * Second Life Viewer Source Code
  12.  * The source code in this file ("Source Code") is provided by Linden Lab
  13.  * to you under the terms of the GNU General Public License, version 2.0
  14.  * ("GPL"), unless you have obtained a separate licensing agreement
  15.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  16.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  17.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  18.  * 
  19.  * There are special exceptions to the terms and conditions of the GPL as
  20.  * it is applied to this Source Code. View the full text of the exception
  21.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  22.  * online at
  23.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  24.  * 
  25.  * By copying, modifying or distributing this software, you acknowledge
  26.  * that you have read and understood your obligations described above,
  27.  * and agree to abide by those obligations.
  28.  * 
  29.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  30.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  31.  * COMPLETENESS OR PERFORMANCE.
  32.  * $/LicenseInfo$
  33.  */
  34. #ifndef LL_LLFLOATERFRIENDS_H
  35. #define LL_LLFLOATERFRIENDS_H
  36. #include "llpanel.h"
  37. #include "llstring.h"
  38. #include "lluuid.h"
  39. #include "lltimer.h"
  40. #include "llcallingcard.h"
  41. class LLFriendObserver;
  42. class LLRelationship;
  43. class LLScrollListItem;
  44. class LLScrollListCtrl;
  45. /** 
  46.  * @class LLPanelFriends
  47.  * @brief An instance of this class is used for displaying your friends
  48.  * and gives you quick access to all agents which a user relationship.
  49.  *
  50.  * @sa LLFloater
  51.  */
  52. class LLPanelFriends : public LLPanel, public LLEventTimer
  53. {
  54. public:
  55. LLPanelFriends();
  56. virtual ~LLPanelFriends();
  57. /** 
  58.  * @brief This method either creates or brings to the front the
  59.  * current instantiation of this floater. There is only once since
  60.  * you can currently only look at your local friends.
  61.  */
  62. virtual BOOL tick();
  63. /** 
  64.  * @brief This method is called in response to the LLAvatarTracker
  65.  * sending out a changed() message.
  66.  */
  67. void updateFriends(U32 changed_mask);
  68. virtual BOOL postBuild();
  69. // *HACK Made public to remove friends from LLAvatarIconCtrl context menu
  70. static bool handleRemove(const LLSD& notification, const LLSD& response);
  71. private:
  72. enum FRIENDS_COLUMN_ORDER
  73. {
  74. LIST_ONLINE_STATUS,
  75. LIST_FRIEND_NAME,
  76. LIST_VISIBLE_ONLINE,
  77. LIST_VISIBLE_MAP,
  78. LIST_EDIT_MINE,
  79. LIST_EDIT_THEIRS,
  80. LIST_FRIEND_UPDATE_GEN
  81. };
  82. // protected members
  83. typedef std::map<LLUUID, S32> rights_map_t;
  84. void refreshNames(U32 changed_mask);
  85. BOOL refreshNamesSync(const LLAvatarTracker::buddy_map_t & all_buddies);
  86. BOOL refreshNamesPresence(const LLAvatarTracker::buddy_map_t & all_buddies);
  87. void refreshUI();
  88. void refreshRightsChangeList();
  89. void applyRightsToFriends();
  90. BOOL addFriend(const LLUUID& agent_id);
  91. BOOL updateFriendItem(const LLUUID& agent_id, const LLRelationship* relationship);
  92. typedef enum 
  93. {
  94. GRANT,
  95. REVOKE
  96. } EGrantRevoke;
  97. void confirmModifyRights(rights_map_t& ids, EGrantRevoke command);
  98. void sendRightsGrant(rights_map_t& ids);
  99. // return empty vector if nothing is selected
  100. std::vector<LLUUID> getSelectedIDs();
  101. // callback methods
  102. static void onSelectName(LLUICtrl* ctrl, void* user_data);
  103. static bool callbackAddFriend(const LLSD& notification, const LLSD& response);
  104. static bool callbackAddFriendWithMessage(const LLSD& notification, const LLSD& response);
  105. static void onPickAvatar(const std::vector<std::string>& names, const std::vector<LLUUID>& ids);
  106. static void onMaximumSelect();
  107. static void onClickIM(void* user_data);
  108. static void onClickProfile(void* user_data);
  109. static void onClickAddFriend(void* user_data);
  110. static void onClickRemove(void* user_data);
  111. static void onClickOfferTeleport(void* user_data);
  112. static void onClickPay(void* user_data);
  113. static void onClickModifyStatus(LLUICtrl* ctrl, void* user_data);
  114. bool modifyRightsConfirmation(const LLSD& notification, const LLSD& response, rights_map_t* rights);
  115. private:
  116. // member data
  117. LLFriendObserver* mObserver;
  118. LLUUID mAddFriendID;
  119. std::string mAddFriendName;
  120. LLScrollListCtrl* mFriendsList;
  121. BOOL mShowMaxSelectWarning;
  122. BOOL mAllowRightsChange;
  123. S32 mNumRightsChanged;
  124. };
  125. #endif // LL_LLFLOATERFRIENDS_H