~ubuntu-branches/debian/sid/qpdfview/sid

« back to all changes in this revision

Viewing changes to sources/pageitem.h

  • Committer: Package Import Robot
  • Author(s): Benjamin Eltzner
  • Date: 2013-07-30 00:00:25 UTC
  • mfrom: (1.2.9)
  • Revision ID: package-import@ubuntu.com-20130730000025-lsj8rjj0brpaj5ve
Tags: 0.4.4-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include <QGraphicsObject>
27
27
#include <QIcon>
28
28
 
 
29
#if QT_VERSION >= QT_VERSION_CHECK(4,7,0)
 
30
 
 
31
#include <QStaticText>
 
32
 
 
33
#endif // QT_VERSION
 
34
 
29
35
#include "global.h"
30
36
 
31
37
namespace Model
185
191
    void loadInteractiveElements();
186
192
 
187
193
private:
188
 
    int m_textWidth;
189
 
    int m_textHeight;
 
194
#if QT_VERSION >= QT_VERSION_CHECK(4,7,0)
 
195
 
 
196
    QStaticText m_text;
 
197
 
 
198
#endif // QT_VERSION
190
199
 
191
200
    bool m_current;
192
201