/**************************************************************************** Copyright (c) 2018 Xiamen Yaji Software Co., Ltd. http://www.cocos2d-x.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ****************************************************************************/ #include "EditBox.h" #include "platform/CCApplication.h" #include "platform/desktop/CCGLView-desktop.h" #include "cocos/scripting/js-bindings/jswrapper/SeApi.h" #include "cocos/scripting/js-bindings/manual/jsb_global.h" #include #include #include #include NS_CC_BEGIN /************************************************************************* Global variables and functions. ************************************************************************/ namespace { HWND g_hwndEditBox = nullptr; WNDPROC g_prevMainWindowProc = nullptr; se::Value g_textInputCallback; HWND getCocosWindow() { auto glfwWindow = ((GLView*)Application::getInstance()->getView())->getGLFWWindow(); return glfwGetWin32Window(glfwWindow); } int getCocosWindowHeight() { HWND parent = getCocosWindow(); RECT rect; GetClientRect(parent, &rect); return (rect.bottom - rect.top); } void getTextInputCallback() { if (!g_textInputCallback.isUndefined()) return; auto global = se::ScriptEngine::getInstance()->getGlobalObject(); se::Value jsbVal; if (global->getProperty("jsb", &jsbVal) && jsbVal.isObject()) { jsbVal.toObject()->getProperty("onTextInput", &g_textInputCallback); // free globle se::Value before ScriptEngine clean up se::ScriptEngine::getInstance()->addBeforeCleanupHook([](){ g_textInputCallback.setUndefined(); }); } } void callJSFunc(const std::string& type, const std::string& text) { getTextInputCallback(); se::AutoHandleScope scope; se::ValueArray args; args.push_back(se::Value(type)); args.push_back(se::Value(text)); g_textInputCallback.toObject()->call(args, nullptr); } std::string getText(HWND hwnd) { int length = GetWindowTextLength(hwnd); LPWSTR str = (LPWSTR)malloc(sizeof(WCHAR) * (length+1)); GetWindowText(hwnd, str, length + 1); std::wstring_convert> convert; std::string ret(convert.to_bytes(str)); free(str); return ret; } std::wstring str2ws(const std::string& text) { if (text.empty()) return std::wstring(); int sz = MultiByteToWideChar(CP_UTF8, 0, &text[0], (int)text.size(), 0, 0); std::wstring res(sz, 0); MultiByteToWideChar(CP_UTF8, 0, &text[0], (int)text.size(), &res[0], sz); return res; } LRESULT mainWindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch (msg) { case WM_LBUTTONDOWN: EditBox::complete(); EditBox::hide(); SetFocus(getCocosWindow()); break; case WM_COMMAND: if (EN_CHANGE == HIWORD(wParam)) callJSFunc("input", getText(g_hwndEditBox).c_str()); break; default: break; } return CallWindowProc(g_prevMainWindowProc, hwnd, msg, wParam, lParam); } } /************************************************************************* Implementation of EditBox. ************************************************************************/ void EditBox::show(const EditBox::ShowInfo& showInfo) { int windowHeight = getCocosWindowHeight(); if (! g_hwndEditBox) { HWND parent = getCocosWindow(); g_prevMainWindowProc = (WNDPROC)SetWindowLongPtr(parent, GWL_WNDPROC, (LONG_PTR)mainWindowProc); UINT32 flags = WS_CHILD | ES_LEFT | WS_TABSTOP | ES_AUTOHSCROLL; if (showInfo.isMultiline) flags |= ES_MULTILINE; if (showInfo.inputType == "password") flags |= WS_EX_TRANSPARENT; g_hwndEditBox = CreateWindowEx( WS_EX_WINDOWEDGE, L"EDIT", NULL, flags, 0, 0, 0, 0, parent, 0, NULL, NULL); if (! g_hwndEditBox) { wchar_t buffer[256] = { 0 }; FormatMessageW(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, GetLastError(), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), buffer, sizeof(buffer) / sizeof(wchar_t), NULL); std::wstring_convert> convert; CCLOG("Can not create editbox: %s", convert.to_bytes(buffer).c_str()); } } ::SendMessageW(g_hwndEditBox, EM_LIMITTEXT, showInfo.maxLength, 0); SetWindowPos(g_hwndEditBox, HWND_NOTOPMOST, showInfo.x, windowHeight - showInfo.y - showInfo.height, showInfo.width, showInfo.height, SWP_NOZORDER); ::SetWindowTextW(g_hwndEditBox, str2ws(showInfo.defaultValue).c_str()); ::PostMessage(g_hwndEditBox, WM_ACTIVATE, 0, 0); ::ShowWindow(g_hwndEditBox, SW_SHOW); SetFocus(g_hwndEditBox); } void EditBox::hide() { DestroyWindow(g_hwndEditBox); g_hwndEditBox = nullptr; SetWindowLongPtr(getCocosWindow(), GWL_WNDPROC, (LONG_PTR)g_prevMainWindowProc); } void EditBox::updateRect(int x, int y, int width, int height) { int windowHeight = getCocosWindowHeight(); SetWindowPos(g_hwndEditBox, HWND_NOTOPMOST, x, windowHeight - y - height, width, height, SWP_NOZORDER); } void EditBox::complete() { callJSFunc("complete", getText(g_hwndEditBox).c_str()); } NS_CC_END