Re: jpeg2000 thumbnail
Hi Andrea.
uhmm the last part is not indented on my mail client.
drag the Code, and drop him to edit.exe
is this a clistctrl derived class?
yes it is, u make a class from CListCtrl:: and use CListCtrl:: SetImageList
, if u have Create the Control via :
if(m_thumbnail.Create(WS_CHILD|WS_VISIBLE|LVS_ICON|LVS_SINGLESEL|LVS_SHOWSELALWAYS|LVS_SHAREIMAGELISTS|LVS_ALIGNTOP|LVS_ALIGNLEFT,CRect(0,0,0,0),this,IDC_PROPERTYLIST)
< 0)
return -1;
u have should Set a ImageList , for the IconView.
To update/add the BitmapInformation, must study the Code, the CDib:: handle
all the stuff to blit
jpg via Ole' into your Thumbnail.
if(!m_pInfoImages->Create(THUMBWIDTH+THUMSPACE, THUMBWIDTH+THUMSPACE,
ILC_COLOR24 | ILC_MASK, 0, 0))
return -1;
CListCtrl::SetImageList(m_pInfoImages,LVSIL_NORMAL);
greetings and best regards
Karsten Schulz
--
(www.kahnsoft.de)
"Andrea Visinoni" <andrea.visinoni@gmail.com> schrieb im Newsbeitrag
news:26498f06-0ccf-412c-aae3-aaf61466f018@26g2000hsk.googlegroups.com...
On 9 Giu, 23:06, "Karsten Schulz" <kahnp...@freenet.de> wrote:
Hi Andrea,
this is the stuff who u need .
greetings
Karsten Schulz
(www.kahnsoft.de)
uhmm the last part is not indented on my mail client.
is this a clistctrl derived class?