summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorMnikolenko Productengine <mnikolenko@productengine.com>2023-09-21 16:16:00 +0300
committerMnikolenko Productengine <mnikolenko@productengine.com>2023-09-21 16:16:00 +0300
commitfac31ad392c3df22b2254a00e75c841050195763 (patch)
treebfa8d7f2ed05a7d3be54bdb8cbc2c814a6e7746c /indra
parente3ba75101a94cff9b1409c58f796587cf2702f10 (diff)
DRTVWR-589 - allow adding branch to the menu
Diffstat (limited to 'indra')
-rw-r--r--indra/llui/llmenugl.h6
-rw-r--r--indra/newview/llluamanager.cpp30
2 files changed, 28 insertions, 8 deletions
diff --git a/indra/llui/llmenugl.h b/indra/llui/llmenugl.h
index 1a330b18cc..4f1098b1d8 100644
--- a/indra/llui/llmenugl.h
+++ b/indra/llui/llmenugl.h
@@ -558,13 +558,13 @@ public:
// Add the menu item to this menu.
virtual BOOL append( LLMenuItemGL* item );
+ // add a menu - this will create a cascading menu
+ virtual BOOL appendMenu(LLMenuGL *menu);
+
protected:
void createSpilloverBranch();
void cleanupSpilloverBranch();
- // add a menu - this will create a cascading menu
- virtual BOOL appendMenu( LLMenuGL* menu );
-
// Used in LLContextMenu and in LLTogleableMenu
// to add an item of context menu branch
bool addContextChild(LLView* view, S32 tab_group);
diff --git a/indra/newview/llluamanager.cpp b/indra/newview/llluamanager.cpp
index 03a5d10975..3ca38394ea 100644
--- a/indra/newview/llluamanager.cpp
+++ b/indra/newview/llluamanager.cpp
@@ -79,7 +79,7 @@ bool checkLua(lua_State *L, int r, std::string &error_msg)
return true;
}
-LLSD luatable_to_llsd(lua_State *L, S32 idx)
+LLSD luatable_to_llsd_string(lua_State *L, S32 idx)
{
LLSD args;
@@ -277,7 +277,7 @@ int lua_show_notification(lua_State *L)
if (lua_type(L, 2) == LUA_TTABLE)
{
- LLSD args = luatable_to_llsd(L, 2);
+ LLSD args = luatable_to_llsd_string(L, 2);
std::string response_cb;
if (lua_type(L, 3) == LUA_TSTRING)
@@ -305,7 +305,7 @@ int lua_add_menu_item(lua_State *L)
std::string menu(lua_tostring(L, 1));
if (lua_type(L, 2) == LUA_TTABLE)
{
- LLSD args = luatable_to_llsd(L, 2);
+ LLSD args = luatable_to_llsd_string(L, 2);
LLMenuItemCallGL::Params item_params;
item_params.name = args["name"];
@@ -338,11 +338,12 @@ int lua_add_menu(lua_State *L)
{
if (lua_type(L, 1) == LUA_TTABLE)
{
- LLSD args = luatable_to_llsd(L, 1);
+ LLSD args = luatable_to_llsd_string(L, 1);
LLMenuGL::Params item_params;
item_params.name = args["name"];
item_params.label = args["label"];
+ item_params.can_tear_off = args["tear_off"];
LLMenuGL *menu = LLUICtrlFactory::create<LLMenuGL>(item_params);
gMenuBarView->appendMenu(menu);
@@ -351,6 +352,25 @@ int lua_add_menu(lua_State *L)
return 1;
}
+int lua_add_branch(lua_State *L)
+{
+ std::string menu(lua_tostring(L, 1));
+ if (lua_type(L, 2) == LUA_TTABLE)
+ {
+ LLSD args = luatable_to_llsd_string(L, 2);
+
+ LLMenuGL::Params item_params;
+ item_params.name = args["name"];
+ item_params.label = args["label"];
+ item_params.can_tear_off = args["tear_off"];
+
+ LLMenuGL *branch = LLUICtrlFactory::create<LLMenuGL>(item_params);
+ gMenuBarView->findChildMenuByName(menu, true)->appendMenu(branch);
+ }
+
+ return 1;
+}
+
int lua_run_ui_command(lua_State *L)
{
int top = lua_gettop(L);
@@ -403,7 +423,7 @@ void initLUA(lua_State *L)
lua_register(L, "add_menu_separator", lua_add_menu_separator);
lua_register(L, "add_menu_item", lua_add_menu_item);
lua_register(L, "add_menu", lua_add_menu);
-
+ lua_register(L, "add_branch", lua_add_branch);
lua_register(L, "run_ui_command", lua_run_ui_command);
}