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
908e27d6
Commit
908e27d6
authored
Oct 03, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Oct 04, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Store the selected item in the SelectionTree control.
parent
846fdd15
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
dialog.c
dlls/msi/dialog.c
+6
-0
No files found.
dlls/msi/dialog.c
View file @
908e27d6
...
...
@@ -1664,6 +1664,7 @@ struct msi_selection_tree_info
msi_dialog
*
dialog
;
HWND
hwnd
;
WNDPROC
oldproc
;
HTREEITEM
selected
;
};
static
void
...
...
@@ -1809,6 +1810,7 @@ static void
msi_seltree_add_child_features
(
MSIPACKAGE
*
package
,
HWND
hwnd
,
LPCWSTR
parent
,
HTREEITEM
hParent
)
{
struct
msi_selection_tree_info
*
info
=
GetPropW
(
hwnd
,
szButtonData
);
MSIFEATURE
*
feature
;
TVINSERTSTRUCTW
tvis
;
HTREEITEM
hitem
,
hfirst
=
NULL
;
...
...
@@ -1849,6 +1851,7 @@ msi_seltree_add_child_features( MSIPACKAGE *package, HWND hwnd,
/* select the first item */
SendMessageW
(
hwnd
,
TVM_SELECTITEM
,
TVGN_CARET
|
TVGN_DROPHILITE
,
(
LPARAM
)
hfirst
);
info
->
selected
=
hfirst
;
}
static
void
msi_seltree_create_imagelist
(
HWND
hwnd
)
...
...
@@ -1891,6 +1894,7 @@ static void msi_seltree_create_imagelist( HWND hwnd )
static
UINT
msi_dialog_seltree_handler
(
msi_dialog
*
dialog
,
msi_control
*
control
,
WPARAM
param
)
{
struct
msi_selection_tree_info
*
info
=
GetPropW
(
control
->
hwnd
,
szButtonData
);
LPNMTREEVIEWW
tv
=
(
LPNMTREEVIEWW
)
param
;
MSIRECORD
*
row
,
*
rec
;
MSIFOLDER
*
folder
;
...
...
@@ -1906,6 +1910,8 @@ static UINT msi_dialog_seltree_handler( msi_dialog *dialog,
if
(
tv
->
hdr
.
code
!=
TVN_SELCHANGINGW
)
return
ERROR_SUCCESS
;
info
->
selected
=
tv
->
itemNew
.
hItem
;
row
=
MSI_QueryGetRecord
(
dialog
->
package
->
db
,
select
,
tv
->
itemNew
.
pszText
);
if
(
!
row
)
return
ERROR_FUNCTION_FAILED
;
...
...
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