~ubuntu-branches/ubuntu/vivid/qpdfview/vivid

« back to all changes in this revision

Viewing changes to sources/model.h

  • Committer: Package Import Robot
  • Author(s): Benjamin Eltzner
  • Date: 2014-10-22 21:49:15 UTC
  • mfrom: (1.2.15)
  • Revision ID: package-import@ubuntu.com-20141022214915-agqeoe318lzs2s4d
Tags: 0.4.12-1
* New upstream release.
* Fixed option to zoom to selection and implemented tiled rendering
  (Closes: #739554)
* Enable support for qt5 and poppler-qt5.
* Explicit dependence on hicolor-icon-theme.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 
3
 
Copyright 2013 Adam Reichold
 
3
Copyright 2014 S. Razi Alavizadeh
 
4
Copyright 2013-2014 Adam Reichold
4
5
 
5
6
This file is part of qpdfview.
6
7
 
109
110
 
110
111
        virtual QImage render(qreal horizontalResolution = 72.0, qreal verticalResolution = 72.0, Rotation rotation = RotateBy0, const QRect& boundingRect = QRect()) const = 0;
111
112
 
 
113
        virtual QString label() const { return QString(); }
 
114
 
112
115
        virtual QList< Link* > links() const { return QList< Link* >(); }
113
116
 
114
117
        virtual QString text(const QRectF& rect) const { Q_UNUSED(rect); return QString(); }