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_SOCIALPICKUPTAB_H |
23 |
|
|
#define GUI_WIDGETS_TABS_SOCIALPICKUPTAB_H |
24 |
|
|
|
25 |
|
|
#include "gui/widgets/tabs/socialtab.h" |
26 |
|
|
|
27 |
|
|
#include "being/localplayer.h" |
28 |
|
|
|
29 |
|
|
#include "gui/models/beingslistmodel.h" |
30 |
|
|
|
31 |
|
|
#include "gui/widgets/tabs/socialtabbase.h" |
32 |
|
|
|
33 |
|
|
#include "utils/delete2.h" |
34 |
|
|
#include "utils/gettext.h" |
35 |
|
|
|
36 |
|
|
#include "localconsts.h" |
37 |
|
|
|
38 |
|
|
class SocialPickupTab final : public SocialTab |
39 |
|
|
{ |
40 |
|
|
public: |
41 |
|
1 |
SocialPickupTab(const Widget2 *const widget, |
42 |
|
1 |
const Opaque showBackground) : |
43 |
|
|
SocialTab(widget), |
44 |
✓✗ |
2 |
mBeings(new BeingsListModel) |
45 |
|
|
{ |
46 |
✓✗ |
1 |
createControls(mBeings, showBackground); |
47 |
|
|
|
48 |
|
|
// TRANSLATORS: Pickup filter tab name in social window. |
49 |
|
|
// TRANSLATORS: Should be small |
50 |
✓✗✓✗
|
4 |
setCaption(_("Pik")); |
51 |
|
2 |
mMenuAction = "pickup"; |
52 |
|
1 |
} |
53 |
|
|
|
54 |
|
|
A_DELETE_COPY(SocialPickupTab) |
55 |
|
|
|
56 |
|
2 |
~SocialPickupTab() override final |
57 |
|
2 |
{ |
58 |
✓✗ |
1 |
delete2(mList) |
59 |
✓✗ |
1 |
delete2(mScroll) |
60 |
✓✗ |
2 |
delete2(mBeings) |
61 |
|
2 |
} |
62 |
|
|
|
63 |
|
|
void updateList() override final |
64 |
|
|
{ |
65 |
|
|
updateAtkListStart(); |
66 |
|
|
// TRANSLATORS: items group name in social window |
67 |
|
|
addAvatars(PickupItem, _("Pickup items"), PICKUP) |
68 |
|
|
// TRANSLATORS: items group name in social window |
69 |
|
|
addAvatars(IgnorePickupItem, _("Ignore items"), NOPICKUP) |
70 |
|
|
} |
71 |
|
|
|
72 |
|
|
private: |
73 |
|
|
BeingsListModel *mBeings; |
74 |
|
|
}; |
75 |
|
|
|
76 |
|
|
#endif // GUI_WIDGETS_TABS_SOCIALPICKUPTAB_H |