summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelpeople.cpp
blob: 366c80f580706e68ebc5b8e883d3ce06ec3da068 (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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
/**
 * @file llpanelpeople.cpp
 * @brief Side tray "People" panel
 *
 * $LicenseInfo:firstyear=2009&license=viewerlgpl$
 * Second Life Viewer Source Code
 * Copyright (C) 2010, 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"

// libs
#include "llavatarname.h"
#include "llconversationview.h"
#include "llfloaterimcontainer.h"
#include "llfloaterreg.h"
#include "llfloatersidepanelcontainer.h"
#include "llmenubutton.h"
#include "llmenugl.h"
#include "llnotificationsutil.h"
#include "lleventtimer.h"
#include "llfiltereditor.h"
#include "lltabcontainer.h"
#include "lltoggleablemenu.h"
#include "lluictrlfactory.h"

#include "llpanelpeople.h"

// newview
#include "llaccordionctrl.h"
#include "llaccordionctrltab.h"
#include "llagent.h"
#include "llagentbenefits.h"
#include "llavataractions.h"
#include "llavatarlist.h"
#include "llavatarlistitem.h"
#include "llavatarnamecache.h"
#include "llcallingcard.h"          // for LLAvatarTracker
#include "llcallbacklist.h"
#include "llerror.h"
#include "llfloateravatarpicker.h"
#include "llfriendcard.h"
#include "llgroupactions.h"
#include "llgrouplist.h"
#include "llinventoryobserver.h"
#include "llnetmap.h"
#include "llpanelpeoplemenus.h"
#include "llparticipantlist.h"
#include "llsidetraypanelcontainer.h"
#include "llrecentpeople.h"
#include "llviewercontrol.h"        // for gSavedSettings
#include "llviewermenu.h"           // for gMenuHolder
#include "llviewerregion.h"
#include "llvoiceclient.h"
#include "llworld.h"
#include "llspeakers.h"
#include "llfloaterwebcontent.h"

#include "llagentui.h"
#include "llslurl.h"

#define FRIEND_LIST_UPDATE_TIMEOUT  0.5
#define NEARBY_LIST_UPDATE_INTERVAL 1

static const std::string NEARBY_TAB_NAME    = "nearby_panel";
static const std::string FRIENDS_TAB_NAME   = "friends_panel";
static const std::string GROUP_TAB_NAME     = "groups_panel";
static const std::string RECENT_TAB_NAME    = "recent_panel";
static const std::string BLOCKED_TAB_NAME   = "blocked_panel"; // blocked avatars
static const std::string COLLAPSED_BY_USER  = "collapsed_by_user";

/** Comparator for comparing avatar items by last interaction date */
class LLAvatarItemRecentComparator : public LLAvatarItemComparator
{
public:
    LLAvatarItemRecentComparator() {};
    virtual ~LLAvatarItemRecentComparator() {};

protected:
    virtual bool doCompare(const LLAvatarListItem* avatar_item1, const LLAvatarListItem* avatar_item2) const
    {
        LLRecentPeople& people = LLRecentPeople::instance();
        const LLDate& date1 = people.getDate(avatar_item1->getAvatarId());
        const LLDate& date2 = people.getDate(avatar_item2->getAvatarId());

        //older comes first
        return date1 > date2;
    }
};

/** Compares avatar items by online status, then by name */
class LLAvatarItemStatusComparator : public LLAvatarItemComparator
{
public:
    LLAvatarItemStatusComparator() {};

protected:
    /**
     * @return true if item1 < item2, false otherwise
     */
    virtual bool doCompare(const LLAvatarListItem* item1, const LLAvatarListItem* item2) const
    {
        LLAvatarTracker& at = LLAvatarTracker::instance();
        bool online1 = at.isBuddyOnline(item1->getAvatarId());
        bool online2 = at.isBuddyOnline(item2->getAvatarId());

        if (online1 == online2)
        {
            std::string name1 = item1->getAvatarName();
            std::string name2 = item2->getAvatarName();

            LLStringUtil::toUpper(name1);
            LLStringUtil::toUpper(name2);

            return name1 < name2;
        }

        return online1 > online2;
    }
};

/** Compares avatar items by distance between you and them */
class LLAvatarItemDistanceComparator : public LLAvatarItemComparator
{
public:
    typedef std::map < LLUUID, LLVector3d > id_to_pos_map_t;
    LLAvatarItemDistanceComparator() {};

    void updateAvatarsPositions(std::vector<LLVector3d>& positions, uuid_vec_t& uuids)
    {
        std::vector<LLVector3d>::const_iterator
            pos_it = positions.begin(),
            pos_end = positions.end();

        uuid_vec_t::const_iterator
            id_it = uuids.begin(),
            id_end = uuids.end();

        mAvatarsPositions.clear();

        for (;pos_it != pos_end && id_it != id_end; ++pos_it, ++id_it )
        {
            mAvatarsPositions[*id_it] = *pos_it;
        }
    };

protected:
    virtual bool doCompare(const LLAvatarListItem* item1, const LLAvatarListItem* item2) const
    {
        const LLVector3d& me_pos = gAgent.getPositionGlobal();
        const LLVector3d& item1_pos = mAvatarsPositions.find(item1->getAvatarId())->second;
        const LLVector3d& item2_pos = mAvatarsPositions.find(item2->getAvatarId())->second;

        return dist_vec_squared(item1_pos, me_pos) < dist_vec_squared(item2_pos, me_pos);
    }
private:
    id_to_pos_map_t mAvatarsPositions;
};

/** Comparator for comparing nearby avatar items by last spoken time */
class LLAvatarItemRecentSpeakerComparator : public  LLAvatarItemNameComparator
{
public:
    LLAvatarItemRecentSpeakerComparator() {};
    virtual ~LLAvatarItemRecentSpeakerComparator() {};

protected:
    virtual bool doCompare(const LLAvatarListItem* item1, const LLAvatarListItem* item2) const
    {
        LLPointer<LLSpeaker> lhs = LLActiveSpeakerMgr::instance().findSpeaker(item1->getAvatarId());
        LLPointer<LLSpeaker> rhs = LLActiveSpeakerMgr::instance().findSpeaker(item2->getAvatarId());
        if ( lhs.notNull() && rhs.notNull() )
        {
            // Compare by last speaking time
            if( lhs->mLastSpokeTime != rhs->mLastSpokeTime )
                return ( lhs->mLastSpokeTime > rhs->mLastSpokeTime );
        }
        else if ( lhs.notNull() )
        {
            // True if only item1 speaker info available
            return true;
        }
        else if ( rhs.notNull() )
        {
            // False if only item2 speaker info available
            return false;
        }
        // By default compare by name.
        return LLAvatarItemNameComparator::doCompare(item1, item2);
    }
};

class LLAvatarItemRecentArrivalComparator : public  LLAvatarItemNameComparator
{
public:
    LLAvatarItemRecentArrivalComparator() {};
    virtual ~LLAvatarItemRecentArrivalComparator() {};

protected:
    virtual bool doCompare(const LLAvatarListItem* item1, const LLAvatarListItem* item2) const
    {

        F32 arr_time1 = LLRecentPeople::instance().getArrivalTimeByID(item1->getAvatarId());
        F32 arr_time2 = LLRecentPeople::instance().getArrivalTimeByID(item2->getAvatarId());

        if (arr_time1 == arr_time2)
        {
            std::string name1 = item1->getAvatarName();
            std::string name2 = item2->getAvatarName();

            LLStringUtil::toUpper(name1);
            LLStringUtil::toUpper(name2);

            return name1 < name2;
        }

        return arr_time1 > arr_time2;
    }
};

static const LLAvatarItemRecentComparator RECENT_COMPARATOR;
static const LLAvatarItemStatusComparator STATUS_COMPARATOR;
static LLAvatarItemDistanceComparator DISTANCE_COMPARATOR;
static const LLAvatarItemRecentSpeakerComparator RECENT_SPEAKER_COMPARATOR;
static LLAvatarItemRecentArrivalComparator RECENT_ARRIVAL_COMPARATOR;

static LLPanelInjector<LLPanelPeople> t_people("panel_people");

//=============================================================================

/**
 * Updates given list either on regular basis or on external events (up to implementation).
 */
class LLPanelPeople::Updater
{
public:
    typedef boost::function<void()> callback_t;
    Updater(callback_t cb)
    : mCallback(cb)
    {
    }

    virtual ~Updater()
    {
    }

    /**
     * Activate/deactivate updater.
     *
     * This may start/stop regular updates.
     */
    virtual void setActive(bool) {}

protected:
    void update()
    {
        mCallback();
    }

    callback_t      mCallback;
};

/**
 * Update buttons on changes in our friend relations (STORM-557).
 */
class LLButtonsUpdater : public LLPanelPeople::Updater, public LLFriendObserver
{
public:
    LLButtonsUpdater(callback_t cb)
    :   LLPanelPeople::Updater(cb)
    {
        LLAvatarTracker::instance().addObserver(this);
    }

    ~LLButtonsUpdater()
    {
        LLAvatarTracker::instance().removeObserver(this);
    }

    /*virtual*/ void changed(U32 mask)
    {
        (void) mask;
        update();
    }
};

class LLAvatarListUpdater : public LLPanelPeople::Updater, public LLEventTimer
{
public:
    LLAvatarListUpdater(callback_t cb, F32 period)
    :   LLEventTimer(period),
        LLPanelPeople::Updater(cb)
    {
        mEventTimer.stop();
    }

    virtual bool tick() // from LLEventTimer
    {
        return false;
    }
};

/**
 * Updates the friends list.
 *
 * Updates the list on external events which trigger the changed() method.
 */
class LLFriendListUpdater : public LLAvatarListUpdater, public LLFriendObserver
{
    LOG_CLASS(LLFriendListUpdater);
    class LLInventoryFriendCardObserver;

public:
    friend class LLInventoryFriendCardObserver;
    LLFriendListUpdater(callback_t cb)
    :   LLAvatarListUpdater(cb, FRIEND_LIST_UPDATE_TIMEOUT)
    ,   mIsActive(false)
    {
        LLAvatarTracker::instance().addObserver(this);

        // For notification when SIP online status changes.
        LLVoiceClient::addObserver(this);
        mInvObserver = new LLInventoryFriendCardObserver(this);
    }

    ~LLFriendListUpdater()
    {
        // will be deleted by ~LLInventoryModel
        //delete mInvObserver;
        LLVoiceClient::removeObserver(this);
        LLAvatarTracker::instance().removeObserver(this);
    }

    /*virtual*/ void changed(U32 mask)
    {
        if (mIsActive)
        {
            // events can arrive quickly in bulk - we need not process EVERY one of them -
            // so we wait a short while to let others pile-in, and process them in aggregate.
            mEventTimer.start();
        }

        // save-up all the mask-bits which have come-in
        mMask |= mask;
    }


    /*virtual*/ bool tick()
    {
        if (!mIsActive) return false;

        if (mMask & (LLFriendObserver::ADD | LLFriendObserver::REMOVE | LLFriendObserver::ONLINE))
        {
            update();
        }

        // Stop updates.
        mEventTimer.stop();
        mMask = 0;

        return false;
    }

    // virtual
    void setActive(bool active)
    {
        mIsActive = active;
        if (active)
        {
            tick();
        }
    }

private:
    U32 mMask;
    LLInventoryFriendCardObserver* mInvObserver;
    bool mIsActive;

    /**
     *  This class is intended for updating Friend List when Inventory Friend Card is added/removed.
     *
     *  The main usage is when Inventory Friends/All content is added while synchronizing with
     *      friends list on startup is performed. In this case Friend Panel should be updated when
     *      missing Inventory Friend Card is created.
     *  *NOTE: updating is fired when Inventory item is added into CallingCards/Friends subfolder.
     *      Otherwise LLFriendObserver functionality is enough to keep Friends Panel synchronized.
     */
    class LLInventoryFriendCardObserver : public LLInventoryObserver
    {
        LOG_CLASS(LLFriendListUpdater::LLInventoryFriendCardObserver);

        friend class LLFriendListUpdater;

    private:
        LLInventoryFriendCardObserver(LLFriendListUpdater* updater) : mUpdater(updater)
        {
            gInventory.addObserver(this);
        }
        ~LLInventoryFriendCardObserver()
        {
            gInventory.removeObserver(this);
        }
        /*virtual*/ void changed(U32 mask)
        {
            LL_DEBUGS() << "Inventory changed: " << mask << LL_ENDL;

            static bool synchronize_friends_folders = true;
            if (synchronize_friends_folders)
            {
                // Checks whether "Friends" and "Friends/All" folders exist in "Calling Cards" folder,
                // fetches their contents if needed and synchronizes it with buddies list.
                // If the folders are not found they are created.
                LLFriendCardsManager::instance().syncFriendCardsFolders();
                synchronize_friends_folders = false;
            }

            // *NOTE: deleting of InventoryItem is performed via moving to Trash.
            // That means LLInventoryObserver::STRUCTURE is present in MASK instead of LLInventoryObserver::REMOVE
            if ((CALLINGCARD_ADDED & mask) == CALLINGCARD_ADDED)
            {
                LL_DEBUGS() << "Calling card added: count: " << gInventory.getChangedIDs().size()
                    << ", first Inventory ID: "<< (*gInventory.getChangedIDs().begin())
                    << LL_ENDL;

                bool friendFound = false;
                std::set<LLUUID> changedIDs = gInventory.getChangedIDs();
                for (std::set<LLUUID>::const_iterator it = changedIDs.begin(); it != changedIDs.end(); ++it)
                {
                    if (isDescendentOfInventoryFriends(*it))
                    {
                        friendFound = true;
                        break;
                    }
                }

                if (friendFound)
                {
                    LL_DEBUGS() << "friend found, panel should be updated" << LL_ENDL;
                    mUpdater->changed(LLFriendObserver::ADD);
                }
            }
        }

        bool isDescendentOfInventoryFriends(const LLUUID& invItemID)
        {
            LLViewerInventoryItem * item = gInventory.getItem(invItemID);
            if (NULL == item)
                return false;

            return LLFriendCardsManager::instance().isItemInAnyFriendsList(item);
        }
        LLFriendListUpdater* mUpdater;

        static const U32 CALLINGCARD_ADDED = LLInventoryObserver::ADD | LLInventoryObserver::CALLING_CARD;
    };
};

/**
 * Periodically updates the nearby people list while the Nearby tab is active.
 *
 * The period is defined by NEARBY_LIST_UPDATE_INTERVAL constant.
 */
class LLNearbyListUpdater : public LLAvatarListUpdater
{
    LOG_CLASS(LLNearbyListUpdater);

public:
    LLNearbyListUpdater(callback_t cb)
    :   LLAvatarListUpdater(cb, NEARBY_LIST_UPDATE_INTERVAL)
    {
        setActive(false);
    }

    /*virtual*/ void setActive(bool val)
    {
        if (val)
        {
            // update immediately and start regular updates
            update();
            mEventTimer.start();
        }
        else
        {
            // stop regular updates
            mEventTimer.stop();
        }
    }

    /*virtual*/ bool tick()
    {
        update();
        return false;
    }
private:
};

/**
 * Updates the recent people list (those the agent has recently interacted with).
 */
class LLRecentListUpdater : public LLAvatarListUpdater, public boost::signals2::trackable
{
    LOG_CLASS(LLRecentListUpdater);

public:
    LLRecentListUpdater(callback_t cb)
    :   LLAvatarListUpdater(cb, 0)
    {
        LLRecentPeople::instance().setChangedCallback(boost::bind(&LLRecentListUpdater::update, this));
    }
};

//=============================================================================

LLPanelPeople::LLPanelPeople()
    :   LLPanel(),
        mTabContainer(NULL),
        mOnlineFriendList(NULL),
        mAllFriendList(NULL),
        mNearbyList(NULL),
        mRecentList(NULL),
        mGroupList(NULL),
        mMiniMap(NULL)
{
    mFriendListUpdater = new LLFriendListUpdater(boost::bind(&LLPanelPeople::updateFriendList,  this));
    mNearbyListUpdater = new LLNearbyListUpdater(boost::bind(&LLPanelPeople::updateNearbyList,  this));
    mRecentListUpdater = new LLRecentListUpdater(boost::bind(&LLPanelPeople::updateRecentList,  this));
    mButtonsUpdater = new LLButtonsUpdater(boost::bind(&LLPanelPeople::updateButtons, this));

    mCommitCallbackRegistrar.add("People.AddFriend", boost::bind(&LLPanelPeople::onAddFriendButtonClicked, this));
    mCommitCallbackRegistrar.add("People.AddFriendWizard",  boost::bind(&LLPanelPeople::onAddFriendWizButtonClicked,    this));
    mCommitCallbackRegistrar.add("People.DelFriend",        boost::bind(&LLPanelPeople::onDeleteFriendButtonClicked,    this));
    mCommitCallbackRegistrar.add("People.Group.Minus",      boost::bind(&LLPanelPeople::onGroupMinusButtonClicked,  this));
    mCommitCallbackRegistrar.add("People.Chat",         boost::bind(&LLPanelPeople::onChatButtonClicked,        this));
    mCommitCallbackRegistrar.add("People.Gear",         boost::bind(&LLPanelPeople::onGearButtonClicked,        this, _1));

    mCommitCallbackRegistrar.add("People.Group.Plus.Action",  boost::bind(&LLPanelPeople::onGroupPlusMenuItemClicked,  this, _2));
    mCommitCallbackRegistrar.add("People.Friends.ViewSort.Action",  boost::bind(&LLPanelPeople::onFriendsViewSortMenuItemClicked,  this, _2));
    mCommitCallbackRegistrar.add("People.Nearby.ViewSort.Action",  boost::bind(&LLPanelPeople::onNearbyViewSortMenuItemClicked,  this, _2));
    mCommitCallbackRegistrar.add("People.Groups.ViewSort.Action",  boost::bind(&LLPanelPeople::onGroupsViewSortMenuItemClicked,  this, _2));
    mCommitCallbackRegistrar.add("People.Recent.ViewSort.Action",  boost::bind(&LLPanelPeople::onRecentViewSortMenuItemClicked,  this, _2));

    mEnableCallbackRegistrar.add("People.Friends.ViewSort.CheckItem",   boost::bind(&LLPanelPeople::onFriendsViewSortMenuItemCheck, this, _2));
    mEnableCallbackRegistrar.add("People.Recent.ViewSort.CheckItem",    boost::bind(&LLPanelPeople::onRecentViewSortMenuItemCheck,  this, _2));
    mEnableCallbackRegistrar.add("People.Nearby.ViewSort.CheckItem",    boost::bind(&LLPanelPeople::onNearbyViewSortMenuItemCheck,  this, _2));

    mEnableCallbackRegistrar.add("People.Group.Plus.Validate",  boost::bind(&LLPanelPeople::onGroupPlusButtonValidate,  this));

    doPeriodically(boost::bind(&LLPanelPeople::updateNearbyArrivalTime, this), 2.0);
}

LLPanelPeople::~LLPanelPeople()
{
    delete mButtonsUpdater;
    delete mNearbyListUpdater;
    delete mFriendListUpdater;
    delete mRecentListUpdater;

    LLVoiceClient::removeObserver(this);

    mNearbyFilterCommitConnection.disconnect();
    mFriedsFilterCommitConnection.disconnect();
    mGroupsFilterCommitConnection.disconnect();
    mRecentFilterCommitConnection.disconnect();

}

void LLPanelPeople::onFriendsAccordionExpandedCollapsed(LLUICtrl* ctrl, const LLSD& param, LLAvatarList* avatar_list)
{
    if(!avatar_list)
    {
        LL_ERRS() << "Bad parameter" << LL_ENDL;
        return;
    }

    bool expanded = param.asBoolean();

    setAccordionCollapsedByUser(ctrl, !expanded);
    if(!expanded)
    {
        avatar_list->resetSelection();
    }
}


void LLPanelPeople::removePicker()
{
    if(mPicker.get())
    {
        mPicker.get()->closeFloater();
    }
}

bool LLPanelPeople::postBuild()
{
    S32 max_premium = LLAgentBenefitsMgr::get("Premium").getGroupMembershipLimit();

    LLPanel* group_tab = getChild<LLPanel>(GROUP_TAB_NAME);
    mGroupDelBtn = group_tab->getChild<LLButton>("minus_btn");
    mGroupCountText = group_tab->getChild<LLTextBox>("groupcount");
    if(LLAgentBenefitsMgr::current().getGroupMembershipLimit() < max_premium)
    {
        mGroupCountText->setText(getString("GroupCountWithInfo"));
        mGroupCountText->setURLClickedCallback(boost::bind(&LLPanelPeople::onGroupLimitInfo, this));
    }

    mTabContainer = getChild<LLTabContainer>("tabs");
    mTabContainer->setCommitCallback(boost::bind(&LLPanelPeople::onTabSelected, this, _2));
    mSavedFilters.resize(mTabContainer->getTabCount());
    mSavedOriginalFilters.resize(mTabContainer->getTabCount());

    LLPanel* friends_tab = getChild<LLPanel>(FRIENDS_TAB_NAME);
    // updater is active only if panel is visible to user.
    friends_tab->setVisibleCallback(boost::bind(&Updater::setActive, mFriendListUpdater, _2));
    friends_tab->setVisibleCallback(boost::bind(&LLPanelPeople::removePicker, this));

    mFriendsGearBtn = friends_tab->getChild<LLButton>("gear_btn");
    mFriendsDelFriendBtn = friends_tab->getChild<LLUICtrl>("friends_del_btn");

    mOnlineFriendList = friends_tab->getChild<LLAvatarList>("avatars_online");
    mAllFriendList = friends_tab->getChild<LLAvatarList>("avatars_all");
    mOnlineFriendList->setNoItemsCommentText(getString("no_friends_online"));
    mOnlineFriendList->setShowIcons("FriendsListShowIcons");
    mOnlineFriendList->showPermissions(gSavedSettings.getBOOL("FriendsListShowPermissions"));
    mOnlineFriendList->setShowCompleteName(!gSavedSettings.getBOOL("FriendsListHideUsernames"));
    mAllFriendList->setNoItemsCommentText(getString("no_friends"));
    mAllFriendList->setShowIcons("FriendsListShowIcons");
    mAllFriendList->showPermissions(gSavedSettings.getBOOL("FriendsListShowPermissions"));
    mAllFriendList->setShowCompleteName(!gSavedSettings.getBOOL("FriendsListHideUsernames"));

    LLPanel* nearby_tab = getChild<LLPanel>(NEARBY_TAB_NAME);
    nearby_tab->setVisibleCallback(boost::bind(&Updater::setActive, mNearbyListUpdater, _2));

    mNearbyList = nearby_tab->getChild<LLAvatarList>("avatar_list");
    mNearbyList->setNoItemsCommentText(getString("no_one_near"));
    mNearbyList->setNoItemsMsg(getString("no_one_near"));
    mNearbyList->setNoFilteredItemsMsg(getString("no_one_filtered_near"));
    mNearbyList->setShowIcons("NearbyListShowIcons");
    mNearbyList->setShowCompleteName(!gSavedSettings.getBOOL("NearbyListHideUsernames"));
    mMiniMap = nearby_tab->getChild<LLNetMap>("Net Map", true);
    mMiniMap->setToolTipMsg(gSavedSettings.getBOOL("DoubleClickTeleport") ?
        getString("AltMiniMapToolTipMsg") : getString("MiniMapToolTipMsg"));

    mNearbyGearBtn = nearby_tab->getChild<LLButton>("gear_btn");
    mNearbyAddFriendBtn = nearby_tab->getChild<LLButton>("add_friend_btn");

    LLPanel* recent_tab = getChild<LLPanel>(RECENT_TAB_NAME);
    mRecentList = recent_tab->getChild<LLAvatarList>("avatar_list");
    mRecentList->setNoItemsCommentText(getString("no_recent_people"));
    mRecentList->setNoItemsMsg(getString("no_recent_people"));
    mRecentList->setNoFilteredItemsMsg(getString("no_filtered_recent_people"));
    mRecentList->setShowIcons("RecentListShowIcons");

    mRecentGearBtn = recent_tab->getChild<LLButton>("gear_btn");
    mRecentAddFriendBtn = recent_tab->getChild<LLButton>("add_friend_btn");

    mGroupList = group_tab->getChild<LLGroupList>("group_list");
    mGroupList->setNoItemsCommentText(getString("no_groups_msg"));
    mGroupList->setNoItemsMsg(getString("no_groups_msg"));
    mGroupList->setNoFilteredItemsMsg(getString("no_filtered_groups_msg"));

    mNearbyFilterCommitConnection = nearby_tab->getChild<LLFilterEditor>("nearby_filter_input")->setCommitCallback(boost::bind(&LLPanelPeople::onFilterEdit, this, _2));
    mFriedsFilterCommitConnection = friends_tab->getChild<LLFilterEditor>("friends_filter_input")->setCommitCallback(boost::bind(&LLPanelPeople::onFilterEdit, this, _2));
    mRecentFilterCommitConnection = recent_tab->getChild<LLFilterEditor>("recent_filter_input")->setCommitCallback(boost::bind(&LLPanelPeople::onFilterEdit, this, _2));
    mGroupsFilterCommitConnection = group_tab->getChild<LLFilterEditor>("groups_filter_input")->setCommitCallback(boost::bind(&LLPanelPeople::onFilterEdit, this, _2));

    mNearbyList->setContextMenu(&LLPanelPeopleMenus::gNearbyPeopleContextMenu);
    mRecentList->setContextMenu(&LLPanelPeopleMenus::gPeopleContextMenu);
    mAllFriendList->setContextMenu(&LLPanelPeopleMenus::gPeopleContextMenu);
    mOnlineFriendList->setContextMenu(&LLPanelPeopleMenus::gPeopleContextMenu);

    setSortOrder(mRecentList,       (ESortOrder)gSavedSettings.getU32("RecentPeopleSortOrder"), false);
    setSortOrder(mAllFriendList,    (ESortOrder)gSavedSettings.getU32("FriendsSortOrder"),      false);
    setSortOrder(mNearbyList,       (ESortOrder)gSavedSettings.getU32("NearbyPeopleSortOrder"), false);

    mOnlineFriendList->setItemDoubleClickCallback(boost::bind(&LLPanelPeople::onAvatarListDoubleClicked, this, _1));
    mAllFriendList->setItemDoubleClickCallback(boost::bind(&LLPanelPeople::onAvatarListDoubleClicked, this, _1));
    mNearbyList->setItemDoubleClickCallback(boost::bind(&LLPanelPeople::onAvatarListDoubleClicked, this, _1));
    mRecentList->setItemDoubleClickCallback(boost::bind(&LLPanelPeople::onAvatarListDoubleClicked, this, _1));

    mOnlineFriendList->setCommitCallback(boost::bind(&LLPanelPeople::onAvatarListCommitted, this, mOnlineFriendList));
    mAllFriendList->setCommitCallback(boost::bind(&LLPanelPeople::onAvatarListCommitted, this, mAllFriendList));
    mNearbyList->setCommitCallback(boost::bind(&LLPanelPeople::onAvatarListCommitted, this, mNearbyList));
    mRecentList->setCommitCallback(boost::bind(&LLPanelPeople::onAvatarListCommitted, this, mRecentList));

    // Set openning IM as default on return action for avatar lists
    mOnlineFriendList->setReturnCallback(boost::bind(&LLPanelPeople::onImButtonClicked, this));
    mAllFriendList->setReturnCallback(boost::bind(&LLPanelPeople::onImButtonClicked, this));
    mNearbyList->setReturnCallback(boost::bind(&LLPanelPeople::onImButtonClicked, this));
    mRecentList->setReturnCallback(boost::bind(&LLPanelPeople::onImButtonClicked, this));

    mGroupList->setDoubleClickCallback(boost::bind(&LLPanelPeople::onChatButtonClicked, this));
    mGroupList->setCommitCallback(boost::bind(&LLPanelPeople::updateButtons, this));
    mGroupList->setReturnCallback(boost::bind(&LLPanelPeople::onChatButtonClicked, this));

    LLMenuButton* groups_gear_btn = getChild<LLMenuButton>("groups_gear_btn");

    // Use the context menu of the Groups list for the Groups tab gear menu.
    LLToggleableMenu* groups_gear_menu = mGroupList->getContextMenu();
    if (groups_gear_menu)
    {
        groups_gear_btn->setMenu(groups_gear_menu, LLMenuButton::MP_BOTTOM_LEFT);
    }
    else
    {
        LL_WARNS() << "People->Groups list menu not found" << LL_ENDL;
    }

    mFriendsAccordion = friends_tab->getChild<LLAccordionCtrl>("friends_accordion");

    mFriendsAllTab = mFriendsAccordion->getChild<LLAccordionCtrlTab>("tab_all");
    mFriendsAllTab->setDropDownStateChangedCallback(
        boost::bind(&LLPanelPeople::onFriendsAccordionExpandedCollapsed, this, _1, _2, mAllFriendList));

    mFriendsOnlineTab = mFriendsAccordion->getChild<LLAccordionCtrlTab>("tab_online");
    mFriendsOnlineTab->setDropDownStateChangedCallback(
        boost::bind(&LLPanelPeople::onFriendsAccordionExpandedCollapsed, this, _1, _2, mOnlineFriendList));

    // Must go after setting commit callback and initializing all pointers to children.
    mTabContainer->selectTabByName(NEARBY_TAB_NAME);

    LLVoiceClient::addObserver(this);

    // call this method in case some list is empty and buttons can be in inconsistent state
    updateButtons();

    mOnlineFriendList->setRefreshCompleteCallback(boost::bind(&LLPanelPeople::onFriendListRefreshComplete, this, _1, _2));
    mAllFriendList->setRefreshCompleteCallback(boost::bind(&LLPanelPeople::onFriendListRefreshComplete, this, _1, _2));

    return true;
}

// virtual
void LLPanelPeople::onChange(EStatusType status, const LLSD& channelInfo, bool proximal)
{
    if(status == STATUS_JOINING || status == STATUS_LEFT_CHANNEL)
    {
        return;
    }

    updateButtons();
}

void LLPanelPeople::updateFriendListHelpText()
{
    // show special help text for just created account to help finding friends. EXT-4836
    static LLTextBox* no_friends_text = getChild<LLTextBox>("no_friends_help_text");

    // Seems sometimes all_friends can be empty because of issue with Inventory loading (clear cache, slow connection...)
    // So, lets check all lists to avoid overlapping the text with online list. See EXT-6448.
    bool any_friend_exists = mAllFriendList->filterHasMatches() || mOnlineFriendList->filterHasMatches();
    no_friends_text->setVisible(!any_friend_exists);
    if (no_friends_text->getVisible())
    {
        //update help text for empty lists
        const std::string& filter = mSavedOriginalFilters[mTabContainer->getCurrentPanelIndex()];

        std::string message_name = filter.empty() ? "no_friends_msg" : "no_filtered_friends_msg";
        LLStringUtil::format_map_t args;
        args["[SEARCH_TERM]"] = LLURI::escape(filter);
        no_friends_text->setText(getString(message_name, args));
    }
}

void LLPanelPeople::updateFriendList()
{
    if (!mOnlineFriendList || !mAllFriendList)
        return;

    // get all buddies we know about
    const LLAvatarTracker& av_tracker = LLAvatarTracker::instance();
    LLAvatarTracker::buddy_map_t all_buddies;
    av_tracker.copyBuddyList(all_buddies);

    // save them to the online and all friends vectors
    uuid_vec_t& online_friendsp = mOnlineFriendList->getIDs();
    uuid_vec_t& all_friendsp = mAllFriendList->getIDs();

    all_friendsp.clear();
    online_friendsp.clear();

    uuid_vec_t buddies_uuids;
    LLAvatarTracker::buddy_map_t::const_iterator buddies_iter;

    // Fill the avatar list with friends UUIDs
    for (buddies_iter = all_buddies.begin(); buddies_iter != all_buddies.end(); ++buddies_iter)
    {
        buddies_uuids.push_back(buddies_iter->first);
    }

    if (buddies_uuids.size() > 0)
    {
        LL_DEBUGS() << "Friends added to the list: " << buddies_uuids.size() << LL_ENDL;
        all_friendsp = buddies_uuids;
    }
    else
    {
        LL_DEBUGS() << "No friends found" << LL_ENDL;
    }

    LLAvatarTracker::buddy_map_t::const_iterator buddy_it = all_buddies.begin();
    for (; buddy_it != all_buddies.end(); ++buddy_it)
    {
        LLUUID buddy_id = buddy_it->first;
        if (av_tracker.isBuddyOnline(buddy_id))
            online_friendsp.push_back(buddy_id);
    }

    /*
     * Avatarlists  will be hidden by showFriendsAccordionsIfNeeded(), if they do not have items.
     * But avatarlist can be updated only if it is visible @see LLAvatarList::draw();
     * So we need to do force update of lists to avoid inconsistency of data and view of avatarlist.
     */
    mOnlineFriendList->setDirty(true, !mOnlineFriendList->filterHasMatches());// do force update if list do NOT have items
    mAllFriendList->setDirty(true, !mAllFriendList->filterHasMatches());
    //update trash and other buttons according to a selected item
    updateButtons();
    showFriendsAccordionsIfNeeded();
}

void LLPanelPeople::updateNearbyList()
{
    if (!mNearbyList)
        return;

    std::vector<LLVector3d> positions;

    LLWorld::getInstance()->getAvatars(&mNearbyList->getIDs(), &positions, gAgent.getPositionGlobal(), gSavedSettings.getF32("MPVNearMeRange"));
    mNearbyList->setDirty();

    DISTANCE_COMPARATOR.updateAvatarsPositions(positions, mNearbyList->getIDs());
    LLActiveSpeakerMgr::instance().update(true);
}

void LLPanelPeople::updateRecentList()
{
    if (!mRecentList)
        return;

    LLRecentPeople::instance().get(mRecentList->getIDs());
    mRecentList->setDirty();
}

void LLPanelPeople::updateButtons()
{
    const std::string& cur_tab     = getActiveTabName();
    bool nearby_tab_active = (cur_tab == NEARBY_TAB_NAME);
    bool friends_tab_active = (cur_tab == FRIENDS_TAB_NAME);
    bool group_tab_active   = (cur_tab == GROUP_TAB_NAME);
    bool recent_tab_active  = (cur_tab == RECENT_TAB_NAME);
    LLUUID selected_id;

    uuid_vec_t selected_uuids;
    getCurrentItemIDs(selected_uuids);
    bool item_selected = (selected_uuids.size() == 1);
    bool multiple_selected = (selected_uuids.size() >= 1);

    if (group_tab_active)
    {
        if (item_selected)
        {
            selected_id = mGroupList->getSelectedUUID();
        }

        mGroupDelBtn->setEnabled(item_selected && selected_id.notNull()); // a real group selected

        U32 groups_count = static_cast<U32>(gAgent.mGroups.size());
        U32 max_groups = LLAgentBenefitsMgr::current().getGroupMembershipLimit();
        U32 groups_remaining = max_groups > groups_count ? max_groups - groups_count : 0;
        mGroupCountText->setTextArg("[COUNT]", llformat("%d", groups_count));
        mGroupCountText->setTextArg("[REMAINING]", llformat("%d", groups_remaining));
    }
    else
    {
        bool is_friend = true;
        bool is_self = false;
        // Check whether selected avatar is our friend.
        if (item_selected)
        {
            selected_id = selected_uuids.front();
            is_friend = LLAvatarTracker::instance().getBuddyInfo(selected_id) != NULL;
            is_self = gAgent.getID() == selected_id;
        }

        {
            if(nearby_tab_active)
            {
                mNearbyAddFriendBtn->setEnabled(item_selected && !is_friend && !is_self);
                mNearbyGearBtn->setEnabled(multiple_selected);
            }

            if (friends_tab_active)
            {
                mFriendsDelFriendBtn->setEnabled(multiple_selected);
                mFriendsGearBtn->setEnabled(multiple_selected);
            }

            if (recent_tab_active)
            {
                mRecentAddFriendBtn->setEnabled(item_selected && !is_friend && !is_self);
                mRecentGearBtn->setEnabled(multiple_selected);
            }
        }
    }
}

const std::string& LLPanelPeople::getActiveTabName() const
{
    return mTabContainer->getCurrentPanel()->getName();
}

LLUUID LLPanelPeople::getCurrentItemID() const
{
    const std::string& cur_tab = getActiveTabName();

    if (cur_tab == FRIENDS_TAB_NAME) // this tab has two lists
    {
        LLUUID cur_online_friend;

        if ((cur_online_friend = mOnlineFriendList->getSelectedUUID()).notNull())
            return cur_online_friend;

        return mAllFriendList->getSelectedUUID();
    }

    if (cur_tab == NEARBY_TAB_NAME)
        return mNearbyList->getSelectedUUID();

    if (cur_tab == RECENT_TAB_NAME)
        return mRecentList->getSelectedUUID();

    if (cur_tab == GROUP_TAB_NAME)
        return mGroupList->getSelectedUUID();

    if (cur_tab == BLOCKED_TAB_NAME)
        return LLUUID::null; // FIXME?

    llassert(0 && "unknown tab selected");
    return LLUUID::null;
}

void LLPanelPeople::getCurrentItemIDs(uuid_vec_t& selected_uuids) const
{
    const std::string& cur_tab = getActiveTabName();

    if (cur_tab == FRIENDS_TAB_NAME)
    {
        // friends tab has two lists
        mOnlineFriendList->getSelectedUUIDs(selected_uuids);
        mAllFriendList->getSelectedUUIDs(selected_uuids);
    }
    else if (cur_tab == NEARBY_TAB_NAME)
        mNearbyList->getSelectedUUIDs(selected_uuids);
    else if (cur_tab == RECENT_TAB_NAME)
        mRecentList->getSelectedUUIDs(selected_uuids);
    else if (cur_tab == GROUP_TAB_NAME)
        mGroupList->getSelectedUUIDs(selected_uuids);
    else if (cur_tab == BLOCKED_TAB_NAME)
        selected_uuids.clear(); // FIXME?
    else
        llassert(0 && "unknown tab selected");

}

void LLPanelPeople::setSortOrder(LLAvatarList* list, ESortOrder order, bool save)
{
    switch (order)
    {
    case E_SORT_BY_NAME:
        list->sortByName();
        break;
    case E_SORT_BY_STATUS:
        list->setComparator(&STATUS_COMPARATOR);
        list->sort();
        break;
    case E_SORT_BY_MOST_RECENT:
        list->setComparator(&RECENT_COMPARATOR);
        list->sort();
        break;
    case E_SORT_BY_RECENT_SPEAKERS:
        list->setComparator(&RECENT_SPEAKER_COMPARATOR);
        list->sort();
        break;
    case E_SORT_BY_DISTANCE:
        list->setComparator(&DISTANCE_COMPARATOR);
        list->sort();
        break;
    case E_SORT_BY_RECENT_ARRIVAL:
        list->setComparator(&RECENT_ARRIVAL_COMPARATOR);
        list->sort();
        break;
    default:
        LL_WARNS() << "Unrecognized people sort order for " << list->getName() << LL_ENDL;
        return;
    }

    if (save)
    {
        std::string setting;

        if (list == mAllFriendList || list == mOnlineFriendList)
            setting = "FriendsSortOrder";
        else if (list == mRecentList)
            setting = "RecentPeopleSortOrder";
        else if (list == mNearbyList)
            setting = "NearbyPeopleSortOrder";

        if (!setting.empty())
            gSavedSettings.setU32(setting, order);
    }
}

void LLPanelPeople::onFilterEdit(const std::string& search_string)
{
    const S32 cur_tab_idx = mTabContainer->getCurrentPanelIndex();
    std::string& filter = mSavedOriginalFilters[cur_tab_idx];
    std::string& saved_filter = mSavedFilters[cur_tab_idx];

    filter = search_string;
    LLStringUtil::trimHead(filter);

    // Searches are case-insensitive
    std::string search_upper = filter;
    LLStringUtil::toUpper(search_upper);

    if (saved_filter == search_upper)
        return;

    saved_filter = search_upper;

    // Apply new filter to the current tab.
    const std::string& cur_tab = getActiveTabName();
    if (cur_tab == NEARBY_TAB_NAME)
    {
        mNearbyList->setNameFilter(filter);
    }
    else if (cur_tab == FRIENDS_TAB_NAME)
    {
        // store accordion tabs opened/closed state before any manipulation with accordion tabs
        if (!saved_filter.empty())
        {
            notifyChildren(LLSD().with("action","store_state"));
        }

        mOnlineFriendList->setNameFilter(filter);
        mAllFriendList->setNameFilter(filter);

        setAccordionCollapsedByUser(mFriendsOnlineTab, false);
        setAccordionCollapsedByUser(mFriendsAllTab, false);
        showFriendsAccordionsIfNeeded();

        // restore accordion tabs state _after_ all manipulations
        if(saved_filter.empty())
        {
            notifyChildren(LLSD().with("action","restore_state"));
        }
    }
    else if (cur_tab == GROUP_TAB_NAME)
    {
        mGroupList->setNameFilter(filter);
    }
    else if (cur_tab == RECENT_TAB_NAME)
    {
        mRecentList->setNameFilter(filter);
    }
}

void LLPanelPeople::onGroupLimitInfo()
{
    LLSD args;

    S32 max_basic = LLAgentBenefitsMgr::get("Base").getGroupMembershipLimit();
    S32 max_premium = LLAgentBenefitsMgr::get("Premium").getGroupMembershipLimit();

    args["MAX_BASIC"] = max_basic;
    args["MAX_PREMIUM"] = max_premium;

    if (LLAgentBenefitsMgr::has("Premium_Plus"))
    {
        S32 max_premium_plus = LLAgentBenefitsMgr::get("Premium_Plus").getGroupMembershipLimit();
        args["MAX_PREMIUM_PLUS"] = max_premium_plus;
        LLNotificationsUtil::add("GroupLimitInfoPlus", args);
    }
    else
    {
        LLNotificationsUtil::add("GroupLimitInfo", args);
    }
}

void LLPanelPeople::onTabSelected(const LLSD& param)
{
    updateButtons();

    showFriendsAccordionsIfNeeded();
}

void LLPanelPeople::onAvatarListDoubleClicked(LLUICtrl* ctrl)
{
    LLAvatarListItem* item = dynamic_cast<LLAvatarListItem*>(ctrl);
    if(!item)
    {
        return;
    }

    LLUUID clicked_id = item->getAvatarId();
    if(gAgent.getID() == clicked_id)
    {
        return;
    }

#if 0 // SJB: Useful for testing, but not currently functional or to spec
    LLAvatarActions::showProfile(clicked_id);
#else // spec says open IM window
    LLAvatarActions::startIM(clicked_id);
#endif
}

void LLPanelPeople::onAvatarListCommitted(LLAvatarList* list)
{
    if (getActiveTabName() == NEARBY_TAB_NAME)
    {
        uuid_vec_t selected_uuids;
        getCurrentItemIDs(selected_uuids);
        mMiniMap->setSelected(selected_uuids);
    }
    // Make sure only one of the friends lists (online/all) has selection.
    else if (getActiveTabName() == FRIENDS_TAB_NAME)
    {
        if (list == mOnlineFriendList)
            mAllFriendList->resetSelection(true);
        else if (list == mAllFriendList)
            mOnlineFriendList->resetSelection(true);
        else
            llassert(0 && "commit on unknown friends list");
    }

    updateButtons();
}

void LLPanelPeople::onAddFriendButtonClicked()
{
    LLUUID id = getCurrentItemID();
    if (id.notNull())
    {
        LLAvatarActions::requestFriendshipDialog(id);
    }
}

bool LLPanelPeople::isItemsFreeOfFriends(const uuid_vec_t& uuids)
{
    const LLAvatarTracker& av_tracker = LLAvatarTracker::instance();
    for (const LLUUID& uuid : uuids)
    {
        if (av_tracker.isBuddy(uuid))
        {
            return false;
        }
    }
    return true;
}

void LLPanelPeople::onAddFriendWizButtonClicked()
{
    LLPanel* cur_panel = mTabContainer->getCurrentPanel();
    LLView * button = cur_panel->findChild<LLButton>("friends_add_btn", true);

    // Show add friend wizard.
    LLFloater* root_floater = gFloaterView->getParentFloater(this);
    LLFloaterAvatarPicker* picker = LLFloaterAvatarPicker::show(boost::bind(&LLPanelPeople::onAvatarPicked, _1, _2), false, true, false, root_floater->getName(), button);
    if (!picker)
    {
        return;
    }

    // Need to disable 'ok' button when friend occurs in selection
    picker->setOkBtnEnableCb(boost::bind(&LLPanelPeople::isItemsFreeOfFriends, this, _1));

    if (root_floater)
    {
        root_floater->addDependentFloater(picker);
    }

    mPicker = picker->getHandle();
}

void LLPanelPeople::onDeleteFriendButtonClicked()
{
    uuid_vec_t selected_uuids;
    getCurrentItemIDs(selected_uuids);

    if (selected_uuids.size() == 1)
    {
        LLAvatarActions::removeFriendDialog( selected_uuids.front() );
    }
    else if (selected_uuids.size() > 1)
    {
        LLAvatarActions::removeFriendsDialog( selected_uuids );
    }
}

void LLPanelPeople::onChatButtonClicked()
{
    LLUUID group_id = getCurrentItemID();
    if (group_id.notNull())
        LLGroupActions::startIM(group_id);
}

void LLPanelPeople::onGearButtonClicked(LLUICtrl* btn)
{
    uuid_vec_t selected_uuids;
    getCurrentItemIDs(selected_uuids);
    // Spawn at bottom left corner of the button.
    if (getActiveTabName() == NEARBY_TAB_NAME)
        LLPanelPeopleMenus::gNearbyPeopleContextMenu.show(btn, selected_uuids, 0, 0);
    else
        LLPanelPeopleMenus::gPeopleContextMenu.show(btn, selected_uuids, 0, 0);
}

void LLPanelPeople::onImButtonClicked()
{
    uuid_vec_t selected_uuids;
    getCurrentItemIDs(selected_uuids);
    if ( selected_uuids.size() == 1 )
    {
        // if selected only one person then start up IM
        LLAvatarActions::startIM(selected_uuids.at(0));
    }
    else if ( selected_uuids.size() > 1 )
    {
        // for multiple selection start up friends conference
        LLAvatarActions::startConference(selected_uuids);
    }
}

// static
void LLPanelPeople::onAvatarPicked(const uuid_vec_t& ids, const std::vector<LLAvatarName> names)
{
    if (!names.empty() && !ids.empty())
        LLAvatarActions::requestFriendshipDialog(ids[0], names[0].getCompleteName());
}

bool LLPanelPeople::onGroupPlusButtonValidate()
{
    if (!gAgent.canJoinGroups())
    {
        LLNotificationsUtil::add("JoinedTooManyGroups");
        return false;
    }

    return true;
}

void LLPanelPeople::onGroupMinusButtonClicked()
{
    LLUUID group_id = getCurrentItemID();
    if (group_id.notNull())
        LLGroupActions::leave(group_id);
}

void LLPanelPeople::onGroupPlusMenuItemClicked(const LLSD& userdata)
{
    std::string chosen_item = userdata.asString();

    if (chosen_item == "join_group")
        LLGroupActions::search();
    else if (chosen_item == "new_group")
        LLGroupActions::createGroup();
}

void LLPanelPeople::onFriendsViewSortMenuItemClicked(const LLSD& userdata)
{
    std::string chosen_item = userdata.asString();

    if (chosen_item == "sort_name")
    {
        setSortOrder(mAllFriendList, E_SORT_BY_NAME);
    }
    else if (chosen_item == "sort_status")
    {
        setSortOrder(mAllFriendList, E_SORT_BY_STATUS);
    }
    else if (chosen_item == "view_icons")
    {
        mAllFriendList->toggleIcons();
        mOnlineFriendList->toggleIcons();
    }
    else if (chosen_item == "view_permissions")
    {
        bool show_permissions = !gSavedSettings.getBOOL("FriendsListShowPermissions");
        gSavedSettings.setBOOL("FriendsListShowPermissions", show_permissions);

        mAllFriendList->showPermissions(show_permissions);
        mOnlineFriendList->showPermissions(show_permissions);
    }
    else if (chosen_item == "view_usernames")
    {
        bool hide_usernames = !gSavedSettings.getBOOL("FriendsListHideUsernames");
        gSavedSettings.setBOOL("FriendsListHideUsernames", hide_usernames);

        mAllFriendList->setShowCompleteName(!hide_usernames);
        mAllFriendList->handleDisplayNamesOptionChanged();
        mOnlineFriendList->setShowCompleteName(!hide_usernames);
        mOnlineFriendList->handleDisplayNamesOptionChanged();
    }
    }

void LLPanelPeople::onGroupsViewSortMenuItemClicked(const LLSD& userdata)
{
    std::string chosen_item = userdata.asString();

    if (chosen_item == "show_icons")
    {
        mGroupList->toggleIcons();
    }
}

void LLPanelPeople::onNearbyViewSortMenuItemClicked(const LLSD& userdata)
{
    std::string chosen_item = userdata.asString();

    if (chosen_item == "sort_by_recent_speakers")
    {
        setSortOrder(mNearbyList, E_SORT_BY_RECENT_SPEAKERS);
    }
    else if (chosen_item == "sort_name")
    {
        setSortOrder(mNearbyList, E_SORT_BY_NAME);
    }
    else if (chosen_item == "view_icons")
    {
        mNearbyList->toggleIcons();
    }
    else if (chosen_item == "sort_distance")
    {
        setSortOrder(mNearbyList, E_SORT_BY_DISTANCE);
    }
    else if (chosen_item == "sort_arrival")
    {
        setSortOrder(mNearbyList, E_SORT_BY_RECENT_ARRIVAL);
    }
    else if (chosen_item == "view_usernames")
    {
        bool hide_usernames = !gSavedSettings.getBOOL("NearbyListHideUsernames");
        gSavedSettings.setBOOL("NearbyListHideUsernames", hide_usernames);

        mNearbyList->setShowCompleteName(!hide_usernames);
        mNearbyList->handleDisplayNamesOptionChanged();
    }
}

bool LLPanelPeople::onNearbyViewSortMenuItemCheck(const LLSD& userdata)
{
    std::string item = userdata.asString();
    U32 sort_order = gSavedSettings.getU32("NearbyPeopleSortOrder");

    if (item == "sort_by_recent_speakers")
        return sort_order == E_SORT_BY_RECENT_SPEAKERS;
    if (item == "sort_name")
        return sort_order == E_SORT_BY_NAME;
    if (item == "sort_distance")
        return sort_order == E_SORT_BY_DISTANCE;
    if (item == "sort_arrival")
        return sort_order == E_SORT_BY_RECENT_ARRIVAL;

    return false;
}

void LLPanelPeople::onRecentViewSortMenuItemClicked(const LLSD& userdata)
{
    std::string chosen_item = userdata.asString();

    if (chosen_item == "sort_recent")
    {
        setSortOrder(mRecentList, E_SORT_BY_MOST_RECENT);
    }
    else if (chosen_item == "sort_name")
    {
        setSortOrder(mRecentList, E_SORT_BY_NAME);
    }
    else if (chosen_item == "view_icons")
    {
        mRecentList->toggleIcons();
    }
}

bool LLPanelPeople::onFriendsViewSortMenuItemCheck(const LLSD& userdata)
{
    std::string item = userdata.asString();
    U32 sort_order = gSavedSettings.getU32("FriendsSortOrder");

    if (item == "sort_name")
        return sort_order == E_SORT_BY_NAME;
    if (item == "sort_status")
        return sort_order == E_SORT_BY_STATUS;

    return false;
}

bool LLPanelPeople::onRecentViewSortMenuItemCheck(const LLSD& userdata)
{
    std::string item = userdata.asString();
    U32 sort_order = gSavedSettings.getU32("RecentPeopleSortOrder");

    if (item == "sort_recent")
        return sort_order == E_SORT_BY_MOST_RECENT;
    if (item == "sort_name")
        return sort_order == E_SORT_BY_NAME;

    return false;
}

void LLPanelPeople::onMoreButtonClicked()
{
    // *TODO: not implemented yet
}

void    LLPanelPeople::onOpen(const LLSD& key)
{
    std::string tab_name = key["people_panel_tab_name"];
    if (!tab_name.empty())
    {
        mTabContainer->selectTabByName(tab_name);
        if(tab_name == BLOCKED_TAB_NAME)
        {
            LLPanel* blocked_tab = mTabContainer->getCurrentPanel()->findChild<LLPanel>("panel_block_list_sidetray");
            if(blocked_tab)
            {
                blocked_tab->onOpen(key);
            }
        }
    }
}

bool LLPanelPeople::notifyChildren(const LLSD& info)
{
    if (info.has("task-panel-action") && info["task-panel-action"].asString() == "handle-tri-state")
    {
        LLSideTrayPanelContainer* container = dynamic_cast<LLSideTrayPanelContainer*>(getParent());
        if (!container)
        {
            LL_WARNS() << "Cannot find People panel container" << LL_ENDL;
            return true;
        }

        if (container->getCurrentPanelIndex() > 0)
        {
            // if not on the default panel, switch to it
            container->onOpen(LLSD().with(LLSideTrayPanelContainer::PARAM_SUB_PANEL_NAME, getName()));
        }
        else
            LLFloaterReg::hideInstance("people");

        return true; // this notification is only supposed to be handled by task panels
    }

    return LLPanel::notifyChildren(info);
}

void LLPanelPeople::showAccordion(LLAccordionCtrlTab* tab, bool show)
{
    tab->setVisible(show);
    if(show)
    {
        // don't expand accordion if it was collapsed by user
        if(!isAccordionCollapsedByUser(tab))
        {
            // expand accordion
            tab->changeOpenClose(false);
        }
    }
}

void LLPanelPeople::showFriendsAccordionsIfNeeded()
{
    if(FRIENDS_TAB_NAME == getActiveTabName())
    {
        // Expand and show accordions if needed, else - hide them
        showAccordion(mFriendsOnlineTab, mOnlineFriendList->filterHasMatches());
        showAccordion(mFriendsAllTab, mAllFriendList->filterHasMatches());

        // Rearrange accordions
        mFriendsAccordion->arrange();

        // *TODO: new no_matched_tabs_text attribute was implemented in accordion (EXT-7368).
        // this code should be refactored to use it
        // keep help text in a synchronization with accordions visibility.
        updateFriendListHelpText();
    }
}

void LLPanelPeople::onFriendListRefreshComplete(LLUICtrl*ctrl, const LLSD& param)
{
    if(ctrl == mOnlineFriendList)
    {
        showAccordion(mFriendsOnlineTab, param.asInteger());
    }
    else if(ctrl == mAllFriendList)
    {
        showAccordion(mFriendsAllTab, param.asInteger());
    }
}

void LLPanelPeople::setAccordionCollapsedByUser(LLUICtrl* acc_tab, bool collapsed)
{
    if(!acc_tab)
    {
        LL_WARNS() << "Invalid parameter" << LL_ENDL;
        return;
    }

    LLSD param = acc_tab->getValue();
    param[COLLAPSED_BY_USER] = collapsed;
    acc_tab->setValue(param);
}

void LLPanelPeople::setAccordionCollapsedByUser(const std::string& name, bool collapsed)
{
    setAccordionCollapsedByUser(getChild<LLUICtrl>(name), collapsed);
}

bool LLPanelPeople::isAccordionCollapsedByUser(LLUICtrl* acc_tab)
{
    if(!acc_tab)
    {
        LL_WARNS() << "Invalid parameter" << LL_ENDL;
        return false;
    }

    LLSD param = acc_tab->getValue();
    if(!param.has(COLLAPSED_BY_USER))
    {
        return false;
    }
    return param[COLLAPSED_BY_USER].asBoolean();
}

bool LLPanelPeople::isAccordionCollapsedByUser(const std::string& name)
{
    return isAccordionCollapsedByUser(getChild<LLUICtrl>(name));
}

bool LLPanelPeople::updateNearbyArrivalTime()
{
    std::vector<LLVector3d> positions;
    std::vector<LLUUID> uuids;
    static LLCachedControl<F32> range(gSavedSettings, "NearMeRange");
    LLWorld::getInstance()->getAvatars(&uuids, &positions, gAgent.getPositionGlobal(), range);
    LLRecentPeople::instance().updateAvatarsArrivalTime(uuids);
    return LLApp::isExiting();
}


// EOF