summaryrefslogtreecommitdiff
path: root/src/gui/popups/beingpopup.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-01 16:29:52 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-02 00:13:44 +0300
commit2464d9d85019711583ef830c2fdeae8a6772cb53 (patch)
treefd007695db4d5c4a06376c27421a3c5a61e129a3 /src/gui/popups/beingpopup.cpp
parentb6a0e05498b2b1a64d9b407fb2416dbaa0faf407 (diff)
downloadplus-2464d9d85019711583ef830c2fdeae8a6772cb53.tar.gz
plus-2464d9d85019711583ef830c2fdeae8a6772cb53.tar.bz2
plus-2464d9d85019711583ef830c2fdeae8a6772cb53.tar.xz
plus-2464d9d85019711583ef830c2fdeae8a6772cb53.zip
Show shop name on players.
Diffstat (limited to 'src/gui/popups/beingpopup.cpp')
-rw-r--r--src/gui/popups/beingpopup.cpp39
1 files changed, 33 insertions, 6 deletions
diff --git a/src/gui/popups/beingpopup.cpp b/src/gui/popups/beingpopup.cpp
index 918e39f41..7a3194a36 100644
--- a/src/gui/popups/beingpopup.cpp
+++ b/src/gui/popups/beingpopup.cpp
@@ -43,7 +43,8 @@ BeingPopup::BeingPopup() :
mBeingParty(new Label(this, "A")),
mBeingGuild(new Label(this, "A")),
mBeingRank(new Label(this, "A")),
- mBeingComment(new Label(this, "A"))
+ mBeingComment(new Label(this, "A")),
+ mBeingBoard(new Label(this, "A"))
{
// Being Name
mBeingName->setFont(boldFont);
@@ -57,7 +58,8 @@ BeingPopup::BeingPopup() :
// Being's party
mBeingGuild->setPosition(0, 2 * fontHeight);
mBeingRank->setPosition(0, 3 * fontHeight);
- mBeingComment->setPosition(0, 4 * fontHeight);
+ mBeingBoard->setPosition(0, 4 * fontHeight);
+ mBeingComment->setPosition(0, 5 * fontHeight);
mBeingParty->setForegroundColorAll(getThemeColor(Theme::POPUP),
getThemeColor(Theme::POPUP_OUTLINE));
@@ -65,6 +67,8 @@ BeingPopup::BeingPopup() :
getThemeColor(Theme::POPUP_OUTLINE));
mBeingRank->setForegroundColorAll(getThemeColor(Theme::POPUP),
getThemeColor(Theme::POPUP_OUTLINE));
+ mBeingBoard->setForegroundColorAll(getThemeColor(Theme::POPUP),
+ getThemeColor(Theme::POPUP_OUTLINE));
mBeingComment->setForegroundColorAll(getThemeColor(Theme::POPUP),
getThemeColor(Theme::POPUP_OUTLINE));
}
@@ -80,6 +84,7 @@ void BeingPopup::postInit()
add(mBeingGuild);
add(mBeingRank);
add(mBeingComment);
+ add(mBeingBoard);
}
void BeingPopup::show(const int x, const int y, Being *const b)
@@ -93,7 +98,8 @@ void BeingPopup::show(const int x, const int y, Being *const b)
Label *label1 = mBeingParty;
Label *label2 = mBeingGuild;
Label *label3 = mBeingRank;
- Label *label4 = mBeingComment;
+ Label *label4 = mBeingBoard;
+ Label *label5 = mBeingComment;
b->updateComment();
@@ -128,6 +134,7 @@ void BeingPopup::show(const int x, const int y, Being *const b)
label2->setCaption("");
label3->setCaption("");
label4->setCaption("");
+ label5->setCaption("");
if (!(b->getPartyName().empty()))
{
@@ -138,6 +145,7 @@ void BeingPopup::show(const int x, const int y, Being *const b)
}
else
{
+ label5 = label4;
label4 = label3;
label3 = label2;
label2 = label1;
@@ -153,6 +161,7 @@ void BeingPopup::show(const int x, const int y, Being *const b)
}
else
{
+ label5 = label4;
label4 = label3;
label3 = label2;
label2 = nullptr;
@@ -166,22 +175,36 @@ void BeingPopup::show(const int x, const int y, Being *const b)
}
else
{
+ label5 = label4;
label4 = label3;
label3 = nullptr;
}
- if (!b->getComment().empty())
+ if (!b->getBoard().empty())
{
// TRANSLATORS: being popup label
- label4->setCaption(strprintf(_("Comment: %s"),
- b->getComment().c_str()));
+ label4->setCaption(strprintf(_("Shop: %s"),
+ b->getBoard().c_str()));
label4->adjustSize();
}
else
{
+ label5 = label4;
label4 = nullptr;
}
+ if (!b->getComment().empty())
+ {
+ // TRANSLATORS: being popup label
+ label5->setCaption(strprintf(_("Comment: %s"),
+ b->getComment().c_str()));
+ label5->adjustSize();
+ }
+ else
+ {
+ label5 = nullptr;
+ }
+
int minWidth = mBeingName->getWidth();
if (label1 && label1->getWidth() > minWidth)
minWidth = label1->getWidth();
@@ -191,6 +214,8 @@ void BeingPopup::show(const int x, const int y, Being *const b)
minWidth = label3->getWidth();
if (label4 && label4->getWidth() > minWidth)
minWidth = label4->getWidth();
+ if (label5 && label5->getWidth() > minWidth)
+ minWidth = label5->getWidth();
const int height1 = getFont()->getHeight();
int height = height1;
@@ -202,6 +227,8 @@ void BeingPopup::show(const int x, const int y, Being *const b)
height += height1;
if (label4)
height += height1;
+ if (label5)
+ height += height1;
setContentSize(minWidth, height);
position(x, y);