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

« back to all changes in this revision

Viewing changes to libdocument/ev-document-misc.h

  • Committer: Bazaar Package Importer
  • Author(s): Aron Sisak
  • Date: 2007-06-19 13:49:52 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20070619134952-k1hur43gw2120n72
Tags: 0.9.1-0ubuntu1
* New upstream release:
  - New Features and UI Improvements:
    * Cairo-based renderer for pages and selections of PDF, DVJU and DVI documents
    * PDF exporter for printing DVI documents
    * Zoom icon artwork
  * Patch to avoid frequent process wakeup for metadata handling
  * Bumped poppler requirements to 0.5.9
  * Changed sidebar ordering
  * Removed extra locking of a main loop to speed up rendering 
  - Bug fixes:
    * Print job is released quickly
    * Update a cursor and tooltips after scrolling
  * More safe mkdir_with_parents
  * Safe saving of a document copy to a remote location
  * Build fix without libgnome
  * Selections don't disappear after zoom
  * Preview button added to the print dialog
  - Translations:
  * sv, en_GB, ta, nb, ca, gl, et, es, dz, th, he
* debian/control.in
  - changed gs / gs-esp / gs-esp-x dependency to ghostscript-x
  - changed libpoppler dependecy (>= 0.5.9)

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 *  along with this program; if not, write to the Free Software
17
17
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
18
 *
19
 
 *  $Id: ev-document-misc.h 2332 2007-02-16 17:27:12Z carlosgc $
 
19
 *  $Id: ev-document-misc.h 2506 2007-06-17 15:05:11Z carlosgc $
20
20
 */
21
21
 
22
22
#ifndef EV_DOCUMENT_MISC_H
25
25
 
26
26
#include <gdk-pixbuf/gdk-pixbuf.h>
27
27
#include <gtk/gtkstyle.h>
 
28
#include <cairo.h>
28
29
 
29
30
G_BEGIN_DECLS
30
31
 
41
42
                                                  GtkBorder    *border,
42
43
                                                  gboolean      highlight);
43
44
 
 
45
cairo_surface_t *ev_document_misc_surface_from_pixbuf (GdkPixbuf *pixbuf);
 
46
GdkPixbuf       *ev_document_misc_pixbuf_from_surface (cairo_surface_t *surface);
 
47
cairo_surface_t *ev_document_misc_surface_rotate_and_scale (cairo_surface_t *surface,
 
48
                                                            gint             dest_width,
 
49
                                                            gint             dest_height,
 
50
                                                            gint             dest_rotation);
 
51
 
44
52
G_END_DECLS
45
53
 
46
54
#endif /* EV_DOCUMENT_MISC_H */