diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-16 01:04:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-16 01:04:04 +0300 |
commit | 4b891f50dfc89318321eeac176415d1bef61aca6 (patch) | |
tree | f1da78c30374409d4f329faecb7e7b627674cf21 /src/actions | |
parent | f8f1e69d820e49d93669b17363ab6225456515f7 (diff) | |
download | plus-4b891f50dfc89318321eeac176415d1bef61aca6.tar.gz plus-4b891f50dfc89318321eeac176415d1bef61aca6.tar.bz2 plus-4b891f50dfc89318321eeac176415d1bef61aca6.tar.xz plus-4b891f50dfc89318321eeac176415d1bef61aca6.zip |
Add bank window (hercules only).
also add banklistener to get changed bank balance.
Diffstat (limited to 'src/actions')
-rw-r--r-- | src/actions/windows.cpp | 12 | ||||
-rw-r--r-- | src/actions/windows.h | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/src/actions/windows.cpp b/src/actions/windows.cpp index fae82261c..18a2c4773 100644 --- a/src/actions/windows.cpp +++ b/src/actions/windows.cpp @@ -24,6 +24,7 @@ #include "gui/dialogsmanager.h" +#include "gui/windows/bankwindow.h" #include "gui/windows/skilldialog.h" #include "gui/windows/socialwindow.h" #include "gui/windows/statuswindow.h" @@ -47,6 +48,8 @@ #include "gui/widgets/tabs/chat/chattab.h" #include "gui/widgets/tabs/chat/chattabtype.h" +#include "net/serverfeatures.h" + #include "debug.h" extern ShortcutWindow *spellShortcutWindow; @@ -247,6 +250,15 @@ impHandler0(questsWindowShow) return true; } +impHandler0(bankWindowShow) +{ + if (!serverFeatures->haveBankApi()) + return false; + + showHideWindow(bankWindow); + return true; +} + impHandler0(updaterWindowShow) { if (updaterWindow) diff --git a/src/actions/windows.h b/src/actions/windows.h index 1c8293334..dab926416 100644 --- a/src/actions/windows.h +++ b/src/actions/windows.h @@ -51,6 +51,7 @@ namespace Actions decHandler(didYouKnowWindowShow); decHandler(questsWindowShow); decHandler(updaterWindowShow); + decHandler(bankWindowShow); } // namespace Actions #undef decHandler |