1 |
|
|
/* |
2 |
|
|
* The ManaPlus Client |
3 |
|
|
* Copyright (C) 2004-2009 The Mana World Development Team |
4 |
|
|
* Copyright (C) 2009-2010 The Mana Developers |
5 |
|
|
* Copyright (C) 2011-2019 The ManaPlus Developers |
6 |
|
|
* Copyright (C) 2019-2021 Andrei Karas |
7 |
|
|
* |
8 |
|
|
* This file is part of The ManaPlus Client. |
9 |
|
|
* |
10 |
|
|
* This program is free software; you can redistribute it and/or modify |
11 |
|
|
* it under the terms of the GNU General Public License as published by |
12 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
13 |
|
|
* any later version. |
14 |
|
|
* |
15 |
|
|
* This program is distributed in the hope that it will be useful, |
16 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
17 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
18 |
|
|
* GNU General Public License for more details. |
19 |
|
|
* |
20 |
|
|
* You should have received a copy of the GNU General Public License |
21 |
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
22 |
|
|
*/ |
23 |
|
|
|
24 |
|
|
#ifndef GUI_WIDGETS_TABS_MAPDEBUGTAB_H |
25 |
|
|
#define GUI_WIDGETS_TABS_MAPDEBUGTAB_H |
26 |
|
|
|
27 |
|
|
#include "gui/widgets/tabs/debugtab.h" |
28 |
|
|
|
29 |
|
|
class Label; |
30 |
|
|
|
31 |
|
8 |
class MapDebugTab final : public DebugTab |
32 |
|
|
{ |
33 |
|
|
friend class DebugWindow; |
34 |
|
|
|
35 |
|
|
public: |
36 |
|
|
explicit MapDebugTab(const Widget2 *const widget); |
37 |
|
|
|
38 |
|
|
A_DELETE_COPY(MapDebugTab) |
39 |
|
|
|
40 |
|
|
void logic() override final; |
41 |
|
|
|
42 |
|
|
private: |
43 |
|
|
Label *mMusicFileLabel A_NONNULLPOINTER; |
44 |
|
|
Label *mMapLabel A_NONNULLPOINTER; |
45 |
|
|
Label *mMapNameLabel A_NONNULLPOINTER; |
46 |
|
|
Label *mMinimapLabel A_NONNULLPOINTER; |
47 |
|
|
Label *mTileMouseLabel A_NONNULLPOINTER; |
48 |
|
|
Label *mParticleCountLabel A_NONNULLPOINTER; |
49 |
|
|
Label *mMapActorCountLabel A_NONNULLPOINTER; |
50 |
|
|
#ifdef USE_OPENGL |
51 |
|
|
Label *mMapAtlasCountLabel A_NONNULLPOINTER; |
52 |
|
|
#endif // USE_OPENGL |
53 |
|
|
Label *mXYLabel A_NONNULLPOINTER; |
54 |
|
|
Label *mTexturesLabel A_NONNULLPOINTER; |
55 |
|
|
time_t mUpdateTime; |
56 |
|
|
#ifdef DEBUG_DRAW_CALLS |
57 |
|
|
Label *mDrawCallsLabel A_NONNULLPOINTER; |
58 |
|
|
#endif // DEBUG_DRAW_CALLS |
59 |
|
|
#ifdef DEBUG_BIND_TEXTURE |
60 |
|
|
Label *mBindsLabel A_NONNULLPOINTER; |
61 |
|
|
#endif // DEBUG_BIND_TEXTURE |
62 |
|
|
|
63 |
|
|
Label *mFPSLabel A_NONNULLPOINTER; |
64 |
|
|
std::string mFPSText; |
65 |
|
|
}; |
66 |
|
|
|
67 |
|
|
#endif // GUI_WIDGETS_TABS_MAPDEBUGTAB_H |