Skip to content
Snippets Groups Projects
Commit 8739d046 authored by Yuri Chebotarev's avatar Yuri Chebotarev
Browse files

EXT-7106 FIX Change from commit callback to validate callback, remove some...

EXT-7106 FIX Change from commit callback to validate callback, remove some cyclic tab panel switches.

Problem was caused by incorrect use on Commit callback (which didn't actually prevent from tab switching) which leads to cyclic tab switching.
Validate callback actually prevents tab switching.

Reviwed by Vadim Savchuk at https://codereview.productengine.com/secondlife/r/385/

--HG--
branch : product-engine
parent f9dff766
No related branches found
No related tags found
No related merge requests found
...@@ -118,8 +118,7 @@ LLPanelGroupRoles::LLPanelGroupRoles() ...@@ -118,8 +118,7 @@ LLPanelGroupRoles::LLPanelGroupRoles()
mCurrentTab(NULL), mCurrentTab(NULL),
mRequestedTab( NULL ), mRequestedTab( NULL ),
mSubTabContainer( NULL ), mSubTabContainer( NULL ),
mFirstUse( TRUE ), mFirstUse( TRUE )
mIgnoreTransition( FALSE )
{ {
} }
...@@ -153,8 +152,8 @@ BOOL LLPanelGroupRoles::postBuild() ...@@ -153,8 +152,8 @@ BOOL LLPanelGroupRoles::postBuild()
//subtabp->addObserver(this); //subtabp->addObserver(this);
} }
// Add click callbacks to all the tabs. // Add click callbacks to tab switching.
mSubTabContainer->setCommitCallback(boost::bind(&LLPanelGroupRoles::handleClickSubTab, this)); mSubTabContainer->setValidateBeforeCommit(boost::bind(&LLPanelGroupRoles::handleSubTabSwitch, this, _1));
// Set the current tab to whatever is currently being shown. // Set the current tab to whatever is currently being shown.
mCurrentTab = (LLPanelGroupTab*) mSubTabContainer->getCurrentPanel(); mCurrentTab = (LLPanelGroupTab*) mSubTabContainer->getCurrentPanel();
...@@ -196,30 +195,20 @@ BOOL LLPanelGroupRoles::isVisibleByAgent(LLAgent* agentp) ...@@ -196,30 +195,20 @@ BOOL LLPanelGroupRoles::isVisibleByAgent(LLAgent* agentp)
} }
void LLPanelGroupRoles::handleClickSubTab() bool LLPanelGroupRoles::handleSubTabSwitch(const LLSD& data)
{ {
// If we are already handling a transition, std::string panel_name = data.asString();
// ignore this.
if (mIgnoreTransition) LLPanelGroupTab* activating_tab = static_cast<LLPanelGroupTab*>(mSubTabContainer->getPanelByName(panel_name));
{
return;
}
mRequestedTab = (LLPanelGroupTab*) mSubTabContainer->getCurrentPanel();
// Make sure they aren't just clicking the same tab... if(activating_tab == mCurrentTab
if (mRequestedTab == mCurrentTab) || activating_tab == mRequestedTab)
{ {
return; return true;
} }
// Try to switch from the current panel to the panel the user selected. mRequestedTab = activating_tab;
attemptTransition();
}
BOOL LLPanelGroupRoles::attemptTransition()
{
// Check if the current tab needs to be applied.
std::string mesg; std::string mesg;
if (mCurrentTab && mCurrentTab->needsApply(mesg)) if (mCurrentTab && mCurrentTab->needsApply(mesg))
{ {
...@@ -235,16 +224,10 @@ BOOL LLPanelGroupRoles::attemptTransition() ...@@ -235,16 +224,10 @@ BOOL LLPanelGroupRoles::attemptTransition()
LLNotificationsUtil::add("PanelGroupApply", args, LLSD(), LLNotificationsUtil::add("PanelGroupApply", args, LLSD(),
boost::bind(&LLPanelGroupRoles::handleNotifyCallback, this, _1, _2)); boost::bind(&LLPanelGroupRoles::handleNotifyCallback, this, _1, _2));
mHasModal = TRUE; mHasModal = TRUE;
// We need to reselect the current tab, since it isn't finished.
if (mSubTabContainer)
{
mIgnoreTransition = TRUE;
mSubTabContainer->selectTabPanel( mCurrentTab );
mIgnoreTransition = FALSE;
}
// Returning FALSE will block a close action from finishing until // Returning FALSE will block a close action from finishing until
// we get a response back from the user. // we get a response back from the user.
return FALSE; return false;
} }
else else
{ {
...@@ -253,7 +236,7 @@ BOOL LLPanelGroupRoles::attemptTransition() ...@@ -253,7 +236,7 @@ BOOL LLPanelGroupRoles::attemptTransition()
{ {
transitionToTab(); transitionToTab();
} }
return TRUE; return true;
} }
} }
...@@ -271,6 +254,7 @@ void LLPanelGroupRoles::transitionToTab() ...@@ -271,6 +254,7 @@ void LLPanelGroupRoles::transitionToTab()
// This is now the current tab; // This is now the current tab;
mCurrentTab = mRequestedTab; mCurrentTab = mRequestedTab;
mCurrentTab->activate(); mCurrentTab->activate();
mRequestedTab = 0;
} }
} }
...@@ -278,6 +262,7 @@ bool LLPanelGroupRoles::handleNotifyCallback(const LLSD& notification, const LLS ...@@ -278,6 +262,7 @@ bool LLPanelGroupRoles::handleNotifyCallback(const LLSD& notification, const LLS
{ {
S32 option = LLNotificationsUtil::getSelectedOption(notification, response); S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
mHasModal = FALSE; mHasModal = FALSE;
LLPanelGroupTab* transition_tab = mRequestedTab;
switch (option) switch (option)
{ {
case 0: // "Apply Changes" case 0: // "Apply Changes"
...@@ -297,26 +282,20 @@ bool LLPanelGroupRoles::handleNotifyCallback(const LLSD& notification, const LLS ...@@ -297,26 +282,20 @@ bool LLPanelGroupRoles::handleNotifyCallback(const LLSD& notification, const LLS
// Skip switching tabs. // Skip switching tabs.
break; break;
} }
// This panel's info successfully applied.
// Switch to the next panel.
// No break! Continue into 'Ignore Changes' which just switches tabs.
mIgnoreTransition = TRUE;
mSubTabContainer->selectTabPanel( mRequestedTab );
mIgnoreTransition = FALSE;
transitionToTab(); transitionToTab();
mSubTabContainer->selectTabPanel( transition_tab );
break; break;
} }
case 1: // "Ignore Changes" case 1: // "Ignore Changes"
// Switch to the requested panel without applying changes // Switch to the requested panel without applying changes
cancel(); cancel();
mIgnoreTransition = TRUE;
mSubTabContainer->selectTabPanel( mRequestedTab );
mIgnoreTransition = FALSE;
transitionToTab(); transitionToTab();
mSubTabContainer->selectTabPanel( transition_tab );
break; break;
case 2: // "Cancel" case 2: // "Cancel"
default: default:
mRequestedTab = NULL;
// Do nothing. The user is canceling the action. // Do nothing. The user is canceling the action.
break; break;
} }
......
...@@ -65,7 +65,7 @@ class LLPanelGroupRoles : public LLPanelGroupTab ...@@ -65,7 +65,7 @@ class LLPanelGroupRoles : public LLPanelGroupTab
virtual BOOL isVisibleByAgent(LLAgent* agentp); virtual BOOL isVisibleByAgent(LLAgent* agentp);
void handleClickSubTab(); bool handleSubTabSwitch(const LLSD& data);
// Checks if the current tab needs to be applied, and tries to switch to the requested tab. // Checks if the current tab needs to be applied, and tries to switch to the requested tab.
BOOL attemptTransition(); BOOL attemptTransition();
...@@ -93,7 +93,6 @@ class LLPanelGroupRoles : public LLPanelGroupTab ...@@ -93,7 +93,6 @@ class LLPanelGroupRoles : public LLPanelGroupTab
LLPanelGroupTab* mRequestedTab; LLPanelGroupTab* mRequestedTab;
LLTabContainer* mSubTabContainer; LLTabContainer* mSubTabContainer;
BOOL mFirstUse; BOOL mFirstUse;
BOOL mIgnoreTransition;
std::string mDefaultNeedsApplyMesg; std::string mDefaultNeedsApplyMesg;
std::string mWantApplyMesg; std::string mWantApplyMesg;
......
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