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
cd00a42e
Commit
cd00a42e
authored
Aug 04, 2007
by
Alexander Nicolaysen Sørnes
Committed by
Alexandre Julliard
Aug 16, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: printdlg: Set/Load paper orientation in PageSetupDlgW.
parent
5a11a120
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
printdlg.c
dlls/comdlg32/printdlg.c
+13
-2
No files found.
dlls/comdlg32/printdlg.c
View file @
cd00a42e
...
@@ -2563,6 +2563,13 @@ PRINTDLG_PS_UpdateDlgStructW(HWND hDlg, PageSetupDataW *pda) {
...
@@ -2563,6 +2563,13 @@ PRINTDLG_PS_UpdateDlgStructW(HWND hDlg, PageSetupDataW *pda) {
pda
->
dlga
->
ptPaperSize
.
x
=
pda
->
dlga
->
ptPaperSize
.
y
;
pda
->
dlga
->
ptPaperSize
.
x
=
pda
->
dlga
->
ptPaperSize
.
y
;
pda
->
dlga
->
ptPaperSize
.
y
=
tmp
;
pda
->
dlga
->
ptPaperSize
.
y
=
tmp
;
}
}
/* Save orientation */
if
(
pda
->
dlga
->
ptPaperSize
.
x
>
pda
->
dlga
->
ptPaperSize
.
y
)
dm
->
u1
.
s1
.
dmOrientation
=
DMORIENT_LANDSCAPE
;
else
dm
->
u1
.
s1
.
dmOrientation
=
DMORIENT_PORTRAIT
;
GlobalUnlock
(
pda
->
pdlg
.
hDevNames
);
GlobalUnlock
(
pda
->
pdlg
.
hDevNames
);
GlobalUnlock
(
pda
->
pdlg
.
hDevMode
);
GlobalUnlock
(
pda
->
pdlg
.
hDevMode
);
return
TRUE
;
return
TRUE
;
...
@@ -3238,6 +3245,7 @@ PageDlgProcW(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
...
@@ -3238,6 +3245,7 @@ PageDlgProcW(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
'_'
,
'_'
,
'W'
,
'I'
,
'N'
,
'E'
,
'_'
,
'P'
,
'A'
,
'G'
,
'E'
,
{
'_'
,
'_'
,
'W'
,
'I'
,
'N'
,
'E'
,
'_'
,
'P'
,
'A'
,
'G'
,
'E'
,
'S'
,
'E'
,
'T'
,
'U'
,
'P'
,
'D'
,
'L'
,
'G'
,
'D'
,
'A'
,
'T'
,
'A'
,
0
};
'S'
,
'E'
,
'T'
,
'U'
,
'P'
,
'D'
,
'L'
,
'G'
,
'D'
,
'A'
,
'T'
,
'A'
,
0
};
PageSetupDataW
*
pda
;
PageSetupDataW
*
pda
;
LPDEVMODEW
dm
;
BOOL
res
=
FALSE
;
BOOL
res
=
FALSE
;
if
(
uMsg
==
WM_INITDIALOG
)
{
if
(
uMsg
==
WM_INITDIALOG
)
{
...
@@ -3263,11 +3271,14 @@ PageDlgProcW(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
...
@@ -3263,11 +3271,14 @@ PageDlgProcW(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
EnableWindow
(
GetDlgItem
(
hDlg
,
edt6
),
FALSE
);
EnableWindow
(
GetDlgItem
(
hDlg
,
edt6
),
FALSE
);
EnableWindow
(
GetDlgItem
(
hDlg
,
edt7
),
FALSE
);
EnableWindow
(
GetDlgItem
(
hDlg
,
edt7
),
FALSE
);
}
}
/* width larger as height -> landscape */
if
(
pda
->
dlga
->
ptPaperSize
.
x
>
pda
->
dlga
->
ptPaperSize
.
y
)
dm
=
GlobalLock
(
pda
->
dlga
->
hDevMode
);
/* Landscape orientation */
if
(
dm
->
u1
.
s1
.
dmOrientation
==
DMORIENT_LANDSCAPE
)
CheckRadioButton
(
hDlg
,
rad1
,
rad2
,
rad2
);
CheckRadioButton
(
hDlg
,
rad1
,
rad2
,
rad2
);
else
/* this is default if papersize is not set */
else
/* this is default if papersize is not set */
CheckRadioButton
(
hDlg
,
rad1
,
rad2
,
rad1
);
CheckRadioButton
(
hDlg
,
rad1
,
rad2
,
rad1
);
GlobalUnlock
(
pda
->
dlga
->
hDevMode
);
if
(
pda
->
dlga
->
Flags
&
PSD_DISABLEORIENTATION
)
{
if
(
pda
->
dlga
->
Flags
&
PSD_DISABLEORIENTATION
)
{
EnableWindow
(
GetDlgItem
(
hDlg
,
rad1
),
FALSE
);
EnableWindow
(
GetDlgItem
(
hDlg
,
rad1
),
FALSE
);
EnableWindow
(
GetDlgItem
(
hDlg
,
rad2
),
FALSE
);
EnableWindow
(
GetDlgItem
(
hDlg
,
rad2
),
FALSE
);
...
...
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