diff options
author | Kahrl <kahrl@gmx.net> | 2014-09-19 22:26:38 +0200 |
---|---|---|
committer | Kahrl <kahrl@gmx.net> | 2014-12-10 07:12:08 +0100 |
commit | daefd0ab367605eabe1a293dd7f6a50964bb3801 (patch) | |
tree | 42a0ab12ab933fb891566f3ba62ec36a3b045c8f /src/guiChatConsole.cpp | |
parent | cfba55ba0a79eb1a4e9250d6dcc7ed4dd2bd519e (diff) | |
download | minetest-daefd0ab367605eabe1a293dd7f6a50964bb3801.tar.gz minetest-daefd0ab367605eabe1a293dd7f6a50964bb3801.tar.bz2 minetest-daefd0ab367605eabe1a293dd7f6a50964bb3801.zip |
Add paste command (Ctrl-V) in GUIChatConsole
Diffstat (limited to 'src/guiChatConsole.cpp')
-rw-r--r-- | src/guiChatConsole.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/guiChatConsole.cpp b/src/guiChatConsole.cpp index 62ce0d1e1..918f9528b 100644 --- a/src/guiChatConsole.cpp +++ b/src/guiChatConsole.cpp @@ -507,6 +507,19 @@ bool GUIChatConsole::OnEvent(const SEvent& event) scope); return true; } + else if(event.KeyInput.Key == KEY_KEY_V && event.KeyInput.Control) + { + // Ctrl-V pressed + // paste text from clipboard + IOSOperator *os_operator = Environment->getOSOperator(); + const c8 *text = os_operator->getTextFromClipboard(); + if (text) + { + std::wstring wtext = narrow_to_wide(text); + m_chat_backend->getPrompt().input(wtext); + } + return true; + } else if(event.KeyInput.Key == KEY_KEY_U && event.KeyInput.Control) { // Ctrl-U pressed |