~ubuntu-branches/ubuntu/hardy/evince/hardy-proposed

« back to all changes in this revision

Viewing changes to help/reference/html/evince-ev-document-info.html

  • Committer: Bazaar Package Importer
  • Author(s): Aron Sisak
  • Date: 2007-07-30 22:47:24 UTC
  • mfrom: (1.1.17 upstream)
  • Revision ID: james.westby@ubuntu.com-20070730224724-3jcs7t9t5ymuj6os
Tags: 0.9.3-0ubuntu1
* New upstream release:
  - New Features and UI Improvements:
    - Use new GTK+ tootlips 
    - Printing multiple pages per sheet
    - Added UNIX-like key bindings hjkl
  - Bug fixes:
    - Do not block while enumerating printers in preview mode
    - Show new pages as soon as they are rendered even if other page 
      elements like forms, images or links are not ready yet 
    - Provide different options in the print dialog depending on document 
      type backend capabilities 
  - Translations:
    - es, eu, fi, hu, mk, nl, zh_CN
* debian/patches/02_autoconf.patch:
  - configure update

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
<th width="100%" align="center">Evince Programmer's Reference Manual</th>
36
36
<td><a accesskey="n" href="evince-ev-document-links.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
37
37
</tr>
38
 
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2802183" class="shortcut">Top</a>
 
38
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2858981" class="shortcut">Top</a>
39
39
                  &#160;|&#160;
40
 
                  <a href="#id2802267" class="shortcut">Description</a></nobr></td></tr>
 
40
                  <a href="#id2859065" class="shortcut">Description</a></nobr></td></tr>
41
41
</table>
42
42
<div class="refentry" lang="en">
43
43
<a name="evince-ev-document-info"></a><div class="titlepage"></div>
44
44
<div class="refnamediv"><table width="100%"><tr>
45
45
<td valign="top">
46
46
<h2>
47
 
<a name="id2802183"></a><span class="refentrytitle">ev-document-info</span>
 
47
<a name="id2858981"></a><span class="refentrytitle">ev-document-info</span>
48
48
</h2>
49
49
<p>ev-document-info &#8212; </p>
50
50
</td>
66
66
</pre>
67
67
</div>
68
68
<div class="refsect1" lang="en">
69
 
<a name="id2802267"></a><h2>Description</h2>
 
69
<a name="id2859065"></a><h2>Description</h2>
70
70
<p>
71
71
 
72
72
</p>
73
73
</div>
74
74
<div class="refsect1" lang="en">
75
 
<a name="id2802281"></a><h2>Details</h2>
 
75
<a name="id2859079"></a><h2>Details</h2>
76
76
<div class="refsect2" lang="en">
77
 
<a name="id2802292"></a><h3>
 
77
<a name="id2859089"></a><h3>
78
78
<a name="EvDocumentInfo"></a>EvDocumentInfo</h3>
79
 
<a class="indexterm" name="id2802304"></a><pre class="programlisting">typedef struct {
 
79
<a class="indexterm" name="id2859102"></a><pre class="programlisting">typedef struct {
80
80
        char *title;
81
81
        char *format; /* eg, "pdf-1.5" */
82
82
        char *author;
106
106
</div>
107
107
<hr>
108
108
<div class="refsect2" lang="en">
109
 
<a name="id2802326"></a><h3>
 
109
<a name="id2859124"></a><h3>
110
110
<a name="EvDocumentLayout"></a>enum EvDocumentLayout</h3>
111
 
<a class="indexterm" name="id2802340"></a><pre class="programlisting">typedef enum
 
111
<a class="indexterm" name="id2859138"></a><pre class="programlisting">typedef enum
112
112
{
113
113
        EV_DOCUMENT_LAYOUT_SINGLE_PAGE,
114
114
        EV_DOCUMENT_LAYOUT_ONE_COLUMN,
124
124
</div>
125
125
<hr>
126
126
<div class="refsect2" lang="en">
127
 
<a name="id2802358"></a><h3>
 
127
<a name="id2859156"></a><h3>
128
128
<a name="EvDocumentMode"></a>enum EvDocumentMode</h3>
129
 
<a class="indexterm" name="id2802371"></a><pre class="programlisting">typedef enum
 
129
<a class="indexterm" name="id2859169"></a><pre class="programlisting">typedef enum
130
130
{
131
131
        EV_DOCUMENT_MODE_NONE,
132
132
        EV_DOCUMENT_MODE_USE_OC,
142
142
</div>
143
143
<hr>
144
144
<div class="refsect2" lang="en">
145
 
<a name="id2802390"></a><h3>
 
145
<a name="id2859188"></a><h3>
146
146
<a name="EvDocumentUIHints"></a>enum EvDocumentUIHints</h3>
147
 
<a class="indexterm" name="id2802404"></a><pre class="programlisting">typedef enum
 
147
<a class="indexterm" name="id2859201"></a><pre class="programlisting">typedef enum
148
148
{
149
149
        EV_DOCUMENT_UI_HINT_HIDE_TOOLBAR = 1 &lt;&lt; 0,
150
150
        EV_DOCUMENT_UI_HINT_HIDE_MENUBAR = 1 &lt;&lt; 1,
161
161
</div>
162
162
<hr>
163
163
<div class="refsect2" lang="en">
164
 
<a name="id2802430"></a><h3>
 
164
<a name="id2859227"></a><h3>
165
165
<a name="EvDocumentPermissions"></a>enum EvDocumentPermissions</h3>
166
 
<a class="indexterm" name="id2802443"></a><pre class="programlisting">typedef enum
 
166
<a class="indexterm" name="id2859241"></a><pre class="programlisting">typedef enum
167
167
{
168
168
        EV_DOCUMENT_PERMISSIONS_OK_TO_PRINT = 1 &lt;&lt; 0,
169
169
        EV_DOCUMENT_PERMISSIONS_OK_TO_MODIFY = 1 &lt;&lt; 1,
181
181
</div>
182
182
<hr>
183
183
<div class="refsect2" lang="en">
184
 
<a name="id2802476"></a><h3>
 
184
<a name="id2859274"></a><h3>
185
185
<a name="EvDocumentInfoFields"></a>enum EvDocumentInfoFields</h3>
186
 
<a class="indexterm" name="id2802489"></a><pre class="programlisting">typedef enum
 
186
<a class="indexterm" name="id2859287"></a><pre class="programlisting">typedef enum
187
187
{
188
188
        EV_DOCUMENT_INFO_TITLE = 1 &lt;&lt; 0,
189
189
        EV_DOCUMENT_INFO_FORMAT = 1 &lt;&lt; 1,
210
210
</div>
211
211
<hr>
212
212
<div class="refsect2" lang="en">
213
 
<a name="id2802524"></a><h3>
 
213
<a name="id2859322"></a><h3>
214
214
<a name="ev-document-info-free"></a>ev_document_info_free ()</h3>
215
 
<a class="indexterm" name="id2802537"></a><pre class="programlisting">void        ev_document_info_free           (<a href="evince-ev-document-info.html#EvDocumentInfo">EvDocumentInfo</a> *info);</pre>
 
215
<a class="indexterm" name="id2859334"></a><pre class="programlisting">void        ev_document_info_free           (<a href="evince-ev-document-info.html#EvDocumentInfo">EvDocumentInfo</a> *info);</pre>
216
216
<p>
217
217
 
218
218
</p>