phoenix-firestorm/indra/newview/fssearchableui.cpp

154 lines
4.3 KiB
C++

/**
* $LicenseInfo:firstyear=2014&license=fsviewerlgpl$
* Phoenix Firestorm Viewer Source Code
* Copyright (C) 2014, Nicky Dasmijn
*
* 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
*
* The Phoenix Firestorm Project, Inc., 1831 Oakwood Drive, Fairmont, Minnesota 56031-3225 USA
* http://www.firestormviewer.org
* $/LicenseInfo$
*/
#include "llviewerprecompiledheaders.h"
#include "fssearchableui.h"
#include "llview.h"
#include "lltabcontainer.h"
#include "llmenugl.h"
nd::prefs::SearchableItem::~SearchableItem()
{}
void nd::prefs::SearchableItem::setNotHighlighted()
{
mCtrl->setHighlighted( false );
}
bool nd::prefs::SearchableItem::hightlightAndHide( LLWString const &aFilter )
{
if( mCtrl->getHighlighted() )
return true;
LLView const *pView = dynamic_cast< LLView const* >( mCtrl );
if( pView && !pView->getVisible() )
return false;
if( aFilter.empty() )
{
mCtrl->setHighlighted( false );
return true;
}
if( mLabel.find( aFilter ) != LLWString::npos )
{
mCtrl->setHighlighted( true );
return true;
}
return false;
}
nd::prefs::PanelData::~PanelData()
{}
bool nd::prefs::PanelData::hightlightAndHide( LLWString const &aFilter )
{
for( tSearchableItemList::iterator itr = mChildren.begin(); itr != mChildren.end(); ++itr )
(*itr)->setNotHighlighted( );
bool bVisible(false);
for( tSearchableItemList::iterator itr = mChildren.begin(); itr != mChildren.end(); ++itr )
bVisible |= (*itr)->hightlightAndHide( aFilter );
for( tPanelDataList::iterator itr = mChildPanel.begin(); itr != mChildPanel.end(); ++itr )
bVisible |= (*itr)->hightlightAndHide( aFilter );
return bVisible;
}
bool nd::prefs::TabContainerData::hightlightAndHide( LLWString const &aFilter )
{
for( tSearchableItemList::iterator itr = mChildren.begin(); itr != mChildren.end(); ++itr )
(*itr)->setNotHighlighted( );
bool bVisible(false);
for( tSearchableItemList::iterator itr = mChildren.begin(); itr != mChildren.end(); ++itr )
bVisible |= (*itr)->hightlightAndHide( aFilter );
for( tPanelDataList::iterator itr = mChildPanel.begin(); itr != mChildPanel.end(); ++itr )
{
bool bPanelVisible = (*itr)->hightlightAndHide( aFilter );
if( (*itr)->mPanel )
mTabContainer->setTabVisibility( (*itr)->mPanel, bPanelVisible );
bVisible |= bPanelVisible;
}
return bVisible;
}
nd::statusbar::SearchableItem::SearchableItem()
: mMenu(0)
, mCtrl(0)
, mWasHiddenBySearch( false )
{ }
void nd::statusbar::SearchableItem::setNotHighlighted( )
{
for( tSearchableItemList::iterator itr = mChildren.begin(); itr != mChildren.end(); ++itr )
(*itr)->setNotHighlighted( );
if( mCtrl )
{
mCtrl->setHighlighted( false );
if( mWasHiddenBySearch )
mMenu->setVisible( TRUE );
}
}
bool nd::statusbar::SearchableItem::hightlightAndHide( LLWString const &aFilter )
{
if( mMenu && !mMenu->getVisible() && !mWasHiddenBySearch )
return false;
setNotHighlighted( );
bool bVisible(false);
for( tSearchableItemList::iterator itr = mChildren.begin(); itr != mChildren.end(); ++itr )
bVisible |= (*itr)->hightlightAndHide( aFilter );
if( aFilter.empty() )
{
if( mCtrl )
mCtrl->setHighlighted( false );
return true;
}
if( mLabel.find( aFilter ) != LLWString::npos )
{
if( mCtrl )
mCtrl->setHighlighted( true );
return true;
}
if( mCtrl && !bVisible )
{
mWasHiddenBySearch = true;
mMenu->setVisible(FALSE);
}
return bVisible;
}