91 lines
2.9 KiB
C++
91 lines
2.9 KiB
C++
/* @file lffloaterinvpanel.cpp
|
|
* @brief Simple floater displaying an inventory panel with any category as its root
|
|
*
|
|
* Copyright (C) 2013 Liru Færs
|
|
*
|
|
* 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; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* 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 */
|
|
|
|
#include "llviewerprecompiledheaders.h"
|
|
|
|
#include "lffloaterinvpanel.h"
|
|
|
|
#include "llinventorypanel.h"
|
|
#include "lluictrlfactory.h"
|
|
|
|
|
|
LFFloaterInvPanel::LFFloaterInvPanel(const LLUUID& cat_id, LLInventoryModel* model, const std::string& name)
|
|
: LLInstanceTracker<LFFloaterInvPanel, LLUUID>(cat_id)
|
|
{
|
|
mCommitCallbackRegistrar.add("InvPanel.Search", boost::bind(&LFFloaterInvPanel::onSearch, this, _2));
|
|
LLUICtrlFactory::getInstance()->buildFloater(this, "floater_inv_panel.xml");
|
|
LLPanel* panel = getChild<LLPanel>("placeholder_panel");
|
|
mPanel = new LLInventoryPanel("inv_panel", LLInventoryPanel::DEFAULT_SORT_ORDER, cat_id.asString(), panel->getRect(), model, true);
|
|
mPanel->postBuild();
|
|
mPanel->setFollows(FOLLOWS_ALL);
|
|
mPanel->setEnabled(true);
|
|
addChild(mPanel);
|
|
removeChild(panel);
|
|
setTitle(name);
|
|
}
|
|
|
|
LFFloaterInvPanel::~LFFloaterInvPanel()
|
|
{
|
|
delete mPanel;
|
|
}
|
|
|
|
// static
|
|
void LFFloaterInvPanel::show(const LLUUID& cat_id, LLInventoryModel* model, const std::string& name)
|
|
{
|
|
LFFloaterInvPanel* floater = LFFloaterInvPanel::getInstance(cat_id);
|
|
if (!floater) floater = new LFFloaterInvPanel(cat_id, model, name);
|
|
floater->open();
|
|
}
|
|
|
|
// static
|
|
void LFFloaterInvPanel::closeAll()
|
|
{
|
|
// We must make a copy first, because LLInstanceTracker doesn't allow destruction while having iterators to it.
|
|
std::vector<LFFloaterInvPanel*> cache;
|
|
for (instance_iter i = beginInstances(); i != endInstances(); ++i)
|
|
{
|
|
cache.push_back(&*i);
|
|
}
|
|
// Now close all panels, without using instance_iter iterators.
|
|
for (std::vector<LFFloaterInvPanel*>::iterator i = cache.begin(); i != cache.end(); ++i)
|
|
{
|
|
(*i)->close();
|
|
}
|
|
}
|
|
|
|
// virtual
|
|
BOOL LFFloaterInvPanel::handleKeyHere(KEY key, MASK mask)
|
|
{
|
|
if (!mPanel->hasFocus() && mask == MASK_NONE && (key == KEY_RETURN || key == KEY_DOWN))
|
|
{
|
|
mPanel->setFocus(true);
|
|
if (LLFolderView* root = mPanel->getRootFolder())
|
|
root->scrollToShowSelection();
|
|
return true;
|
|
}
|
|
|
|
return LLFloater::handleKeyHere(key, mask);
|
|
}
|
|
|
|
void LFFloaterInvPanel::onSearch(const LLSD& val)
|
|
{
|
|
mPanel->setFilterSubString(val.asString());
|
|
}
|