~ubuntu-branches/debian/stretch/qpdfview/stretch

« back to all changes in this revision

Viewing changes to sources/presentationview.h

  • Committer: Package Import Robot
  • Author(s): Benjamin Eltzner
  • Date: 2014-05-19 14:39:20 UTC
  • mfrom: (1.2.14)
  • Revision ID: package-import@ubuntu.com-20140519143920-buukpma5b4hmnpt3
Tags: 0.4.10-1
* New upstream release.
* Implemented an option to zoom to selection (Closes: #739554)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
#include "global.h"
28
28
 
 
29
namespace qpdfview
 
30
{
 
31
 
29
32
namespace Model
30
33
{
31
34
class Page;
39
42
    Q_OBJECT
40
43
 
41
44
public:
42
 
    PresentationView(const QList< Model::Page* >& pages, QWidget* parent = 0);
 
45
    PresentationView(const QVector< Model::Page* >& pages, QWidget* parent = 0);
43
46
    ~PresentationView();
44
47
 
45
48
    int numberOfPages() const;
104
107
 
105
108
    QTimer* m_prefetchTimer;
106
109
 
107
 
    QList< Model::Page* > m_pages;
 
110
    QVector< Model::Page* > m_pages;
108
111
 
109
112
    int m_currentPage;
110
113
 
127
130
    
128
131
};
129
132
 
 
133
} // qpdfview
 
134
 
130
135
#endif // PRESENTATIONVIEW_H