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
6b6adccc
Commit
6b6adccc
authored
Jan 19, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Jan 20, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Add a helper for setting the orientation.
parent
e75b7ad7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
10 deletions
+12
-10
printdlg.c
dlls/comdlg32/printdlg.c
+12
-10
No files found.
dlls/comdlg32/printdlg.c
View file @
6b6adccc
...
...
@@ -2557,6 +2557,16 @@ static inline void rotate_rect(RECT *rc, BOOL sense)
}
}
static
void
pagesetup_set_orientation
(
PageSetupDataA
*
pda
,
WORD
orient
)
{
DEVMODEA
*
dm
=
GlobalLock
(
pda
->
dlga
->
hDevMode
);
assert
(
orient
==
DMORIENT_PORTRAIT
||
orient
==
DMORIENT_LANDSCAPE
);
dm
->
u1
.
s1
.
dmOrientation
=
orient
;
GlobalUnlock
(
pda
->
dlga
->
hDevMode
);
}
static
BOOL
pagesetup_update_papersize
(
PageSetupDataA
*
pda
)
{
DEVNAMES
*
dn
;
...
...
@@ -3007,18 +3017,10 @@ PRINTDLG_PS_WMCommandA(
if
((
id
==
rad1
&&
pda
->
dlga
->
ptPaperSize
.
x
>
pda
->
dlga
->
ptPaperSize
.
y
)
||
(
id
==
rad2
&&
pda
->
dlga
->
ptPaperSize
.
y
>
pda
->
dlga
->
ptPaperSize
.
x
))
{
DWORD
tmp
=
pda
->
dlga
->
ptPaperSize
.
x
;
DEVMODEA
*
dm
=
GlobalLock
(
pda
->
dlga
->
hDevMode
);
pda
->
dlga
->
ptPaperSize
.
x
=
pda
->
dlga
->
ptPaperSize
.
y
;
pda
->
dlga
->
ptPaperSize
.
y
=
tmp
;
dm
->
u1
.
s1
.
dmOrientation
=
(
id
==
rad1
)
?
DMORIENT_PORTRAIT
:
DMORIENT_LANDSCAPE
;
GlobalUnlock
(
pda
->
dlga
->
hDevMode
);
pagesetup_set_orientation
(
pda
,
(
id
==
rad1
)
?
DMORIENT_PORTRAIT
:
DMORIENT_LANDSCAPE
);
pagesetup_update_papersize
(
pda
);
rotate_rect
(
&
pda
->
dlga
->
rtMargin
,
(
id
==
rad2
));
update_margin_edits
(
hDlg
,
pda
,
0
);
PRINTDLG_PS_ChangePaperPrev
(
pda
);
}
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