Commit 3025dc18 authored by Luc Tourangeau's avatar Luc Tourangeau Committed by Alexandre Julliard

Added support for icon and smallicon views.

parent 240bdacb
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -17,20 +17,21 @@ typedef struct tagLISTVIEW_SUBITEM
typedef struct tagLISTVIEW_ITEM
{
UINT state;
LPSTR pszText;
INT iImage;
LPARAM lParam;
INT iIndent;
UINT state;
LPSTR pszText;
INT iImage;
LPARAM lParam;
INT iIndent;
POINT ptPosition;
} LISTVIEW_ITEM;
typedef struct tagLISTVIEW_INFO
{
COLORREF clrBk;
COLORREF clrText;
COLORREF clrTextBk;
COLORREF clrBk;
COLORREF clrText;
COLORREF clrTextBk;
HIMAGELIST himlNormal;
HIMAGELIST himlSmall;
HIMAGELIST himlState;
......@@ -40,20 +41,20 @@ typedef struct tagLISTVIEW_INFO
INT nCountPerRow;
INT nFocusedItem;
INT nItemHeight;
INT nColumnWidth;
INT nItemWidth;
INT nSelectionMark;
SHORT notifyFormat;
RECT rcList;
RECT rcView;
SIZE iconSize;
SIZE smallIconSpacing;
SIZE largeIconSpacing;
SIZE iconSpacing;
UINT uCallbackMask;
HWND hwndHeader;
HFONT hDefaultFont;
HFONT hFont;
BOOL bFocus;
DWORD dwExStyle; /* extended listview style */
HDPA hdpaItems;
HWND hwndHeader;
HFONT hDefaultFont;
HFONT hFont;
BOOL bFocus;
DWORD dwExStyle; /* extended listview style */
HDPA hdpaItems;
} LISTVIEW_INFO;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment