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 ...@@ -17,20 +17,21 @@ typedef struct tagLISTVIEW_SUBITEM
typedef struct tagLISTVIEW_ITEM typedef struct tagLISTVIEW_ITEM
{ {
UINT state; UINT state;
LPSTR pszText; LPSTR pszText;
INT iImage; INT iImage;
LPARAM lParam; LPARAM lParam;
INT iIndent; INT iIndent;
POINT ptPosition;
} LISTVIEW_ITEM; } LISTVIEW_ITEM;
typedef struct tagLISTVIEW_INFO typedef struct tagLISTVIEW_INFO
{ {
COLORREF clrBk; COLORREF clrBk;
COLORREF clrText; COLORREF clrText;
COLORREF clrTextBk; COLORREF clrTextBk;
HIMAGELIST himlNormal; HIMAGELIST himlNormal;
HIMAGELIST himlSmall; HIMAGELIST himlSmall;
HIMAGELIST himlState; HIMAGELIST himlState;
...@@ -40,20 +41,20 @@ typedef struct tagLISTVIEW_INFO ...@@ -40,20 +41,20 @@ typedef struct tagLISTVIEW_INFO
INT nCountPerRow; INT nCountPerRow;
INT nFocusedItem; INT nFocusedItem;
INT nItemHeight; INT nItemHeight;
INT nColumnWidth; INT nItemWidth;
INT nSelectionMark; INT nSelectionMark;
SHORT notifyFormat; SHORT notifyFormat;
RECT rcList; RECT rcList;
RECT rcView;
SIZE iconSize; SIZE iconSize;
SIZE smallIconSpacing; SIZE iconSpacing;
SIZE largeIconSpacing;
UINT uCallbackMask; UINT uCallbackMask;
HWND hwndHeader; HWND hwndHeader;
HFONT hDefaultFont; HFONT hDefaultFont;
HFONT hFont; HFONT hFont;
BOOL bFocus; BOOL bFocus;
DWORD dwExStyle; /* extended listview style */ DWORD dwExStyle; /* extended listview style */
HDPA hdpaItems; HDPA hdpaItems;
} LISTVIEW_INFO; } 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