diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-01-02 01:48:38 +0200 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-01-02 02:41:24 +0200 |
commit | 3eeae12c498d1a4dbe969462d2ba841f77ee3ccb (patch) | |
tree | ff8eab35e732bc0749fc11677c8873a7b3a58704 /src/gui/beingpopup.cpp | |
download | plus-3eeae12c498d1a4dbe969462d2ba841f77ee3ccb.tar.gz plus-3eeae12c498d1a4dbe969462d2ba841f77ee3ccb.tar.bz2 plus-3eeae12c498d1a4dbe969462d2ba841f77ee3ccb.tar.xz plus-3eeae12c498d1a4dbe969462d2ba841f77ee3ccb.zip |
Initial commit.
This code based on mana client http://www.gitorious.org/mana/mana
and my private repository.
Diffstat (limited to 'src/gui/beingpopup.cpp')
-rw-r--r-- | src/gui/beingpopup.cpp | 142 |
1 files changed, 142 insertions, 0 deletions
diff --git a/src/gui/beingpopup.cpp b/src/gui/beingpopup.cpp new file mode 100644 index 000000000..6b3a25ee4 --- /dev/null +++ b/src/gui/beingpopup.cpp @@ -0,0 +1,142 @@ +/* + * The Mana Client + * Copyright (C) 2010 The Mana Developers + * + * This file is part of The Mana Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#include "gui/beingpopup.h" + +#include "being.h" +#include "graphics.h" +#include "units.h" + +#include "gui/gui.h" +#include "gui/palette.h" + +#include "gui/widgets/label.h" + +#include "utils/gettext.h" +#include "utils/stringutils.h" + +#include <guichan/font.hpp> + + +BeingPopup::BeingPopup(): + Popup("BeingPopup") +{ + // Being Name + mBeingName = new Label("A"); + mBeingName->setFont(boldFont); + mBeingName->setPosition(getPadding(), getPadding()); + + const int fontHeight = mBeingName->getHeight() + getPadding(); + + // Being's party + mBeingParty = new Label("A"); + mBeingParty->setPosition(getPadding(), fontHeight); + + // Being's party + mBeingGuild = new Label("A"); + mBeingGuild->setPosition(getPadding(), 2 * fontHeight); + + mBeingRank = new Label("A"); + mBeingRank->setPosition(getPadding(), 3 * fontHeight); + + add(mBeingName); + add(mBeingParty); + add(mBeingGuild); + add(mBeingRank); +} + +BeingPopup::~BeingPopup() +{ +} + +void BeingPopup::show(int x, int y, Being *b) +{ + if (!b) + { + setVisible(false); + return; + } + + Label *label1 = mBeingParty; + Label *label2 = mBeingGuild; + Label *label3 = mBeingRank; + + mBeingName->setCaption(b->getName()); + mBeingName->adjustSize(); + label1->setCaption(""); + label2->setCaption(""); + label3->setCaption(""); + + if (!(b->getPartyName().empty())) + { + label1->setCaption(strprintf(_("Party: %s"), + b->getPartyName().c_str())); + label1->adjustSize(); + } + else + { + label3 = label2; + label2 = label1; + label1 = 0; + } + + if (!(b->getGuildName().empty())) + { + label2->setCaption(strprintf(_("Guild: %s"), + b->getGuildName().c_str())); + label2->adjustSize(); + } + else + { + label3 = label2; + label2 = 0; + } + + if (b->getPvpRank() > 0) + { + label3->setCaption(strprintf(_("Pvp rank: %d"), b->getPvpRank())); + label3->adjustSize(); + } + else + { + label3 = 0; + } + + int minWidth = mBeingName->getWidth(); + if (label1 && label1->getWidth() > minWidth) + minWidth = label1->getWidth(); + if (label2 && label2->getWidth() > minWidth) + minWidth = label2->getWidth(); + if (label3 && label3->getWidth() > minWidth) + minWidth = label3->getWidth(); + + int height = getFont()->getHeight(); + if (label1) + height += getFont()->getHeight(); + if (label2) + height += getFont()->getHeight(); + if (label3) + height += getFont()->getHeight(); + + setContentSize(minWidth + 10, height + 10); + + position(x, y); + return; +} |