From c34858a4c7889483a8775c65c9bd1f357bca2572 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 27 Jan 2016 17:46:28 +0300 Subject: Remove copy to clipboard action in npc dialog popup. --- src/actions/commands.cpp | 21 +++++++++++++++++++++ src/actions/commands.h | 1 + src/dyetool/actions/commands.cpp | 1 + src/enums/input/inputaction.h | 1 + src/gui/popups/popupmenu.cpp | 6 +----- src/gui/windows/npcdialog.cpp | 15 +++------------ src/gui/windows/npcdialog.h | 3 +-- src/input/inputactionmap.h | 6 ++++++ 8 files changed, 35 insertions(+), 19 deletions(-) diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index 84011b3ec..114144477 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -38,6 +38,8 @@ #ifdef EATHENA_SUPPORT #include "gui/shortcut/emoteshortcut.h" + +#include "gui/windows/npcdialog.h" #endif #include "gui/windows/chatwindow.h" @@ -57,6 +59,7 @@ #include "net/homunculushandler.h" #include "net/mailhandler.h" #include "net/net.h" +#include "net/npchandler.h" #endif #include "net/partyhandler.h" #include "net/serverfeatures.h" @@ -1133,4 +1136,22 @@ impHandler(craft) return true; } +impHandler(npcClipboard) +{ + int x = 0; + int y = 0; + + if (npcHandler) + { + NpcDialog *const dialog = npcHandler->getCurrentNpcDialog(); + + if (dialog && parse2Int(event.args, x, y)) + { + dialog->copyToClipboard(x, y); + return true; + } + } + return false; +} + } // namespace Actions diff --git a/src/actions/commands.h b/src/actions/commands.h index d901683b1..451f84285 100644 --- a/src/actions/commands.h +++ b/src/actions/commands.h @@ -93,6 +93,7 @@ namespace Actions decHandler(selectSkillLevel); decHandler(skill); decHandler(craft); + decHandler(npcClipboard); } // namespace Actions #undef decHandler diff --git a/src/dyetool/actions/commands.cpp b/src/dyetool/actions/commands.cpp index 44ff371d6..1f12d4777 100644 --- a/src/dyetool/actions/commands.cpp +++ b/src/dyetool/actions/commands.cpp @@ -93,5 +93,6 @@ impHandlerVoid(slide) impHandlerVoid(selectSkillLevel) impHandlerVoid(skill) impHandlerVoid(craft) +impHandlerVoid(npcClipboard); } // namespace Actions diff --git a/src/enums/input/inputaction.h b/src/enums/input/inputaction.h index 150c6282d..e06572a2b 100644 --- a/src/enums/input/inputaction.h +++ b/src/enums/input/inputaction.h @@ -618,6 +618,7 @@ enumStart(InputAction) CRAFT_9, CRAFT, CHAT_CLIPBOARD, + NPC_CLIPBOARD, TOTAL } enumEnd(InputAction); diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp index 9cc00b06d..d79a2f92d 100644 --- a/src/gui/popups/popupmenu.cpp +++ b/src/gui/popups/popupmenu.cpp @@ -1134,10 +1134,6 @@ void PopupMenu::handleLink(const std::string &link, inputManager.executeChatCommand(InputAction::ENABLE_AWAY, std::string(), mTab); } - else if (link == "npc clipboard" && mBeingId != BeingId_zero) - { - NpcDialog::copyToClipboard(mBeingId, mX, mY); - } else if (link == "remove pickup" && !mNick.empty()) { if (actorManager) @@ -2275,7 +2271,7 @@ void PopupMenu::showNpcDialogPopup(const BeingId npcId, mBrowserBox->clearRows(); // TRANSLATORS: popup menu item // TRANSLATORS: copy npc text to clipboard - mBrowserBox->addRow("npc clipboard", _("Copy to clipboard")); + mBrowserBox->addRow("/npcclipboard 'X' 'Y'", _("Copy to clipboard")); mBrowserBox->addRow("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: close menu diff --git a/src/gui/windows/npcdialog.cpp b/src/gui/windows/npcdialog.cpp index 862c6bfcd..60c8f06d6 100644 --- a/src/gui/windows/npcdialog.cpp +++ b/src/gui/windows/npcdialog.cpp @@ -1241,19 +1241,10 @@ void NpcDialog::mousePressed(MouseEvent &event) } } -void NpcDialog::copyToClipboard(const BeingId npcId, - const int x, const int y) +void NpcDialog::copyToClipboard(const int x, const int y) const { - NpcDialogs::iterator it = mNpcDialogs.find(npcId); - if (it != mNpcDialogs.end()) - { - const BrowserBox *const text = (*it).second->mTextBox; - if (!text) - return; - - std::string str = text->getTextAtPos(x, y); - sendBuffer(str); - } + std::string str = mTextBox->getTextAtPos(x, y); + sendBuffer(str); } void NpcDialog::setSkin(const std::string &skin) diff --git a/src/gui/windows/npcdialog.h b/src/gui/windows/npcdialog.h index 524ae7bd8..fa3e52097 100644 --- a/src/gui/windows/npcdialog.h +++ b/src/gui/windows/npcdialog.h @@ -250,8 +250,7 @@ class NpcDialog final : public Window, NpcInputState getInputState() { return mInputState; } - static void copyToClipboard(const BeingId npcId, - const int x, const int y); + void copyToClipboard(const int x, const int y) const; static NpcDialogs mNpcDialogs; diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index 21060b74f..0f47fe638 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -5197,6 +5197,12 @@ static const InputActionData inputActionData "chatclipboard", UseArgs_true, Protected_true}, + {"keyNpcClipboard", + defaultAction(&Actions::npcClipboard), + InputCondition::INGAME, + "npcclipboard", + UseArgs_true, + Protected_true}, }; #undef defaultAction -- cgit v1.2.3-60-g2f50