Skip to content
Snippets Groups Projects
Commit c9df1027 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Add support for addgrid slurl command

parent c22bc1fd
No related branches found
No related tags found
No related merge requests found
...@@ -141,6 +141,7 @@ set(viewer_SOURCE_FILES ...@@ -141,6 +141,7 @@ set(viewer_SOURCE_FILES
alviewermenu.cpp alviewermenu.cpp
groupchatlistener.cpp groupchatlistener.cpp
llaccountingcostmanager.cpp llaccountingcostmanager.cpp
lladdgridhandler.cpp
llaisapi.cpp llaisapi.cpp
llagent.cpp llagent.cpp
llagentaccess.cpp llagentaccess.cpp
...@@ -816,6 +817,7 @@ set(viewer_HEADER_FILES ...@@ -816,6 +817,7 @@ set(viewer_HEADER_FILES
groupchatlistener.h groupchatlistener.h
llaccountingcost.h llaccountingcost.h
llaccountingcostmanager.h llaccountingcostmanager.h
lladdgridhandler.h
llaisapi.h llaisapi.h
llagent.h llagent.h
llagentaccess.h llagentaccess.h
......
/**
* @file lladdgridhandler.cpp
* @brief Handles adding a grid in response to an addgrid slapp
*
* Copyright (c) 2016, Cinder Roxley <cinder@sdf.org>
*
* Permission is hereby granted, free of charge, to any person or organization
* obtaining a copy of the software and accompanying documentation covered by
* this license (the "Software") to use, reproduce, display, distribute,
* execute, and transmit the Software, and to prepare derivative works of the
* Software, and to permit third-parties to whom the Software is furnished to
* do so, all subject to the following:
*
* The copyright notices in the Software and this entire statement, including
* the above license grant, this restriction and the following disclaimer,
* must be included in all copies of the Software, in whole or in part, and
* all derivative works of the Software, unless such copies or derivative
* works are solely in the form of machine-executable object code generated by
* a source language processor.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
* SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
* FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
*/
#include "llviewerprecompiledheaders.h"
#include "lladdgridhandler.h"
#include "llviewernetwork.h"
// Must have an instance to auto-register with LLCommandDispatcher
LLAddGridHandler gAddGridHandler;
bool LLAddGridHandler::handle(const LLSD& tokens, const LLSD& query_map, LLMediaCtrl* web)
{
if (query_map.has("grid"))
{
LLGridManager::getInstance()->setGridChoice(query_map["grid"].asString(), false);
}
return true;
}
/**
* @file lladdgridhandler.h
* @brief Handles adding a grid in response to an addgrid slapp
*
* Copyright (c) 2016, Cinder Roxley <cinder@sdf.org>
*
* Permission is hereby granted, free of charge, to any person or organization
* obtaining a copy of the software and accompanying documentation covered by
* this license (the "Software") to use, reproduce, display, distribute,
* execute, and transmit the Software, and to prepare derivative works of the
* Software, and to permit third-parties to whom the Software is furnished to
* do so, all subject to the following:
*
* The copyright notices in the Software and this entire statement, including
* the above license grant, this restriction and the following disclaimer,
* must be included in all copies of the Software, in whole or in part, and
* all derivative works of the Software, unless such copies or derivative
* works are solely in the form of machine-executable object code generated by
* a source language processor.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
* SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
* FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
*/
#ifndef LL_ADDGRIDHANDLER_H
#define LL_ADDGRIDHANDLER_H
#include "llcommandhandler.h"
class LLAddGridHandler : public LLCommandHandler
{
public:
LLAddGridHandler() : LLCommandHandler("addgrid", UNTRUSTED_ALLOW) { }
bool handle(const LLSD& tokens, const LLSD& query_map, LLMediaCtrl* web) override;
};
extern LLAddGridHandler gAddGridHandler;
#endif // LL_ADDGRIDHANDLER_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment