diff options
| author | Brad Linden <brad@lindenlab.com> | 2024-05-23 11:31:19 -0700 | 
|---|---|---|
| committer | Brad Linden <brad@lindenlab.com> | 2024-05-23 11:31:19 -0700 | 
| commit | a1f49564d670a2c41bfa25c833bba2564b9b7f48 (patch) | |
| tree | 1d205e51bc37621916a17d459ad83782fe41f975 /indra/newview/llpanelgroupbulkimpl.h | |
| parent | 6af5db09faf5ea33a2d4c47b64e76f42edae178a (diff) | |
| parent | 6377610f6587989c126b00f490dfc8d527a1c2ce (diff) | |
Merge remote-tracking branch 'origin/DRTVWR-600-maint-A' into brad/merge-maint-a-to-dev
Diffstat (limited to 'indra/newview/llpanelgroupbulkimpl.h')
| -rw-r--r-- | indra/newview/llpanelgroupbulkimpl.h | 76 | 
1 files changed, 38 insertions, 38 deletions
diff --git a/indra/newview/llpanelgroupbulkimpl.h b/indra/newview/llpanelgroupbulkimpl.h index d3a48e5a9a..963780200a 100644 --- a/indra/newview/llpanelgroupbulkimpl.h +++ b/indra/newview/llpanelgroupbulkimpl.h @@ -1,4 +1,4 @@ -/**  +/**  * @file   llpanelgroupbulkimpl.h  * @brief  Class definition for implementation class of LLPanelGroupBulk  * @author Baker@lindenlab.com @@ -36,63 +36,63 @@ class LLTextBox;  class LLComboBox;  ////////////////////////////////////////////////////////////////////////// -//	Implementation found in llpanelgroupbulk.cpp +//  Implementation found in llpanelgroupbulk.cpp  //////////////////////////////////////////////////////////////////////////  class LLPanelGroupBulkImpl  {  public: -	LLPanelGroupBulkImpl(const LLUUID& group_id); -	~LLPanelGroupBulkImpl(); +    LLPanelGroupBulkImpl(const LLUUID& group_id); +    ~LLPanelGroupBulkImpl(); -	static void callbackClickAdd(void* userdata); -	static void callbackClickRemove(void* userdata); +    static void callbackClickAdd(void* userdata); +    static void callbackClickRemove(void* userdata); -	static void callbackClickCancel(void* userdata); +    static void callbackClickCancel(void* userdata); -	static void callbackSelect(LLUICtrl* ctrl, void* userdata); -	static void callbackAddUsers(const uuid_vec_t& agent_ids, void* user_data); +    static void callbackSelect(LLUICtrl* ctrl, void* userdata); +    static void callbackAddUsers(const uuid_vec_t& agent_ids, void* user_data); -	static void onAvatarNameCache(const LLUUID& agent_id, const LLAvatarName& av_name, void* user_data); +    static void onAvatarNameCache(const LLUUID& agent_id, const LLAvatarName& av_name, void* user_data); -	void handleRemove(); -	void handleSelection(); +    void handleRemove(); +    void handleSelection(); -	void addUsers(const std::vector<std::string>& names, const uuid_vec_t& agent_ids); -	void setGroupName(std::string name); +    void addUsers(const std::vector<std::string>& names, const uuid_vec_t& agent_ids); +    void setGroupName(std::string name);  public: -	static const S32 MAX_GROUP_INVITES = 100;	// Max invites per request. 100 to match server cap. -	 +    static const S32 MAX_GROUP_INVITES = 100;   // Max invites per request. 100 to match server cap. -	LLUUID				mGroupID; -	LLNameListCtrl*		mBulkAgentList; -	LLButton*			mOKButton; -	LLButton*			mRemoveButton; -	LLTextBox*			mGroupName; +    LLUUID              mGroupID; -	std::string			mLoadingText;  -	std::string			mTooManySelected; -	std::string			mBanNotPermitted; -	std::string			mBanLimitFail; -	std::string			mCannotBanYourself; +    LLNameListCtrl*     mBulkAgentList; +    LLButton*           mOKButton; +    LLButton*           mRemoveButton; +    LLTextBox*          mGroupName; -	std::set<LLUUID>	mInviteeIDs; +    std::string         mLoadingText; +    std::string         mTooManySelected; +    std::string         mBanNotPermitted; +    std::string         mBanLimitFail; +    std::string         mCannotBanYourself; -	void (*mCloseCallback)(void* data); -	void* mCloseCallbackUserData; -	boost::signals2::connection mAvatarNameCacheConnection; +    std::set<LLUUID>    mInviteeIDs; -	// The following are for the LLPanelGroupInvite subclass only.   -	// These aren't needed for LLPanelGroupBulkBan, but if we have to add another  -	// group bulk floater for some reason, we'll have these objects too. +    void (*mCloseCallback)(void* data); +    void* mCloseCallbackUserData; +    boost::signals2::connection mAvatarNameCacheConnection; + +    // The following are for the LLPanelGroupInvite subclass only. +    // These aren't needed for LLPanelGroupBulkBan, but if we have to add another +    // group bulk floater for some reason, we'll have these objects too.  public: -	LLComboBox*		mRoleNames; -	std::string		mOwnerWarning; -	std::string		mAlreadyInGroup; -	bool			mConfirmedOwnerInvite; -	bool			mListFullNotificationSent; +    LLComboBox*     mRoleNames; +    std::string     mOwnerWarning; +    std::string     mAlreadyInGroup; +    bool            mConfirmedOwnerInvite; +    bool            mListFullNotificationSent;  };  #endif // LL_LLPANELGROUPBULKIMPL_H  | 
