正确确定自定义绘图的复选框状态

时间:2014-03-28 19:31:29

标签: c++ winapi checkbox custom-draw

引言及相关资料:

我需要主题公共控件,但具有不同的文字颜色和透明背景。我遇到了this question中详细记录的问题。

我通过处理NM_CUSTOMDRAW取得了一些进展,并决定先完成复选框

问题:

我无法确定复选框的状态,因此我无法为DrawThemeBackground()传递正确的参数。

代码说的不仅仅是单词,所以这里是代码段:

case WM_NOTIFY:
    {
        if( ((LPNMHDR)lParam)->code == NM_CUSTOMDRAW )
        {
            switch( ((LPNMHDR)lParam)->idFrom ) 
            {
            case IDC_CHECK1:
                {
                    switch( ((LPNMCUSTOMDRAW)lParam)->dwDrawStage  )
                    {
                    case CDDS_PREERASE:
                        {
                            HRESULT hr = DrawThemeParentBackground(
                                ((LPNMCUSTOMDRAW)lParam)->hdr.hwndFrom
                                ((LPNMCUSTOMDRAW)lParam)->hdc,
                                &((LPNMCUSTOMDRAW)lParam)->rc );

                            if( FAILED(hr) ) // if failed draw without theme
                            {
                                SetWindowLongPtr( hDlg, DWLP_MSGRESULT
                                    (LONG_PTR)CDRF_DODEFAULT );
                                return TRUE;
                            }

                            HTHEME hTheme = OpenThemeData(
                                ((LPNMCUSTOMDRAW)lParam)->hdr.hwndFrom,
                                L"BUTTON" );

                            if( ! hTheme )  // if failed draw without theme
                            {
                                CloseThemeData(hTheme);
                                SetWindowLongPtr( hDlg, DWLP_MSGRESULT
                                    (LONG_PTR)CDRF_DODEFAULT );
                                return TRUE;
                            }

                            // draw the state-->this is the problem part

                            // I thought this might be useful           
                            LRESULT state = SendMessage(
                                ((LPNMCUSTOMDRAW)lParam)->hdr.hwndFrom,
                                BM_GETSTATE, 0, 0 );

                            int stateID;  // parameter for DrawThemeBackground

                            switch( ((LPNMCUSTOMDRAW)lParam)->uItemState )
                            {
                            case CDIS_HOT:
                                {
                                    if( IsDlgButtonChecked( hDlg, ((LPNMCUSTOMDRAW)lParam)->hdr.idFrom ) )
                                        stateID = CBS_CHECKEDHOT;
                                    else
                                        stateID = CBS_UNCHECKEDHOT;
                                    break;
                                }
                            case CDIS_DEFAULT:
                                {
                                    if( IsDlgButtonChecked( hDlg, ((LPNMCUSTOMDRAW)lParam)->hdr.idFrom ) )
                                        stateID = CBS_CHECKEDNORMAL;
                                    else
                                        stateID = CBS_UNCHECKEDNORMAL;
                                    break;
                                }
                            case CDIS_FOCUS:
                                {
                                    if( IsDlgButtonChecked( hDlg, ((LPNMCUSTOMDRAW)lParam)->hdr.idFrom ) )
                                        stateID = CBS_CHECKEDNORMAL;
                                    else
                                        stateID = CBS_UNCHECKEDNORMAL;
                                    break;
                                }
                            case CDIS_SELECTED:
                                {
                                    if( IsDlgButtonChecked( hDlg, ((LPNMCUSTOMDRAW)lParam)->hdr.idFrom ) )
                                        stateID = CBS_CHECKEDPRESSED;
                                    else
                                        stateID = CBS_UNCHECKEDPRESSED;
                                    break;
                                }
                            }

                            RECT r;
                            SIZE s;

                            // get check box dimensions so we can calculate 
                            // rectangle dimensions for text
                            GetThemePartSize( hTheme, 
                                ((LPNMCUSTOMDRAW)lParam)->hdc, 
                                BP_CHECKBOX, stateID, NULL, 
                                TS_TRUE ,&s );

                            r.left = ((LPNMCUSTOMDRAW)lParam)->rc.left;
                            r.top = ((LPNMCUSTOMDRAW)lParam)->rc.top;
                            r.right = ((LPNMCUSTOMDRAW)lParam)->rc.left + s.cx;
                            r.bottom = ((LPNMCUSTOMDRAW)lParam)->rc.top + s.cy;

                            DrawThemeBackground( hTheme, ((LPNMCUSTOMDRAW)lParam)->hdc,
                                BP_CHECKBOX, stateID, &r, NULL );

                            // adjust rectangle for text drawing
                            ((LPNMCUSTOMDRAW)lParam)->rc.left +=  2 + s.cx;

                            DrawText( ((LPNMCUSTOMDRAW)lParam)->hdc,
                                L"Example text", -1, 
                                &((LPNMCUSTOMDRAW)lParam)->rc,
                                DT_SINGLELINE | DT_VCENTER );

                            CloseThemeData(hTheme);
                            SetWindowLongPtr( hDlg, DWLP_MSGRESULT
                                (LONG_PTR)CDRF_SKIPDEFAULT );
                            return TRUE;
                        }
                    }
                }
            }
        }
    }
    break;

文本颜色和文本背景在WM_CTLCOLORSTATIC处理程序中设置:

case WM_CTLCOLORSTATIC:
    {
        SetTextColor( (HDC)wParam, RGB( 255, 0, 0 ) );
        SetBkMode( (HDC)wParam, TRANSPARENT );
    }
    return (INT_PTR)( (HBRUSH)GetStockObject(NULL_BRUSH) );

我已将#pragma commentInitCommonControlsEx()的常用控件6包括在内。

问题:

我现在需要的是为DrawThemeBackground传递正确的状态。有人可以帮我这个吗?

谢谢。

最好的问候。

1 个答案:

答案 0 :(得分:2)

NM_CUSTOMDRAW为您提供有关正在绘制的控件的状态信息。 NMCUSTOMDRAW::uItemState字段是一个位掩码,可以一次保存多个值,但您没有考虑到这一点。您需要使用&按位运算符来检查是否存在特定值。

改变这个:

// I thought this might be useful           
LRESULT state = SendMessage(
    ((LPNMCUSTOMDRAW)lParam)->hdr.hwndFrom,
    BM_GETSTATE, 0, 0 );

int stateID;  // parameter for DrawThemeBackground

switch( ((LPNMCUSTOMDRAW)lParam)->uItemState )
{
    case CDIS_HOT:
    {
        if( IsDlgButtonChecked( hDlg, ((LPNMCUSTOMDRAW)lParam)->hdr.idFrom ) )
            stateID = CBS_CHECKEDHOT;
        else
            stateID = CBS_UNCHECKEDHOT;
        break;
    }
    case CDIS_DEFAULT:
    {
        if( IsDlgButtonChecked( hDlg, ((LPNMCUSTOMDRAW)lParam)->hdr.idFrom ) )
            stateID = CBS_CHECKEDNORMAL;
        else
            stateID = CBS_UNCHECKEDNORMAL;
        break;
    }
    case CDIS_FOCUS:
    {
        if( IsDlgButtonChecked( hDlg, ((LPNMCUSTOMDRAW)lParam)->hdr.idFrom ) )
            stateID = CBS_CHECKEDNORMAL;
        else
            stateID = CBS_UNCHECKEDNORMAL;
        break;
    }
    case CDIS_SELECTED:
    {
        if( IsDlgButtonChecked( hDlg, ((LPNMCUSTOMDRAW)lParam)->hdr.idFrom ) )
            stateID = CBS_CHECKEDPRESSED;
        else
            stateID = CBS_UNCHECKEDPRESSED;
        break;
    }
}

改为更喜欢这样的东西:

int stateID;  // parameter for DrawThemeBackground

UINT uiItemState = ((LPNMCUSTOMDRAW)lParam)->uItemState;
bool bChecked = (uiItemState & CDIS_CHECKED);

if (uiItemState & CDIS_HOT)
    stateID = bChecked ? CBS_CHECKEDHOT : CBS_UNCHECKEDHOT;

else if (uiItemState & CDIS_SELECTED)
    stateID = bChecked ? CBS_CHECKEDPRESSED : CBS_UNCHECKEDPRESSED;

else
    stateID = bChecked ? CBS_CHECKEDNORMAL : CBS_UNCHECKEDNORMAL;