Skip to content
Snippets Groups Projects
Commit c58c4ace authored by Tofu Linden's avatar Tofu Linden
Browse files

EXT-3739 Task panel tabs in incorrect order, Home tab is missing

parent f3bd6481
No related branches found
No related tags found
No related merge requests found
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
#include "llmediactrl.h" #include "llmediactrl.h"
#include "llviewerhome.h" #include "llviewerhome.h"
static LLRegisterPanelClassWrapper<LLPanelHome> t_people("panel_sidetray_home"); static LLRegisterPanelClassWrapper<LLPanelHome> t_home("panel_sidetray_home");
LLPanelHome::LLPanelHome() : LLPanelHome::LLPanelHome() :
LLPanel(), LLPanel(),
......
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
#include "llaccordionctrltab.h" #include "llaccordionctrltab.h"
#include "llfloater.h" //for gFloaterView #include "llfloater.h" //for gFloaterView
#include "lliconctrl.h"//for Home tab icon #include "lliconctrl.h"//for OpenClose tab icon
#include "llsidetraypanelcontainer.h" #include "llsidetraypanelcontainer.h"
#include "llwindow.h"//for SetCursor #include "llwindow.h"//for SetCursor
#include "lltransientfloatermgr.h" #include "lltransientfloatermgr.h"
...@@ -214,7 +214,7 @@ LLPanel* LLSideTrayTab::getPanel() ...@@ -214,7 +214,7 @@ LLPanel* LLSideTrayTab::getPanel()
LLSideTrayTab* LLSideTrayTab::createInstance () LLSideTrayTab* LLSideTrayTab::createInstance ()
{ {
LLSideTrayTab::Params tab_params; LLSideTrayTab::Params tab_params;
tab_params.tab_title("Home"); tab_params.tab_title("openclose");
LLSideTrayTab* tab = LLUICtrlFactory::create<LLSideTrayTab>(tab_params); LLSideTrayTab* tab = LLUICtrlFactory::create<LLSideTrayTab>(tab_params);
return tab; return tab;
...@@ -389,9 +389,8 @@ void LLSideTray::createButtons () ...@@ -389,9 +389,8 @@ void LLSideTray::createButtons ()
std::string name = sidebar_tab->getName(); std::string name = sidebar_tab->getName();
// The "home" button will open/close the whole panel, this will need to // The "OpenClose" button will open/close the whole panel
// change if the home screen becomes its own tab. if (name == "sidebar_openclose")
if (name == "sidebar_home")
{ {
mCollapseButton = createButton("",sidebar_tab->mImage,sidebar_tab->getTabTitle(), mCollapseButton = createButton("",sidebar_tab->mImage,sidebar_tab->getTabTitle(),
boost::bind(&LLSideTray::onToggleCollapse, this)); boost::bind(&LLSideTray::onToggleCollapse, this));
...@@ -427,7 +426,6 @@ void LLSideTray::processTriState () ...@@ -427,7 +426,6 @@ void LLSideTray::processTriState ()
void LLSideTray::onTabButtonClick(string name) void LLSideTray::onTabButtonClick(string name)
{ {
LLSideTrayTab* side_bar = getTab(name); LLSideTrayTab* side_bar = getTab(name);
if(side_bar == mActiveTab) if(side_bar == mActiveTab)
{ {
processTriState (); processTriState ();
...@@ -443,7 +441,7 @@ void LLSideTray::onToggleCollapse() ...@@ -443,7 +441,7 @@ void LLSideTray::onToggleCollapse()
if(mCollapsed) if(mCollapsed)
{ {
expandSideBar(); expandSideBar();
selectTabByName("sidebar_home"); //selectTabByName("sidebar_openclose");
} }
else else
collapseSideBar(); collapseSideBar();
...@@ -534,11 +532,11 @@ void LLSideTray::collapseSideBar() ...@@ -534,11 +532,11 @@ void LLSideTray::collapseSideBar()
} }
} }
// Home tab doesn't put its button in mTabButtons // OpenClose tab doesn't put its button in mTabButtons
LLSideTrayTab* home_tab = getTab("sidebar_home"); LLSideTrayTab* openclose_tab = getTab("sidebar_openclose");
if (home_tab) if (openclose_tab)
{ {
mCollapseButton->setImageOverlay( home_tab->mImage ); mCollapseButton->setImageOverlay( openclose_tab->mImage );
} }
//mActiveTab->setVisible(FALSE); //mActiveTab->setVisible(FALSE);
reflectCollapseChange(); reflectCollapseChange();
...@@ -549,10 +547,10 @@ void LLSideTray::collapseSideBar() ...@@ -549,10 +547,10 @@ void LLSideTray::collapseSideBar()
void LLSideTray::expandSideBar() void LLSideTray::expandSideBar()
{ {
mCollapsed = false; mCollapsed = false;
LLSideTrayTab* home_tab = getTab("sidebar_home"); LLSideTrayTab* openclose_tab = getTab("sidebar_openclose");
if (home_tab) if (openclose_tab)
{ {
mCollapseButton->setImageOverlay( home_tab->mImageSelected ); mCollapseButton->setImageOverlay( openclose_tab->mImageSelected );
} }
LLSD key;//empty LLSD key;//empty
mActiveTab->onOpen(key); mActiveTab->onOpen(key);
......
...@@ -526,13 +526,14 @@ with the same filename but different name ...@@ -526,13 +526,14 @@ with the same filename but different name
<texture name="TabIcon_Appearance_Selected" file_name="taskpanel/TabIcon_Appearance_Selected.png" preload="false" /> <texture name="TabIcon_Appearance_Selected" file_name="taskpanel/TabIcon_Appearance_Selected.png" preload="false" />
<texture name="TabIcon_Close_Off" file_name="taskpanel/TabIcon_Close_Off.png" preload="false" /> <texture name="TabIcon_Close_Off" file_name="taskpanel/TabIcon_Close_Off.png" preload="false" />
<texture name="TabIcon_Close_Over" file_name="taskpanel/TabIcon_Close_Over.png" preload="false" /> <texture name="TabIcon_Close_Over" file_name="taskpanel/TabIcon_Close_Over.png" preload="false" />
<texture name="TabIcon_Home_Off" file_name="taskpanel/TabIcon_Home_Off.png" preload="false" />
<texture name="TabIcon_Home_Over" file_name="taskpanel/TabIcon_Home_Over.png" preload="false" />
<texture name="TabIcon_Home_Selected" file_name="taskpanel/TabIcon_Home_Selected.png" preload="false" />
<texture name="TabIcon_Inventory_Large" file_name="taskpanel/TabIcon_Inventory_Large.png" preload="false" /> <texture name="TabIcon_Inventory_Large" file_name="taskpanel/TabIcon_Inventory_Large.png" preload="false" />
<texture name="TabIcon_Inventory_Off" file_name="taskpanel/TabIcon_Inventory_Off.png" preload="false" /> <texture name="TabIcon_Inventory_Off" file_name="taskpanel/TabIcon_Inventory_Off.png" preload="false" />
<texture name="TabIcon_Inventory_Over" file_name="taskpanel/TabIcon_Inventory_Over.png" preload="false" /> <texture name="TabIcon_Inventory_Over" file_name="taskpanel/TabIcon_Inventory_Over.png" preload="false" />
<texture name="TabIcon_Inventory_Selected" file_name="taskpanel/TabIcon_Inventory_Selected.png" preload="false" /> <texture name="TabIcon_Inventory_Selected" file_name="taskpanel/TabIcon_Inventory_Selected.png" preload="false" />
<texture name="TabIcon_Home_Large" file_name="taskpanel/TabIcon_Home_Large.png" preload="false" />
<texture name="TabIcon_Home_Off" file_name="taskpanel/TabIcon_Home_Off.png" preload="false" />
<texture name="TabIcon_Home_Over" file_name="taskpanel/TabIcon_Home_Over.png" preload="false" />
<texture name="TabIcon_Home_Selected" file_name="taskpanel/TabIcon_Home_Selected.png" preload="false" />
<texture name="TabIcon_Me_Large" file_name="taskpanel/TabIcon_Me_Large.png" preload="false" /> <texture name="TabIcon_Me_Large" file_name="taskpanel/TabIcon_Me_Large.png" preload="false" />
<texture name="TabIcon_Me_Off" file_name="taskpanel/TabIcon_Me_Off.png" preload="false" /> <texture name="TabIcon_Me_Off" file_name="taskpanel/TabIcon_Me_Off.png" preload="false" />
<texture name="TabIcon_Me_Over" file_name="taskpanel/TabIcon_Me_Over.png" preload="false" /> <texture name="TabIcon_Me_Over" file_name="taskpanel/TabIcon_Me_Over.png" preload="false" />
......
...@@ -12,13 +12,27 @@ ...@@ -12,13 +12,27 @@
appearance up to tray panel header word like "Home". appearance up to tray panel header word like "Home".
Embedded panels are inset by a pixel and so their Embedded panels are inset by a pixel and so their
backgrounds will not block the world fully. --> backgrounds will not block the world fully. -->
<sidetray_tab
name="sidebar_openclose"
help_topic="sidebar_openclose"
tab_title="Toggle Sidebar"
description="Toggle Sidebar."
image="TabIcon_Open_Off"
image_selected="TabIcon_Close_Off"
mouse_opaque="false"
background_visible="true"
>
<panel /> <!-- dummy panel, never to actually be seen -->
</sidetray_tab>
<sidetray_tab <sidetray_tab
name="sidebar_home" name="sidebar_home"
help_topic="sidebar_home" help_topic="sidebar_home"
tab_title="Home" tab_title="Home"
description="Home." description="Home."
image="TabIcon_Open_Off" image="TabIcon_Home_Off"
image_selected="TabIcon_Close_Off" image_selected="TabIcon_Home_Selected"
mouse_opaque="false" mouse_opaque="false"
background_visible="true" background_visible="true"
> >
......
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