1 |
|
|
/* |
2 |
|
|
* The ManaPlus Client |
3 |
|
|
* Copyright (C) 2011-2019 The ManaPlus Developers |
4 |
|
|
* Copyright (C) 2019-2021 Andrei Karas |
5 |
|
|
* |
6 |
|
|
* This file is part of The ManaPlus Client. |
7 |
|
|
* |
8 |
|
|
* This program is free software; you can redistribute it and/or modify |
9 |
|
|
* it under the terms of the GNU General Public License as published by |
10 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
11 |
|
|
* any later version. |
12 |
|
|
* |
13 |
|
|
* This program is distributed in the hope that it will be useful, |
14 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 |
|
|
* GNU General Public License for more details. |
17 |
|
|
* |
18 |
|
|
* You should have received a copy of the GNU General Public License |
19 |
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
20 |
|
|
*/ |
21 |
|
|
|
22 |
|
|
#ifndef GUI_WIDGETS_TABS_SOCIALFRIENDSFUNCTOR_H |
23 |
|
|
#define GUI_WIDGETS_TABS_SOCIALFRIENDSFUNCTOR_H |
24 |
|
|
|
25 |
|
|
#include "avatar.h" |
26 |
|
|
|
27 |
|
|
#include "utils/stringutils.h" |
28 |
|
|
|
29 |
|
|
#include "localconsts.h" |
30 |
|
|
|
31 |
|
|
class SortFriendsFunctor final |
32 |
|
|
{ |
33 |
|
|
public: |
34 |
|
|
A_DEFAULT_COPY(SortFriendsFunctor) |
35 |
|
|
|
36 |
|
|
bool operator() (const Avatar *const m1, |
37 |
|
|
const Avatar *const m2) const |
38 |
|
|
{ |
39 |
|
|
if ((m1 == nullptr) || (m2 == nullptr)) |
40 |
|
|
return false; |
41 |
|
|
|
42 |
|
|
if (m1->getOnline() != m2->getOnline()) |
43 |
|
|
{ |
44 |
|
|
return static_cast<int>(m1->getOnline()) > |
45 |
|
|
static_cast<int>(m2->getOnline()); |
46 |
|
|
} |
47 |
|
|
|
48 |
|
|
if (m1->getName() != m2->getName()) |
49 |
|
|
{ |
50 |
|
|
std::string s1 = m1->getName(); |
51 |
|
|
std::string s2 = m2->getName(); |
52 |
|
|
toLower(s1); |
53 |
|
|
toLower(s2); |
54 |
|
|
return s1 < s2; |
55 |
|
|
} |
56 |
|
|
return false; |
57 |
|
|
} |
58 |
|
|
}; |
59 |
|
|
|
60 |
|
|
#endif // GUI_WIDGETS_TABS_SOCIALFRIENDSFUNCTOR_H |