summaryrefslogtreecommitdiff
path: root/indra/newview/llsearchableui.cpp
blob: c20f5d4230887b3477479d7ed3dc86d11599e471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/**
* @file llsearchableui.cpp
*
* $LicenseInfo:firstyear=2019&license=viewerlgpl$
* Second Life Viewer Source Code
* Copyright (C) 2019, 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 "llsearchableui.h"

#include "llview.h"
#include "lltabcontainer.h"
#include "llmenugl.h"

ll::prefs::SearchableItem::~SearchableItem()
{}

void ll::prefs::SearchableItem::setNotHighlighted()
{
    mCtrl->setHighlighted( false );
}

bool ll::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;
}

ll::prefs::PanelData::~PanelData()
{}

bool ll::prefs::PanelData::hightlightAndHide( LLWString const &aFilter )
{
    for( tSearchableItemList::iterator itr = mChildren.begin(); itr  != mChildren.end(); ++itr )
        (*itr)->setNotHighlighted();

    for (tPanelDataList::iterator itr = mChildPanel.begin(); itr != mChildPanel.end(); ++itr)
        (*itr)->setNotHighlighted();

    if (aFilter.empty())
    {
        return true;
    }

    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;
}

void ll::prefs::PanelData::setNotHighlighted()
{
    for (tSearchableItemList::iterator itr = mChildren.begin(); itr != mChildren.end(); ++itr)
        (*itr)->setNotHighlighted();

    for (tPanelDataList::iterator itr = mChildPanel.begin(); itr != mChildPanel.end(); ++itr)
        (*itr)->setNotHighlighted();
}

bool ll::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;
}

ll::statusbar::SearchableItem::SearchableItem()
    : mMenu(0)
    , mCtrl(0)
    , mWasHiddenBySearch( false )
{ }

void ll::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);
            mWasHiddenBySearch = false;
        }
    }
}

bool ll::statusbar::SearchableItem::hightlightAndHide(LLWString const &aFilter, bool hide)
{
    if ((mMenu && !mMenu->getVisible() && !mWasHiddenBySearch) || dynamic_cast<LLMenuItemTearOffGL*>(mMenu))
        return false;

    setNotHighlighted( );

    if( aFilter.empty() )
    {
        if( mCtrl )
            mCtrl->setHighlighted( false );
        return true;
    }

    bool bHighlighted(!hide);
    if( mLabel.find( aFilter ) != LLWString::npos )
    {
        if( mCtrl )
            mCtrl->setHighlighted( true );
        bHighlighted = true;
    }

    bool bVisible(false);
    for (tSearchableItemList::iterator itr = mChildren.begin(); itr != mChildren.end(); ++itr)
        bVisible |= (*itr)->hightlightAndHide(aFilter, !bHighlighted);

    if (mCtrl && !bVisible && !bHighlighted)
    {
        mWasHiddenBySearch = true;
        mMenu->setVisible(false);
    }
    return bVisible || bHighlighted;
}