The MASM Forum

General => The Campus => Topic started by: 2B||!2B on July 22, 2023, 07:18:29 AM

Title: Listview grid lines color
Post by: 2B||!2B on July 22, 2023, 07:18:29 AM
Hey there,

Is there a way to change the Windows Lisview control's grid lines color?
There doesn't seem to be any message setting this color. LVM_SETBKCOLOR only changes the background color but the grid lines still paints in white...
What options are available besides owner drawn?
Title: Re: Listview grid lines color
Post by: jj2007 on July 22, 2023, 08:07:39 AM
It's ownerdraw. Google "listview" "ODA_DRAWENTIRE"
Title: Re: Listview grid lines color
Post by: NoCforMe on July 23, 2023, 05:39:10 AM
Microsoft Learn: About Custom Draw (https://learn.microsoft.com/en-us/windows/win32/controls/about-custom-draw)

Title: Re: Listview grid lines color
Post by: 2B||!2B on July 24, 2023, 06:08:40 AM
WM_DRAWITEM won't help if you leave the default WM_PAINT as those lines are drawn after you handle WM_DRAWITEM. It's kinda flimsy design. By default, the grid lines color is a hardcoded of COLOR_BTNFACE color which maps to RGB 240 240 240 on my system. It's drawn inside uxtheme.dll if we use Common controls 6 manifest. That color is passed to an hDC by SetBkColor function. I've checked the owner drawn and it seems there is only one solution which is overriding the default painting in WM_PAINT because if you leave it to the system, it will just paint the grid lines using its own colors...

Here is a FillRect called on response to WM_DRAWITEM ODA_DRAWENTIRE
.elseif EAX == WM_DRAWITEM
MOV EDI,lParam
.if [EDI].DRAWITEMSTRUCT.itemAction == ODA_DRAWENTIRE
invoke CreateSolidBrush,10111114
invoke FillRect,[EDI].DRAWITEMSTRUCT.hdc,addr [EDI].DRAWITEMSTRUCT.rcItem,EAX

.endif
(https://i.imgur.com/gOzdHfG.png)
Title: Re: Listview grid lines color
Post by: 2B||!2B on September 08, 2023, 08:52:33 AM
Here is my attempt to draw them manually using custom draw mechanism in response to CDDS_POSTPAINT notification.

There is a problem with the paint. When you scroll vertically, lines won't draw correctly unless you minimize/restore the window. I've spent some time trying to figure out a fix for this but no go.

Any help would be appreciated.


Edit: Removed iGroupId reference.
Title: Re: Listview grid lines color
Post by: jj2007 on September 08, 2023, 09:00:17 AM
I'm afraid your code is not compatible with the Masm32 SDK.

Error A2063: Symbol not defined : LV_ITEMA.iGroupId
Title: Re: Listview grid lines color
Post by: 2B||!2B on September 08, 2023, 09:05:21 AM
Sorry, I had slightly modified LV_ITEMA/W to support for groups insertion as it's outdated but it's not necessary in this example.

LV_ITEMA STRUCT
  imask         DWORD      ?
  iItem         DWORD      ?
  iSubItem      DWORD      ?
  state         DWORD      ?
  stateMask     DWORD      ?
  pszText       DWORD      ?
  cchTextMax    DWORD      ?
  iImage        DWORD      ?
  lParam        DWORD      ?
  iIndent       DWORD      ?
  iGroupId DWORD    ?
  cColumns DWORD    ?
  puColumns     DWORD    ?
  piColFmt     DWORD    ?
  iGroup     DWORD    ?
 
LV_ITEMA ENDS

LV_ITEMW STRUCT
  imask         DWORD      ?
  iItem         DWORD      ?
  iSubItem      DWORD      ?
  state         DWORD      ?
  stateMask     DWORD      ?
  pszText       DWORD      ?
  cchTextMax    DWORD      ?
  iImage        DWORD      ?
  lParam        DWORD      ?
  iIndent       DWORD      ?
  iGroupId DWORD    ?
  cColumns DWORD    ?
  puColumns     DWORD    ?
  piColFmt     DWORD    ?
  iGroup     DWORD    ?
LV_ITEMW ENDS
Title: Re: Listview grid lines color
Post by: zedd151 on September 08, 2023, 09:13:00 AM
Quote from: 2B||!2B on September 08, 2023, 09:05:21 AMSorry, I had slightly modified LV_ITEMA/W to support for groups insertion as it's outdated but it's not necessary in this example.

If a new structure member is referenced in the code:
    MOV LVI.iGroupId,EAX
then the modified version of the structure should be included in the source or include file, since not everyone will have the modified version.  :smiley:
Title: Re: Listview grid lines color
Post by: 2B||!2B on September 08, 2023, 09:17:11 AM
Quote from: zedd151 on September 08, 2023, 09:13:00 AM
Quote from: 2B||!2B on September 08, 2023, 09:05:21 AMSorry, I had slightly modified LV_ITEMA/W to support for groups insertion as it's outdated but it's not necessary in this example.

If a new structure member is referenced in the code:
    MOV LVI.iGroupId,EAX
then the modified version of the structure should be included in the source or include file, since not everyone will have the modified version.  :smiley:


I would've included the modification had I remembered beforehand. I'll update the attached code to remove the reference.
Title: Re: Listview grid lines color
Post by: zedd151 on September 08, 2023, 09:20:27 AM
Quote from: 2B||!2B on September 08, 2023, 09:17:11 AMI would've included the modification had I remembered beforehand. I'll update the attached code to remove the reference.
:thumbsup:
Title: Re: Listview grid lines color
Post by: jj2007 on September 08, 2023, 10:40:37 AM
Quote from: 2B||!2B on September 08, 2023, 09:17:11 AMI'll update the attached code to remove the reference.

Tmp_File.asm(217) : Error A2210: Syntax error: ,
return(1)[macros.asm]

Apparently your Masm32 SDK is heavily modified. No good, especially not in The Campus.