Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
c9df1027
Commit
c9df1027
authored
3 years ago
by
Rye Mutt
Browse files
Options
Downloads
Patches
Plain Diff
Add support for addgrid slurl command
parent
c22bc1fd
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
indra/newview/CMakeLists.txt
+2
-0
2 additions, 0 deletions
indra/newview/CMakeLists.txt
indra/newview/lladdgridhandler.cpp
+47
-0
47 additions, 0 deletions
indra/newview/lladdgridhandler.cpp
indra/newview/lladdgridhandler.h
+46
-0
46 additions, 0 deletions
indra/newview/lladdgridhandler.h
with
95 additions
and
0 deletions
indra/newview/CMakeLists.txt
+
2
−
0
View file @
c9df1027
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
indra/newview/lladdgridhandler.cpp
0 → 100644
+
47
−
0
View file @
c9df1027
/**
* @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
;
}
This diff is collapsed.
Click to expand it.
indra/newview/lladdgridhandler.h
0 → 100644
+
46
−
0
View file @
c9df1027
/**
* @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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment