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
048b57d1
Commit
048b57d1
authored
Jan 21, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Jan 22, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Rewrite the 1000ths inch conversion function to use the is_metric helper.
parent
53149c54
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
printdlg.c
dlls/comdlg32/printdlg.c
+12
-4
No files found.
dlls/comdlg32/printdlg.c
View file @
048b57d1
...
...
@@ -2450,6 +2450,14 @@ static inline LONG tenths_mm_to_size(PageSetupDataA *data, LONG size)
return
10
*
size
*
100
/
254
;
}
static
inline
LONG
thousandths_inch_to_size
(
PageSetupDataA
*
data
,
LONG
size
)
{
if
(
is_metric
(
data
))
return
size
*
254
/
100
;
else
return
size
;
}
static
DWORD
_c_10mm2size
(
PAGESETUPDLGW
*
dlga
,
DWORD
size
)
{
if
(
dlga
->
Flags
&
PSD_INTHOUSANDTHSOFINCHES
)
...
...
@@ -2459,7 +2467,7 @@ _c_10mm2size(PAGESETUPDLGW *dlga,DWORD size) {
static
DWORD
_c_inch2size
(
PAGESETUPDLG
A
*
dlga
,
DWORD
size
)
{
_c_inch2size
(
PAGESETUPDLG
W
*
dlga
,
DWORD
size
)
{
if
(
dlga
->
Flags
&
PSD_INTHOUSANDTHSOFINCHES
)
return
size
;
else
...
...
@@ -3700,8 +3708,8 @@ PRINTDLG_PageDlgProcA(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
/* We fill them out enabled or not */
if
(
!
(
pda
->
dlga
->
Flags
&
PSD_MARGINS
))
{
/* default is 1 inch */
DWORD
size
=
_c_inch2size
(
pda
->
dlga
,
1000
);
/* default is 1 inch */
LONG
size
=
thousandths_inch_to_size
(
pda
,
1000
);
pda
->
dlga
->
rtMargin
.
left
=
size
;
pda
->
dlga
->
rtMargin
.
top
=
size
;
pda
->
dlga
->
rtMargin
.
right
=
size
;
...
...
@@ -3793,7 +3801,7 @@ PageDlgProcW(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
SetDlgItemTextW
(
hDlg
,
edt7
,
str
);
}
else
{
/* default is 1 inch */
DWORD
size
=
_c_inch2size
(
(
LPPAGESETUPDLGA
)
pdw
->
dlgw
,
1000
);
DWORD
size
=
_c_inch2size
(
pdw
->
dlgw
,
1000
);
WCHAR
str
[
20
];
_c_size2strW
(
pdw
,
size
,
str
);
SetDlgItemTextW
(
hDlg
,
edt4
,
str
);
...
...
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