FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour TMenu and checked items
Posts: 9022
Joined: Thu Oct 06, 2005 08:17 PM
TMenu and checked items
Posted: Mon Feb 06, 2006 09:37 AM
The following sample shows an unpleasant inset effect in checked menu items:

#include "Fivewin.ch"


FUNCTION MAIN()

    LOCAL oWnd

    DEFINE WINDOW oWnd;
           MENU BUILDMENU()

    ACTIVATE WINDOW oWnd

    RETURN NIL


STATIC FUNCTION BUILDMENU()

    LOCAL oMenu

    MENU oMenu
        MENUITEM "Test"

        MENU
            MENUITEM "Test1" ACTION MSGINFO( "Test1" ) CHECKED
            SEPARATOR
            MENUITEM "Test2" ACTION MSGINFO( "Test2" )
        ENDMENU
    ENDMENU

    RETURN oMenu


This is not a fix but with the following change in Add method (I just add a .f.) the effect vanishes:

   else
      if oMenuItem:cPrompt != nil
         AppendMenu( ::hMenu,;
                     nOR( If( oMenuItem:lActive,;
                          nOr( MF_ENABLED, If( oMenuItem:hBitmap != 0 .or. ;
                          ( .f. .and. IsWinNT() .and. ! lRoot .and. ! ::lSysMenu ),;
                          MF_OWNERDRAW, 0 ) ),;


EMG
Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
TMenu and checked items
Posted: Tue Feb 07, 2006 10:42 AM

Enrico,

Many thanks!

Will you mind to email me menu.prg to be sure we have the same code ? thanks.

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 9022
Joined: Thu Oct 06, 2005 08:17 PM

Continue the discussion