diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-05-14 21:02:28 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-05-14 21:02:28 -0400 |
commit | 094dcc07f8c1d90ae723dbe60eddacb90a09eae8 (patch) | |
tree | e750942e5f22ed677b543bd49509c2a7cdc5ce56 /indra/newview/llpanelgroupbulkimpl.h | |
parent | d4043d3b011c32eb503c43c551872f9c24d7344f (diff) | |
parent | 38c2a5bde985a6a8a96d912d432f8bdf7e5b60be (diff) |
Merge DRTVWR-591-maint-X to main on promotion of secondlife/viewer #705: Maintenance X
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 |