diff options
author | Cho <cho@lindenlab.com> | 2014-02-21 02:06:03 +0000 |
---|---|---|
committer | Cho <cho@lindenlab.com> | 2014-02-21 02:06:03 +0000 |
commit | ac9cf045ecc14f8c650773f3fff7bc338fa468d0 (patch) | |
tree | 41d0fedcb325bf2fda21ea4ad3c1ff033cc0fff4 /indra/newview/llfloaterfacebook.h | |
parent | 63e7c0c131859dd38f98e5ebbfabc2932a7b1bff (diff) |
Added Friends tab to Facebook floater for ACME-1325
Diffstat (limited to 'indra/newview/llfloaterfacebook.h')
-rw-r--r-- | indra/newview/llfloaterfacebook.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/indra/newview/llfloaterfacebook.h b/indra/newview/llfloaterfacebook.h index 4361dfa628..20c401d0c1 100644 --- a/indra/newview/llfloaterfacebook.h +++ b/indra/newview/llfloaterfacebook.h @@ -34,6 +34,7 @@ class LLIconCtrl; class LLCheckBoxCtrl; class LLSnapshotLivePreview; +class LLAvatarList; class LLFacebookStatusPanel : public LLPanel { @@ -119,6 +120,20 @@ private: bool mReloadingMapTexture; }; +class LLFacebookFriendsPanel : public LLPanel +{ +public: + LLFacebookFriendsPanel(); + BOOL postBuild(); + +private: + bool updateSuggestedFriendList(); + void updateFacebookList(bool visible); + bool onConnectedToFacebook(const LLSD& data); + + LLAvatarList* mSuggestedFriends; +}; + class LLFacebookAccountPanel : public LLPanel { public: @@ -146,7 +161,6 @@ private: LLUICtrl * mDisconnectButton; }; - class LLFloaterFacebook : public LLFloater { public: |