diff options
Diffstat (limited to 'indra/llplugin')
| -rw-r--r-- | indra/llplugin/llpluginclassmedia.cpp | 14 | ||||
| -rw-r--r-- | indra/llplugin/llpluginclassmedia.h | 9 | ||||
| -rw-r--r-- | indra/llplugin/llpluginclassmediaowner.h | 2 | 
3 files changed, 25 insertions, 0 deletions
| diff --git a/indra/llplugin/llpluginclassmedia.cpp b/indra/llplugin/llpluginclassmedia.cpp index d081109acc..5a208ece71 100644 --- a/indra/llplugin/llpluginclassmedia.cpp +++ b/indra/llplugin/llpluginclassmedia.cpp @@ -842,6 +842,14 @@ void LLPluginClassMedia::setJavascriptEnabled(const bool enabled)  	sendMessage(message);  } + +void LLPluginClassMedia::enableMediaPluginDebugging( bool enable ) +{ +	LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_MEDIA, "enable_media_plugin_debugging"); +	message.setValueBoolean( "enable", enable ); +	sendMessage( message ); +} +  void LLPluginClassMedia::setTarget(const std::string &target)  {  	mTarget = target; @@ -1066,6 +1074,12 @@ void LLPluginClassMedia::receivePluginMessage(const LLPluginMessage &message)  			mAuthURL = message.getValue("url");  			mAuthRealm = message.getValue("realm");  			mediaEvent(LLPluginClassMediaOwner::MEDIA_EVENT_AUTH_REQUEST); +		}		
 +		else if(message_name == "debug_message")
 +		{
 +			mDebugMessageText = message.getValue("message_text");
 +			mDebugMessageLevel = message.getValue("message_level");
 +			mediaEvent(LLPluginClassMediaOwner::MEDIA_EVENT_DEBUG_MESSAGE);  		}  		else  		{ diff --git a/indra/llplugin/llpluginclassmedia.h b/indra/llplugin/llpluginclassmedia.h index e7f303275e..84a3dbed6d 100644 --- a/indra/llplugin/llpluginclassmedia.h +++ b/indra/llplugin/llpluginclassmedia.h @@ -118,6 +118,9 @@ public:  	void scrollEvent(int x, int y, MASK modifiers); +	// enable/disable media plugin debugging messages and info spam +	void enableMediaPluginDebugging( bool enable ); +  	// Javascript <-> viewer events  	void jsEnableObject( bool enable );  	void jsAgentLocationEvent( double x, double y, double z ); @@ -243,6 +246,10 @@ public:  	// This is valid during MEDIA_EVENT_CLICK_LINK_HREF and MEDIA_EVENT_GEOMETRY_CHANGE  	std::string getClickUUID() const { return mClickUUID; }; +
 +	// These are valid during MEDIA_EVENT_DEBUG_MESSAGE
 +	std::string getDebugMessageText() const { return mDebugMessageText; };
 +	std::string getDebugMessageLevel() const { return mDebugMessageLevel; };  	// This is valid after MEDIA_EVENT_NAVIGATE_ERROR_PAGE  	S32 getStatusCode() const { return mStatusCode; }; @@ -395,6 +402,8 @@ protected:  	std::string		mClickNavType;  	std::string		mClickTarget;  	std::string		mClickUUID; +	std::string		mDebugMessageText;
 +	std::string		mDebugMessageLevel;  	S32				mGeometryX;  	S32				mGeometryY;  	S32				mGeometryWidth; diff --git a/indra/llplugin/llpluginclassmediaowner.h b/indra/llplugin/llpluginclassmediaowner.h index 5a4fb1ce90..2f3edba7f3 100644 --- a/indra/llplugin/llpluginclassmediaowner.h +++ b/indra/llplugin/llpluginclassmediaowner.h @@ -64,6 +64,8 @@ public:  		MEDIA_EVENT_AUTH_REQUEST,			// The plugin wants to display an auth dialog +		MEDIA_EVENT_DEBUG_MESSAGE,			// plugin sending back debug information for host to process +  		MEDIA_EVENT_LINK_HOVERED			// Got a "link hovered" event from the plugin  	} EMediaEvent; | 
