Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
3025dc18
Commit
3025dc18
authored
Apr 01, 1999
by
Luc Tourangeau
Committed by
Alexandre Julliard
Apr 01, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added support for icon and smallicon views.
parent
240bdacb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
17 deletions
+18
-17
listview.c
dlls/comctl32/listview.c
+0
-0
listview.h
include/listview.h
+18
-17
No files found.
dlls/comctl32/listview.c
View file @
3025dc18
This source diff could not be displayed because it is too large. You can
view the blob
instead.
include/listview.h
View file @
3025dc18
...
...
@@ -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
n
Column
Width
;
INT
n
Item
Width
;
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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment