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
374a0a8f
Commit
374a0a8f
authored
Dec 18, 1998
by
Alex Priem
Committed by
Alexandre Julliard
Dec 18, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Preliminary tooltip support.
WM_SETFONT/GETFONT added. Some bug fixes. Use COMCTL32 heap instead of system heap.
parent
7c77354f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
10 deletions
+11
-10
treeview.c
dlls/comctl32/treeview.c
+0
-0
treeview.h
include/treeview.h
+11
-10
No files found.
dlls/comctl32/treeview.c
View file @
374a0a8f
This diff is collapsed.
Click to expand it.
include/treeview.h
View file @
374a0a8f
...
...
@@ -40,7 +40,7 @@ typedef struct {
int
sibling
;
/* handle to next item in list, 0 if last */
int
upsibling
;
/* handle to previous item in list, 0 if first */
int
visible
;
RECT32
rect
;
RECT32
rect
;
RECT32
text
;
}
TREEVIEW_ITEM
;
...
...
@@ -51,7 +51,7 @@ typedef struct {
typedef
struct
tagTREEVIEW_INFO
{
UINT32
uInternalStatus
;
INT32
Timer
;
INT32
Timer
;
UINT32
uNumItems
;
/* number of valid TREEVIEW_ITEMs */
UINT32
uNumPtrsAlloced
;
UINT32
uMaxHandle
;
/* needed for delete_item */
...
...
@@ -61,19 +61,20 @@ typedef struct tagTREEVIEW_INFO
UINT32
uRealItemHeight
;
/* real item height in pixels */
UINT32
uVisibleHeight
;
/* visible height of treeview in pixels */
UINT32
uTotalHeight
;
/* total height of treeview in pixels */
UINT32
uIndent
;
/* indentation in pixels */
UINT32
uIndent
;
/* indentation in pixels */
HTREEITEM
selectedItem
;
/* handle to selected item or 0 if none */
HTREEITEM
firstVisible
;
/* handle to first visible item */
HTREEITEM
dropItem
;
/* handle to item selected by drag cursor */
INT32
cx
,
cy
;
/* current x/y place in list */
COLORREF
clrBk
;
COLORREF
clrText
;
HFONT32
hFont
;
INT32
cx
,
cy
;
/* current x/y place in list */
COLORREF
clrBk
;
COLORREF
clrText
;
HFONT32
hFont
;
HWND32
hwndToolTip
;
HIMAGELIST
himlNormal
;
HIMAGELIST
himlState
;
HIMAGELIST
himlNormal
;
HIMAGELIST
himlState
;
TREEVIEW_ITEM
*
items
;
/* itemlist */
INT32
*
freeList
;
/* bitmap indicating which elements are valid */
INT32
*
freeList
;
/* bitmap indicating which elements are valid */
/* 1=valid, 0=free; */
/* size of list= uNumPtrsAlloced/32 */
...
...
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