diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-09-06 19:09:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-09-06 19:09:39 +0300 |
commit | f96861c0115f6808d8246b3e6defc828ab3a255e (patch) | |
tree | 76fa7c407187399e638cc514a59263d0468066e4 /src/gui/windows/tradewindow.cpp | |
parent | 548bcd5e5450afefbbe2625da16aa23333e6b69a (diff) | |
download | plus-f96861c0115f6808d8246b3e6defc828ab3a255e.tar.gz plus-f96861c0115f6808d8246b3e6defc828ab3a255e.tar.bz2 plus-f96861c0115f6808d8246b3e6defc828ab3a255e.tar.xz plus-f96861c0115f6808d8246b3e6defc828ab3a255e.zip |
Add option for creating screenshots on each complete trade.
Diffstat (limited to 'src/gui/windows/tradewindow.cpp')
-rw-r--r-- | src/gui/windows/tradewindow.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gui/windows/tradewindow.cpp b/src/gui/windows/tradewindow.cpp index 7a835b686..edd685f30 100644 --- a/src/gui/windows/tradewindow.cpp +++ b/src/gui/windows/tradewindow.cpp @@ -23,6 +23,7 @@ #include "gui/windows/tradewindow.h" #include "configuration.h" +#include "game.h" #include "item.h" #include "units.h" @@ -296,6 +297,14 @@ void TradeWindow::receivedOk(const bool own) setStatus(ACCEPTING); } +void TradeWindow::completeTrade() +{ + if (config.getBoolValue("tradescreenshot")) + Game::createScreenshot(); + setVisible(Visible_false); + reset(); +} + void TradeWindow::tradeItem(const Item *const item, const int quantity, const bool check) const { |