1 |
|
|
/* |
2 |
|
|
* The ManaPlus Client |
3 |
|
|
* Copyright (C) 2008 The Legend of Mazzeroth Development Team |
4 |
|
|
* Copyright (C) 2009 The Mana World Development Team |
5 |
|
|
* Copyright (C) 2011-2019 The ManaPlus Developers |
6 |
|
|
* Copyright (C) 2009-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 |
|
|
#include "gui/popups/spellpopup.h" |
25 |
|
|
|
26 |
|
|
#include "textcommand.h" |
27 |
|
|
|
28 |
|
|
#include "gui/gui.h" |
29 |
|
|
|
30 |
|
|
#include "gui/widgets/label.h" |
31 |
|
|
|
32 |
|
|
#include "debug.h" |
33 |
|
|
|
34 |
|
|
SpellPopup *spellPopup = nullptr; |
35 |
|
|
|
36 |
|
2 |
SpellPopup::SpellPopup() : |
37 |
|
|
Popup("SpellPopup", "spellpopup.xml"), |
38 |
✓✗✓✗
|
2 |
mItemName(new Label(this)), |
39 |
✓✗✓✗ ✓✗✓✗
|
16 |
mItemComment(new Label(this)) |
40 |
|
|
{ |
41 |
✓✗ |
2 |
mItemName->setFont(boldFont); |
42 |
|
6 |
mItemName->setForegroundColorAll( |
43 |
|
|
getThemeColor(ThemeColorId::POPUP, 255U), |
44 |
✓✗ |
2 |
getThemeColor(ThemeColorId::POPUP_OUTLINE, 255U)); |
45 |
|
6 |
mItemComment->setForegroundColorAll( |
46 |
|
|
getThemeColor(ThemeColorId::POPUP, 255U), |
47 |
✓✗ |
2 |
getThemeColor(ThemeColorId::POPUP_OUTLINE, 255U)); |
48 |
|
2 |
} |
49 |
|
|
|
50 |
|
2 |
void SpellPopup::postInit() |
51 |
|
|
{ |
52 |
|
4 |
Popup::postInit(); |
53 |
|
2 |
add(mItemName); |
54 |
|
2 |
add(mItemComment); |
55 |
|
|
|
56 |
|
2 |
addMouseListener(this); |
57 |
|
2 |
} |
58 |
|
|
|
59 |
|
2 |
SpellPopup::~SpellPopup() |
60 |
|
|
{ |
61 |
|
2 |
} |
62 |
|
|
|
63 |
|
|
void SpellPopup::setItem(const TextCommand *const spell) |
64 |
|
|
{ |
65 |
|
|
if (spell != nullptr) |
66 |
|
|
{ |
67 |
|
|
mItemName->setCaption(spell->getName()); |
68 |
|
|
mItemComment->setCaption(spell->getComment()); |
69 |
|
|
} |
70 |
|
|
else |
71 |
|
|
{ |
72 |
|
|
mItemName->setCaption("?"); |
73 |
|
|
mItemComment->setCaption(""); |
74 |
|
|
} |
75 |
|
|
|
76 |
|
|
mItemName->adjustSize(); |
77 |
|
|
mItemComment->adjustSize(); |
78 |
|
|
int minWidth = mItemName->getWidth(); |
79 |
|
|
if (mItemComment->getWidth() > minWidth) |
80 |
|
|
minWidth = mItemComment->getWidth(); |
81 |
|
|
|
82 |
|
|
mItemName->setPosition(0, 0); |
83 |
|
|
const int fontHeight = mItemName->getHeight(); |
84 |
|
|
mItemComment->setPosition(0, fontHeight); |
85 |
|
|
if (!mItemComment->getCaption().empty()) |
86 |
|
|
setContentSize(minWidth, 2 * fontHeight); |
87 |
|
|
else |
88 |
|
|
setContentSize(minWidth, fontHeight); |
89 |
|
|
} |
90 |
|
|
|
91 |
|
|
void SpellPopup::view(const int x, const int y) |
92 |
|
|
{ |
93 |
|
|
const int distance = 20; |
94 |
|
|
|
95 |
|
|
int posX = std::max(0, x - getWidth() / 2); |
96 |
|
|
int posY = y + distance; |
97 |
|
|
|
98 |
|
|
const Rect &rect = mDimension; |
99 |
|
|
const int w = rect.width; |
100 |
|
|
const int h = rect.height; |
101 |
|
|
if (posX + w > mainGraphics->mWidth) |
102 |
|
|
{ |
103 |
|
|
if (mainGraphics->mWidth > w) |
104 |
|
|
posX = mainGraphics->mWidth - w; |
105 |
|
|
else |
106 |
|
|
posX = 0; |
107 |
|
|
} |
108 |
|
|
if (posY + h > mainGraphics->mHeight) |
109 |
|
|
{ |
110 |
|
|
if (y > h + distance) |
111 |
|
|
posY = y - h - distance; |
112 |
|
|
} |
113 |
|
|
|
114 |
|
|
setPosition(posX, posY); |
115 |
|
|
setVisible(Visible_true); |
116 |
|
|
requestMoveToTop(); |
117 |
|
|
} |
118 |
|
|
|
119 |
|
|
void SpellPopup::mouseMoved(MouseEvent &event) |
120 |
|
|
{ |
121 |
|
|
Popup::mouseMoved(event); |
122 |
|
|
|
123 |
|
|
// When the mouse moved on top of the popup, hide it |
124 |
|
|
setVisible(Visible_false); |
125 |
|
|
} |