Bug in radio button transparence

Post Reply
User avatar
Enrico Maria Giordano
Posts: 8775
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Has thanked: 1 time
Been thanked: 7 times
Contact:

Bug in radio button transparence

Post by Enrico Maria Giordano »

In the following sample the SAY is transparent while the RADIO isn't:

Code: Select all | Expand

#include "Fivewin.ch"


FUNCTION MAIN()

    LOCAL oDlg

    LOCAL nVar

    LOCAL hBmp := READBITMAP( 0, "c:\fwh\bitmaps\fivewin.bmp" )

    DEFINE DIALOG oDlg;
           TRANSPARENT

    @ 1, 5 SAY "This is a test"

    @ 2, 5 RADIO nVar;
           PROMPT "Test1", "Test2"

    ACTIVATE DIALOG oDlg;
             ON PAINT PALBMPDRAW( hDC, 0, 0, hBmp );
             CENTER

    DELETEOBJECT( hBmp )

    RETURN NIL


EMG
User avatar
Antonio Linares
Site Admin
Posts: 42731
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 95 times
Been thanked: 108 times
Contact:

Re: Bug in radio button transparence

Post by Antonio Linares »

Enrico,

Transparency has to be used with brushes. It is a Windows API limitation, not a bug.

This is the right way to do it:

Code: Select all | Expand

#include "Fivewin.ch"


FUNCTION MAIN()

    LOCAL oDlg, oBrush

    LOCAL nVar

    DEFINE BRUSH oBrush FILENAME "c:\fwh\bitmaps\fivewin.bmp"

    DEFINE DIALOG oDlg;
           TRANSPARENT BRUSH oBrush

    @ 1, 5 SAY "This is a test"

    @ 2, 5 RADIO nVar;
           PROMPT "Test1", "Test2"

    ACTIVATE DIALOG oDlg

    oBrush:End()

    RETURN NIL

Image
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply