X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/12acbc9bf7c4b486a74293be2eb5c0ebaf4828da..7da662ce7ccf92964feef2a31a054b9b6c4acb70:/src/msw/dcprint.cpp diff --git a/src/msw/dcprint.cpp b/src/msw/dcprint.cpp index a2e365c072..32dad051fe 100644 --- a/src/msw/dcprint.cpp +++ b/src/msw/dcprint.cpp @@ -221,6 +221,19 @@ void wxPrinterDC::EndPage() ::EndPage((HDC) m_hDC); } + +wxRect wxPrinterDC::GetPaperRect() + +{ + if (!Ok()) return wxRect(0, 0, 0, 0); + int w = ::GetDeviceCaps((HDC) m_hDC, PHYSICALWIDTH); + int h = ::GetDeviceCaps((HDC) m_hDC, PHYSICALHEIGHT); + int x = -::GetDeviceCaps((HDC) m_hDC, PHYSICALOFFSETX); + int y = -::GetDeviceCaps((HDC) m_hDC, PHYSICALOFFSETY); + return wxRect(x, y, w, h); +} + + #if !wxUSE_PS_PRINTING // Returns default device and port names