mirror of https://github.com/axmolengine/axmol.git
Add support for selecting all text in editbox via CTRL+A (#2238)
This commit is contained in:
parent
502961dcc5
commit
449d921063
|
@ -73,6 +73,7 @@ EditBoxImpl* __createSystemEditBox(EditBox* pEditBox)
|
|||
|
||||
EditBoxImplWin::EditBoxImplWin(EditBox* pEditText)
|
||||
: EditBoxImplCommon(pEditText)
|
||||
, _hotKeyIdCtrlA(0)
|
||||
, _hwndEdit(NULL)
|
||||
, _changedTextManually(false)
|
||||
, _hasFocus(false)
|
||||
|
@ -100,6 +101,10 @@ void EditBoxImplWin::cleanupEditCtrl()
|
|||
{
|
||||
if (_hwndEdit)
|
||||
{
|
||||
UnregisterHotKey(_hwndEdit, _hotKeyIdCtrlA);
|
||||
GlobalDeleteAtom(_hotKeyIdCtrlA);
|
||||
_hotKeyIdCtrlA = 0;
|
||||
|
||||
SetWindowLongPtrW(_hwndEdit, GWLP_WNDPROC, (LONG_PTR)_prevWndProc);
|
||||
::DestroyWindow(_hwndEdit);
|
||||
_hasFocus = false;
|
||||
|
@ -132,6 +137,9 @@ void EditBoxImplWin::createEditCtrl(bool singleLine)
|
|||
s_previousFocusWnd = s_hwndCocos;
|
||||
this->setNativeFont(this->getNativeDefaultFontName(), this->_fontSize);
|
||||
this->setNativeText(this->_text.c_str());
|
||||
|
||||
_hotKeyIdCtrlA = GlobalAddAtom(L"CTRL+A");
|
||||
RegisterHotKey(_hwndEdit, _hotKeyIdCtrlA, MOD_CONTROL | MOD_NOREPEAT, 'A');
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -361,6 +369,12 @@ void EditBoxImplWin::_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPa
|
|||
this->editBoxEditingDidEnd(this->getText(), _endAction);
|
||||
}
|
||||
break;
|
||||
case WM_HOTKEY:
|
||||
if (wParam == (WPARAM)_hotKeyIdCtrlA)
|
||||
{
|
||||
::SendMessageW(_hwndEdit, EM_SETSEL, 0, -1);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -73,6 +73,8 @@ private:
|
|||
void _WindowProc(HWND, UINT, WPARAM, LPARAM);
|
||||
|
||||
WNDPROC _prevWndProc;
|
||||
ATOM _hotKeyIdCtrlA;
|
||||
|
||||
static LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
static LRESULT CALLBACK hookGLFWWindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
|
||||
|
|
Loading…
Reference in New Issue