在子类过程中正确处理WM_PASTE

时间:2014-03-08 01:06:22

标签: c++ winapi subclass

相关信息:

我有一个子类程序,需要在粘贴之前验证剪贴板的内容。

我设法成功获取了剪贴板的内容,至少我是这么认为的。

问题:

我不知道如何构造以下if statement(以下是伪代码):

if( clipboard content is OK )
    defaul handler;
else
    discard message;

我努力解决这个问题:

到目前为止,这是我的想法:

LRESULT CALLBACK Decimalni( HWND hwnd, 
    UINT message, WPARAM wParam, LPARAM lParam, 
    UINT_PTR uIdSubclass, DWORD_PTR dwRefData )

{
    switch (message)
    {
    case WM_PASTE:
        {
            bool IsTextValid = true; // indicates validity of text

            if( OpenClipboard(hwnd) ) // open clipboard
            {
                HANDLE hClipboardData;

                // get clipboard data
                if( hClipboardData = GetClipboardData(CF_UNICODETEXT) )
                {
                    // Call GlobalLock so that to retrieve a pointer
                    // to the data associated with the handle returned
                    // from GetClipboardData.

                    wchar_t *pchData = (wchar_t*)GlobalLock(hClipboardData);

                    // copy clipboard data so we can free clipboard

                    wchar_t result[10]; // I just need first 9 characters
                    memset( result, L'0', sizeof(result) );

                    // copy clipboard data WITH TRUNCATION!!!
                    wcsncpy_s( result, 10, pchData, _TRUNCATE );

                    // Unlock the global memory.
                    GlobalUnlock(hClipboardData);

                    /*** parse the text for validity ****/
                    // code for parsing text 
                    // update IsTextValid to indicate success or fail
                    /*** end of parsing *******/

                }

                // Finally, when finished I simply close the Clipboard
                // which has the effect of unlocking it so that other
                // applications can examine or modify its contents.

                CloseClipboard();
            }

            // here should be the problematic if statement
            if( IsTextValid )
                return ::DefSubclassProc( hwnd, message, wParam, lParam);
            else
                return FALSE;
        }
        break;
    case WM_CHAR:
        {
            // filter out some invalid keys
        }
        break;
    case WM_NCDESTROY:
        ::RemoveWindowSubclass( hwnd, Decimalni, 0 ); // remove subclassing
        break;
    }
    return ::DefSubclassProc( hwnd, message, wParam, lParam);
}

我的想法是否正确或是否有其他方式来形成我的if statement

谢谢。

最好的问候。

1 个答案:

答案 0 :(得分:2)

代码似乎有道理,直到所采取的行动。有点笨重,但这是Windows API。可能有更好的方法,但这应该有效。

一个错误:如果文本没问题,你应该调用DefSubclassProc,而不是默认的窗口过程。

如果文字不正确,您可以考虑清空剪贴板。这里关于你的其他要求还不够。