1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="highlight.min.css">
<script src="highlight.min.js"></script><script>
hljs.configure({languages: ['cpp']});
hljs.highlightAll();
</script><title>Page setup</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
<link rel="home" href="index.html" title="Programming with gtkmm 4">
<link rel="up" href="chapter-printing.html" title="Chapter 21. Printing">
<link rel="prev" href="chapter-printing.html" title="Chapter 21. Printing">
<link rel="next" href="sec-printing-rendering-text.html" title="Rendering text">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr><th colspan="3" align="center">Page setup</th></tr>
<tr>
<td width="20%" align="left">
<a accesskey="p" href="chapter-printing.html"><img src="icons/prev.png" alt="Prev"></a> </td>
<th width="60%" align="center">Chapter 21. Printing</th>
<td width="20%" align="right"> <a accesskey="n" href="sec-printing-rendering-text.html"><img src="icons/next.png" alt="Next"></a>
</td>
</tr>
</table>
<hr>
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="sec-page-setup"></a>Page setup</h2></div></div></div>
<p>
The <code class="classname">PrintOperation</code> class has a method called
<code class="methodname">set_default_page_setup()</code> which selects the default
paper size, orientation and margins. To show a page setup dialog from your
application, use the <code class="methodname">Gtk::run_page_setup_dialog()</code> method,
which returns a <code class="classname">Gtk::PageSetup</code> object with the chosen
settings. Use this object to update a <code class="classname">PrintOperation</code>
and to access the selected <code class="classname">Gtk::PaperSize</code>,
<code class="literal">Gtk::PageOrientation</code> and printer-specific margins.
</p>
<p>You should save the chosen <code class="classname">Gtk::PageSetup</code>
so you can use it again if the page setup dialog is shown again.</p>
<p>For instance,</p>
<pre class="programlisting"><code class="code">// Within a class that inherits from Gtk::Window and keeps m_refPageSetup
// and m_refSettings as members...
auto new_page_setup = Gtk::run_page_setup_dialog(*this, m_refPageSetup, m_refSettings);
m_refPageSetup = new_page_setup;
</code></pre>
<p>
<a class="ulink" href="https://gnome.pages.gitlab.gnome.org/gtkmm/classGtk_1_1PageSetup.html" target="_top">Reference</a>
</p>
<p>
The Cairo coordinate system, in the <code class="literal">draw_page</code> handler,
is automatically rotated to the current page orientation. It is normally
within the printer margins, but you can change that via the
<code class="methodname">PrintOperation::set_use_full_page()</code>
method. The default measurement unit is device pixels. To select other units,
use the <code class="methodname">PrintOperation::set_unit()</code> method.
</p>
</div>
<div class="navfooter">
<hr>
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left">
<a accesskey="p" href="chapter-printing.html"><img src="icons/prev.png" alt="Prev"></a> </td>
<td width="20%" align="center"><a accesskey="u" href="chapter-printing.html"><img src="icons/up.png" alt="Up"></a></td>
<td width="40%" align="right"> <a accesskey="n" href="sec-printing-rendering-text.html"><img src="icons/next.png" alt="Next"></a>
</td>
</tr>
<tr>
<td width="40%" align="left" valign="top">Chapter 21. Printing </td>
<td width="20%" align="center"><a accesskey="h" href="index.html"><img src="icons/home.png" alt="Home"></a></td>
<td width="40%" align="right" valign="top"> Rendering text</td>
</tr>
</table>
</div>
</body>
</html>
|