diff options
author | andreykproductengine <akleshchev@productengine.com> | 2015-07-23 19:15:07 +0300 |
---|---|---|
committer | andreykproductengine <akleshchev@productengine.com> | 2015-07-23 19:15:07 +0300 |
commit | 1d3c59f29c2845ae326830b75f5da5e96ca46139 (patch) | |
tree | e11f85b72f80ebc144133a4b7b91f4d84ee942c8 /indra/llplugin/llpluginclassmedia.h | |
parent | 57904b4def8c75a865ba503976de98d9ee4c0d94 (diff) |
MAINT-5398 FIXED [BetaBreakers] TOS additional policy links cannot be scrolled or closed once opened
Diffstat (limited to 'indra/llplugin/llpluginclassmedia.h')
-rwxr-xr-x | indra/llplugin/llpluginclassmedia.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/indra/llplugin/llpluginclassmedia.h b/indra/llplugin/llpluginclassmedia.h index 5fe8254331..96d577f43c 100755 --- a/indra/llplugin/llpluginclassmedia.h +++ b/indra/llplugin/llpluginclassmedia.h @@ -249,6 +249,13 @@ public: // This is valid during MEDIA_EVENT_CLICK_LINK_HREF and MEDIA_EVENT_GEOMETRY_CHANGE std::string getClickUUID() const { return mClickUUID; }; + // mClickTarget is received from message and governs how link will be opened + // use this to enforce your own way of opening links inside plugins + void setOverrideClickTarget(const std::string &target); + void resetOverrideClickTarget() { mClickEnforceTarget = false; }; + bool isOverrideClickTarget() const { return mClickEnforceTarget; } + std::string getOverrideClickTarget() const { return mOverrideClickTarget; }; + // These are valid during MEDIA_EVENT_DEBUG_MESSAGE std::string getDebugMessageText() const { return mDebugMessageText; }; std::string getDebugMessageLevel() const { return mDebugMessageLevel; }; @@ -404,6 +411,8 @@ protected: std::string mClickNavType; std::string mClickTarget; std::string mClickUUID; + bool mClickEnforceTarget; + std::string mOverrideClickTarget; std::string mDebugMessageText; std::string mDebugMessageLevel; S32 mGeometryX; |