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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llpanelpeople.h
  3.  * @brief Side tray "People" 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. #ifndef LL_LLPANELPEOPLE_H
  33. #define LL_LLPANELPEOPLE_H
  34. #include <llpanel.h>
  35. #include "llcallingcard.h" // for avatar tracker
  36. #include "llvoiceclient.h"
  37. class LLFilterEditor;
  38. class LLTabContainer;
  39. class LLAvatarList;
  40. class LLGroupList;
  41. class LLPanelPeople 
  42. : public LLPanel
  43. , public LLVoiceClientStatusObserver
  44. {
  45. LOG_CLASS(LLPanelPeople);
  46. public:
  47. LLPanelPeople();
  48. virtual ~LLPanelPeople();
  49. /*virtual*/ BOOL  postBuild();
  50. /*virtual*/ void onOpen(const LLSD& key);
  51. /*virtual*/ bool notifyChildren(const LLSD& info);
  52. // Implements LLVoiceClientStatusObserver::onChange() to enable call buttons
  53. // when voice is available
  54. /*virtual*/ void onChange(EStatusType status, const std::string &channelURI, bool proximal);
  55. // internals
  56. class Updater;
  57. private:
  58. typedef enum e_sort_oder {
  59. E_SORT_BY_NAME = 0,
  60. E_SORT_BY_STATUS = 1,
  61. E_SORT_BY_MOST_RECENT = 2,
  62. E_SORT_BY_DISTANCE = 3,
  63. E_SORT_BY_RECENT_SPEAKERS = 4,
  64. } ESortOrder;
  65. // methods indirectly called by the updaters
  66. void updateFriendList();
  67. void updateNearbyList();
  68. void updateRecentList();
  69. bool isFriendOnline(const LLUUID& id);
  70. bool isItemsFreeOfFriends(const std::vector<LLUUID>& uuids);
  71. void updateButtons();
  72. std::string getActiveTabName() const;
  73. LLUUID getCurrentItemID() const;
  74. void getCurrentItemIDs(std::vector<LLUUID>& selected_uuids) const;
  75. void buttonSetVisible(std::string btn_name, BOOL visible);
  76. void buttonSetEnabled(const std::string& btn_name, bool enabled);
  77. void buttonSetAction(const std::string& btn_name, const commit_signal_t::slot_type& cb);
  78. void showGroupMenu(LLMenuGL* menu);
  79. void setSortOrder(LLAvatarList* list, ESortOrder order, bool save = true);
  80. void onVisibilityChange( const LLSD& new_visibility);
  81. void reSelectedCurrentTab();
  82. // UI callbacks
  83. void onFilterEdit(const std::string& search_string);
  84. void onTabSelected(const LLSD& param);
  85. void onViewProfileButtonClicked();
  86. void onAddFriendButtonClicked();
  87. void onAddFriendWizButtonClicked();
  88. void onDeleteFriendButtonClicked();
  89. void onGroupInfoButtonClicked();
  90. void onChatButtonClicked();
  91. void onImButtonClicked();
  92. void onCallButtonClicked();
  93. void onGroupCallButtonClicked();
  94. void onTeleportButtonClicked();
  95. void onShareButtonClicked();
  96. void onMoreButtonClicked();
  97. void onActivateButtonClicked();
  98. void onRecentViewSortButtonClicked();
  99. void onNearbyViewSortButtonClicked();
  100. void onFriendsViewSortButtonClicked();
  101. void onGroupsViewSortButtonClicked();
  102. void onAvatarListDoubleClicked(LLUICtrl* ctrl);
  103. void onAvatarListCommitted(LLAvatarList* list);
  104. void onGroupPlusButtonClicked();
  105. void onGroupMinusButtonClicked();
  106. void onGroupPlusMenuItemClicked(const LLSD& userdata);
  107. void onFriendsViewSortMenuItemClicked(const LLSD& userdata);
  108. void onNearbyViewSortMenuItemClicked(const LLSD& userdata);
  109. void onGroupsViewSortMenuItemClicked(const LLSD& userdata);
  110. void onRecentViewSortMenuItemClicked(const LLSD& userdata);
  111. //returns false only if group is "none"
  112. bool isRealGroup();
  113. bool onFriendsViewSortMenuItemCheck(const LLSD& userdata);
  114. bool onRecentViewSortMenuItemCheck(const LLSD& userdata);
  115. bool onNearbyViewSortMenuItemCheck(const LLSD& userdata);
  116. // misc callbacks
  117. static void onAvatarPicked(
  118. const std::vector<std::string>& names,
  119. const std::vector<LLUUID>& ids);
  120. void onFriendsAccordionExpandedCollapsed(LLUICtrl* ctrl, const LLSD& param, LLAvatarList* avatar_list);
  121. void showAccordion(const std::string name, bool show);
  122. void showFriendsAccordionsIfNeeded();
  123. void onFriendListRefreshComplete(LLUICtrl*ctrl, const LLSD& param);
  124. void setAccordionCollapsedByUser(LLUICtrl* acc_tab, bool collapsed);
  125. void setAccordionCollapsedByUser(const std::string& name, bool collapsed);
  126. bool isAccordionCollapsedByUser(LLUICtrl* acc_tab);
  127. bool isAccordionCollapsedByUser(const std::string& name);
  128. LLFilterEditor* mFilterEditor;
  129. LLTabContainer* mTabContainer;
  130. LLAvatarList* mOnlineFriendList;
  131. LLAvatarList* mAllFriendList;
  132. LLAvatarList* mNearbyList;
  133. LLAvatarList* mRecentList;
  134. LLGroupList* mGroupList;
  135. LLHandle<LLView> mGroupPlusMenuHandle;
  136. LLHandle<LLView> mNearbyViewSortMenuHandle;
  137. LLHandle<LLView> mFriendsViewSortMenuHandle;
  138. LLHandle<LLView> mGroupsViewSortMenuHandle;
  139. LLHandle<LLView> mRecentViewSortMenuHandle;
  140. Updater* mFriendListUpdater;
  141. Updater* mNearbyListUpdater;
  142. Updater* mRecentListUpdater;
  143. std::string mFilterSubString;
  144. };
  145. #endif //LL_LLPANELPEOPLE_H