summaryrefslogtreecommitdiff
path: root/src/gui/windows/socialwindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-05-17 17:35:26 +0300
committerAndrei Karas <akaras@inbox.ru>2014-05-17 17:35:26 +0300
commitdecb667f420d1f33d064f4335094a7a293963f35 (patch)
tree4572a4caefadaa66b6f6aadcefac3cc26c59d95d /src/gui/windows/socialwindow.cpp
parent6d432c0b73e21e0ef72df1010d1353ce9d5b3645 (diff)
downloadmv-decb667f420d1f33d064f4335094a7a293963f35.tar.gz
mv-decb667f420d1f33d064f4335094a7a293963f35.tar.bz2
mv-decb667f420d1f33d064f4335094a7a293963f35.tar.xz
mv-decb667f420d1f33d064f4335094a7a293963f35.zip
Move createpartypopup into separate file.
Diffstat (limited to 'src/gui/windows/socialwindow.cpp')
-rw-r--r--src/gui/windows/socialwindow.cpp65
1 files changed, 3 insertions, 62 deletions
diff --git a/src/gui/windows/socialwindow.cpp b/src/gui/windows/socialwindow.cpp
index 9b828aac0..23869e5ea 100644
--- a/src/gui/windows/socialwindow.cpp
+++ b/src/gui/windows/socialwindow.cpp
@@ -64,6 +64,8 @@
#include "gui/widgets/tabs/socialpickuptab.h"
#include "gui/widgets/tabs/socialplayerstab.h"
+#include "gui/popups/createpartypopup.h"
+
#include "net/net.h"
#include "net/guildhandler.h"
#include "net/partyhandler.h"
@@ -75,67 +77,6 @@
extern unsigned int tmwServerVersion;
-class CreatePopup final : public Popup, public LinkHandler
-{
-public:
- CreatePopup() :
- Popup("SocialCreatePopup"),
- LinkHandler(),
- mBrowserBox(new BrowserBox(this, BrowserBox::AUTO_SIZE, true,
- "popupbrowserbox.xml"))
- {
- mBrowserBox->setPosition(4, 4);
- mBrowserBox->setOpaque(false);
- mBrowserBox->setLinkHandler(this);
-
- // TRANSLATORS: party popup item
- mBrowserBox->addRow(strprintf("@@party|%s@@", _("Create Party")));
- mBrowserBox->addRow("##3---");
- // TRANSLATORS: party popup item
- mBrowserBox->addRow(strprintf("@@cancel|%s@@", _("Cancel")));
- }
-
- void postInit()
- {
- add(mBrowserBox);
- setContentSize(mBrowserBox->getWidth() + 8,
- mBrowserBox->getHeight() + 8);
- }
-
- A_DELETE_COPY(CreatePopup)
-
- void handleLink(const std::string &link,
- MouseEvent *event A_UNUSED) override final
- {
- if (link == "guild" && socialWindow)
- {
- socialWindow->showGuildCreate();
- }
- else if (link == "party" && socialWindow)
- {
- socialWindow->showPartyCreate();
- }
-
- setVisible(false);
- }
-
- void show(Widget *parent)
- {
- if (!parent)
- return;
-
- int x, y;
- parent->getAbsolutePosition(x, y);
- y += parent->getHeight();
- setPosition(x, y);
- setVisible(true);
- requestMoveToTop();
- }
-
-private:
- BrowserBox* mBrowserBox;
-};
-
SocialWindow::SocialWindow() :
// TRANSLATORS: social window name
Window(_("Social"), false, nullptr, "social.xml"),
@@ -159,7 +100,7 @@ SocialWindow::SocialWindow() :
// TRANSLATORS: here F is title for friends tab in social window
mFriends(new SocialFriendsTab(this, _("F"),
getOptionBool("showtabbackground"))),
- mCreatePopup(new CreatePopup),
+ mCreatePopup(new CreatePartyPopup),
// TRANSLATORS: social window button
mCreateButton(new Button(this, _("Create"), "create", this)),
// TRANSLATORS: social window button