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
faebaa57
Commit
faebaa57
authored
Jul 07, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jul 07, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/listview: More LVM_*HITTEST tests.
parent
48d58cef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
listview.c
dlls/comctl32/tests/listview.c
+23
-0
No files found.
dlls/comctl32/tests/listview.c
View file @
faebaa57
...
...
@@ -2661,11 +2661,17 @@ static void test_hittest(void)
y
=
pos
.
y
+
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_hittest
(
hwnd
,
x
,
y
,
-
1
,
LVHT_TORIGHT
,
FALSE
,
FALSE
,
__LINE__
);
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
0
,
1
,
LVHT_ONITEMLABEL
,
FALSE
,
FALSE
,
FALSE
,
__LINE__
);
y
=
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_hittest
(
hwnd
,
x
,
y
,
-
1
,
LVHT_TORIGHT
,
FALSE
,
TRUE
,
__LINE__
);
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
0
,
1
,
LVHT_ONITEMLABEL
,
TRUE
,
FALSE
,
TRUE
,
__LINE__
);
/* outside possible client rectangle (to right) */
x
=
pos
.
x
+
500
;
y
=
pos
.
y
+
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_hittest
(
hwnd
,
x
,
y
,
-
1
,
LVHT_TORIGHT
,
FALSE
,
FALSE
,
__LINE__
);
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
-
1
,
-
1
,
LVHT_NOWHERE
,
FALSE
,
FALSE
,
FALSE
,
__LINE__
);
y
=
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_hittest
(
hwnd
,
x
,
y
,
-
1
,
LVHT_TORIGHT
,
FALSE
,
TRUE
,
__LINE__
);
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
-
1
,
-
1
,
LVHT_NOWHERE
,
FALSE
,
FALSE
,
TRUE
,
__LINE__
);
/* subitem returned with -1 item too */
x
=
pos
.
x
+
150
;
y
=
-
10
;
...
...
@@ -2676,22 +2682,33 @@ static void test_hittest(void)
y
=
pos
.
y
+
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_hittest
(
hwnd
,
x
,
y
,
-
1
,
LVHT_NOWHERE
,
FALSE
,
FALSE
,
__LINE__
);
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
0
,
1
,
LVHT_ONITEMLABEL
,
FALSE
,
FALSE
,
FALSE
,
__LINE__
);
y
=
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_hittest
(
hwnd
,
x
,
y
,
-
1
,
LVHT_NOWHERE
,
FALSE
,
TRUE
,
__LINE__
);
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
0
,
1
,
LVHT_ONITEMLABEL
,
TRUE
,
FALSE
,
TRUE
,
__LINE__
);
/* the same with LVS_EX_FULLROWSELECT */
SendMessage
(
hwnd
,
LVM_SETEXTENDEDLISTVIEWSTYLE
,
0
,
LVS_EX_FULLROWSELECT
);
x
=
pos
.
x
+
150
;
/* outside column */
y
=
pos
.
y
+
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_hittest
(
hwnd
,
x
,
y
,
0
,
LVHT_ONITEM
,
FALSE
,
FALSE
,
__LINE__
);
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
0
,
1
,
LVHT_ONITEMLABEL
,
FALSE
,
FALSE
,
FALSE
,
__LINE__
);
y
=
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
0
,
1
,
LVHT_ONITEMLABEL
,
TRUE
,
FALSE
,
TRUE
,
__LINE__
);
MoveWindow
(
hwnd
,
0
,
0
,
100
,
100
,
FALSE
);
x
=
pos
.
x
+
150
;
/* outside column */
y
=
pos
.
y
+
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_hittest
(
hwnd
,
x
,
y
,
-
1
,
LVHT_TORIGHT
,
FALSE
,
FALSE
,
__LINE__
);
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
0
,
1
,
LVHT_ONITEMLABEL
,
FALSE
,
FALSE
,
FALSE
,
__LINE__
);
y
=
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_hittest
(
hwnd
,
x
,
y
,
-
1
,
LVHT_TORIGHT
,
FALSE
,
TRUE
,
__LINE__
);
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
0
,
1
,
LVHT_ONITEMLABEL
,
TRUE
,
FALSE
,
TRUE
,
__LINE__
);
/* outside possible client rectangle (to right) */
x
=
pos
.
x
+
500
;
y
=
pos
.
y
+
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_hittest
(
hwnd
,
x
,
y
,
-
1
,
LVHT_TORIGHT
,
FALSE
,
FALSE
,
__LINE__
);
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
-
1
,
-
1
,
LVHT_NOWHERE
,
FALSE
,
FALSE
,
FALSE
,
__LINE__
);
y
=
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_hittest
(
hwnd
,
x
,
y
,
-
1
,
LVHT_TORIGHT
,
FALSE
,
TRUE
,
__LINE__
);
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
-
1
,
-
1
,
LVHT_NOWHERE
,
FALSE
,
FALSE
,
TRUE
,
__LINE__
);
/* try with icons, state icons index is 1 based so at least 2 bitmaps needed */
himl
=
ImageList_Create
(
16
,
16
,
0
,
4
,
4
);
ok
(
himl
!=
NULL
,
"failed to create imagelist
\n
"
);
...
...
@@ -2718,6 +2735,8 @@ static void test_hittest(void)
y
=
pos
.
y
+
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_hittest
(
hwnd
,
x
,
y
,
0
,
LVHT_ONITEMSTATEICON
,
FALSE
,
FALSE
,
__LINE__
);
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
0
,
0
,
LVHT_ONITEMSTATEICON
,
FALSE
,
FALSE
,
FALSE
,
__LINE__
);
y
=
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
0
,
0
,
LVHT_ONITEMSTATEICON
,
TRUE
,
FALSE
,
FALSE
,
__LINE__
);
/* state icons indices are 1 based, check with valid index */
item
.
mask
=
LVIF_STATE
;
...
...
@@ -2732,6 +2751,8 @@ static void test_hittest(void)
y
=
pos
.
y
+
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_hittest
(
hwnd
,
x
,
y
,
0
,
LVHT_ONITEMSTATEICON
,
FALSE
,
FALSE
,
__LINE__
);
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
0
,
0
,
LVHT_ONITEMSTATEICON
,
FALSE
,
FALSE
,
FALSE
,
__LINE__
);
y
=
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
0
,
0
,
LVHT_ONITEMSTATEICON
,
TRUE
,
FALSE
,
FALSE
,
__LINE__
);
himl2
=
(
HIMAGELIST
)
SendMessage
(
hwnd
,
LVM_SETIMAGELIST
,
LVSIL_STATE
,
(
LPARAM
)
NULL
);
ok
(
himl2
==
himl
,
"should return handle
\n
"
);
...
...
@@ -2743,6 +2764,8 @@ static void test_hittest(void)
y
=
pos
.
y
+
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_hittest
(
hwnd
,
x
,
y
,
0
,
LVHT_ONITEMICON
,
FALSE
,
FALSE
,
__LINE__
);
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
0
,
0
,
LVHT_ONITEMICON
,
FALSE
,
FALSE
,
FALSE
,
__LINE__
);
y
=
(
bounds
.
bottom
-
bounds
.
top
)
/
2
;
test_lvm_subitemhittest
(
hwnd
,
x
,
y
,
0
,
0
,
LVHT_ONITEMICON
,
TRUE
,
FALSE
,
TRUE
,
__LINE__
);
DestroyWindow
(
hwnd
);
}
...
...
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