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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llgrouplist.h
  3.  * @brief List of the groups the agent belongs to.
  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_LLGROUPLIST_H
  33. #define LL_LLGROUPLIST_H
  34. #include "llevent.h"
  35. #include "llflatlistview.h"
  36. #include "llpanel.h"
  37. #include "llpointer.h"
  38. #include "llstyle.h"
  39. #include "llgroupmgr.h"
  40. /**
  41.  * Auto-updating list of agent groups.
  42.  * 
  43.  * Can use optional group name filter.
  44.  * 
  45.  * @see setNameFilter()
  46.  */
  47. class LLGroupList: public LLFlatListView, public LLOldEvents::LLSimpleListener
  48. {
  49. LOG_CLASS(LLGroupList);
  50. public:
  51. struct Params : public LLInitParam::Block<Params, LLFlatListView::Params> 
  52. {
  53. /**
  54.  * Contains a message for empty list when user is not a member of any group
  55.  */
  56. Optional<std::string> no_groups_msg;
  57. /**
  58.  * Contains a message for empty list when all groups don't match passed filter
  59.  */
  60. Optional<std::string> no_filtered_groups_msg;
  61. Params();
  62. };
  63. LLGroupList(const Params& p);
  64. virtual ~LLGroupList();
  65. virtual void draw(); // from LLView
  66. /*virtual*/ BOOL handleRightMouseDown(S32 x, S32 y, MASK mask); // from LLView
  67. void setNameFilter(const std::string& filter);
  68. void toggleIcons();
  69. bool getIconsVisible() const { return mShowIcons; }
  70. private:
  71. void setDirty(bool val = true) { mDirty = val; }
  72. void refresh();
  73. void addNewItem(const LLUUID& id, const std::string& name, const LLUUID& icon_id, EAddPosition pos = ADD_BOTTOM);
  74. bool handleEvent(LLPointer<LLOldEvents::LLEvent> event, const LLSD& userdata); // called on agent group list changes
  75. bool onContextMenuItemClick(const LLSD& userdata);
  76. bool onContextMenuItemEnable(const LLSD& userdata);
  77. LLHandle<LLView> mContextMenuHandle;
  78. bool mShowIcons;
  79. bool mDirty;
  80. std::string mNameFilter;
  81. std::string mNoFilteredGroupsMsg;
  82. std::string mNoGroupsMsg;
  83. };
  84. class LLButton;
  85. class LLIconCtrl;
  86. class LLTextBox;
  87. class LLGroupListItem : public LLPanel
  88. , public LLGroupMgrObserver
  89. {
  90. public:
  91. LLGroupListItem();
  92. ~LLGroupListItem();
  93. /*virtual*/ BOOL postBuild();
  94. /*virtual*/ void setValue(const LLSD& value);
  95. void onMouseEnter(S32 x, S32 y, MASK mask);
  96. void onMouseLeave(S32 x, S32 y, MASK mask);
  97. const LLUUID& getGroupID() const { return mGroupID; }
  98. const std::string& getGroupName() const { return mGroupName; }
  99. void setName(const std::string& name, const std::string& highlight = LLStringUtil::null);
  100. void setGroupID(const LLUUID& group_id);
  101. void setGroupIconID(const LLUUID& group_icon_id);
  102. void setGroupIconVisible(bool visible);
  103. virtual void changed(LLGroupChange gc);
  104. private:
  105. void setActive(bool active);
  106. void onInfoBtnClick();
  107. void onProfileBtnClick();
  108. LLTextBox* mGroupNameBox;
  109. LLUUID mGroupID;
  110. LLIconCtrl* mGroupIcon;
  111. LLButton* mInfoBtn;
  112. std::string mGroupName;
  113. LLStyle::Params mGroupNameStyle;
  114. static S32 sIconWidth; // icon width + padding
  115. };
  116. #endif // LL_LLGROUPLIST_H