Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
90b9c2fd
Commit
90b9c2fd
authored
Mar 06, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 15, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/shellview: Implemented IFolderView::GetSelectionMarkedItem() with basic test.
parent
4261aaff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
4 deletions
+29
-4
shlview.c
dlls/shell32/shlview.c
+7
-3
shlview.c
dlls/shell32/tests/shlview.c
+22
-1
No files found.
dlls/shell32/shlview.c
View file @
90b9c2fd
...
...
@@ -2739,9 +2739,13 @@ static HRESULT WINAPI IFView_Items(IFolderView *iface, UINT flags, REFIID riid,
static
HRESULT
WINAPI
IFView_GetSelectionMarkedItem
(
IFolderView
*
iface
,
int
*
item
)
{
IShellViewImpl
*
This
=
impl_from_IFolderView
(
iface
);
FIXME
(
"(%p)->(%p), stub
\n
"
,
This
,
item
);
return
E_NOTIMPL
;
IShellViewImpl
*
This
=
impl_from_IFolderView
(
iface
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
item
);
*
item
=
SendMessageW
(
This
->
hWndList
,
LVM_GETSELECTIONMARK
,
0
,
0
);
return
S_OK
;
}
static
HRESULT
WINAPI
IFView_GetFocusedItem
(
IFolderView
*
iface
,
int
*
item
)
...
...
dlls/shell32/tests/shlview.c
View file @
90b9c2fd
...
...
@@ -298,6 +298,11 @@ static const struct message folderview_getspacing_seq[] = {
{
0
}
};
static
const
struct
message
folderview_getselectionmarked_seq
[]
=
{
{
LVM_GETSELECTIONMARK
,
sent
},
{
0
}
};
static
void
test_IShellView_CreateViewWindow
(
void
)
{
IShellFolder
*
desktop
;
...
...
@@ -344,7 +349,7 @@ static void test_IFolderView(void)
IFolderView
*
fv
;
HWND
hwnd_view
,
hwnd_list
;
HRESULT
hr
;
DWORD
ret
;
INT
ret
;
POINT
pt
;
RECT
r
;
...
...
@@ -371,6 +376,9 @@ if (0)
{
/* crashes on Vista and Win2k8 - List not created yet case */
hr
=
IFolderView_GetSpacing
(
fv
,
&
pt
);
/* crashes on XP */
hr
=
IFolderView_GetSelectionMarkedItem
(
fv
,
NULL
);
}
browser
=
IShellBrowserImpl_Construct
();
...
...
@@ -414,6 +422,19 @@ if (0)
ok
(
pt
.
x
==
LOWORD
(
ret
)
&&
pt
.
y
==
HIWORD
(
ret
),
"got (%d, %d)
\n
"
,
LOWORD
(
ret
),
HIWORD
(
ret
));
}
/* IFolderView::GetSelectionMarkedItem */
if
(
0
)
{
/* crashes on XP */
hr
=
IFolderView_GetSelectionMarkedItem
(
fv
,
NULL
);
}
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
hr
=
IFolderView_GetSelectionMarkedItem
(
fv
,
&
ret
);
ok
(
hr
==
S_OK
,
"got (0x%08x)
\n
"
,
hr
);
ok_sequence
(
sequences
,
LISTVIEW_SEQ_INDEX
,
folderview_getselectionmarked_seq
,
"IFolderView::GetSelectionMarkedItem"
,
FALSE
);
IShellBrowser_Release
(
browser
);
IFolderView_Release
(
fv
);
IShellView_Release
(
view
);
...
...
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