diff options
author | dolphin <dolphin@lindenlab.com> | 2013-09-23 11:44:21 -0700 |
---|---|---|
committer | dolphin <dolphin@lindenlab.com> | 2013-09-23 11:44:21 -0700 |
commit | 48e1e10fd69aaea6ef22feb2518e80a120e9f999 (patch) | |
tree | 685d2c7b57f3d47dd7a9affd5c537847930b9fc2 /indra/llui/llurlentry.h | |
parent | d9ad2d3a13b4bb15ab5e56fd04970abc03e100e7 (diff) |
Added LLUrlEntryExperienceProfile to link to experience profiles
Added LLExperienceHandler to handle experience links
Updated LLSidepanelItemInfo to use profile links
Diffstat (limited to 'indra/llui/llurlentry.h')
-rwxr-xr-x | indra/llui/llurlentry.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/indra/llui/llurlentry.h b/indra/llui/llurlentry.h index 8c6c32178a..48b4a1d531 100755 --- a/indra/llui/llurlentry.h +++ b/indra/llui/llurlentry.h @@ -258,6 +258,20 @@ private: }; /// +/// LLUrlEntryExperienceProfile Describes a Second Life experience profile Url, e.g., +/// secondlife:///app/experience/0e346d8b-4433-4d66-a6b0-fd37083abc4c/profile +/// that displays the experience name +class LLUrlEntryExperienceProfile : public LLUrlEntryBase +{ +public: + LLUrlEntryExperienceProfile(); + /*virtual*/ std::string getLabel(const std::string &url, const LLUrlLabelCallback &cb); +private: + void onExperienceDetails(const LLSD& experience_details); +}; + + +/// /// LLUrlEntryGroup Describes a Second Life group Url, e.g., /// secondlife:///app/group/00005ff3-4044-c79f-9de8-fb28ae0df991/about /// |