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
d3908e69
Commit
d3908e69
authored
Oct 03, 2008
by
Lei Zhang
Committed by
Alexandre Julliard
Oct 06, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regedit: Make branch export behavior work more like native regedit.
parent
7ffaafb2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
framewnd.c
programs/regedit/framewnd.c
+6
-6
No files found.
programs/regedit/framewnd.c
View file @
d3908e69
...
...
@@ -278,10 +278,13 @@ static UINT CALLBACK ExportRegistryFile_OFNHookProc(HWND hdlg, UINT uiMsg, WPARA
{
case
CDN_INITDONE
:
{
BOOL
export_branch
=
FALSE
;
WCHAR
*
path
=
GetItemFullPath
(
g_pChildWnd
->
hTreeWnd
,
NULL
,
FALSE
);
SendDlgItemMessageW
(
hdlg
,
IDC_EXPORT_PATH
,
WM_SETTEXT
,
0
,
(
LPARAM
)
path
);
if
(
path
&&
strlenW
(
path
)
>
0
)
export_branch
=
TRUE
;
HeapFree
(
GetProcessHeap
(),
0
,
path
);
CheckRadioButton
(
hdlg
,
IDC_EXPORT_ALL
,
IDC_EXPORT_SELECTED
,
pOpenFileName
->
lCustData
?
IDC_EXPORT_SELECTED
:
IDC_EXPORT_ALL
);
CheckRadioButton
(
hdlg
,
IDC_EXPORT_ALL
,
IDC_EXPORT_SELECTED
,
export_branch
?
IDC_EXPORT_SELECTED
:
IDC_EXPORT_ALL
);
break
;
}
case
CDN_FILEOK
:
...
...
@@ -356,7 +359,7 @@ static BOOL ImportRegistryFile(HWND hWnd)
}
static
BOOL
ExportRegistryFile
(
HWND
hWnd
,
BOOL
export_branch
)
static
BOOL
ExportRegistryFile
(
HWND
hWnd
)
{
OPENFILENAMEW
ofn
;
WCHAR
ExportKeyPath
[
_MAX_PATH
];
...
...
@@ -366,7 +369,6 @@ static BOOL ExportRegistryFile(HWND hWnd, BOOL export_branch)
InitOpenFileName
(
hWnd
,
&
ofn
);
LoadStringW
(
hInst
,
IDS_FILEDIALOG_EXPORT_TITLE
,
title
,
COUNT_OF
(
title
));
ofn
.
lpstrTitle
=
title
;
ofn
.
lCustData
=
export_branch
;
ofn
.
Flags
=
OFN_ENABLETEMPLATE
|
OFN_ENABLEHOOK
|
OFN_EXPLORER
|
OFN_HIDEREADONLY
|
OFN_OVERWRITEPROMPT
;
ofn
.
lpfnHook
=
ExportRegistryFile_OFNHookProc
;
ofn
.
lpTemplateName
=
MAKEINTRESOURCEW
(
IDD_EXPORT_TEMPLATE
);
...
...
@@ -665,10 +667,8 @@ static BOOL _CmdWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
ImportRegistryFile
(
hWnd
);
break
;
case
ID_EDIT_EXPORT
:
ExportRegistryFile
(
hWnd
,
TRUE
);
break
;
case
ID_REGISTRY_EXPORTREGISTRYFILE
:
ExportRegistryFile
(
hWnd
,
FALSE
);
ExportRegistryFile
(
hWnd
);
break
;
case
ID_REGISTRY_CONNECTNETWORKREGISTRY
:
break
;
...
...
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