The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: anorak on December 26, 2005, 06:22:26 PM

Title: Ownerdraw toolbar
Post by: anorak on December 26, 2005, 06:22:26 PM
im creating a PNG icon toolbar
i know how to draw png icons with bitmap
but don't have any suggstion how to make ownerdraw toolbar...
if someone has any example it'll be very usefull

maybe there are some other solution then ownerdraw?
Title: Re: Ownerdraw toolbar
Post by: akane on December 26, 2005, 08:51:49 PM
it's very simple draw-handling used in my IE search-toolbar: it draws a non-standard-size icon on resized toolbar button
   case WM_NOTIFY /*message from CToolbar::WndProc*/
   settype lParam, NMTBCUSTOMDRAW
   select *lParam.nmcd.dwDrawStage

      case CDDS_PREPAINT
         return CDRF_NOTIFYITEMDRAW

      case CDDS_ITEMPREPAINT
      case& CDDS_ITEMPOSTPAINT

         if (*lParam.nmcd.dwItemSpec = 50/*first button id*/)
            DrawIconEx(*lParam.nmcd.hdc, 2,5, *this.hIconLogo, 48,14, 0, NULL, DI_NORMAL)
         endif

         return CDRF_NOTIFYPOSTPAINT

   endselect
   return 0


you must check the WM_NOTIFY message - it must be from toolbar, and the notify code must be NM_CUSTOMDRAW. The toolbar must be created with TBSTYLE_CUSTOMERASE style
Title: Re: Ownerdraw toolbar
Post by: anorak on December 27, 2005, 07:59:06 PM
many0many-many-many thanks man!
it really works
Title: Re: Ownerdraw toolbar
Post by: xandaz on May 20, 2011, 09:36:08 PM
   How does one draw the background? I dont know what message is sent? CDDS_ITEMPREPAINT or CDDS_ITEMPREERASE? Can someone explain? Thanks
   I'm posting this sktchy thingy.
   Ty and laters