在CRichEdit

时间:2015-09-11 12:10:06

标签: c++ mfc windows-messages cricheditctrl crichedit

我想更改使用键盘上的Alt + Unicode代码插入的unicode字符。 我使用PretranslateMessage来更改直接从键盘插入的字符,它工作正常。但是使用Alt + Unicode代码方法却没有。 这是代码: 启用显示/隐藏段落标记时,Microsoft Word具有此功能。

BOOL CEmphasizeEdit::PreTranslateMessage(MSG* msg)
{
    if (msg->hwnd == m_hWnd)
    {
        if (msg->message == WM_CHAR)
        {
            if (TheApp.Options.m_bShowWSpaceChars)
            {
                if (msg->wParam == ' ')  // This works in both cases Space key pressed or Alt + 3 + 2 in inserted
                {
                    msg->wParam = '·';
                }
                else if (msg->wParam == (unsigned char)' ') // this does not work
                {
                    msg->wParam = (unsigned char)'°'; 
                }
            }
        }
    }
    return CRichEditCtrl::PreTranslateMessage(msg);
}

如果我从键盘Alt + 0 + 1 + 6 + 0插入''(无间隔空格),我希望CRichEditCtrl显示'°'或我指定的其他字符。

我该如何处理它以使其有效?

2 个答案:

答案 0 :(得分:0)

Alt + Space 保留给程序的关闭菜单。

您应该使用另一个序列,例如 Ctrl + Space Alt + Ctrl + Space < / KBD>

' '(unsigned char)' '是相同的,因此代码永远不会达到else if (msg->wParam == (unsigned char)' ')。你应该删除它。

使用GetAsyncKeyState查看是否按下AltCtrl键。

BOOL IsKeyDown(int vkCode)
{
    return GetAsyncKeyState(vkCode) & 0x8000;
}

...
if (msg->wParam == ' ')
{
    if (IsKeyDown(VK_CONTROL))
        msg->wParam = L'°'; 
    else
        msg->wParam = L'+';
}
...

答案 1 :(得分:0)

我必须让光标位置向控件发送一个追加字符串,然后在插入的字符后设置选择。发生这种情况时,我必须跳过CRichEditCtrl :: PreTranslateMessage(msg);

BOOL CEmphasizeEdit::PreTranslateMessage(MSG* msg)
{
    if (msg->hwnd == m_hWnd)
    {
        if (msg->message == WM_CHAR)
        {
            TCHAR text[2];
            text[1] = 0x00;
            BOOL found = 1;

            switch (msg->wParam)
            {
                case 0x20: text[0] = _C('·'); break;
                case 0xA0: text[0] = 0xB0; break;
            }

            CHARRANGE cr;
            GetSel(cr);
            cr.cpMax++;
            cr.cpMin++;

            ReplaceSel(text);
            SetSel(cr);

            return 1;
        }
    }
    return CRichEditCtrl::PreTranslateMessage(msg);
}