summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelprofileview.h
diff options
context:
space:
mode:
authorbrad kittenbrink <brad@lindenlab.com>2009-08-13 01:28:38 -0400
committerbrad kittenbrink <brad@lindenlab.com>2009-08-13 01:28:38 -0400
commit39c2a584f47785c826c3bc133106f3689120bf32 (patch)
tree898695d92fc467672618f08260106ab773e456b5 /indra/newview/llpanelprofileview.h
parenta15feff98c13cd693e60fc59345609c007de16db (diff)
parentefd58603da6062d90a5d7019987409994bc73858 (diff)
Merged latest viewer-2.0.0-3 change up through svn r130333 into login-api.
Diffstat (limited to 'indra/newview/llpanelprofileview.h')
-rw-r--r--indra/newview/llpanelprofileview.h28
1 files changed, 25 insertions, 3 deletions
diff --git a/indra/newview/llpanelprofileview.h b/indra/newview/llpanelprofileview.h
index 6c5fc77951..4d5e2997c1 100644
--- a/indra/newview/llpanelprofileview.h
+++ b/indra/newview/llpanelprofileview.h
@@ -35,24 +35,46 @@
#include "llpanel.h"
#include "llpanelprofile.h"
+#include "llavatarpropertiesprocessor.h"
class LLPanelProfile;
class LLPanelProfileTab;
+
+/**
+* Panel for displaying Avatar's profile. It consists of three sub panels - Profile,
+* Picks and Notes.
+*/
class LLPanelProfileView : public LLPanelProfile
{
LOG_CLASS(LLPanelProfileView);
friend class LLUICtrlFactory;
public:
+
LLPanelProfileView();
- ~LLPanelProfileView(void);
+ /*virtual*/ ~LLPanelProfileView();
- void onOpen(const LLSD& key);
+ /*virtual*/ void onOpen(const LLSD& key);
- BOOL postBuild();
+ /*virtual*/ BOOL postBuild();
+
+ // LLCacheName will call this function when avatar name is loaded from server.
+ // This is required to display names that have not been cached yet.
+ void cacheNameCallback(
+ const LLUUID& id,
+ const std::string& first_name,
+ const std::string& last_name,
+ BOOL is_group);
+
+protected:
+
void onBackBtnClick();
+
+private:
+
+ bool mCacheNameCallbackConnected;
};
#endif //LL_LLPANELPROFILEVIEW_H