Newer
Older
Seth ProductEngine
committed
/**
* @file llfloatersidepanelcontainer.cpp
* @brief LLFloaterSidePanelContainer class definition
*
* $LicenseInfo:firstyear=2011&license=viewerlgpl$
* Second Life Viewer Source Code
* Copyright (C) 2011, Linden Research, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation;
* version 2.1 of the License only.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
* $/LicenseInfo$
*/
#include "llviewerprecompiledheaders.h"
#include "llfloaterreg.h"
Seth ProductEngine
committed
#include "llfloatersidepanelcontainer.h"
Seth ProductEngine
committed
// newview includes
#include "llsidetraypanelcontainer.h"
#include "lltransientfloatermgr.h"
Brad Payne (Vir Linden)
committed
#include "llpaneloutfitedit.h"
#include "llsidepanelappearance.h"
Seth ProductEngine
committed
//static
const std::string LLFloaterSidePanelContainer::sMainPanelName("main_panel");
Seth ProductEngine
committed
LLFloaterSidePanelContainer::LLFloaterSidePanelContainer(const LLSD& key, const Params& params)
: LLFloater(key, params)
{
// Prevent transient floaters (e.g. IM windows) from hiding
// when this floater is clicked.
LLTransientFloaterMgr::getInstance()->addControlView(LLTransientFloaterMgr::GLOBAL, this);
}
LLFloaterSidePanelContainer::~LLFloaterSidePanelContainer()
{
LLTransientFloaterMgr::getInstance()->removeControlView(LLTransientFloaterMgr::GLOBAL, this);
}
void LLFloaterSidePanelContainer::onOpen(const LLSD& key)
{
getChild<LLPanel>(sMainPanelName)->onOpen(key);
Seth ProductEngine
committed
}
andreylproductengine
committed
void LLFloaterSidePanelContainer::closeFloater(bool app_quitting)
Brad Payne (Vir Linden)
committed
{
LLPanelOutfitEdit* panel_outfit_edit =
dynamic_cast<LLPanelOutfitEdit*>(LLFloaterSidePanelContainer::findPanel("appearance", "panel_outfit_edit"));
if (panel_outfit_edit)
Brad Payne (Vir Linden)
committed
{
LLFloater *parent = gFloaterView->getParentFloater(panel_outfit_edit);
if (parent == this )
Brad Payne (Vir Linden)
committed
{
LLSidepanelAppearance* panel_appearance = dynamic_cast<LLSidepanelAppearance*>(getPanel("appearance"));
Alexander Gavriliuk
committed
if (panel_appearance)
LLPanelEditWearable *edit_wearable_ptr = panel_appearance->getWearable();
if (edit_wearable_ptr)
{
edit_wearable_ptr->onClose();
}
Alexander Gavriliuk
committed
if (!app_quitting)
Mnikolenko Productengine
committed
{
panel_appearance->showOutfitsInventoryPanel();
}
Brad Payne (Vir Linden)
committed
}
}
andreylproductengine
committed
LLFloater::closeFloater(app_quitting);
if (getInstanceName() == "inventory" && !getKey().isUndefined())
{
destroy();
}
Brad Payne (Vir Linden)
committed
}
Seth ProductEngine
committed
LLPanel* LLFloaterSidePanelContainer::openChildPanel(const std::string& panel_name, const LLSD& params)
{
LLView* view = findChildView(panel_name, true);
Alexander Gavriliuk
committed
if (!view)
return NULL;
Seth ProductEngine
committed
Paul ProductEngine
committed
if (!getVisible())
{
Alexander Gavriliuk
committed
openFloater();
}
else if (!hasFocus())
{
setFocus(TRUE);
Paul ProductEngine
committed
}
Seth ProductEngine
committed
LLPanel* panel = NULL;
LLSideTrayPanelContainer* container = dynamic_cast<LLSideTrayPanelContainer*>(view->getParent());
if (container)
{
container->openPanel(panel_name, params);
Seth ProductEngine
committed
panel = container->getCurrentPanel();
}
else if ((panel = dynamic_cast<LLPanel*>(view)) != NULL)
Seth ProductEngine
committed
{
panel->onOpen(params);
}
return panel;
}
void LLFloaterSidePanelContainer::showPanel(const std::string& floater_name, const LLSD& key)
{
LLFloaterSidePanelContainer* floaterp = LLFloaterReg::getTypedInstance<LLFloaterSidePanelContainer>(floater_name);
if (floaterp)
{
}
}
void LLFloaterSidePanelContainer::showPanel(const std::string& floater_name, const std::string& panel_name, const LLSD& key)
{
LLFloaterSidePanelContainer* floaterp = LLFloaterReg::getTypedInstance<LLFloaterSidePanelContainer>(floater_name);
if (floaterp)
{
}
}
LLPanel* LLFloaterSidePanelContainer::getPanel(const std::string& floater_name, const std::string& panel_name)
{
LLFloaterSidePanelContainer* floaterp = LLFloaterReg::getTypedInstance<LLFloaterSidePanelContainer>(floater_name);
if (floaterp)
{
return floaterp->findChild<LLPanel>(panel_name, true);
}
return NULL;
}
LLPanel* LLFloaterSidePanelContainer::findPanel(const std::string& floater_name, const std::string& panel_name)
{
LLFloaterSidePanelContainer* floaterp = LLFloaterReg::findTypedInstance<LLFloaterSidePanelContainer>(floater_name);
if (floaterp)
{
return floaterp->findChild<LLPanel>(panel_name, true);
}
return NULL;
}