窗口控件透明的通用解決方案

這篇文章我最早在codeproject上發佈,原文地址http://www.codeproject.com/KB/dialog/transparent-control.aspx. 反饋還不錯,有時間把它翻譯一下。
   Download demo - 191 KB
   Download source - 205 KB
  

Introduction

In UI development, we have to implement some nice effects usually, and making some controls to be transparent is a problem that we often meet. In this article, I present an approach to implement the transparency of controls. The source code includes the class CTransparentHelper based on the Win32 API, and it can be used in MFC, ATL, WTL, Win32 applications, or may be some other framework. I developed a new version because I used it at my work, so if you have any suggestions, bug reports, or problems, please send it to me. And, you can also visit my technical blog to get more information.
Background

I wrote this code because I needed some transparent controls such as buttons, slider controls, and progress controls. I found that some methods available online are not effective when the parent window moves, or when the control moves; this is a problem when we want to use a transparent control in a resizable dialog. So, I wrote the CTransparentHelper; you can have a smooth transparency effect when MoveWindow is called, and the class is suitable for all controls.
Features

    * No framework dependency.
    * Can be used for controls of different types.
    * Can be used for multi-layer transparency.
    * Easy to use in the current code.

Using the code

Before introducing how to use the source code, I suggest using a memory DC to store the background DC of the parent dialog. This is convenient for the transparency of child controls, and also boosts the efficiency of drawing. For detailed information, please refer to the source code.
Include “TransparentHelper.h”

Include “TransparentHelper.h” in the file of the control which needs to be transparent. And, add an object of type CTransparentHelper.
Collapse

#pragma once

#include "TransparentHelper.h"
// CSliderCtrlEx

class CSliderCtrlEx : public CSliderCtrl
{
    ………
    CTransparentHelper m_objTrans;
}

Initialize the object of CTransparentHelper
Collapse

void CSliderCtrlEx::PreSubclassWindow()
{

    // TODO: Add your specialized code here and/or call the base class
    …….

    CSliderCtrl::PreSubclassWindow();
    m_objTrans.Install( GetSafeHwnd());
    ……
}

Call the function TransparentBk of CTransparentHelper when you need
Collapse

BOOL CSliderCtrlEx::OnSliderDrawChannel( CDC* pDC, CRect& rect, UINT nState)
{
    ……
    if ( m_objTrans.IsValid() )
    {
        m_objTrans.TransparentBk( pDC->GetSafeHdc(), GetSafeHwnd());
    }
    ………
    return TRUE;
}

Add code to the control’s parent window

Sometimes, the parent window is a dialog. I need to deal with the message WM_TRANSPARENT_BK, which is sent from the transparent control in order to get back the DC.
Collapse

LRESULT CTransparentControlDlg::OnTransaprentBk( WPARAM wParam, LPARAM lParam)
{
    HDC hdc = ( HDC)wParam;
    HWND hwnd = ( HWND)lParam;

    CTransparentHelper::OnTranparentControl( m_pMemDC->GetSafeHdc(),
                                           (WPARAM)hdc, (LPARAM)hwnd);
    return TRUE;
}

Remark: The m_pMemDC is the memory DC of the dialog, which will be changed when the dialog’s size changes.
Notfiy children when background changes

When the dialog’s memory DC changes, it must notify the child which has a transparent tag.
Collapse

void CTransparentControlDlg::BuildBkDC()
{
    //rebuild the background dc
    ........
    //when the parent dialog's background is rebuild,
    //notify the child which has an transparent tag.
    CTransparentHelper::NotifyTransparentChild( GetSafeHwnd());
}

The message WM_NOTIFY_TRANSPARENT

The transparent control needs to deal with the message WM_NOTIFY_TRANSPARENT sent by the parent, when the background changes.
Collapse

LRESULT CSliderCtrlEx::OnNotifyTransparent( WPARAM wParam, LPARAM lParam)
{
    if ( ::IsWindowEnabled( GetSafeHwnd()))
    {
        ::EnableWindow( GetSafeHwnd(),FALSE);
        ::EnableWindow( GetSafeHwnd(),TRUE);
    }
    else
    {
        ::EnableWindow( GetSafeHwnd(),TRUE);
        ::EnableWindow( GetSafeHwnd(),FALSE);
    }
    //This operation is for the repaint of slider control,
    //because Invalidate cann't bring the NM_CUSTOMDRAW message.
    //M..., this may not the best method to solve the problem.
    //If you have other method, please tell me.

    return TRUE;
}

Remark: For some controls under some drawing methods (e.g., NM_CUSTOMDRAW), Invalidate will not cause a real repaint. So, I adde the WM_NOTIFY_TRANSAPRENT message to make it compatible. If the transparent control will repaint itself after calling Invalidate, it needn’t deal with the message.

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章