everyone. https://i.stack.imgur.com/ugfY4.jpg
I've got this kind of list-view color editor, every item represents separate color. So the user clicks on the COLOR_CODE subItem, the color picker updates to the selected HSV value and then the user drags color picker cursor on the pallete and the COLOR_CODE subItem should update in real-time as well as the color ID text. Most of the time the update performs nice and smooth, but sometimes it just flickers in a manner of - ---- It happens in a really flickering manner as if there was no time to draw it quickly.
I've started my search and found lots of posts, all leading to double buffering. Ok, I've got DOUBLE BUFFERING enabled in my list view like that
case WM_INITDIALOG:
ListView_SetExtendedListViewStyle(GetDlgItem(hDlg,id_listview),LVS_EX_DOUBLEBUFFER);
also tried it this way
SendDlgItemMessage(hWnd,id_listview,LVM_SETEXTENDEDLISTVIEWSTYLE,NULL,(LPARAM)LVS_EX_DOUBLEBUFFER);
But it did not help. Here is my custom draw routine It basicly takes whatever string is written in the ID subItem - 0xffb400 for example and converts it to COLORREF, then sets BG color of subItem 2 to the resulting color;
case WM_NOTIFY:
if(((LPNMHDR)lParam)->code == NM_CUSTOMDRAW)
{
SetWindowLong(hDlg, DWL_MSGRESULT, (LONG)ProcessCustomDraw(lParam,hDlg));
return TRUE;
}
break;
LRESULT colorEditor::ProcessCustomDraw (LPARAM lParam,HWND hDlg)
{
LPNMLVCUSTOMDRAW lplvcd = (LPNMLVCUSTOMDRAW)lParam;
switch(lplvcd->nmcd.dwDrawStage)
{
case CDDS_PREPAINT:
return CDRF_NOTIFYITEMDRAW;
case CDDS_ITEMPREPAINT:
return CDRF_NOTIFYSUBITEMDRAW;
case CDDS_ITEMPREPAINT|CDDS_SUBITEM: //Before an item is drawn//
if (lplvcd->iSubItem==2)
{
item_redraw.iItem=lplvcd->nmcd.dwItemSpec;
SendDlgItemMessageA(hWnd,id_listview,LVM_GETITEM,0,(LPARAM)&item_redraw);
lplvcd->clrTextBk = colorrefFromString(item_redraw.pszText);
}
return CDRF_NEWFONT;
}
return CDRF_DODEFAULT;
}
Just in case you think colorrefFromString is the case I provide it's listing:
COLORREF colorEditor::colorrefFromString(wchar_t *color)
{
COLORREF res_color;
unsigned short i=0,di=0;
int digits[6];
int h_digits[3];
if (color[i]=='0'&&(color[i+1]=='x'||color[i+1]=='X')) i=2;
int ix=0;
while (color[(ix++)+i]!='\0'){}
if (--ix!=5) while((ix++)<5)
digits[di++]=0;
while (color[i]!='\0')
{
if (color[i]>47&&color[i]<58) digits[di++]=color[i]-48;
else if (color[i]>64&&color[i]<71) digits[di++]=color[i]-65+10;
else if (color[i]>96&&color[i]<103) digits[di++]=color[i]-97+10;
i++;
}
h_digits[0]=digits[0]*16+digits[1];
h_digits[1]=digits[2]*16+digits[3];
h_digits[2]=digits[4]*16+digits[5];
res_color=0x00000000|(h_digits[2]<<16)|(h_digits[1]<<8)|h_digits[0];
return res_color;
}
And now the QUESTION: Why do i have flickering?
On the first look I can see no real reason for flickering.
But try to do all drawing here by yourself., may be this works.
Just calculate the color. Call FillRect on the item rectangle with the given dc and return CDRF_SKIPDEFAULT.