summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelprofile.h
diff options
context:
space:
mode:
authorKadah_Coba <kadah.coba@gmail.com>2019-03-04 00:18:45 -0800
committerKadah_Coba <kadah.coba@gmail.com>2019-03-04 00:18:45 -0800
commitb82d70cf2aa2b56a2c0bfdd941ee4f74e690e4df (patch)
tree4b6dbea34571740cff01bfdeb55fd4fb2adc4caa /indra/newview/llpanelprofile.h
parent0be2b5ce51a7625b01884d512906cdcf3a580444 (diff)
Added viewer based profiles
Split picks and classifieds in to separate panels Moved getProfileURL to LLAvatarActions Removed dead XUI panels Removed picks/classifieds floater
Diffstat (limited to 'indra/newview/llpanelprofile.h')
-rw-r--r--indra/newview/llpanelprofile.h406
1 files changed, 358 insertions, 48 deletions
diff --git a/indra/newview/llpanelprofile.h b/indra/newview/llpanelprofile.h
index d97f60ed22..72f913b522 100644
--- a/indra/newview/llpanelprofile.h
+++ b/indra/newview/llpanelprofile.h
@@ -1,25 +1,25 @@
-/**
+/**
* @file llpanelprofile.h
* @brief Profile panel
*
* $LicenseInfo:firstyear=2009&license=viewerlgpl$
* Second Life Viewer Source Code
* Copyright (C) 2010, Linden Research, Inc.
-*
+*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation;
* version 2.1 of the License only.
-*
+*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
-*
+*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-*
+*
* Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
* $/LicenseInfo$
*/
@@ -27,76 +27,386 @@
#ifndef LL_LLPANELPROFILE_H
#define LL_LLPANELPROFILE_H
+#include "llavatarpropertiesprocessor.h"
+#include "llcallingcard.h"
+#include "llfloater.h"
#include "llpanel.h"
#include "llpanelavatar.h"
+#include "llmediactrl.h"
+#include "llvoiceclient.h"
+
+// class LLPanelProfileClassifieds;
+// class LLTabContainer;
+// class LLPanelProfileSecondLife;
+// class LLPanelProfileWeb;
+// class LLPanelProfileInterests;
+// class LLPanelProfilePicks;
+// class LLPanelProfileFirstLife;
+// class LLPanelProfileNotes;
+
+class LLAvatarName;
+class LLCheckBoxCtrl;
class LLTabContainer;
+class LLTextBox;
+class LLTextureCtrl;
+class LLMediaCtrl;
+class LLGroupList;
+class LLTextBase;
+class LLMenuButton;
+class LLLineEditor;
+class LLTextEditor;
+class LLPanelProfileClassifieds;
+class LLPanelProfilePicks;
+
+
+/**
+* Panel for displaying Avatar's second life related info.
+*/
+class LLPanelProfileSecondLife
+ : public LLPanelProfileTab
+ , public LLFriendObserver
+ , public LLVoiceClientStatusObserver
+{
+public:
+ LLPanelProfileSecondLife();
+ /*virtual*/ ~LLPanelProfileSecondLife();
+
+ /*virtual*/ void onOpen(const LLSD& key);
+
+ /**
+ * Saves changes.
+ */
+ void apply(LLAvatarData* data);
+
+ /**
+ * LLFriendObserver trigger
+ */
+ virtual void changed(U32 mask);
+
+ // Implements LLVoiceClientStatusObserver::onChange() to enable the call
+ // button when voice is available
+ /*virtual*/ void onChange(EStatusType status, const std::string &channelURI, bool proximal);
+
+ /*virtual*/ void setAvatarId(const LLUUID& avatar_id);
+
+ /*virtual*/ BOOL postBuild();
+
+ /*virtual*/ void processProperties(void* data, EAvatarProcessorType type);
+
+ void resetData();
+
+ /**
+ * Sends update data request to server.
+ */
+ /*virtual*/ void updateData();
+
+ void onAvatarNameCache(const LLUUID& agent_id, const LLAvatarName& av_name);
+
+protected:
+ /**
+ * Process profile related data received from server.
+ */
+ virtual void processProfileProperties(const LLAvatarData* avatar_data);
+
+ /**
+ * Processes group related data received from server.
+ */
+ virtual void processGroupProperties(const LLAvatarGroups* avatar_groups);
+
+ /**
+ * Fills common for Avatar profile and My Profile fields.
+ */
+ virtual void fillCommonData(const LLAvatarData* avatar_data);
+
+ /**
+ * Fills partner data.
+ */
+ virtual void fillPartnerData(const LLAvatarData* avatar_data);
+
+ /**
+ * Fills account status.
+ */
+ virtual void fillAccountStatus(const LLAvatarData* avatar_data);
+
+ void onMapButtonClick();
+
+ /**
+ * Opens "Pay Resident" dialog.
+ */
+ void pay();
+
+ /**
+ * Add/remove resident to/from your block list.
+ */
+ void toggleBlock();
+
+ void onAddFriendButtonClick();
+ void onIMButtonClick();
+ void onTeleportButtonClick();
+
+ void onGroupInvite();
+
+ bool isGrantedToSeeOnlineStatus();
+
+ /**
+ * Displays avatar's online status if possible.
+ *
+ * Requirements from EXT-3880:
+ * For friends:
+ * - Online when online and privacy settings allow to show
+ * - Offline when offline and privacy settings allow to show
+ * - Else: nothing
+ * For other avatars:
+ * - Online when online and was not set in Preferences/"Only Friends & Groups can see when I am online"
+ * - Else: Offline
+ */
+ void updateOnlineStatus();
+ void processOnlineStatus(bool online);
+
+private:
+ /*virtual*/ void updateButtons();
+ void onClickSetName();
+ void onAvatarNameCacheSetName(const LLUUID& id, const LLAvatarName& av_name);
+
+private:
+ typedef std::map<std::string, LLUUID> group_map_t;
+ group_map_t mGroups;
+ void openGroupProfile();
+
+ LLTextBox* mStatusText;
+ LLGroupList* mGroupList;
+ LLCheckBoxCtrl* mShowInSearchCheckbox;
+ LLTextureCtrl* mSecondLifePic;
+ LLTextBase* mDescriptionEdit;
+ LLButton* mTeleportButton;
+ LLButton* mShowOnMapButton;
+ LLButton* mBlockButton;
+ LLButton* mUnblockButton;
+ LLUICtrl* mNameLabel;
+ LLButton* mDisplayNameButton;
+ LLButton* mAddFriendButton;
+ LLButton* mGroupInviteButton;
+ LLButton* mPayButton;
+ LLButton* mIMButton;
+
+ bool mVoiceStatus;
+
+ boost::signals2::connection mAvatarNameCacheConnection;
+};
+
+
+/**
+* Panel for displaying Avatar's web profile and home page.
+*/
+class LLPanelProfileWeb
+ : public LLPanelProfileTab
+ , public LLViewerMediaObserver
+{
+public:
+ LLPanelProfileWeb();
+ /*virtual*/ ~LLPanelProfileWeb();
+
+ /*virtual*/ void onOpen(const LLSD& key);
+
+ /*virtual*/ BOOL postBuild();
+
+ /*virtual*/ void processProperties(void* data, EAvatarProcessorType type);
+
+ void resetData();
-std::string getProfileURL(const std::string& agent_name);
+ /**
+ * Saves changes.
+ */
+ void apply(LLAvatarData* data);
+
+ /**
+ * Loads web profile.
+ */
+ /*virtual*/ void updateData();
+
+ /*virtual*/ void handleMediaEvent(LLPluginClassMedia* self, EMediaEvent event);
+
+ void onAvatarNameCache(const LLUUID& agent_id, const LLAvatarName& av_name);
+
+protected:
+ /*virtual*/ void updateButtons();
+ void onCommitLoad(LLUICtrl* ctrl);
+ void onCommitWebProfile();
+
+private:
+ std::string mURLHome;
+ std::string mURLWebProfile;
+ LLMediaCtrl* mWebBrowser;
+ LLButton* mWebProfileButton;
+ LLUICtrl* mLoadButton;
+ LLLineEditor* mUrlEdit;
+
+ LLFrameTimer mPerformanceTimer;
+ bool mFirstNavigate;
+
+ boost::signals2::connection mAvatarNameCacheConnection;
+};
/**
-* Base class for Profile View and My Profile.
+* Panel for displaying Avatar's interests.
*/
-class LLPanelProfile : public LLPanel
+class LLPanelProfileInterests
+ : public LLPanelProfileTab
{
- LOG_CLASS(LLPanelProfile);
+public:
+ LLPanelProfileInterests();
+ /*virtual*/ ~LLPanelProfileInterests();
+
+ /*virtual*/ void onOpen(const LLSD& key);
+
+ /*virtual*/ BOOL postBuild();
+ /*virtual*/ void processProperties(void* data, EAvatarProcessorType type);
+
+ void resetData();
+
+ /**
+ * Saves changes.
+ */
+ virtual void apply();
+
+protected:
+ /*virtual*/ void updateButtons();
+
+private:
+ LLCheckBoxCtrl* mWantChecks[8];
+ LLCheckBoxCtrl* mSkillChecks[6];
+ LLLineEditor* mWantToEditor;
+ LLLineEditor* mSkillsEditor;
+ LLLineEditor* mLanguagesEditor;
+};
+
+
+/**
+* Panel for displaying Avatar's first life related info.
+*/
+class LLPanelProfileFirstLife
+ : public LLPanelProfileTab
+{
public:
+ LLPanelProfileFirstLife();
+ /*virtual*/ ~LLPanelProfileFirstLife();
+
+ /*virtual*/ void onOpen(const LLSD& key);
+
/*virtual*/ BOOL postBuild();
- /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE);
+
+ /*virtual*/ void processProperties(void* data, EAvatarProcessorType type);
+
+ void resetData();
+
+ /**
+ * Saves changes.
+ */
+ void apply(LLAvatarData* data);
+
+protected:
+ /*virtual*/ void updateButtons();
+ void onDescriptionFocusReceived();
+
+ LLTextEditor* mDescriptionEdit;
+ LLTextureCtrl* mPicture;
+
+ bool mIsEditing;
+ std::string mCurrentDescription;
+};
+
+/**
+ * Panel for displaying Avatar's notes and modifying friend's rights.
+ */
+class LLPanelProfileNotes
+ : public LLPanelProfileTab
+ , public LLFriendObserver
+{
+public:
+ LLPanelProfileNotes();
+ /*virtual*/ ~LLPanelProfileNotes();
+
+ virtual void setAvatarId(const LLUUID& avatar_id);
+
+ /**
+ * LLFriendObserver trigger
+ */
+ virtual void changed(U32 mask);
+
/*virtual*/ void onOpen(const LLSD& key);
- virtual void openPanel(LLPanel* panel, const LLSD& params);
+ /*virtual*/ BOOL postBuild();
+
+ /*virtual*/ void processProperties(void* data, EAvatarProcessorType type);
+
+ void resetData();
- virtual void closePanel(LLPanel* panel);
+ /*virtual*/ void updateData();
- S32 notifyParent(const LLSD& info);
+ /**
+ * Saves changes.
+ */
+ virtual void apply();
protected:
+ /**
+ * Fills rights data for friends.
+ */
+ void fillRightsData();
+
+ void rightsConfirmationCallback(const LLSD& notification, const LLSD& response, S32 rights);
+ void confirmModifyRights(bool grant, S32 rights);
+ void onCommitRights();
+ void onCommitNotes();
+ void enableCheckboxes(bool enable);
+
+ LLCheckBoxCtrl* mOnlineStatus;
+ LLCheckBoxCtrl* mMapRights;
+ LLCheckBoxCtrl* mEditObjectRights;
+ LLTextEditor* mNotesEditor;
+};
+
+
+/**
+* Container panel for the profile tabs
+*/
+class LLPanelProfile
+ : public LLPanelProfileTab
+{
+public:
+ LLPanelProfile();
+ /*virtual*/ ~LLPanelProfile();
+
+ /*virtual*/ BOOL postBuild();
- LLPanelProfile();
+ /*virtual*/ void updateData();
- virtual void onTabSelected(const LLSD& param);
+ /*virtual*/ void processProperties(void* data, EAvatarProcessorType type);
- const LLUUID& getAvatarId() { return mAvatarId; }
+ /*virtual*/ void onOpen(const LLSD& key);
- void setAvatarId(const LLUUID& avatar_id) { mAvatarId = avatar_id; }
+ /**
+ * Saves changes.
+ */
+ void apply();
- typedef std::map<std::string, LLPanelProfileTab*> profile_tabs_t;
+ void showPick(const LLUUID& pick_id = LLUUID::null);
- profile_tabs_t& getTabContainer() { return mTabContainer; }
+ void showClassified(const LLUUID& classified_id = LLUUID::null, bool edit = false);
private:
+ void onTabChange();
- //-- ChildStack begins ----------------------------------------------------
- class ChildStack
- {
- LOG_CLASS(LLPanelProfile::ChildStack);
- public:
- ChildStack();
- ~ChildStack();
- void setParent(LLPanel* parent);
-
- bool push();
- bool pop();
- void preParentReshape();
- void postParentReshape();
-
- private:
- void dump();
-
- typedef LLView::child_list_t view_list_t;
- typedef std::list<view_list_t> stack_t;
-
- stack_t mStack;
- stack_t mSavedStack;
- LLPanel* mParent;
- };
- //-- ChildStack ends ------------------------------------------------------
-
- profile_tabs_t mTabContainer;
- ChildStack mChildStack;
- LLUUID mAvatarId;
+ LLPanelProfileSecondLife* mPanelSecondlife;
+ LLPanelProfileWeb* mPanelWeb;
+ LLPanelProfileInterests* mPanelInterests;
+ LLPanelProfilePicks* mPanelPicks;
+ LLPanelProfileClassifieds* mPanelClassifieds;
+ LLPanelProfileFirstLife* mPanelFirstlife;
+ LLPanelProfileNotes* mPanelNotes;
+ LLTabContainer* mTabContainer;
};
#endif //LL_LLPANELPROFILE_H